From 331aba448908d510fc8fd6bf5088ae275f1a1888 Mon Sep 17 00:00:00 2001 From: AzenKain Date: Tue, 1 Jul 2025 09:33:43 +0700 Subject: [PATCH] init --- .gitea/workflows/build.yml | 25 + Dockerfile | 59 + bun.lock | 444 +- data/characters.cn.json | 261882 +++++++++++++++ data/characters.en.json | 261882 +++++++++++++++ data/characters.jp.json | 261882 +++++++++++++++ data/characters.kr.json | 261882 +++++++++++++++ data/config_maze.json | 873 + data/lightcones.cn.json | 35106 ++ data/lightcones.en.json | 35106 ++ data/lightcones.jp.json | 35106 ++ data/lightcones.kr.json | 35106 ++ data/main_affixes.json | 762 + data/relics.cn.json | 1656 + data/relics.en.json | 1656 + data/relics.jp.json | 1656 + data/relics.kr.json | 1656 + data/sub_affixes.json | 298 + docker-compose.yml | 15 + i18n/request.ts | 11 + messages/cn.json | 177 + messages/en.json | 178 + messages/ja.json | 177 + messages/ko.json | 177 + messages/vi.json | 177 + messages/zh.json | 177 + next.config.ts | 39 +- package.json | 24 +- public/icon/attack.webp | Bin 0 -> 958 bytes public/icon/break-effect.webp | Bin 0 -> 1270 bytes public/icon/crit-damage.webp | Bin 0 -> 1398 bytes public/icon/crit-rate.webp | Bin 0 -> 1308 bytes public/icon/defence.webp | Bin 0 -> 1444 bytes public/icon/effect-hit-rate.webp | Bin 0 -> 1044 bytes public/icon/effect-res.webp | Bin 0 -> 1350 bytes public/icon/energy-rate.webp | Bin 0 -> 1464 bytes public/icon/fire.webp | Bin 0 -> 744 bytes public/icon/healing-boost.webp | Bin 0 -> 372 bytes public/icon/hp.webp | Bin 0 -> 1296 bytes public/icon/ice.webp | Bin 0 -> 918 bytes public/icon/imaginary.webp | Bin 0 -> 1038 bytes public/icon/physical.webp | Bin 0 -> 1020 bytes public/icon/quantum.webp | Bin 0 -> 710 bytes public/icon/speed.webp | Bin 0 -> 984 bytes public/icon/thunder.webp | Bin 0 -> 872 bytes public/icon/wind.webp | Bin 0 -> 860 bytes public/relics/BODY.png | Bin 0 -> 2249 bytes public/relics/FOOT.png | Bin 0 -> 1676 bytes public/relics/HAND.png | Bin 0 -> 2432 bytes public/relics/HEAD.png | Bin 0 -> 1862 bytes public/relics/NECK.png | Bin 0 -> 2007 bytes public/relics/OBJECT.png | Bin 0 -> 2006 bytes script/auto-gen.bat | 13 + src/app/api/[locale]/characters/[id]/route.ts | 18 + src/app/api/[locale]/characters/route.ts | 20 + src/app/api/[locale]/lightcones/[id]/route.ts | 18 + src/app/api/[locale]/lightcones/route.ts | 20 + src/app/api/[locale]/relics/[id]/route.ts | 18 + src/app/api/[locale]/relics/route.ts | 20 + src/app/api/config-maze/route.ts | 11 + src/app/api/main-affixes/route.ts | 11 + src/app/api/proxy/route.ts | 73 + src/app/api/sub-affixes/route.ts | 11 + src/app/eidolons-info/page.tsx | 12 + src/app/favicon.ico | Bin 25931 -> 199760 bytes src/app/globals.css | 73 +- src/app/icon.png | Bin 0 -> 398806 bytes src/app/layout.tsx | 42 +- src/app/page.tsx | 110 +- src/app/relics-info/page.tsx | 13 + src/components/actionBar/index.tsx | 372 + src/components/avatarBar/index.tsx | 164 + src/components/avatarInfo/index.tsx | 517 + src/components/card/characterCard.tsx | 67 + src/components/card/characterInfoCard.tsx | 117 + src/components/card/lightconeCard.tsx | 48 + src/components/card/profileCard.tsx | 73 + src/components/card/relicCard.tsx | 143 + src/components/card/showCaseCard.tsx | 665 + src/components/eidolonsInfo/index.tsx | 66 + src/components/footer/index.tsx | 11 + src/components/header/index.tsx | 602 + src/components/importBar/copy.tsx | 279 + src/components/importBar/enka.tsx | 222 + src/components/importBar/freesr.tsx | 235 + src/components/lightconeBar/index.tsx | 113 + src/components/parseText/index.tsx | 16 + src/components/relicBar/index.tsx | 439 + src/components/relicsInfo/index.tsx | 293 + src/components/select/index.tsx | 67 + .../themeController/clientThemeWrapper.tsx | 8 + src/components/themeController/index.ts | 2 + .../themeController/themeContext.tsx | 41 + src/helper/calcData.ts | 50 + src/helper/connect.ts | 87 + src/helper/convertData.ts | 89 + src/helper/converterToAvatarStore.ts | 100 + src/helper/converterToFreeSRJson.ts | 71 + src/helper/getAvatarNotExist.ts | 15 + src/helper/getName.ts | 45 + src/helper/getSkillTree.ts | 23 + src/helper/index.ts | 9 + src/helper/json.ts | 14 + src/helper/random.ts | 27 + src/helper/replaceByParam.ts | 26 + src/hooks/useChangeTheme.ts | 4 + src/lib/affixLoader.ts | 32 + src/lib/api.ts | 297 + src/lib/characterLoader.ts | 51 + src/lib/configMazeLoader.ts | 23 + src/lib/constant.ts | 128 + src/lib/lighconeLoader.ts | 51 + src/lib/relicLoader.ts | 51 + src/stores/affixStore.ts | 18 + src/stores/avatarStore.ts | 64 + src/stores/connectStore.ts | 39 + src/stores/copyProfile.ts | 61 + src/stores/enkaStore.ts | 22 + src/stores/freesrStore.ts | 18 + src/stores/globalStore.ts | 13 + src/stores/lightconeStore.ts | 54 + src/stores/localeStore.ts | 23 + src/stores/mazeStore.ts | 28 + src/stores/modelStore.ts | 34 + src/stores/relicMakerStore.ts | 214 + src/stores/relicStore.ts | 44 + src/stores/userDataStore.ts | 37 + src/types/affix.ts | 6 + src/types/card.ts | 25 + src/types/characterBasic.ts | 23 + src/types/characterDetail.ts | 160 + src/types/config_maze.ts | 26 + src/types/enka.ts | 100 + src/types/filter.ts | 20 + src/types/index.ts | 13 + src/types/lightconeBasic.ts | 17 + src/types/lightconeDetail.ts | 38 + src/types/mics.ts | 71 + src/types/relicBasic.ts | 28 + src/types/relicDetail.ts | 18 + src/types/srtools.ts | 79 + src/zod/affix.zod.ts | 9 + src/zod/card.zod.ts | 21 + src/zod/characterBasic.zod.ts | 15 + src/zod/characterDetail.zod.ts | 163 + src/zod/config_maze.zod.ts | 28 + src/zod/enka.zod.ts | 100 + src/zod/filter.zod.ts | 22 + src/zod/index.ts | 13 + src/zod/lightconeBasic.zod.ts | 12 + src/zod/lightconeDetail.zod.ts | 43 + src/zod/mics.zod.ts | 82 + src/zod/relicBasic.zod.ts | 10 + src/zod/relicDetail.zod.ts | 20 + src/zod/srtools.zod.ts | 82 + tsconfig.json | 27 +- 156 files changed, 1206219 insertions(+), 146 deletions(-) create mode 100644 .gitea/workflows/build.yml create mode 100644 Dockerfile create mode 100644 data/characters.cn.json create mode 100644 data/characters.en.json create mode 100644 data/characters.jp.json create mode 100644 data/characters.kr.json create mode 100644 data/config_maze.json create mode 100644 data/lightcones.cn.json create mode 100644 data/lightcones.en.json create mode 100644 data/lightcones.jp.json create mode 100644 data/lightcones.kr.json create mode 100644 data/main_affixes.json create mode 100644 data/relics.cn.json create mode 100644 data/relics.en.json create mode 100644 data/relics.jp.json create mode 100644 data/relics.kr.json create mode 100644 data/sub_affixes.json create mode 100644 docker-compose.yml create mode 100644 i18n/request.ts create mode 100644 messages/cn.json create mode 100644 messages/en.json create mode 100644 messages/ja.json create mode 100644 messages/ko.json create mode 100644 messages/vi.json create mode 100644 messages/zh.json create mode 100644 public/icon/attack.webp create mode 100644 public/icon/break-effect.webp create mode 100644 public/icon/crit-damage.webp create mode 100644 public/icon/crit-rate.webp create mode 100644 public/icon/defence.webp create mode 100644 public/icon/effect-hit-rate.webp create mode 100644 public/icon/effect-res.webp create mode 100644 public/icon/energy-rate.webp create mode 100644 public/icon/fire.webp create mode 100644 public/icon/healing-boost.webp create mode 100644 public/icon/hp.webp create mode 100644 public/icon/ice.webp create mode 100644 public/icon/imaginary.webp create mode 100644 public/icon/physical.webp create mode 100644 public/icon/quantum.webp create mode 100644 public/icon/speed.webp create mode 100644 public/icon/thunder.webp create mode 100644 public/icon/wind.webp create mode 100644 public/relics/BODY.png create mode 100644 public/relics/FOOT.png create mode 100644 public/relics/HAND.png create mode 100644 public/relics/HEAD.png create mode 100644 public/relics/NECK.png create mode 100644 public/relics/OBJECT.png create mode 100644 script/auto-gen.bat create mode 100644 src/app/api/[locale]/characters/[id]/route.ts create mode 100644 src/app/api/[locale]/characters/route.ts create mode 100644 src/app/api/[locale]/lightcones/[id]/route.ts create mode 100644 src/app/api/[locale]/lightcones/route.ts create mode 100644 src/app/api/[locale]/relics/[id]/route.ts create mode 100644 src/app/api/[locale]/relics/route.ts create mode 100644 src/app/api/config-maze/route.ts create mode 100644 src/app/api/main-affixes/route.ts create mode 100644 src/app/api/proxy/route.ts create mode 100644 src/app/api/sub-affixes/route.ts create mode 100644 src/app/eidolons-info/page.tsx create mode 100644 src/app/icon.png create mode 100644 src/app/relics-info/page.tsx create mode 100644 src/components/actionBar/index.tsx create mode 100644 src/components/avatarBar/index.tsx create mode 100644 src/components/avatarInfo/index.tsx create mode 100644 src/components/card/characterCard.tsx create mode 100644 src/components/card/characterInfoCard.tsx create mode 100644 src/components/card/lightconeCard.tsx create mode 100644 src/components/card/profileCard.tsx create mode 100644 src/components/card/relicCard.tsx create mode 100644 src/components/card/showCaseCard.tsx create mode 100644 src/components/eidolonsInfo/index.tsx create mode 100644 src/components/footer/index.tsx create mode 100644 src/components/header/index.tsx create mode 100644 src/components/importBar/copy.tsx create mode 100644 src/components/importBar/enka.tsx create mode 100644 src/components/importBar/freesr.tsx create mode 100644 src/components/lightconeBar/index.tsx create mode 100644 src/components/parseText/index.tsx create mode 100644 src/components/relicBar/index.tsx create mode 100644 src/components/relicsInfo/index.tsx create mode 100644 src/components/select/index.tsx create mode 100644 src/components/themeController/clientThemeWrapper.tsx create mode 100644 src/components/themeController/index.ts create mode 100644 src/components/themeController/themeContext.tsx create mode 100644 src/helper/calcData.ts create mode 100644 src/helper/connect.ts create mode 100644 src/helper/convertData.ts create mode 100644 src/helper/converterToAvatarStore.ts create mode 100644 src/helper/converterToFreeSRJson.ts create mode 100644 src/helper/getAvatarNotExist.ts create mode 100644 src/helper/getName.ts create mode 100644 src/helper/getSkillTree.ts create mode 100644 src/helper/index.ts create mode 100644 src/helper/json.ts create mode 100644 src/helper/random.ts create mode 100644 src/helper/replaceByParam.ts create mode 100644 src/hooks/useChangeTheme.ts create mode 100644 src/lib/affixLoader.ts create mode 100644 src/lib/api.ts create mode 100644 src/lib/characterLoader.ts create mode 100644 src/lib/configMazeLoader.ts create mode 100644 src/lib/constant.ts create mode 100644 src/lib/lighconeLoader.ts create mode 100644 src/lib/relicLoader.ts create mode 100644 src/stores/affixStore.ts create mode 100644 src/stores/avatarStore.ts create mode 100644 src/stores/connectStore.ts create mode 100644 src/stores/copyProfile.ts create mode 100644 src/stores/enkaStore.ts create mode 100644 src/stores/freesrStore.ts create mode 100644 src/stores/globalStore.ts create mode 100644 src/stores/lightconeStore.ts create mode 100644 src/stores/localeStore.ts create mode 100644 src/stores/mazeStore.ts create mode 100644 src/stores/modelStore.ts create mode 100644 src/stores/relicMakerStore.ts create mode 100644 src/stores/relicStore.ts create mode 100644 src/stores/userDataStore.ts create mode 100644 src/types/affix.ts create mode 100644 src/types/card.ts create mode 100644 src/types/characterBasic.ts create mode 100644 src/types/characterDetail.ts create mode 100644 src/types/config_maze.ts create mode 100644 src/types/enka.ts create mode 100644 src/types/filter.ts create mode 100644 src/types/index.ts create mode 100644 src/types/lightconeBasic.ts create mode 100644 src/types/lightconeDetail.ts create mode 100644 src/types/mics.ts create mode 100644 src/types/relicBasic.ts create mode 100644 src/types/relicDetail.ts create mode 100644 src/types/srtools.ts create mode 100644 src/zod/affix.zod.ts create mode 100644 src/zod/card.zod.ts create mode 100644 src/zod/characterBasic.zod.ts create mode 100644 src/zod/characterDetail.zod.ts create mode 100644 src/zod/config_maze.zod.ts create mode 100644 src/zod/enka.zod.ts create mode 100644 src/zod/filter.zod.ts create mode 100644 src/zod/index.ts create mode 100644 src/zod/lightconeBasic.zod.ts create mode 100644 src/zod/lightconeDetail.zod.ts create mode 100644 src/zod/mics.zod.ts create mode 100644 src/zod/relicBasic.zod.ts create mode 100644 src/zod/relicDetail.zod.ts create mode 100644 src/zod/srtools.zod.ts diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..6181b12 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,25 @@ +name: Gitea Auto Deploy +run-name: ${{ gitea.actor }} pushed code 🚀 + +on: [push] + +jobs: + Deploy-Container: + runs-on: ubuntu-latest + + steps: + - name: Check out latest code + uses: actions/checkout@v4 + + - name: Stop and remove old containers + run: | + docker compose down || true + + - name: Remove unused Docker resources + run: | + docker system prune -a --volumes -f + + - name: Build and restart containers + run: | + docker compose pull + docker compose up -d --build \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6a98298 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,59 @@ +FROM oven/bun:canary-alpine AS base + +# Install dependencies only when needed +FROM base AS deps + +WORKDIR /app + +# Install dependencies +COPY package.json bun.lock ./ +RUN bun install --frozen-lockfile + +# Rebuild the source code only when needed +FROM base AS builder +WORKDIR /app +COPY --from=deps /app/node_modules ./node_modules +COPY . . + +# Next.js collects completely anonymous telemetry data about general usage. +# Learn more here: https://nextjs.org/telemetry +# Disable telemetry during the build +ENV NEXT_TELEMETRY_DISABLED=1 + +RUN bun run build + +# Production image, copy all the files and run next +FROM base AS runner +WORKDIR /app + +ENV NODE_ENV=production + +# Disable telemetry +ENV NEXT_TELEMETRY_DISABLED=1 + +RUN adduser --system --uid 1001 nextjs + +COPY --from=builder /app/public ./public + +COPY --from=builder /app/data ./data +COPY --from=builder /app/messages ./messages + +# Set the correct permission for prerender cache +RUN mkdir .next +RUN chown nextjs:bun .next + +# Automatically leverage output traces to reduce image size +# https://nextjs.org/docs/advanced-features/output-file-tracing +COPY --from=builder --chown=nextjs:bun /app/.next/standalone ./ +COPY --from=builder --chown=nextjs:bun /app/.next/static ./.next/static + +USER nextjs + +EXPOSE 3000 + +ENV PORT=3000 + +# Set hostname to localhost +ENV HOSTNAME=0.0.0.0 + +CMD ["bun", "server.js"] diff --git a/bun.lock b/bun.lock index 5243c99..411bddf 100644 --- a/bun.lock +++ b/bun.lock @@ -4,19 +4,31 @@ "": { "name": "firefly-tools", "dependencies": { + "axios": "^1.10.0", + "framer-motion": "^12.12.1", "next": "15.3.2", + "next-intl": "^4.1.0", "react": "^19.0.0", "react-dom": "^19.0.0", + "react-select": "^5.10.1", + "react-toastify": "^11.0.5", + "socket.io-client": "^4.8.1", + "zod": "^3.25.67", + "zustand": "^5.0.5", }, "devDependencies": { "@eslint/eslintrc": "^3", "@tailwindcss/postcss": "^4", + "@types/jest": "^29.5.14", "@types/node": "^20", "@types/react": "^19", "@types/react-dom": "^19", + "daisyui": "^5.0.27", "eslint": "^9", - "eslint-config-next": "15.3.2", + "eslint-config-next": "15.3.1", + "tailwind-scrollbar": "^4.0.2", "tailwindcss": "^4", + "ts-to-zod": "^3.15.0", "typescript": "^5", }, }, @@ -26,12 +38,54 @@ "@ampproject/remapping": ["@ampproject/remapping@2.3.0", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="], + "@babel/code-frame": ["@babel/code-frame@7.27.1", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg=="], + + "@babel/generator": ["@babel/generator@7.27.5", "", { "dependencies": { "@babel/parser": "^7.27.5", "@babel/types": "^7.27.3", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw=="], + + "@babel/helper-module-imports": ["@babel/helper-module-imports@7.27.1", "", { "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w=="], + + "@babel/helper-string-parser": ["@babel/helper-string-parser@7.27.1", "", {}, "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="], + + "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.27.1", "", {}, "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="], + + "@babel/parser": ["@babel/parser@7.27.7", "", { "dependencies": { "@babel/types": "^7.27.7" }, "bin": "./bin/babel-parser.js" }, "sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q=="], + + "@babel/runtime": ["@babel/runtime@7.27.6", "", {}, "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q=="], + + "@babel/template": ["@babel/template@7.27.2", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/parser": "^7.27.2", "@babel/types": "^7.27.1" } }, "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw=="], + + "@babel/traverse": ["@babel/traverse@7.27.7", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.27.5", "@babel/parser": "^7.27.7", "@babel/template": "^7.27.2", "@babel/types": "^7.27.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw=="], + + "@babel/types": ["@babel/types@7.27.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1" } }, "sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw=="], + "@emnapi/core": ["@emnapi/core@1.4.3", "", { "dependencies": { "@emnapi/wasi-threads": "1.0.2", "tslib": "^2.4.0" } }, "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g=="], "@emnapi/runtime": ["@emnapi/runtime@1.4.3", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ=="], "@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.0.2", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA=="], + "@emotion/babel-plugin": ["@emotion/babel-plugin@11.13.5", "", { "dependencies": { "@babel/helper-module-imports": "^7.16.7", "@babel/runtime": "^7.18.3", "@emotion/hash": "^0.9.2", "@emotion/memoize": "^0.9.0", "@emotion/serialize": "^1.3.3", "babel-plugin-macros": "^3.1.0", "convert-source-map": "^1.5.0", "escape-string-regexp": "^4.0.0", "find-root": "^1.1.0", "source-map": "^0.5.7", "stylis": "4.2.0" } }, "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ=="], + + "@emotion/cache": ["@emotion/cache@11.14.0", "", { "dependencies": { "@emotion/memoize": "^0.9.0", "@emotion/sheet": "^1.4.0", "@emotion/utils": "^1.4.2", "@emotion/weak-memoize": "^0.4.0", "stylis": "4.2.0" } }, "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA=="], + + "@emotion/hash": ["@emotion/hash@0.9.2", "", {}, "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g=="], + + "@emotion/memoize": ["@emotion/memoize@0.9.0", "", {}, "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ=="], + + "@emotion/react": ["@emotion/react@11.14.0", "", { "dependencies": { "@babel/runtime": "^7.18.3", "@emotion/babel-plugin": "^11.13.5", "@emotion/cache": "^11.14.0", "@emotion/serialize": "^1.3.3", "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0", "@emotion/utils": "^1.4.2", "@emotion/weak-memoize": "^0.4.0", "hoist-non-react-statics": "^3.3.1" }, "peerDependencies": { "react": ">=16.8.0" } }, "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA=="], + + "@emotion/serialize": ["@emotion/serialize@1.3.3", "", { "dependencies": { "@emotion/hash": "^0.9.2", "@emotion/memoize": "^0.9.0", "@emotion/unitless": "^0.10.0", "@emotion/utils": "^1.4.2", "csstype": "^3.0.2" } }, "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA=="], + + "@emotion/sheet": ["@emotion/sheet@1.4.0", "", {}, "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg=="], + + "@emotion/unitless": ["@emotion/unitless@0.10.0", "", {}, "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg=="], + + "@emotion/use-insertion-effect-with-fallbacks": ["@emotion/use-insertion-effect-with-fallbacks@1.2.0", "", { "peerDependencies": { "react": ">=16.8.0" } }, "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg=="], + + "@emotion/utils": ["@emotion/utils@1.4.2", "", {}, "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA=="], + + "@emotion/weak-memoize": ["@emotion/weak-memoize@0.4.0", "", {}, "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg=="], + "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.7.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw=="], "@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.1", "", {}, "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ=="], @@ -50,6 +104,22 @@ "@eslint/plugin-kit": ["@eslint/plugin-kit@0.3.1", "", { "dependencies": { "@eslint/core": "^0.14.0", "levn": "^0.4.1" } }, "sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w=="], + "@floating-ui/core": ["@floating-ui/core@1.7.2", "", { "dependencies": { "@floating-ui/utils": "^0.2.10" } }, "sha512-wNB5ooIKHQc+Kui96jE/n69rHFWAVoxn5CAzL1Xdd8FG03cgY3MLO+GF9U3W737fYDSgPWA6MReKhBQBop6Pcw=="], + + "@floating-ui/dom": ["@floating-ui/dom@1.7.2", "", { "dependencies": { "@floating-ui/core": "^1.7.2", "@floating-ui/utils": "^0.2.10" } }, "sha512-7cfaOQuCS27HD7DX+6ib2OrnW+b4ZBwDNnCcT0uTyidcmyWb03FnQqJybDBoCnpdxwBSfA94UAYlRCt7mV+TbA=="], + + "@floating-ui/utils": ["@floating-ui/utils@0.2.10", "", {}, "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ=="], + + "@formatjs/ecma402-abstract": ["@formatjs/ecma402-abstract@2.3.4", "", { "dependencies": { "@formatjs/fast-memoize": "2.2.7", "@formatjs/intl-localematcher": "0.6.1", "decimal.js": "^10.4.3", "tslib": "^2.8.0" } }, "sha512-qrycXDeaORzIqNhBOx0btnhpD1c+/qFIHAN9znofuMJX6QBwtbrmlpWfD4oiUUD2vJUOIYFA/gYtg2KAMGG7sA=="], + + "@formatjs/fast-memoize": ["@formatjs/fast-memoize@2.2.7", "", { "dependencies": { "tslib": "^2.8.0" } }, "sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ=="], + + "@formatjs/icu-messageformat-parser": ["@formatjs/icu-messageformat-parser@2.11.2", "", { "dependencies": { "@formatjs/ecma402-abstract": "2.3.4", "@formatjs/icu-skeleton-parser": "1.8.14", "tslib": "^2.8.0" } }, "sha512-AfiMi5NOSo2TQImsYAg8UYddsNJ/vUEv/HaNqiFjnI3ZFfWihUtD5QtuX6kHl8+H+d3qvnE/3HZrfzgdWpsLNA=="], + + "@formatjs/icu-skeleton-parser": ["@formatjs/icu-skeleton-parser@1.8.14", "", { "dependencies": { "@formatjs/ecma402-abstract": "2.3.4", "tslib": "^2.8.0" } }, "sha512-i4q4V4qslThK4Ig8SxyD76cp3+QJ3sAqr7f6q9VVfeGtxG9OhiAk3y9XF6Q41OymsKzsGQ6OQQoJNY4/lI8TcQ=="], + + "@formatjs/intl-localematcher": ["@formatjs/intl-localematcher@0.5.10", "", { "dependencies": { "tslib": "2" } }, "sha512-af3qATX+m4Rnd9+wHcjJ4w2ijq+rAVP3CCinJQvFv1kgSu1W6jypUmvleJxcewdxmutM8dmIRZFxO/IQBZmP2Q=="], + "@humanfs/core": ["@humanfs/core@0.19.1", "", {}, "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="], "@humanfs/node": ["@humanfs/node@0.16.6", "", { "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.3.0" } }, "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw=="], @@ -102,6 +172,12 @@ "@isaacs/fs-minipass": ["@isaacs/fs-minipass@4.0.1", "", { "dependencies": { "minipass": "^7.0.4" } }, "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w=="], + "@jest/expect-utils": ["@jest/expect-utils@29.7.0", "", { "dependencies": { "jest-get-type": "^29.6.3" } }, "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA=="], + + "@jest/schemas": ["@jest/schemas@29.6.3", "", { "dependencies": { "@sinclair/typebox": "^0.27.8" } }, "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA=="], + + "@jest/types": ["@jest/types@29.6.3", "", { "dependencies": { "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^17.0.8", "chalk": "^4.0.0" } }, "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw=="], + "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.8", "", { "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA=="], "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="], @@ -116,7 +192,7 @@ "@next/env": ["@next/env@15.3.2", "", {}, "sha512-xURk++7P7qR9JG1jJtLzPzf0qEvqCN0A/T3DXf8IPMKo9/6FfjxtEffRJIIew/bIL4T3C2jLLqBor8B/zVlx6g=="], - "@next/eslint-plugin-next": ["@next/eslint-plugin-next@15.3.2", "", { "dependencies": { "fast-glob": "3.3.1" } }, "sha512-ijVRTXBgnHT33aWnDtmlG+LJD+5vhc9AKTJPquGG5NKXjpKNjc62woIhFtrAcWdBobt8kqjCoaJ0q6sDQoX7aQ=="], + "@next/eslint-plugin-next": ["@next/eslint-plugin-next@15.3.1", "", { "dependencies": { "fast-glob": "3.3.1" } }, "sha512-oEs4dsfM6iyER3jTzMm4kDSbrQJq8wZw5fmT6fg2V3SMo+kgG+cShzLfEV20senZzv8VF+puNLheiGPlBGsv2A=="], "@next/swc-darwin-arm64": ["@next/swc-darwin-arm64@15.3.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-2DR6kY/OGcokbnCsjHpNeQblqCZ85/1j6njYSkzRdpLn5At7OkSdmk7WyAmB9G0k25+VgqVZ/u356OSoQZ3z0g=="], @@ -142,10 +218,18 @@ "@nolyfill/is-core-module": ["@nolyfill/is-core-module@1.0.39", "", {}, "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA=="], + "@oclif/core": ["@oclif/core@4.4.0", "", { "dependencies": { "ansi-escapes": "^4.3.2", "ansis": "^3.17.0", "clean-stack": "^3.0.1", "cli-spinners": "^2.9.2", "debug": "^4.4.0", "ejs": "^3.1.10", "get-package-type": "^0.1.0", "indent-string": "^4.0.0", "is-wsl": "^2.2.0", "lilconfig": "^3.1.3", "minimatch": "^9.0.5", "semver": "^7.6.3", "string-width": "^4.2.3", "supports-color": "^8", "tinyglobby": "^0.2.14", "widest-line": "^3.1.0", "wordwrap": "^1.0.0", "wrap-ansi": "^7.0.0" } }, "sha512-wH5g3SLmbRutnr7UzQBSozRFEAZ7U9YGB/wFuBRr0ZghTgv5DE+KQaf6ZtU7iFb9pvkvoVRnT5XheNAtbjRDaQ=="], + "@rtsao/scc": ["@rtsao/scc@1.1.0", "", {}, "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g=="], "@rushstack/eslint-patch": ["@rushstack/eslint-patch@1.11.0", "", {}, "sha512-zxnHvoMQVqewTJr/W4pKjF0bMGiKJv1WX7bSrkl46Hg0QjESbzBROWK0Wg4RphzSOS5Jiy7eFimmM3UgMrMZbQ=="], + "@schummar/icu-type-parser": ["@schummar/icu-type-parser@1.21.5", "", {}, "sha512-bXHSaW5jRTmke9Vd0h5P7BtWZG9Znqb8gSDxZnxaGSJnGwPLDPfS+3g0BKzeWqzgZPsIVZkM7m2tbo18cm5HBw=="], + + "@sinclair/typebox": ["@sinclair/typebox@0.27.8", "", {}, "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA=="], + + "@socket.io/component-emitter": ["@socket.io/component-emitter@3.1.2", "", {}, "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA=="], + "@swc/counter": ["@swc/counter@0.1.3", "", {}, "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="], "@swc/helpers": ["@swc/helpers@0.5.15", "", { "dependencies": { "tslib": "^2.8.0" } }, "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g=="], @@ -184,16 +268,36 @@ "@types/estree": ["@types/estree@1.0.7", "", {}, "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ=="], + "@types/istanbul-lib-coverage": ["@types/istanbul-lib-coverage@2.0.6", "", {}, "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w=="], + + "@types/istanbul-lib-report": ["@types/istanbul-lib-report@3.0.3", "", { "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA=="], + + "@types/istanbul-reports": ["@types/istanbul-reports@3.0.4", "", { "dependencies": { "@types/istanbul-lib-report": "*" } }, "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ=="], + + "@types/jest": ["@types/jest@29.5.14", "", { "dependencies": { "expect": "^29.0.0", "pretty-format": "^29.0.0" } }, "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ=="], + "@types/json-schema": ["@types/json-schema@7.0.15", "", {}, "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="], "@types/json5": ["@types/json5@0.0.29", "", {}, "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="], "@types/node": ["@types/node@20.17.50", "", { "dependencies": { "undici-types": "~6.19.2" } }, "sha512-Mxiq0ULv/zo1OzOhwPqOA13I81CV/W3nvd3ChtQZRT5Cwz3cr0FKo/wMSsbTqL3EXpaBAEQhva2B8ByRkOIh9A=="], + "@types/parse-json": ["@types/parse-json@4.0.2", "", {}, "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw=="], + + "@types/prismjs": ["@types/prismjs@1.26.5", "", {}, "sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ=="], + "@types/react": ["@types/react@19.1.5", "", { "dependencies": { "csstype": "^3.0.2" } }, "sha512-piErsCVVbpMMT2r7wbawdZsq4xMvIAhQuac2gedQHysu1TZYEigE6pnFfgZT+/jQnrRuF5r+SHzuehFjfRjr4g=="], "@types/react-dom": ["@types/react-dom@19.1.5", "", { "peerDependencies": { "@types/react": "^19.0.0" } }, "sha512-CMCjrWucUBZvohgZxkjd6S9h0nZxXjzus6yDfUb+xLxYM7VvjKNH1tQrE9GWLql1XoOP4/Ds3bwFqShHUYraGg=="], + "@types/react-transition-group": ["@types/react-transition-group@4.4.12", "", { "peerDependencies": { "@types/react": "*" } }, "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w=="], + + "@types/stack-utils": ["@types/stack-utils@2.0.3", "", {}, "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw=="], + + "@types/yargs": ["@types/yargs@17.0.33", "", { "dependencies": { "@types/yargs-parser": "*" } }, "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA=="], + + "@types/yargs-parser": ["@types/yargs-parser@21.0.3", "", {}, "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ=="], + "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.32.1", "", { "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.32.1", "@typescript-eslint/type-utils": "8.32.1", "@typescript-eslint/utils": "8.32.1", "@typescript-eslint/visitor-keys": "8.32.1", "graphemer": "^1.4.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-6u6Plg9nP/J1GRpe/vcjjabo6Uc5YQPAMxsgQyGC/I0RuukiG1wIe3+Vtg3IrSCVJDmqK3j8adrtzXSENRtFgg=="], "@typescript-eslint/parser": ["@typescript-eslint/parser@8.32.1", "", { "dependencies": { "@typescript-eslint/scope-manager": "8.32.1", "@typescript-eslint/types": "8.32.1", "@typescript-eslint/typescript-estree": "8.32.1", "@typescript-eslint/visitor-keys": "8.32.1", "debug": "^4.3.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-LKMrmwCPoLhM45Z00O1ulb6jwyVr2kr3XJp+G+tSEZcbauNnScewcQwtJqXDhXeYPDEjZ8C1SjXm015CirEmGg=="], @@ -210,6 +314,8 @@ "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.32.1", "", { "dependencies": { "@typescript-eslint/types": "8.32.1", "eslint-visitor-keys": "^4.2.0" } }, "sha512-ar0tjQfObzhSaW3C3QNmTc5ofj0hDoNQ5XWrCy6zDyabdr0TWhCkClp+rywGNj/odAFBVzzJrK4tEq5M4Hmu4w=="], + "@typescript/vfs": ["@typescript/vfs@1.6.1", "", { "dependencies": { "debug": "^4.1.1" }, "peerDependencies": { "typescript": "*" } }, "sha512-JwoxboBh7Oz1v38tPbkrZ62ZXNHAk9bJ7c9x0eI5zBfBnBYGhURdbnh7Z4smN/MV48Y5OCcZb58n972UtbazsA=="], + "@unrs/resolver-binding-darwin-arm64": ["@unrs/resolver-binding-darwin-arm64@1.7.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-vxtBno4xvowwNmO/ASL0Y45TpHqmNkAaDtz4Jqb+clmcVSSl8XCG/PNFFkGsXXXS6AMjP+ja/TtNCFFa1QwLRg=="], "@unrs/resolver-binding-darwin-x64": ["@unrs/resolver-binding-darwin-x64@1.7.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-qhVa8ozu92C23Hsmv0BF4+5Dyyd5STT1FolV4whNgbY6mj3kA0qsrGPe35zNR3wAN7eFict3s4Rc2dDTPBTuFQ=="], @@ -250,7 +356,15 @@ "ajv": ["ajv@6.12.6", "", { "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="], - "ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], + "ansi-escapes": ["ansi-escapes@4.3.2", "", { "dependencies": { "type-fest": "^0.21.3" } }, "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="], + + "ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], + + "ansi-styles": ["ansi-styles@5.2.0", "", {}, "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="], + + "ansis": ["ansis@3.17.0", "", {}, "sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg=="], + + "anymatch": ["anymatch@3.1.3", "", { "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="], "argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="], @@ -274,20 +388,36 @@ "ast-types-flow": ["ast-types-flow@0.0.8", "", {}, "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ=="], + "async": ["async@3.2.6", "", {}, "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA=="], + "async-function": ["async-function@1.0.0", "", {}, "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA=="], + "asynckit": ["asynckit@0.4.0", "", {}, "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="], + "available-typed-arrays": ["available-typed-arrays@1.0.7", "", { "dependencies": { "possible-typed-array-names": "^1.0.0" } }, "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ=="], "axe-core": ["axe-core@4.10.3", "", {}, "sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg=="], + "axios": ["axios@1.10.0", "", { "dependencies": { "follow-redirects": "^1.15.6", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } }, "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw=="], + "axobject-query": ["axobject-query@4.1.0", "", {}, "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ=="], + "babel-plugin-macros": ["babel-plugin-macros@3.1.0", "", { "dependencies": { "@babel/runtime": "^7.12.5", "cosmiconfig": "^7.0.0", "resolve": "^1.19.0" } }, "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg=="], + "balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + "base64-js": ["base64-js@1.5.1", "", {}, "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="], + + "binary-extensions": ["binary-extensions@2.3.0", "", {}, "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="], + + "bl": ["bl@4.1.0", "", { "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" } }, "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="], + "brace-expansion": ["brace-expansion@1.1.11", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="], "braces": ["braces@3.0.3", "", { "dependencies": { "fill-range": "^7.1.1" } }, "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA=="], + "buffer": ["buffer@5.7.1", "", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="], + "busboy": ["busboy@1.6.0", "", { "dependencies": { "streamsearch": "^1.1.0" } }, "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA=="], "call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], @@ -300,12 +430,32 @@ "caniuse-lite": ["caniuse-lite@1.0.30001718", "", {}, "sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw=="], + "case": ["case@1.6.3", "", {}, "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ=="], + "chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="], + "chardet": ["chardet@0.7.0", "", {}, "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="], + + "chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="], + "chownr": ["chownr@3.0.0", "", {}, "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g=="], + "ci-info": ["ci-info@3.9.0", "", {}, "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="], + + "clean-stack": ["clean-stack@3.0.1", "", { "dependencies": { "escape-string-regexp": "4.0.0" } }, "sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg=="], + + "cli-cursor": ["cli-cursor@3.1.0", "", { "dependencies": { "restore-cursor": "^3.1.0" } }, "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw=="], + + "cli-spinners": ["cli-spinners@2.9.2", "", {}, "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg=="], + + "cli-width": ["cli-width@3.0.0", "", {}, "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw=="], + "client-only": ["client-only@0.0.1", "", {}, "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="], + "clone": ["clone@1.0.4", "", {}, "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="], + + "clsx": ["clsx@2.1.1", "", {}, "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA=="], + "color": ["color@4.2.3", "", { "dependencies": { "color-convert": "^2.0.1", "color-string": "^1.9.0" } }, "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A=="], "color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="], @@ -314,12 +464,20 @@ "color-string": ["color-string@1.9.1", "", { "dependencies": { "color-name": "^1.0.0", "simple-swizzle": "^0.2.2" } }, "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg=="], + "combined-stream": ["combined-stream@1.0.8", "", { "dependencies": { "delayed-stream": "~1.0.0" } }, "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="], + "concat-map": ["concat-map@0.0.1", "", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="], + "convert-source-map": ["convert-source-map@1.9.0", "", {}, "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="], + + "cosmiconfig": ["cosmiconfig@7.1.0", "", { "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", "parse-json": "^5.0.0", "path-type": "^4.0.0", "yaml": "^1.10.0" } }, "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA=="], + "cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="], "csstype": ["csstype@3.1.3", "", {}, "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="], + "daisyui": ["daisyui@5.0.37", "", {}, "sha512-PLc+MhWAqTwolygEGPDi+ac+OsFqIt9nZylTIiyVlEx8loYL7Pt7hNWb8cp5pQQ9dhjYnda1ERiuM6OsJmvPGw=="], + "damerau-levenshtein": ["damerau-levenshtein@1.0.8", "", {}, "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="], "data-view-buffer": ["data-view-buffer@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ=="], @@ -330,22 +488,40 @@ "debug": ["debug@4.4.1", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ=="], + "decimal.js": ["decimal.js@10.5.0", "", {}, "sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw=="], + "deep-is": ["deep-is@0.1.4", "", {}, "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="], + "defaults": ["defaults@1.0.4", "", { "dependencies": { "clone": "^1.0.2" } }, "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A=="], + "define-data-property": ["define-data-property@1.1.4", "", { "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "gopd": "^1.0.1" } }, "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A=="], "define-properties": ["define-properties@1.2.1", "", { "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" } }, "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg=="], + "delayed-stream": ["delayed-stream@1.0.0", "", {}, "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="], + "detect-libc": ["detect-libc@2.0.4", "", {}, "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA=="], + "diff-sequences": ["diff-sequences@29.6.3", "", {}, "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q=="], + "doctrine": ["doctrine@2.1.0", "", { "dependencies": { "esutils": "^2.0.2" } }, "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="], + "dom-helpers": ["dom-helpers@5.2.1", "", { "dependencies": { "@babel/runtime": "^7.8.7", "csstype": "^3.0.2" } }, "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA=="], + "dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="], + "ejs": ["ejs@3.1.10", "", { "dependencies": { "jake": "^10.8.5" }, "bin": { "ejs": "bin/cli.js" } }, "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA=="], + "emoji-regex": ["emoji-regex@9.2.2", "", {}, "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="], + "engine.io-client": ["engine.io-client@6.6.3", "", { "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.2.1", "ws": "~8.17.1", "xmlhttprequest-ssl": "~2.1.1" } }, "sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w=="], + + "engine.io-parser": ["engine.io-parser@5.2.3", "", {}, "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q=="], + "enhanced-resolve": ["enhanced-resolve@5.18.1", "", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" } }, "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg=="], + "error-ex": ["error-ex@1.3.2", "", { "dependencies": { "is-arrayish": "^0.2.1" } }, "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="], + "es-abstract": ["es-abstract@1.23.10", "", { "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "data-view-buffer": "^1.0.2", "data-view-byte-length": "^1.0.2", "data-view-byte-offset": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "es-set-tostringtag": "^2.1.0", "es-to-primitive": "^1.3.0", "function.prototype.name": "^1.1.8", "get-intrinsic": "^1.3.0", "get-proto": "^1.0.1", "get-symbol-description": "^1.1.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "internal-slot": "^1.1.0", "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", "is-data-view": "^1.0.2", "is-regex": "^1.2.1", "is-shared-array-buffer": "^1.0.4", "is-string": "^1.1.1", "is-typed-array": "^1.1.15", "is-weakref": "^1.1.1", "math-intrinsics": "^1.1.0", "object-inspect": "^1.13.4", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "own-keys": "^1.0.1", "regexp.prototype.flags": "^1.5.4", "safe-array-concat": "^1.1.3", "safe-push-apply": "^1.0.0", "safe-regex-test": "^1.1.0", "set-proto": "^1.0.0", "string.prototype.trim": "^1.2.10", "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.3", "typed-array-byte-length": "^1.0.3", "typed-array-byte-offset": "^1.0.4", "typed-array-length": "^1.0.7", "unbox-primitive": "^1.1.0", "which-typed-array": "^1.1.19" } }, "sha512-MtUbM072wlJNyeYAe0mhzrD+M6DIJa96CZAOBBrhDbgKnB4MApIKefcyAB1eOdYn8cUNZgvwBvEzdoAYsxgEIw=="], "es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], @@ -366,7 +542,7 @@ "eslint": ["eslint@9.27.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.20.0", "@eslint/config-helpers": "^0.2.1", "@eslint/core": "^0.14.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "9.27.0", "@eslint/plugin-kit": "^0.3.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.3.0", "eslint-visitor-keys": "^4.2.0", "espree": "^10.3.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-ixRawFQuMB9DZ7fjU3iGGganFDp3+45bPOdaRurcFHSXO1e/sYwUX/FtQZpLZJR6SjMoJH8hR2pPEAfDyCoU2Q=="], - "eslint-config-next": ["eslint-config-next@15.3.2", "", { "dependencies": { "@next/eslint-plugin-next": "15.3.2", "@rushstack/eslint-patch": "^1.10.3", "@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", "eslint-import-resolver-node": "^0.3.6", "eslint-import-resolver-typescript": "^3.5.2", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jsx-a11y": "^6.10.0", "eslint-plugin-react": "^7.37.0", "eslint-plugin-react-hooks": "^5.0.0" }, "peerDependencies": { "eslint": "^7.23.0 || ^8.0.0 || ^9.0.0", "typescript": ">=3.3.1" }, "optionalPeers": ["typescript"] }, "sha512-FerU4DYccO4FgeYFFglz0SnaKRe1ejXQrDb8kWUkTAg036YWi+jUsgg4sIGNCDhAsDITsZaL4MzBWKB6f4G1Dg=="], + "eslint-config-next": ["eslint-config-next@15.3.1", "", { "dependencies": { "@next/eslint-plugin-next": "15.3.1", "@rushstack/eslint-patch": "^1.10.3", "@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", "eslint-import-resolver-node": "^0.3.6", "eslint-import-resolver-typescript": "^3.5.2", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jsx-a11y": "^6.10.0", "eslint-plugin-react": "^7.37.0", "eslint-plugin-react-hooks": "^5.0.0" }, "peerDependencies": { "eslint": "^7.23.0 || ^8.0.0 || ^9.0.0", "typescript": ">=3.3.1" }, "optionalPeers": ["typescript"] }, "sha512-GnmyVd9TE/Ihe3RrvcafFhXErErtr2jS0JDeCSp3vWvy86AXwHsRBt0E3MqP/m8ACS1ivcsi5uaqjbhsG18qKw=="], "eslint-import-resolver-node": ["eslint-import-resolver-node@0.3.9", "", { "dependencies": { "debug": "^3.2.7", "is-core-module": "^2.13.0", "resolve": "^1.22.4" } }, "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g=="], @@ -386,6 +562,8 @@ "eslint-visitor-keys": ["eslint-visitor-keys@4.2.0", "", {}, "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw=="], + "esm": ["esm@3.2.25", "", {}, "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA=="], + "espree": ["espree@10.3.0", "", { "dependencies": { "acorn": "^8.14.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.0" } }, "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg=="], "esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="], @@ -396,6 +574,10 @@ "esutils": ["esutils@2.0.3", "", {}, "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="], + "expect": ["expect@29.7.0", "", { "dependencies": { "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", "jest-matcher-utils": "^29.7.0", "jest-message-util": "^29.7.0", "jest-util": "^29.7.0" } }, "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw=="], + + "external-editor": ["external-editor@3.1.0", "", { "dependencies": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", "tmp": "^0.0.33" } }, "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew=="], + "fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="], "fast-glob": ["fast-glob@3.3.1", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" } }, "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg=="], @@ -408,18 +590,34 @@ "fdir": ["fdir@6.4.4", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg=="], + "figures": ["figures@3.2.0", "", { "dependencies": { "escape-string-regexp": "^1.0.5" } }, "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg=="], + "file-entry-cache": ["file-entry-cache@8.0.0", "", { "dependencies": { "flat-cache": "^4.0.0" } }, "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ=="], + "filelist": ["filelist@1.0.4", "", { "dependencies": { "minimatch": "^5.0.1" } }, "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q=="], + "fill-range": ["fill-range@7.1.1", "", { "dependencies": { "to-regex-range": "^5.0.1" } }, "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg=="], + "find-root": ["find-root@1.1.0", "", {}, "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="], + "find-up": ["find-up@5.0.0", "", { "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }, "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="], "flat-cache": ["flat-cache@4.0.1", "", { "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" } }, "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw=="], "flatted": ["flatted@3.3.3", "", {}, "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg=="], + "follow-redirects": ["follow-redirects@1.15.9", "", {}, "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ=="], + "for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="], + "form-data": ["form-data@4.0.2", "", { "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "es-set-tostringtag": "^2.1.0", "mime-types": "^2.1.12" } }, "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w=="], + + "framer-motion": ["framer-motion@12.12.1", "", { "dependencies": { "motion-dom": "^12.12.1", "motion-utils": "^12.12.1", "tslib": "^2.4.0" }, "peerDependencies": { "@emotion/is-prop-valid": "*", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "optionalPeers": ["@emotion/is-prop-valid", "react", "react-dom"] }, "sha512-PFw4/GCREHI2suK/NlPSUxd+x6Rkp80uQsfCRFSOQNrm5pZif7eGtmG1VaD/UF1fW9tRBy5AaS77StatB3OJDg=="], + + "fs-extra": ["fs-extra@11.3.0", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew=="], + + "fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], + "function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="], "function.prototype.name": ["function.prototype.name@1.1.8", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "functions-have-names": "^1.2.3", "hasown": "^2.0.2", "is-callable": "^1.2.7" } }, "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q=="], @@ -428,6 +626,8 @@ "get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], + "get-package-type": ["get-package-type@0.1.0", "", {}, "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="], + "get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="], "get-symbol-description": ["get-symbol-description@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6" } }, "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg=="], @@ -460,14 +660,28 @@ "hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="], + "hoist-non-react-statics": ["hoist-non-react-statics@3.3.2", "", { "dependencies": { "react-is": "^16.7.0" } }, "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw=="], + + "iconv-lite": ["iconv-lite@0.4.24", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3" } }, "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="], + + "ieee754": ["ieee754@1.2.1", "", {}, "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="], + "ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="], "import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="], "imurmurhash": ["imurmurhash@0.1.4", "", {}, "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="], + "indent-string": ["indent-string@4.0.0", "", {}, "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="], + + "inherits": ["inherits@2.0.4", "", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="], + + "inquirer": ["inquirer@8.2.6", "", { "dependencies": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.1", "cli-cursor": "^3.1.0", "cli-width": "^3.0.0", "external-editor": "^3.0.3", "figures": "^3.0.0", "lodash": "^4.17.21", "mute-stream": "0.0.8", "ora": "^5.4.1", "run-async": "^2.4.0", "rxjs": "^7.5.5", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6", "wrap-ansi": "^6.0.1" } }, "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg=="], + "internal-slot": ["internal-slot@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "hasown": "^2.0.2", "side-channel": "^1.1.0" } }, "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw=="], + "intl-messageformat": ["intl-messageformat@10.7.16", "", { "dependencies": { "@formatjs/ecma402-abstract": "2.3.4", "@formatjs/fast-memoize": "2.2.7", "@formatjs/icu-messageformat-parser": "2.11.2", "tslib": "^2.8.0" } }, "sha512-UmdmHUmp5CIKKjSoE10la5yfU+AYJAaiYLsodbjL4lji83JNvgOQUjGaGhGrpFCb0Uh7sl7qfP1IyILa8Z40ug=="], + "is-array-buffer": ["is-array-buffer@3.0.5", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" } }, "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A=="], "is-arrayish": ["is-arrayish@0.3.2", "", {}, "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="], @@ -476,6 +690,8 @@ "is-bigint": ["is-bigint@1.1.0", "", { "dependencies": { "has-bigints": "^1.0.2" } }, "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ=="], + "is-binary-path": ["is-binary-path@2.1.0", "", { "dependencies": { "binary-extensions": "^2.0.0" } }, "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="], + "is-boolean-object": ["is-boolean-object@1.2.2", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A=="], "is-bun-module": ["is-bun-module@2.0.0", "", { "dependencies": { "semver": "^7.7.1" } }, "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ=="], @@ -488,20 +704,28 @@ "is-date-object": ["is-date-object@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "has-tostringtag": "^1.0.2" } }, "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg=="], + "is-docker": ["is-docker@2.2.1", "", { "bin": { "is-docker": "cli.js" } }, "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ=="], + "is-extglob": ["is-extglob@2.1.1", "", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="], "is-finalizationregistry": ["is-finalizationregistry@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg=="], + "is-fullwidth-code-point": ["is-fullwidth-code-point@3.0.0", "", {}, "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="], + "is-generator-function": ["is-generator-function@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "get-proto": "^1.0.0", "has-tostringtag": "^1.0.2", "safe-regex-test": "^1.1.0" } }, "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ=="], "is-glob": ["is-glob@4.0.3", "", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="], + "is-interactive": ["is-interactive@1.0.0", "", {}, "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w=="], + "is-map": ["is-map@2.0.3", "", {}, "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw=="], "is-number": ["is-number@7.0.0", "", {}, "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="], "is-number-object": ["is-number-object@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw=="], + "is-observable": ["is-observable@2.1.0", "", {}, "sha512-DailKdLb0WU+xX8K5w7VsJhapwHLZ9jjmazqCJq4X12CTgqq73TKnbRcnSLuXYPOoLQgV5IrD7ePiX/h1vnkBw=="], + "is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="], "is-set": ["is-set@2.0.3", "", {}, "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg=="], @@ -514,32 +738,54 @@ "is-typed-array": ["is-typed-array@1.1.15", "", { "dependencies": { "which-typed-array": "^1.1.16" } }, "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="], + "is-unicode-supported": ["is-unicode-supported@0.1.0", "", {}, "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw=="], + "is-weakmap": ["is-weakmap@2.0.2", "", {}, "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w=="], "is-weakref": ["is-weakref@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew=="], "is-weakset": ["is-weakset@2.0.4", "", { "dependencies": { "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" } }, "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ=="], + "is-wsl": ["is-wsl@2.2.0", "", { "dependencies": { "is-docker": "^2.0.0" } }, "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="], + "isarray": ["isarray@2.0.5", "", {}, "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="], "isexe": ["isexe@2.0.0", "", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="], "iterator.prototype": ["iterator.prototype@1.1.5", "", { "dependencies": { "define-data-property": "^1.1.4", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.6", "get-proto": "^1.0.0", "has-symbols": "^1.1.0", "set-function-name": "^2.0.2" } }, "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g=="], + "jake": ["jake@10.9.2", "", { "dependencies": { "async": "^3.2.3", "chalk": "^4.0.2", "filelist": "^1.0.4", "minimatch": "^3.1.2" }, "bin": { "jake": "bin/cli.js" } }, "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA=="], + + "jest-diff": ["jest-diff@29.7.0", "", { "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", "pretty-format": "^29.7.0" } }, "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw=="], + + "jest-get-type": ["jest-get-type@29.6.3", "", {}, "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw=="], + + "jest-matcher-utils": ["jest-matcher-utils@29.7.0", "", { "dependencies": { "chalk": "^4.0.0", "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", "pretty-format": "^29.7.0" } }, "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g=="], + + "jest-message-util": ["jest-message-util@29.7.0", "", { "dependencies": { "@babel/code-frame": "^7.12.13", "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" } }, "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w=="], + + "jest-util": ["jest-util@29.7.0", "", { "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" } }, "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA=="], + "jiti": ["jiti@2.4.2", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="], "js-tokens": ["js-tokens@4.0.0", "", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="], "js-yaml": ["js-yaml@4.1.0", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="], + "jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], + "json-buffer": ["json-buffer@3.0.1", "", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="], + "json-parse-even-better-errors": ["json-parse-even-better-errors@2.3.1", "", {}, "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="], + "json-schema-traverse": ["json-schema-traverse@0.4.1", "", {}, "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="], "json-stable-stringify-without-jsonify": ["json-stable-stringify-without-jsonify@1.0.1", "", {}, "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="], "json5": ["json5@1.0.2", "", { "dependencies": { "minimist": "^1.2.0" }, "bin": { "json5": "lib/cli.js" } }, "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA=="], + "jsonfile": ["jsonfile@6.1.0", "", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="], + "jsx-ast-utils": ["jsx-ast-utils@3.3.5", "", { "dependencies": { "array-includes": "^3.1.6", "array.prototype.flat": "^1.3.1", "object.assign": "^4.1.4", "object.values": "^1.1.6" } }, "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ=="], "keyv": ["keyv@4.5.4", "", { "dependencies": { "json-buffer": "3.0.1" } }, "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw=="], @@ -572,20 +818,36 @@ "lightningcss-win32-x64-msvc": ["lightningcss-win32-x64-msvc@1.30.1", "", { "os": "win32", "cpu": "x64" }, "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg=="], + "lilconfig": ["lilconfig@3.1.3", "", {}, "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw=="], + + "lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], + "locate-path": ["locate-path@6.0.0", "", { "dependencies": { "p-locate": "^5.0.0" } }, "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="], + "lodash": ["lodash@4.17.21", "", {}, "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="], + "lodash.merge": ["lodash.merge@4.6.2", "", {}, "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="], + "log-symbols": ["log-symbols@4.1.0", "", { "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" } }, "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg=="], + "loose-envify": ["loose-envify@1.4.0", "", { "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, "bin": { "loose-envify": "cli.js" } }, "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="], "magic-string": ["magic-string@0.30.17", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0" } }, "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA=="], "math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="], + "memoize-one": ["memoize-one@6.0.0", "", {}, "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw=="], + "merge2": ["merge2@1.4.1", "", {}, "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="], "micromatch": ["micromatch@4.0.8", "", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA=="], + "mime-db": ["mime-db@1.52.0", "", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="], + + "mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="], + + "mimic-fn": ["mimic-fn@2.1.0", "", {}, "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="], + "minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="], "minimist": ["minimist@1.2.8", "", {}, "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="], @@ -596,16 +858,28 @@ "mkdirp": ["mkdirp@3.0.1", "", { "bin": { "mkdirp": "dist/cjs/src/bin.js" } }, "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg=="], + "motion-dom": ["motion-dom@12.12.1", "", { "dependencies": { "motion-utils": "^12.12.1" } }, "sha512-GXq/uUbZBEiFFE+K1Z/sxdPdadMdfJ/jmBALDfIuHGi0NmtealLOfH9FqT+6aNPgVx8ilq0DtYmyQlo6Uj9LKQ=="], + + "motion-utils": ["motion-utils@12.12.1", "", {}, "sha512-f9qiqUHm7hWSLlNW8gS9pisnsN7CRFRD58vNjptKdsqFLpkVnX00TNeD6Q0d27V9KzT7ySFyK1TZ/DShfVOv6w=="], + "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="], + "mute-stream": ["mute-stream@0.0.8", "", {}, "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="], + "nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], "napi-postinstall": ["napi-postinstall@0.2.4", "", { "bin": { "napi-postinstall": "lib/cli.js" } }, "sha512-ZEzHJwBhZ8qQSbknHqYcdtQVr8zUgGyM/q6h6qAyhtyVMNrSgDhrC4disf03dYW0e+czXyLnZINnCTEkWy0eJg=="], "natural-compare": ["natural-compare@1.4.0", "", {}, "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="], + "negotiator": ["negotiator@1.0.0", "", {}, "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg=="], + "next": ["next@15.3.2", "", { "dependencies": { "@next/env": "15.3.2", "@swc/counter": "0.1.3", "@swc/helpers": "0.5.15", "busboy": "1.6.0", "caniuse-lite": "^1.0.30001579", "postcss": "8.4.31", "styled-jsx": "5.1.6" }, "optionalDependencies": { "@next/swc-darwin-arm64": "15.3.2", "@next/swc-darwin-x64": "15.3.2", "@next/swc-linux-arm64-gnu": "15.3.2", "@next/swc-linux-arm64-musl": "15.3.2", "@next/swc-linux-x64-gnu": "15.3.2", "@next/swc-linux-x64-musl": "15.3.2", "@next/swc-win32-arm64-msvc": "15.3.2", "@next/swc-win32-x64-msvc": "15.3.2", "sharp": "^0.34.1" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", "@playwright/test": "^1.41.2", "babel-plugin-react-compiler": "*", "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "sass": "^1.3.0" }, "optionalPeers": ["@opentelemetry/api", "@playwright/test", "babel-plugin-react-compiler", "sass"], "bin": { "next": "dist/bin/next" } }, "sha512-CA3BatMyHkxZ48sgOCLdVHjFU36N7TF1HhqAHLFOkV6buwZnvMI84Cug8xD56B9mCuKrqXnLn94417GrZ/jjCQ=="], + "next-intl": ["next-intl@4.1.0", "", { "dependencies": { "@formatjs/intl-localematcher": "^0.5.4", "negotiator": "^1.0.0", "use-intl": "^4.1.0" }, "peerDependencies": { "next": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0 || ^19.0.0", "typescript": "^5.0.0" }, "optionalPeers": ["typescript"] }, "sha512-JNJRjc7sdnfUxhZmGcvzDszZ60tQKrygV/VLsgzXhnJDxQPn1cN2rVpc53adA1SvBJwPK2O6Sc6b4gYSILjCzw=="], + + "normalize-path": ["normalize-path@3.0.0", "", {}, "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="], + "object-assign": ["object-assign@4.1.1", "", {}, "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="], "object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], @@ -622,8 +896,16 @@ "object.values": ["object.values@1.2.1", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA=="], + "observable-fns": ["observable-fns@0.6.1", "", {}, "sha512-9gRK4+sRWzeN6AOewNBTLXir7Zl/i3GB6Yl26gK4flxz8BXVpD3kt8amREmWNb0mxYOGDotvE5a4N+PtGGKdkg=="], + + "onetime": ["onetime@5.1.2", "", { "dependencies": { "mimic-fn": "^2.1.0" } }, "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="], + "optionator": ["optionator@0.9.4", "", { "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" } }, "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g=="], + "ora": ["ora@5.4.1", "", { "dependencies": { "bl": "^4.1.0", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", "cli-spinners": "^2.5.0", "is-interactive": "^1.0.0", "is-unicode-supported": "^0.1.0", "log-symbols": "^4.1.0", "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" } }, "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ=="], + + "os-tmpdir": ["os-tmpdir@1.0.2", "", {}, "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g=="], + "own-keys": ["own-keys@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.2.6", "object-keys": "^1.1.1", "safe-push-apply": "^1.0.0" } }, "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg=="], "p-limit": ["p-limit@3.1.0", "", { "dependencies": { "yocto-queue": "^0.1.0" } }, "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="], @@ -632,15 +914,19 @@ "parent-module": ["parent-module@1.0.1", "", { "dependencies": { "callsites": "^3.0.0" } }, "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="], + "parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], + "path-exists": ["path-exists@4.0.0", "", {}, "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="], "path-key": ["path-key@3.1.1", "", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="], "path-parse": ["path-parse@1.0.7", "", {}, "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="], + "path-type": ["path-type@4.0.0", "", {}, "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="], + "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - "picomatch": ["picomatch@4.0.2", "", {}, "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="], + "picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], "possible-typed-array-names": ["possible-typed-array-names@1.1.0", "", {}, "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg=="], @@ -648,8 +934,16 @@ "prelude-ls": ["prelude-ls@1.2.1", "", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="], + "prettier": ["prettier@3.0.3", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg=="], + + "pretty-format": ["pretty-format@29.7.0", "", { "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" } }, "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ=="], + + "prism-react-renderer": ["prism-react-renderer@2.4.1", "", { "dependencies": { "@types/prismjs": "^1.26.0", "clsx": "^2.0.0" }, "peerDependencies": { "react": ">=16.0.0" } }, "sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig=="], + "prop-types": ["prop-types@15.8.1", "", { "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="], + "proxy-from-env": ["proxy-from-env@1.1.0", "", {}, "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="], + "punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="], "queue-microtask": ["queue-microtask@1.2.3", "", {}, "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="], @@ -658,7 +952,17 @@ "react-dom": ["react-dom@19.1.0", "", { "dependencies": { "scheduler": "^0.26.0" }, "peerDependencies": { "react": "^19.1.0" } }, "sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g=="], - "react-is": ["react-is@16.13.1", "", {}, "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="], + "react-is": ["react-is@18.3.1", "", {}, "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="], + + "react-select": ["react-select@5.10.1", "", { "dependencies": { "@babel/runtime": "^7.12.0", "@emotion/cache": "^11.4.0", "@emotion/react": "^11.8.1", "@floating-ui/dom": "^1.0.1", "@types/react-transition-group": "^4.4.0", "memoize-one": "^6.0.0", "prop-types": "^15.6.0", "react-transition-group": "^4.3.0", "use-isomorphic-layout-effect": "^1.2.0" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-roPEZUL4aRZDx6DcsD+ZNreVl+fM8VsKn0Wtex1v4IazH60ILp5xhdlp464IsEAlJdXeD+BhDAFsBVMfvLQueA=="], + + "react-toastify": ["react-toastify@11.0.5", "", { "dependencies": { "clsx": "^2.1.1" }, "peerDependencies": { "react": "^18 || ^19", "react-dom": "^18 || ^19" } }, "sha512-EpqHBGvnSTtHYhCPLxML05NLY2ZX0JURbAdNYa6BUkk+amz4wbKBQvoKQAB0ardvSarUBuY4Q4s1sluAzZwkmA=="], + + "react-transition-group": ["react-transition-group@4.4.5", "", { "dependencies": { "@babel/runtime": "^7.5.5", "dom-helpers": "^5.0.1", "loose-envify": "^1.4.0", "prop-types": "^15.6.2" }, "peerDependencies": { "react": ">=16.6.0", "react-dom": ">=16.6.0" } }, "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g=="], + + "readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="], + + "readdirp": ["readdirp@3.6.0", "", { "dependencies": { "picomatch": "^2.2.1" } }, "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="], "reflect.getprototypeof": ["reflect.getprototypeof@1.0.10", "", { "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.9", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.7", "get-proto": "^1.0.1", "which-builtin-type": "^1.2.1" } }, "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw=="], @@ -670,16 +974,26 @@ "resolve-pkg-maps": ["resolve-pkg-maps@1.0.0", "", {}, "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw=="], + "restore-cursor": ["restore-cursor@3.1.0", "", { "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" } }, "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA=="], + "reusify": ["reusify@1.1.0", "", {}, "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw=="], + "run-async": ["run-async@2.4.1", "", {}, "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ=="], + "run-parallel": ["run-parallel@1.2.0", "", { "dependencies": { "queue-microtask": "^1.2.2" } }, "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="], + "rxjs": ["rxjs@7.8.2", "", { "dependencies": { "tslib": "^2.1.0" } }, "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA=="], + "safe-array-concat": ["safe-array-concat@1.1.3", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "has-symbols": "^1.1.0", "isarray": "^2.0.5" } }, "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q=="], + "safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], + "safe-push-apply": ["safe-push-apply@1.0.0", "", { "dependencies": { "es-errors": "^1.3.0", "isarray": "^2.0.5" } }, "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA=="], "safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="], + "safer-buffer": ["safer-buffer@2.1.2", "", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="], + "scheduler": ["scheduler@0.26.0", "", {}, "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA=="], "semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], @@ -704,14 +1018,28 @@ "side-channel-weakmap": ["side-channel-weakmap@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" } }, "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="], + "signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="], + "simple-swizzle": ["simple-swizzle@0.2.2", "", { "dependencies": { "is-arrayish": "^0.3.1" } }, "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg=="], + "slash": ["slash@3.0.0", "", {}, "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="], + + "socket.io-client": ["socket.io-client@4.8.1", "", { "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", "engine.io-client": "~6.6.1", "socket.io-parser": "~4.2.4" } }, "sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ=="], + + "socket.io-parser": ["socket.io-parser@4.2.4", "", { "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1" } }, "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew=="], + + "source-map": ["source-map@0.5.7", "", {}, "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ=="], + "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="], "stable-hash": ["stable-hash@0.0.5", "", {}, "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA=="], + "stack-utils": ["stack-utils@2.0.6", "", { "dependencies": { "escape-string-regexp": "^2.0.0" } }, "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ=="], + "streamsearch": ["streamsearch@1.1.0", "", {}, "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg=="], + "string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + "string.prototype.includes": ["string.prototype.includes@2.0.1", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.3" } }, "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg=="], "string.prototype.matchall": ["string.prototype.matchall@4.0.12", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-abstract": "^1.23.6", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.6", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "internal-slot": "^1.1.0", "regexp.prototype.flags": "^1.5.3", "set-function-name": "^2.0.2", "side-channel": "^1.1.0" } }, "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA=="], @@ -724,34 +1052,56 @@ "string.prototype.trimstart": ["string.prototype.trimstart@1.0.8", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg=="], + "string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="], + + "strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + "strip-bom": ["strip-bom@3.0.0", "", {}, "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA=="], "strip-json-comments": ["strip-json-comments@3.1.1", "", {}, "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="], "styled-jsx": ["styled-jsx@5.1.6", "", { "dependencies": { "client-only": "0.0.1" }, "peerDependencies": { "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" } }, "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA=="], + "stylis": ["stylis@4.2.0", "", {}, "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw=="], + "supports-color": ["supports-color@7.2.0", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="], "supports-preserve-symlinks-flag": ["supports-preserve-symlinks-flag@1.0.0", "", {}, "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="], + "tailwind-scrollbar": ["tailwind-scrollbar@4.0.2", "", { "dependencies": { "prism-react-renderer": "^2.4.1" }, "peerDependencies": { "tailwindcss": "4.x" } }, "sha512-wAQiIxAPqk0MNTPptVe/xoyWi27y+NRGnTwvn4PQnbvB9kp8QUBiGl/wsfoVBHnQxTmhXJSNt9NHTmcz9EivFA=="], + "tailwindcss": ["tailwindcss@4.1.7", "", {}, "sha512-kr1o/ErIdNhTz8uzAYL7TpaUuzKIE6QPQ4qmSdxnoX/lo+5wmUHQA6h3L5yIqEImSRnAAURDirLu/BgiXGPAhg=="], "tapable": ["tapable@2.2.2", "", {}, "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg=="], "tar": ["tar@7.4.3", "", { "dependencies": { "@isaacs/fs-minipass": "^4.0.0", "chownr": "^3.0.0", "minipass": "^7.1.2", "minizlib": "^3.0.1", "mkdirp": "^3.0.1", "yallist": "^5.0.0" } }, "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw=="], + "threads": ["threads@1.7.0", "", { "dependencies": { "callsites": "^3.1.0", "debug": "^4.2.0", "is-observable": "^2.1.0", "observable-fns": "^0.6.1" }, "optionalDependencies": { "tiny-worker": ">= 2" } }, "sha512-Mx5NBSHX3sQYR6iI9VYbgHKBLisyB+xROCBGjjWm1O9wb9vfLxdaGtmT/KCjUqMsSNW6nERzCW3T6H43LqjDZQ=="], + + "through": ["through@2.3.8", "", {}, "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="], + + "tiny-worker": ["tiny-worker@2.3.0", "", { "dependencies": { "esm": "^3.2.25" } }, "sha512-pJ70wq5EAqTAEl9IkGzA+fN0836rycEuz2Cn6yeZ6FRzlVS5IDOkFHpIoEsksPRQV34GDqXm65+OlnZqUSyK2g=="], + "tinyglobby": ["tinyglobby@0.2.13", "", { "dependencies": { "fdir": "^6.4.4", "picomatch": "^4.0.2" } }, "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw=="], + "tmp": ["tmp@0.0.33", "", { "dependencies": { "os-tmpdir": "~1.0.2" } }, "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="], + "to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="], "ts-api-utils": ["ts-api-utils@2.1.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ=="], + "ts-to-zod": ["ts-to-zod@3.15.0", "", { "dependencies": { "@oclif/core": ">=3.26.0", "@typescript/vfs": "^1.5.0", "case": "^1.6.3", "chokidar": "^3.5.1", "fs-extra": "^11.1.1", "inquirer": "^8.2.0", "lodash": "^4.17.21", "ora": "^5.4.0", "prettier": "3.0.3", "rxjs": "^7.4.0", "slash": "^3.0.0", "threads": "^1.7.0", "tslib": "^2.3.1", "tsutils": "^3.21.0", "typescript": "^5.2.2", "zod": "^3.23.8" }, "bin": { "ts-to-zod": "bin/run" } }, "sha512-Lu5ITqD8xCIo4JZp4Cg3iSK3J2x3TGwwuDtNHfAIlx1mXWKClRdzqV+x6CFEzhKtJlZzhyvJIqg7DzrWfsdVSg=="], + "tsconfig-paths": ["tsconfig-paths@3.15.0", "", { "dependencies": { "@types/json5": "^0.0.29", "json5": "^1.0.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" } }, "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg=="], "tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "tsutils": ["tsutils@3.21.0", "", { "dependencies": { "tslib": "^1.8.1" }, "peerDependencies": { "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="], + "type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="], + "type-fest": ["type-fest@0.21.3", "", {}, "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="], + "typed-array-buffer": ["typed-array-buffer@1.0.3", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" } }, "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="], "typed-array-byte-length": ["typed-array-byte-length@1.0.3", "", { "dependencies": { "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.14" } }, "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg=="], @@ -766,10 +1116,20 @@ "undici-types": ["undici-types@6.19.8", "", {}, "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw=="], + "universalify": ["universalify@2.0.1", "", {}, "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw=="], + "unrs-resolver": ["unrs-resolver@1.7.2", "", { "dependencies": { "napi-postinstall": "^0.2.2" }, "optionalDependencies": { "@unrs/resolver-binding-darwin-arm64": "1.7.2", "@unrs/resolver-binding-darwin-x64": "1.7.2", "@unrs/resolver-binding-freebsd-x64": "1.7.2", "@unrs/resolver-binding-linux-arm-gnueabihf": "1.7.2", "@unrs/resolver-binding-linux-arm-musleabihf": "1.7.2", "@unrs/resolver-binding-linux-arm64-gnu": "1.7.2", "@unrs/resolver-binding-linux-arm64-musl": "1.7.2", "@unrs/resolver-binding-linux-ppc64-gnu": "1.7.2", "@unrs/resolver-binding-linux-riscv64-gnu": "1.7.2", "@unrs/resolver-binding-linux-riscv64-musl": "1.7.2", "@unrs/resolver-binding-linux-s390x-gnu": "1.7.2", "@unrs/resolver-binding-linux-x64-gnu": "1.7.2", "@unrs/resolver-binding-linux-x64-musl": "1.7.2", "@unrs/resolver-binding-wasm32-wasi": "1.7.2", "@unrs/resolver-binding-win32-arm64-msvc": "1.7.2", "@unrs/resolver-binding-win32-ia32-msvc": "1.7.2", "@unrs/resolver-binding-win32-x64-msvc": "1.7.2" } }, "sha512-BBKpaylOW8KbHsu378Zky/dGh4ckT/4NW/0SHRABdqRLcQJ2dAOjDo9g97p04sWflm0kqPqpUatxReNV/dqI5A=="], "uri-js": ["uri-js@4.4.1", "", { "dependencies": { "punycode": "^2.1.0" } }, "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="], + "use-intl": ["use-intl@4.1.0", "", { "dependencies": { "@formatjs/fast-memoize": "^2.2.0", "@schummar/icu-type-parser": "1.21.5", "intl-messageformat": "^10.5.14" }, "peerDependencies": { "react": "^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0 || ^19.0.0" } }, "sha512-mQvDYFvoGn+bm/PWvlQOtluKCknsQ5a9F1Cj0hMfBjMBVTwnOqLPd6srhjvVdEQEQFVyHM1PfyifKqKYb11M9Q=="], + + "use-isomorphic-layout-effect": ["use-isomorphic-layout-effect@1.2.1", "", { "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA=="], + + "util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="], + + "wcwidth": ["wcwidth@1.0.1", "", { "dependencies": { "defaults": "^1.0.3" } }, "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg=="], + "which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="], "which-boxed-primitive": ["which-boxed-primitive@1.1.1", "", { "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", "is-number-object": "^1.1.1", "is-string": "^1.1.1", "is-symbol": "^1.1.1" } }, "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA=="], @@ -780,16 +1140,44 @@ "which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="], + "widest-line": ["widest-line@3.1.0", "", { "dependencies": { "string-width": "^4.0.0" } }, "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg=="], + "word-wrap": ["word-wrap@1.2.5", "", {}, "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="], + "wordwrap": ["wordwrap@1.0.0", "", {}, "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q=="], + + "wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "ws": ["ws@8.17.1", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ=="], + + "xmlhttprequest-ssl": ["xmlhttprequest-ssl@2.1.2", "", {}, "sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ=="], + "yallist": ["yallist@5.0.0", "", {}, "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw=="], + "yaml": ["yaml@1.10.2", "", {}, "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="], + "yocto-queue": ["yocto-queue@0.1.0", "", {}, "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="], + "zod": ["zod@3.25.67", "", {}, "sha512-idA2YXwpCdqUSKRCACDE6ItZD9TZzy3OZMtpfLoh6oPR47lipysRrJfjzMqFxQ3uJuUPyUeWe1r9vLH33xO/Qw=="], + + "zustand": ["zustand@5.0.5", "", { "peerDependencies": { "@types/react": ">=18.0.0", "immer": ">=9.0.6", "react": ">=18.0.0", "use-sync-external-store": ">=1.2.0" }, "optionalPeers": ["@types/react", "immer", "react", "use-sync-external-store"] }, "sha512-mILtRfKW9xM47hqxGIxCv12gXusoY/xTSHBYApXozR0HmQv299whhBeeAcRy+KrPPybzosvJBCOmVjq6x12fCg=="], + + "@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + "@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="], + "@formatjs/ecma402-abstract/@formatjs/intl-localematcher": ["@formatjs/intl-localematcher@0.6.1", "", { "dependencies": { "tslib": "^2.8.0" } }, "sha512-ePEgLgVCqi2BBFnTMWPfIghu6FkbZnnBVhO2sSxvLfrdFw7wCHAHiDoM2h4NRgjbaY7+B7HgOLZGkK187pZTZg=="], + "@humanfs/node/@humanwhocodes/retry": ["@humanwhocodes/retry@0.3.1", "", {}, "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA=="], + "@oclif/core/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + + "@oclif/core/semver": ["semver@7.7.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], + + "@oclif/core/supports-color": ["supports-color@8.1.1", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="], + + "@oclif/core/tinyglobby": ["tinyglobby@0.2.14", "", { "dependencies": { "fdir": "^6.4.4", "picomatch": "^4.0.2" } }, "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ=="], + "@tailwindcss/oxide-wasm32-wasi/@emnapi/core": ["@emnapi/core@1.4.3", "", { "dependencies": { "@emnapi/wasi-threads": "1.0.2", "tslib": "^2.4.0" }, "bundled": true }, "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g=="], "@tailwindcss/oxide-wasm32-wasi/@emnapi/runtime": ["@emnapi/runtime@1.4.3", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ=="], @@ -810,6 +1198,14 @@ "@typescript-eslint/typescript-estree/semver": ["semver@7.7.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], + "chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], + + "chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], + + "engine.io-client/debug": ["debug@4.3.7", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="], + + "error-ex/is-arrayish": ["is-arrayish@0.2.1", "", {}, "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="], + "eslint-import-resolver-node/debug": ["debug@3.2.7", "", { "dependencies": { "ms": "^2.1.1" } }, "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="], "eslint-module-utils/debug": ["debug@3.2.7", "", { "dependencies": { "ms": "^2.1.1" } }, "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="], @@ -820,16 +1216,48 @@ "fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], - "is-bun-module/semver": ["semver@7.7.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], + "fdir/picomatch": ["picomatch@4.0.2", "", {}, "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="], - "micromatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + "figures/escape-string-regexp": ["escape-string-regexp@1.0.5", "", {}, "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="], + + "filelist/minimatch": ["minimatch@5.1.6", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="], + + "hoist-non-react-statics/react-is": ["react-is@16.13.1", "", {}, "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="], + + "inquirer/wrap-ansi": ["wrap-ansi@6.2.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="], + + "is-bun-module/semver": ["semver@7.7.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], "next/postcss": ["postcss@8.4.31", "", { "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }, "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ=="], + "prop-types/react-is": ["react-is@16.13.1", "", {}, "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="], + "sharp/semver": ["semver@7.7.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], + "socket.io-client/debug": ["debug@4.3.7", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="], + + "socket.io-parser/debug": ["debug@4.3.7", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="], + + "stack-utils/escape-string-regexp": ["escape-string-regexp@2.0.0", "", {}, "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w=="], + + "string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], + + "tinyglobby/picomatch": ["picomatch@4.0.2", "", {}, "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="], + + "tsutils/tslib": ["tslib@1.14.1", "", {}, "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="], + + "wrap-ansi/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], + + "@oclif/core/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "@oclif/core/tinyglobby/picomatch": ["picomatch@4.0.2", "", {}, "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="], + "@typescript-eslint/typescript-estree/fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], "@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "filelist/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "inquirer/wrap-ansi/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], } } diff --git a/data/characters.cn.json b/data/characters.cn.json new file mode 100644 index 0000000..54ceaf5 --- /dev/null +++ b/data/characters.cn.json @@ -0,0 +1,261882 @@ +{ + "1001": { + "Name": "三月七", + "Desc": "一度沉睡于恒冰,对过去一无所知的少女。\\n为了寻找身世的真相,选择与星穹列车同行。\\n目前为自己准备了约六十七种「身世故事」。", + "CharaInfo": { + "Camp": "星穹列车", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "mar7th", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 100101, + "Name": "记忆中的你", + "Desc": "终结技每冻结1个目标,为三月七恢复#1[i]点能量。", + "ParamList": [ + 6 + ] + }, + "2": { + "Id": 100102, + "Name": "记忆中的它", + "Desc": "进入战斗时,为当前生命值百分比最低的我方目标提供等同于三月七#1[i]%防御力+#3[i]的护盾,持续#2[i]回合。", + "ParamList": [ + 0.24000000022351742, + 3, + 320 + ] + }, + "3": { + "Id": 100103, + "Name": "记忆中的一切", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 100104, + "Name": "不愿再失去", + "Desc": "天赋的反击效果每回合可触发的次数增加1次。使反击造成的伤害值提高,提高数值等同于三月七防御力的#1[i]%。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 100105, + "Name": "不想再忘却", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 100106, + "Name": "就这样,一直…", + "Desc": "在战技提供的护盾保护下的我方目标,每回合开始时回复等同于各自#1[i]%生命上限+#2[i]的生命值。", + "ParamList": [ + 0.0400000000372529, + 106 + ] + } + }, + "Skills": { + "100101": { + "Id": 100101, + "Name": "极寒的弓矢", + "Desc": "对指定敌方单体造成等同于三月七#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100102": { + "Id": 100102, + "Name": "可爱即是正义", + "Desc": "为指定我方单体提供能够抵消等同于三月七#1[i]%防御力+#4[i]伤害的护盾,持续#2[i]回合。\\n若该目标当前生命值百分比大于等于#3[i]%,被敌方攻击的概率大幅提高。", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3800000003539026, + 3, + 0.3000000002793968, + 190, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.40375000098720193, + 3, + 0.3000000002793968, + 304, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4275000002235174, + 3, + 0.3000000002793968, + 389.50000000046566, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.45125000085681677, + 3, + 0.3000000002793968, + 475, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.47500000009313226, + 3, + 0.3000000002793968, + 532, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.4940000001806766, + 3, + 0.3000000002793968, + 589, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5130000002682209, + 3, + 0.3000000002793968, + 631.7500000006985, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5320000003557652, + 3, + 0.3000000002793968, + 674.5000000004657, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5510000004433095, + 3, + 0.3000000002793968, + 717.2500000002328, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5700000005308539, + 3, + 0.3000000002793968, + 760, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5889999999199063, + 3, + 0.3000000002793968, + 802.7500000006985, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6080000000074506, + 3, + 0.3000000002793968, + 845.5000000004657, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6270000000949949, + 3, + 0.3000000002793968, + 888.2500000002328, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6460000001825392, + 3, + 0.3000000002793968, + 931, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6650000002700835, + 3, + 0.3000000002793968, + 973.7500000006985, + 5 + ] + } + } + }, + "100103": { + "Id": 100103, + "Name": "冰刻箭雨之时", + "Desc": "对敌方全体造成等同于三月七#1[i]%攻击力的冰属性伤害。受到攻击的敌方目标有#2[i]%基础概率陷入冻结状态,持续#3[i]回合。\\n冻结状态下,敌方目标不能行动同时每回合开始时受到等同于三月七#4[i]%攻击力的冰属性附加伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.5000000004656613, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.5000000004656613, + 1, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.5000000004656613, + 1, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.5000000004656613, + 1, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.5000000004656613, + 1, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.5000000004656613, + 1, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.5000000004656613, + 1, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.5000000004656613, + 1, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613, + 1, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.5000000004656613, + 1, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.5000000004656613, + 1, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.5000000004656613, + 1, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.5000000004656613, + 1, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.5000000004656613, + 1, + 0.7500000006984919 + ] + } + } + }, + "100104": { + "Id": 100104, + "Name": "少女的特权", + "Desc": "当持有护盾的我方目标受到敌方目标攻击后,三月七立即向攻击者发起反击,对其造成等同于三月七#1[i]%攻击力的冰属性伤害,该效果每回合可触发#2[i]次。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 2 + ] + } + } + }, + "100106": { + "Id": 100106, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100107": { + "Id": 100107, + "Name": "冻人的瞬间", + "Desc": "立即攻击敌人,进入战斗后有#1[i]%基础概率使随机敌方单体陷入冻结状态,持续#2[i]回合。\\n冻结状态下,敌方目标不能行动同时每回合开始时受到等同于三月七#3[i]%攻击力的冰属性附加伤害。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Maze.png", + "LevelUpSkillID": [ + 100107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001201, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001202, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1001101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001203, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1001202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001205, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1001102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001206, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1001205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001207, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001208, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1001103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001209, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001210, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001101, + "PointName": "纯洁", + "PointDesc": "施放战技时,解除指定我方单体的1个负面效果。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1001201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1001102, + "PointName": "加护", + "PointDesc": "战技提供的护盾持续时间增加#1[i]回合。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1001201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1001103, + "PointName": "冰咒", + "PointDesc": "施放终结技时,冻结敌方目标的基础概率提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 69.6000000005588, + "AttackAdd": 3.480000000447035, + "DefenceBase": 78, + "DefenceAdd": 3.9000000008381903, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 97.44000000040978, + "AttackAdd": 3.480000000447035, + "DefenceBase": 109.20000000018626, + "DefenceAdd": 3.9000000008381903, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 125.28000000026077, + "AttackAdd": 3.480000000447035, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 3.9000000008381903, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 153.12000000011176, + "AttackAdd": 3.480000000447035, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.9000000008381903, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 180.96000000089407, + "AttackAdd": 3.480000000447035, + "DefenceBase": 202.80000000074506, + "DefenceAdd": 3.9000000008381903, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 208.80000000074506, + "AttackAdd": 3.480000000447035, + "DefenceBase": 234, + "DefenceAdd": 3.9000000008381903, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 236.64000000059605, + "AttackAdd": 3.480000000447035, + "DefenceBase": 265.20000000018626, + "DefenceAdd": 3.9000000008381903, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1001, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 317 + ], + "PropertyList3": [ + "DefenceAddedRatio", + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta", + "DefenceAddedRatio" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusProbabilityBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 279, + 216 + ] + } + }, + "1002": { + "Name": "丹恒", + "Desc": "对自己的过去讳莫如深,清冷寡言的青年。\\n为了躲避血裔同族,选择与星穹列车同行。", + "CharaInfo": { + "Camp": "星穹列车", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "danheng", + "SPNeed": 100, + "BaseType": "Rogue", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 100201, + "Name": "穷高极天,亢盈难久", + "Desc": "当击中的敌方目标当前生命值百分比大于等于#1[i]%时,暴击率提高#2[i]%。", + "ParamList": [ + 0.5000000004656613, + 0.12000000011175871 + ] + }, + "2": { + "Id": 100202, + "Name": "威制八毒,灭却炎烟", + "Desc": "天赋的冷却时间减少1回合。", + "ParamList": [] + }, + "3": { + "Id": 100203, + "Name": "幽明变化,自在蟠跃", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 100204, + "Name": "奋迅三昧,如日空居", + "Desc": "施放终结技消灭敌方目标时,丹恒立即行动。", + "ParamList": [] + }, + "5": { + "Id": 100205, + "Name": "一渧天水,六虚洪流", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 100206, + "Name": "须绳缚身,沉潜勿用", + "Desc": "战技触发的减速状态使目标的速度额外降低#1[i]%。", + "ParamList": [ + 0.0800000000745058 + ] + } + }, + "Skills": { + "100201": { + "Id": 100201, + "Name": "云骑枪术•朔风", + "Desc": "对指定敌方单体造成等同于丹恒#1[i]%攻击力的风属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100202": { + "Id": 100202, + "Name": "云骑枪术•疾雨", + "Desc": "对指定敌方单体造成等同于丹恒#1[i]%攻击力的风属性伤害。\\n战技造成的伤害触发暴击时,有#4[i]%基础概率使受到攻击的敌方目标速度降低#2[i]%,持续#3[i]回合。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3000000002793968, + 0.12000000011175871, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4300000004004687, + 0.12000000011175871, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5600000005215406, + 0.12000000011175871, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6900000006426126, + 0.12000000011175871, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.8200000007636845, + 0.12000000011175871, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9500000008847564, + 0.12000000011175871, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.1125000002793968, + 0.12000000011175871, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.2749999999068677, + 0.12000000011175871, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.4375000002328306, + 0.12000000011175871, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.6000000005587935, + 0.12000000011175871, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.7300000006798655, + 0.12000000011175871, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.8600000008009374, + 0.12000000011175871, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.9900000009220093, + 0.12000000011175871, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.1200000001117587, + 0.12000000011175871, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.2500000002328306, + 0.12000000011175871, + 2, + 1 + ] + } + } + }, + "100203": { + "Id": 100203, + "Name": "洞天幻化,长梦一觉", + "Desc": "对指定敌方单体造成等同于丹恒#1[i]%攻击力的风属性伤害。当受到攻击的敌方目标处于减速状态时,终结技造成的伤害倍率提高#2[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058, + 1.440000000409782 + ] + } + } + }, + "100204": { + "Id": 100204, + "Name": "寸长寸强", + "Desc": "当丹恒成为我方技能的施放目标时,下一次攻击的风属性抗性穿透提高#1[i]%。该效果在#2[i]回合后可再次触发。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.19799999962560833, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.21599999978207052, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.2339999999385327, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2520000000949949, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2700000002514571, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.29250000044703484, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.31499999994412065, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3375000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3779999997932464, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3959999999497086, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4140000001061708, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.43200000026263297, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.45000000041909516, + 2 + ] + } + } + }, + "100206": { + "Id": 100206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100207": { + "Id": 100207, + "Name": "破敌锋芒", + "Desc": "使用秘技后,下一次战斗开始时丹恒攻击力提高#1[i]%,持续#2[i]回合。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Maze.png", + "LevelUpSkillID": [ + 100207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1002101, + "PointName": "潜龙", + "PointDesc": "若当前生命值百分比小于等于#1[i]%,则被敌方目标攻击的概率降低。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451, + 2 + ], + "PointID": 1002102, + "PointName": "绝影", + "PointDesc": "施放攻击后有#1[i]%固定概率使自身速度提高#2[i]%,持续#3[i]回合。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903 + ], + "PointID": 1002103, + "PointName": "罡风", + "PointDesc": "普攻对减速状态下的敌方目标造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002201, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1002101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002203, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1002202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002205, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1002102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002206, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1002205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002207, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1002103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002209, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002210, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "风属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 74.40000000037253, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 120, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 104.16000000014901, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 168, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.92000000085682, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 216, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 163.6800000006333, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 264, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 193.44000000040978, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 312, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 223.20000000018626, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 360, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 252.96000000089407, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 408, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1002, + "Set4IDList": [ + 110, + 122, + 102 + ], + "Set2IDList": [ + 311, + 301, + 309 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1003": { + "Name": "姬子", + "Desc": "星穹列车的修复者。\\n为了见证广阔的星空,选择与星穹列车同行。\\n爱好是制作手调咖啡。", + "CharaInfo": { + "Camp": "星穹列车", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "himeko", + "SPNeed": 120, + "BaseType": "Mage", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 100301, + "Name": "童年", + "Desc": "【乘胜追击】触发后,姬子的速度提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "2": { + "Id": 100302, + "Name": "邂逅", + "Desc": "对当前生命值百分比小于等于#1[i]%的敌方目标造成的伤害提高#2[i]%。", + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ] + }, + "3": { + "Id": 100303, + "Name": "自我", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 100304, + "Name": "投入", + "Desc": "施放战技对敌方目标造成弱点击破时,姬子额外获得#1[i]点充能。", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 100305, + "Name": "梦想", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 100306, + "Name": "开拓!", + "Desc": "终结技额外造成2次伤害,对随机敌方单体各造成等同于原伤害#1[i]%的火属性伤害。", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "100301": { + "Id": 100301, + "Name": "武装调律", + "Desc": "对指定敌方单体造成等同于姬子#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100302": { + "Id": 100302, + "Name": "熔核爆裂", + "Desc": "对指定敌方单体造成等同于姬子#1[i]%攻击力的火属性伤害,同时对其相邻目标造成等同于姬子#2[i]%攻击力的火属性伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 13, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "100303": { + "Id": 100303, + "Name": "天坠之火", + "Desc": "对敌方全体造成等同于姬子#1[i]%攻击力的火属性伤害,每消灭1个敌方目标额外恢复姬子#2[i]点能量。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 27, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3800000003539026, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4720000002998859, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5640000002458692, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6560000001918525, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.7480000001378357, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.840000000782311, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.955000000540167, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.0700000000651926, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.1849999998230487, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.3000000002793968, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.39200000022538, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4840000001713634, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.5760000001173466, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.66800000006333, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.760000000707805, + 5 + ] + } + } + }, + "100304": { + "Id": 100304, + "Name": "乘胜追击", + "Desc": "当有敌方目标的弱点被击破时,姬子获得充能,上限#2[i]点。\\n当我方目标施放攻击后,若姬子的充能达到上限则立即发动1次追加攻击,对敌方全体目标造成等同于姬子#1[i]%攻击力的火属性伤害,并消耗全部充能。\\n战斗开始时获得1点充能。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 3 + ] + } + } + }, + "100306": { + "Id": 100306, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100307": { + "Id": 100307, + "Name": "不完全燃烧", + "Desc": "使用秘技后,制造1片持续#4[i]秒的特殊领域。与处于特殊领域内的敌人进入战斗后,有#1[i]%基础概率使敌方目标受到的火属性伤害提高#2[i]%,持续#3[i]回合。我方制造的领域效果最多存在1个。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.10000000009313226, + 2, + 15 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Maze.png", + "LevelUpSkillID": [ + 100307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2, + 0.3000000002793968 + ], + "PointID": 1003101, + "PointName": "星火", + "PointDesc": "施放攻击后,有#1[i]%基础概率使敌方目标陷入灼烧状态,持续#2[i]回合。\\n灼烧状态下,敌方目标每回合开始时受到等同于姬子#3[i]%攻击力的火属性持续伤害。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1003102, + "PointName": "灼热", + "PointDesc": "战技对灼烧状态下的敌方目标造成的伤害提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ], + "PointID": 1003103, + "PointName": "道标", + "PointDesc": "若当前生命值百分比大于等于#1[i]%,则暴击率提高#2[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003201, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1003101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003203, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003205, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1003102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003206, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003207, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003209, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003210, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "火属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1003, + "Set4IDList": [ + 115, + 107, + 119 + ], + "Set2IDList": [ + 306, + 313, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 343, + 289 + ], + "LocalCriticalChance": 0.1500000001396984 + } + }, + "1004": { + "Name": "瓦尔特", + "Desc": "老成持重的列车组前辈。\\n享受着久违的冒险奇遇,心底埋藏的热血再度燃烧。\\n偶尔还会将经历的冒险旅程画在本子里。", + "CharaInfo": { + "Camp": "星穹列车", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "welt", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 100401, + "Name": "名的传承", + "Desc": "施放终结技后,瓦尔特获得强化,在随后#3[i]次施放普攻或战技时额外对敌方目标造成1次附加伤害。施放普攻造成的附加伤害等同于普攻伤害倍率的#1[i]%,施放战技造成的附加伤害等同于战技伤害倍率的#2[i]%。", + "ParamList": [ + 0.5000000004656613, + 0.8000000007450581, + 2 + ] + }, + "2": { + "Id": 100402, + "Name": "星的凝聚", + "Desc": "触发天赋时,瓦尔特恢复#1[i]点能量。", + "ParamList": [ + 3 + ] + }, + "3": { + "Id": 100403, + "Name": "和平的祈愿", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 100404, + "Name": "义的名号", + "Desc": "施放战技时,使受到攻击的敌方目标速度降低的基础概率提高#1[i]%。", + "ParamList": [ + 0.3500000003259629 + ] + }, + "5": { + "Id": 100405, + "Name": "善的力量", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 100406, + "Name": "光明的未来", + "Desc": "施放战技时,对随机敌方单体额外造成1次伤害。", + "ParamList": [] + } + }, + "Skills": { + "100401": { + "Id": 100401, + "Name": "重力压制", + "Desc": "对指定敌方单体造成等同于瓦尔特#1[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100402": { + "Id": 100402, + "Name": "虚空断界", + "Desc": "对指定敌方单体造成等同于瓦尔特#1[i]%攻击力的虚数属性伤害,并额外造成2次伤害。每次伤害对敌方随机单体造成等同于瓦尔特#1[i]%攻击力的虚数属性伤害。攻击命中时有#2[i]%基础概率使受到攻击的敌方目标速度降低#3[i]%,持续#4[i]回合。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 10, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.6500000006053597, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086, + 0.6600000006146729, + 0.10000000009313226, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297, + 0.6700000006239861, + 0.10000000009313226, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654, + 0.6800000006332994, + 0.10000000009313226, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898, + 0.6900000006426126, + 0.10000000009313226, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142, + 0.7000000006519258, + 0.10000000009313226, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777, + 0.7125000008381903, + 0.10000000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332, + 0.7250000003259629, + 0.10000000009313226, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968, + 0.7375000005122274, + 0.10000000009313226, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523, + 0.7500000006984919, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847, + 0.7600000007078052, + 0.10000000009313226, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091, + 0.7700000007171184, + 0.10000000009313226, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415, + 0.7800000007264316, + 0.10000000009313226, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659, + 0.7900000007357448, + 0.10000000009313226, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903, + 0.8000000007450581, + 0.10000000009313226, + 2 + ] + } + } + }, + "100403": { + "Id": 100403, + "Name": "拟似黑洞", + "Desc": "对敌方全体造成等同于瓦尔特#1[i]%攻击力的虚数属性伤害,有#3[i]%基础概率使受到攻击的敌方目标陷入禁锢状态,持续1回合。\\n禁锢状态下,敌方目标行动延后#2[f1]%,速度降低#4[i]%。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3200000002980232, + 1, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.32799999974668026, + 1, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.3359999998938292, + 1, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.3440000000409782, + 1, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.35200000018812716, + 1, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.3600000003352761, + 1, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.37000000034458935, + 1, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.3800000003539026, + 1, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.3900000003632158, + 1, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.40000000037252903, + 1, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.40799999982118607, + 1, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.41599999996833503, + 1, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.424000000115484, + 1, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.43200000026263297, + 1, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.44000000040978193, + 1, + 0.10000000009313226 + ] + } + } + }, + "100404": { + "Id": 100404, + "Name": "时空扭曲", + "Desc": "击中处于减速状态的敌方目标时,额外造成1次等同于瓦尔特#1[i]%攻击力的虚数属性附加伤害。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919 + ] + } + } + }, + "100406": { + "Id": 100406, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100407": { + "Id": 100407, + "Name": "画地为牢", + "Desc": "使用秘技后,制造1片持续#4[i]秒的特殊领域。处于特殊领域内的敌人移动速度降低#5[i]%。与处于特殊领域内的敌人进入战斗后,有#1[i]%基础概率使敌方目标陷入禁锢状态,持续1回合。\\n禁锢状态下,敌方目标行动延后#2[i]%,速度降低#3[i]%。我方制造的领域效果最多存在1个。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451, + 0.10000000009313226, + 15, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Maze.png", + "LevelUpSkillID": [ + 100407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.12000000011175871, + 2 + ], + "PointID": 1004101, + "PointName": "惩戒", + "PointDesc": "施放终结技时,有#1[i]%基础概率使目标受到的伤害提高#2[i]%,持续#3[i]回合。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1004102, + "PointName": "审判", + "PointDesc": "施放终结技时,额外恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1004103, + "PointName": "裁决", + "PointDesc": "对被弱点击破的敌方目标造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004202, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1004101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1004202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1004203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1004102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004206, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1004205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1004206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004209, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1004201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1004, + "Set4IDList": [ + 112, + 122, + 111 + ], + "Set2IDList": [ + 309, + 301, + 303 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 358, + 302 + ] + } + }, + "1005": { + "Name": "卡芙卡", + "Desc": "「星核猎手」的成员,潇洒从容的职业装丽人。\\n利用言灵术,设计令{NICKNAME}吸收星核。\\n爱好是购买及整理大衣。", + "CharaInfo": { + "Camp": "星核猎手", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "kafka", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 100501, + "Name": "无穷动!无穷", + "Desc": "天赋触发追加攻击时,有#1[i]%基础概率使目标受到的持续伤害提高#2[i]%,持续#3[i]回合。", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Id": 100502, + "Name": "狂想者,呜咽", + "Desc": "卡芙卡在场时,我方全体造成的持续伤害提高#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Id": 100503, + "Name": "我赞美,即兴", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 100504, + "Name": "把宣叙呈献给", + "Desc": "当敌方目标承受的由卡芙卡造成的触电状态产生伤害时,额外为卡芙卡恢复#1[i]点能量。", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 100505, + "Name": "只有今晚奏鸣", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 100506, + "Name": "回旋,悄悄地", + "Desc": "终结技、秘技与天赋触发的追加攻击使敌方目标陷入的触电状态的伤害倍率提高#1[i]%,并使触电状态的持续时间增加#2[i]回合。", + "ParamList": [ + 1.5600000005215406, + 1 + ] + } + }, + "Skills": { + "100501": { + "Id": 100501, + "Name": "夜间喧嚣不止", + "Desc": "对指定敌方单体造成等同于卡芙卡#1[i]%攻击力的雷属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100502": { + "Id": 100502, + "Name": "月光摩挲连绵", + "Desc": "对指定敌方单体造成等同于卡芙卡#1[i]%攻击力的雷属性伤害,同时对其相邻目标造成等同于卡芙卡#3[i]%攻击力的雷属性伤害。\\n若指定敌方单体处于持续伤害状态,其当前承受的所有持续伤害立即产生相当于原伤害#2[i]%的伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.6150000002235174, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.6300000005867332, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.6450000002514571, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.6600000006146729, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.6750000002793968, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.6937500012572855, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.7125000008381903, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.7312500011175871, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.7500000006984919, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.7650000003632158, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.7800000007264316, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.7950000003911555, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.8100000007543713, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.8250000004190952, + 0.7500000006984919 + ] + } + } + }, + "100503": { + "Id": 100503, + "Name": "悲剧尽头的颤音", + "Desc": "对敌方全体造成等同于卡芙卡#1[i]%攻击力的雷属性伤害,有#2[i]%基础概率使受到攻击的敌方目标陷入触电状态,并使其当前承受的触电状态立即产生相当于原伤害#5[i]%的伤害。触电状态持续#3[i]回合。\\n触电状态下,敌方目标每回合开始时受到等同于卡芙卡#4[i]%攻击力的雷属性持续伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.48000000044703484, + 1, + 2, + 1.1600000001490116, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5120000003371388, + 1, + 2, + 1.2687500005122274, + 0.8200000007636845 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5440000002272427, + 1, + 2, + 1.3775000001769513, + 0.840000000782311 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5760000001173466, + 1, + 2, + 1.486250000540167, + 0.8600000008009374 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6080000000074506, + 1, + 2, + 1.595000000204891, + 0.8800000008195639 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6400000005960464, + 1, + 2, + 1.7581250004004687, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6800000006332994, + 1, + 2, + 1.9756250011269003, + 0.9250000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 1, + 2, + 2.2475000000558794, + 0.9500000008847564 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7600000007078052, + 1, + 2, + 2.5737500011455268, + 0.9750000005587935 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 2, + 2.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.832000000635162, + 1, + 2, + 3.0413750007282943, + 1.0200000000186265 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8640000005252659, + 1, + 2, + 3.182750000851229, + 1.040000000037253 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8960000004153699, + 1, + 2, + 3.3241250002756715, + 1.0600000000558794 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9280000003054738, + 1, + 2, + 3.465500000398606, + 1.0800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9600000008940697, + 1, + 2, + 3.6068750012200326, + 1.1000000000931323 + ] + } + } + }, + "100504": { + "Id": 100504, + "Name": "温柔亦同残酷", + "Desc": "当卡芙卡的队友对敌方目标施放普攻后,卡芙卡立即发动追加攻击,对该目标造成等同于卡芙卡#1[i]%攻击力的雷属性伤害,并有#2[i]%基础概率使受到攻击的敌方目标陷入与终结技相同的触电状态,持续#3[i]回合,该效果每回合只能触发1次。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.4200000003911555, + 1, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5179999999236315, + 1, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6160000001545995, + 1, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7140000003855675, + 1, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8120000006165355, + 1, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9100000008475035, + 1, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.032500000204891, + 1, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.154999999795109, + 1, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.277500000083819, + 1, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.497999999905005, + 1, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.596000000135973, + 1, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.694000000366941, + 1, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.792000000597909, + 1, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.890000000828877, + 1, + 2 + ] + } + } + }, + "100506": { + "Id": 100506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100507": { + "Id": 100507, + "Name": "宽恕无关慈悲", + "Desc": "立即攻击一定范围内的所有敌人,进入战斗后对敌方全体造成等同于卡芙卡#3[i]%攻击力的雷属性伤害,同时有#1[i]%基础概率使敌方每个单体目标陷入与终结技相同的触电状态,持续#2[i]回合。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Maze.png", + "LevelUpSkillID": [ + 100507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005101, + "PointName": "折磨", + "PointDesc": "施放终结技时,敌方目标由「其当前承受的触电状态立即产生伤害」变更为「其当前承受的所有持续伤害类负面状态立即产生伤害」。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1005102, + "PointName": "掠夺", + "PointDesc": "触电状态下的敌方目标被消灭时,卡芙卡额外恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1005103, + "PointName": "荆棘", + "PointDesc": "终结技、秘技与天赋触发的追加攻击使敌方目标陷入的触电状态的基础概率提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005202, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1005203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005206, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1005206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005209, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "效果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1100501, + "Name": "无穷动!无穷", + "Desc": "施放攻击时,有#1[i]%基础概率使目标受到的持续伤害提高#2[i]%,持续#3[i]回合。", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Id": 1100502, + "Name": "狂想者,呜咽", + "Desc": "天赋触发追加攻击时,卡芙卡的攻击力提高#1[i]%,最多叠加#2[i]层,持续#3[i]回合。", + "ParamList": [ + 0.25000000023283064, + 2, + 3 + ] + }, + "3": { + "Id": 1100503, + "Name": "我赞美,即兴", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 1100504, + "Name": "把宣叙呈献给", + "Desc": "当敌方目标承受的由卡芙卡造成的触电状态产生伤害时,额外为卡芙卡恢复#1[i]点能量。", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 1100505, + "Name": "只有今晚奏鸣", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 1100506, + "Name": "回旋,悄悄地", + "Desc": "终结技、秘技与天赋触发的追加攻击使敌方目标陷入的触电状态的伤害倍率提高#1[i]%,并使触电状态的持续时间增加#2[i]回合。", + "ParamList": [ + 1.5600000005215406, + 1 + ] + } + }, + "Skills": { + "1100501": { + "Id": 1100501, + "Name": "夜间喧嚣不止", + "Desc": "对指定敌方单体造成等同于卡芙卡#1[i]%攻击力的雷属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "1100502": { + "Id": 1100502, + "Name": "月光摩挲连绵", + "Desc": "对指定敌方单体造成等同于卡芙卡#1[i]%攻击力的雷属性伤害,同时对其相邻目标造成等同于卡芙卡#3[i]%攻击力的雷属性伤害。\\n若指定敌方单体或相邻目标处于持续伤害状态,其当前承受的所有持续伤害立即产生相当于原伤害#2[i]%#4[i]%的伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.3000000002793968, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.6150000002235174, + 0.33000000030733645, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.6300000005867332, + 0.3600000003352761, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.6450000002514571, + 0.3900000003632158, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.6600000006146729, + 0.4200000003911555, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.6750000002793968, + 0.45000000041909516, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.6937500012572855, + 0.4875000002793968, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.7125000008381903, + 0.5250000001396984, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.7312500011175871, + 0.5625000006984919, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.7500000006984919, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.7650000003632158, + 0.6300000005867332, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.7800000007264316, + 0.6600000006146729, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.7950000003911555, + 0.6900000006426126, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.8100000007543713, + 0.7200000006705523, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.8250000004190952, + 0.7500000006984919, + 0.5500000005122274 + ] + } + } + }, + "1100503": { + "Id": 1100503, + "Name": "悲剧尽头的颤音", + "Desc": "对敌方全体造成等同于卡芙卡#1[i]%攻击力的雷属性伤害,有#2[i]%基础概率使受到攻击的敌方目标陷入触电状态,并使其当前承受的持续伤害类负面状态立即产生相当于原伤害#5[i]%的伤害。触电状态持续#3[i]回合。\\n触电状态下,敌方目标每回合开始时受到等同于卡芙卡#4[i]%攻击力的雷属性持续伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.48000000044703484, + 1, + 2, + 1.1600000001490116, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5120000003371388, + 1, + 2, + 1.2687500005122274, + 1.0200000000186265 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5440000002272427, + 1, + 2, + 1.3775000001769513, + 1.040000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5760000001173466, + 1, + 2, + 1.486250000540167, + 1.0600000000558794 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6080000000074506, + 1, + 2, + 1.595000000204891, + 1.0800000000745058 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6400000005960464, + 1, + 2, + 1.7581250004004687, + 1.1000000000931323 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6800000006332994, + 1, + 2, + 1.9756250011269003, + 1.1249999997671694 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 1, + 2, + 2.2475000000558794, + 1.1500000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7600000007078052, + 1, + 2, + 2.5737500011455268, + 1.1749999998137355 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 2, + 2.9000000008381903, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.832000000635162, + 1, + 2, + 3.0413750007282943, + 1.220000000204891 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8640000005252659, + 1, + 2, + 3.182750000851229, + 1.2400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8960000004153699, + 1, + 2, + 3.3241250002756715, + 1.2600000002421439 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9280000003054738, + 1, + 2, + 3.465500000398606, + 1.2800000002607703 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9600000008940697, + 1, + 2, + 3.6068750012200326, + 1.3000000002793968 + ] + } + } + }, + "1100504": { + "Id": 1100504, + "Name": "温柔亦同残酷", + "Desc": "当卡芙卡的队友对敌方目标施放攻击后,卡芙卡立即发动追加攻击,对该目标造成等同于卡芙卡#1[i]%攻击力的雷属性伤害,并有#2[i]%基础概率使受到攻击的敌方目标陷入与终结技相同的触电状态,持续#3[i]回合。该效果最多可触发#5[i]次,卡芙卡回合结束时恢复#4[i]次。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.4200000003911555, + 1, + 2, + 1, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5179999999236315, + 1, + 2, + 1, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6160000001545995, + 1, + 2, + 1, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7140000003855675, + 1, + 2, + 1, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8120000006165355, + 1, + 2, + 1, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9100000008475035, + 1, + 2, + 1, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.032500000204891, + 1, + 2, + 1, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.154999999795109, + 1, + 2, + 1, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.277500000083819, + 1, + 2, + 1, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1, + 2, + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.497999999905005, + 1, + 2, + 1, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.596000000135973, + 1, + 2, + 1, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.694000000366941, + 1, + 2, + 1, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.792000000597909, + 1, + 2, + 1, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.890000000828877, + 1, + 2, + 1, + 2 + ] + } + } + }, + "1100506": { + "Id": 1100506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1100507": { + "Id": 1100507, + "Name": "宽恕无关慈悲", + "Desc": "立即攻击一定范围内的所有敌人,进入战斗后对敌方全体造成等同于卡芙卡#3[i]%攻击力的雷属性伤害,同时有#1[i]%基础概率使敌方每个单体目标陷入与终结技相同的触电状态,持续#2[i]回合。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Maze.png", + "LevelUpSkillID": [ + 1100507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7500000006984919, + 0.7500000006984919 + ], + "PointID": 11005101, + "PointName": "折磨", + "PointDesc": "我方目标效果命中超过#1[i]%时,卡芙卡使其造成的持续伤害提高#2[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 11005102, + "PointName": "掠夺", + "PointDesc": "触电状态下的敌方目标被消灭时,卡芙卡额外恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 11005103, + "PointName": "荆棘", + "PointDesc": "施放终结技后恢复1次天赋的追加攻击可触发次数,且天赋的追加攻击可以使目标当前承受的所有持续伤害类负面状态立即产生相当于原伤害#1[i]%的伤害。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005202, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11005203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005206, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11005206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005209, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "效果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1005, + "Set4IDList": [ + 116, + 109, + 102 + ], + "Set2IDList": [ + 322, + 311, + 301 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 310, + 256 + ] + } + }, + "1006": { + "Name": "银狼", + "Desc": "「星核猎手」的成员,骇客高手。\\n将宇宙视作大型沉浸式模拟游戏,玩乐其中。\\n掌握了能够修改现实数据的「以太编辑」。", + "CharaInfo": { + "Camp": "星核猎手", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "silverwolf", + "SPNeed": 110, + "BaseType": "Warlock", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 100601, + "Name": "社会工程", + "Desc": "施放终结技攻击敌方目标后,目标每有1个负面效果,银狼恢复#1[i]点能量。该效果在每次终结技攻击中最多生效#2[i]次。", + "ParamList": [ + 7, + 5 + ] + }, + "2": { + "Id": 100602, + "Name": "僵尸网络", + "Desc": "在敌方目标进入战斗时,使其效果抵抗降低#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 100603, + "Name": "攻击载荷", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 100604, + "Name": "反弹端口", + "Desc": "施放终结技攻击敌方目标后,目标每有1个负面效果,则额外造成等同于银狼#1[i]%攻击力的量子属性附加伤害。该效果在每次终结技攻击中最多触发#2[i]次。", + "ParamList": [ + 0.20000000018626451, + 5 + ] + }, + "5": { + "Id": 100605, + "Name": "暴力破解", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 100606, + "Name": "重叠网络", + "Desc": "敌方目标每有1个负面效果,银狼对其造成的伤害提高#1[i]%,最多提高#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + }, + "Skills": { + "100601": { + "Id": 100601, + "Name": "|系统警告|", + "Desc": "对指定敌方单体造成等同于银狼#1[i]%攻击力的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100602": { + "Id": 100602, + "Name": "是否允许更改?", + "Desc": "有#2[i]%基础概率为指定敌方单体目标添加1个场上我方目标持有属性的弱点,且该弱点对应属性的抗性降低#4[i]%,持续#3[i]回合。若添加的是敌方目标原有属性的弱点,则不会触发对应属性的抗性降低效果。\\n单个敌方目标仅能被银狼添加1个弱点,当银狼对其再次添加弱点时,仅保留最新添加的弱点。\\n有#5[i]%基础概率额外使该目标的全属性抗性降低#6[f1]%,持续#7[i]回合。\\n对该目标造成等同于银狼#1[i]%攻击力的量子属性伤害。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9800000009126961, + 0.7500000006984919, + 2, + 0.20000000018626451, + 1, + 0.07499999972060323, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.0779999995138496, + 0.7600000007078052, + 2, + 0.20000000018626451, + 1, + 0.07749999989755452, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.1759999997448176, + 0.7700000007171184, + 2, + 0.20000000018626451, + 1, + 0.0800000000745058, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2739999999757856, + 0.7800000007264316, + 2, + 0.20000000018626451, + 1, + 0.0825000002514571, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3720000002067536, + 0.7900000007357448, + 2, + 0.20000000018626451, + 1, + 0.08499999972991645, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.4700000004377216, + 0.8000000007450581, + 2, + 0.20000000018626451, + 1, + 0.08749999990686774, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.5925000007264316, + 0.8125000009313226, + 2, + 0.20000000018626451, + 1, + 0.0906250006519258, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.7150000003166497, + 0.8250000004190952, + 2, + 0.20000000018626451, + 1, + 0.09375000069849193, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8375000006053597, + 0.8375000006053597, + 2, + 0.20000000018626451, + 1, + 0.09687500074505806, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.9600000008940697, + 0.8500000007916242, + 2, + 0.20000000018626451, + 1, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.057999999495223, + 0.8600000008009374, + 2, + 0.20000000018626451, + 1, + 0.10250000027008355, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.155999999726191, + 0.8700000008102506, + 2, + 0.20000000018626451, + 1, + 0.1049999997485429, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.253999999957159, + 0.8800000008195639, + 2, + 0.20000000018626451, + 1, + 0.1074999999254942, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.352000000188127, + 0.8900000008288771, + 2, + 0.20000000018626451, + 1, + 0.11000000010244548, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.450000000419095, + 0.9000000008381903, + 2, + 0.20000000018626451, + 1, + 0.11250000027939677, + 2 + ] + } + } + }, + "100603": { + "Id": 100603, + "Name": "|账号已封禁|", + "Desc": "有#2[i]%基础概率使指定敌方单体防御力降低#3[f1]%,持续#4[i]回合,同时对该目标造成等同于银狼#1[i]%攻击力的量子属性伤害。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.8500000007916242, + 0.3600000003352761, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.8650000004563481, + 0.3689999997150153, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.8800000008195639, + 0.3779999997932464, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.8950000004842877, + 0.3869999998714775, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.9100000008475035, + 0.3959999999497086, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 0.9250000005122274, + 0.4050000000279397, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 0.9437500014901161, + 0.4162500004749745, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 0.962500001071021, + 0.4275000002235174, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 0.9812500013504177, + 0.43875000067055225, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 1, + 0.45000000041909516, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 1.0149999996647239, + 0.4589999997988343, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 1.0300000000279397, + 0.4679999998770654, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 1.0449999996926636, + 0.4769999999552965, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 1.0600000000558794, + 0.4860000000335276, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 1.0749999997206032, + 0.4950000001117587, + 3 + ] + } + } + }, + "100604": { + "Id": 100604, + "Name": "等待程序响应…", + "Desc": "银狼能够制造:攻击力降低#1[f1]%、防御力降低#2[f1]%、速度降低#3[f1]%3种【缺陷】。\\n银狼每次施放攻击后有#4[i]%基础概率给受到攻击的敌方目标植入1个随机【缺陷】,持续#5[i]回合。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 0.0400000000372529, + 0.030000000027939677, + 0.6000000005587935, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 0.04399999976158142, + 0.032999999821186066, + 0.612000000430271, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 0.04799999948590994, + 0.035999999614432454, + 0.6240000003017485, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 0.05199999990873039, + 0.03899999940767884, + 0.636000000173226, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 0.055999999633058906, + 0.04199999989941716, + 0.6480000000447035, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 0.060000000055879354, + 0.04499999969266355, + 0.6600000006146729, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 0.06499999971129, + 0.04875000030733645, + 0.6750000002793968, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 0.07000000006519258, + 0.05250000022351742, + 0.6900000006426126, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 0.07499999972060323, + 0.056250000139698386, + 0.7050000003073364, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.0800000000745058, + 0.060000000055879354, + 0.7200000006705523, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 0.08399999979883432, + 0.06299999984912574, + 0.7320000005420297, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 0.08799999952316284, + 0.06599999964237213, + 0.7440000004135072, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 0.09199999994598329, + 0.06899999943561852, + 0.7560000002849847, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 0.09599999967031181, + 0.07199999992735684, + 0.7680000001564622, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 0.10000000009313226, + 0.07499999972060323, + 0.7800000007264316, + 3 + ] + } + } + }, + "100606": { + "Id": 100606, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100607": { + "Id": 100607, + "Name": "|强制结束进程|", + "Desc": "立即攻击敌人,进入战斗后对敌方全体造成等同于银狼#1[i]%攻击力的量子属性伤害,并无视弱点属性削减敌方全体的韧性,击破弱点时,触发量子属性的弱点击破效果。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Maze.png", + "LevelUpSkillID": [ + 100607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006202, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006204, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1006203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006206, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1006206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006208, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006209, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "效果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.6500000006053597 + ], + "PointID": 1006101, + "PointName": "生成", + "PointDesc": "【缺陷】的持续时间增加#1[i]回合。每当有敌方目标的弱点被击破时,银狼有#2[i]%基础概率对该目标植入1个随机【缺陷】。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1006102, + "PointName": "注入", + "PointDesc": "施放战技时,为敌方目标添加的弱点持续时间增加#1[i]回合。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.030000000027939677 + ], + "PointID": 1006103, + "PointName": "旁注", + "PointDesc": "施放战技时,若敌方目标的负面效果数量大于等于#1[i]个,则战技使目标全属性抗性降低的效果额外降低#2[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1100601, + "Name": "社会工程", + "Desc": "施放终结技攻击敌方目标后,目标每有1个负面效果,银狼恢复#1[i]点能量。该效果在每次终结技攻击中最多生效#2[i]次。", + "ParamList": [ + 7, + 5 + ] + }, + "2": { + "Id": 1100602, + "Name": "僵尸网络", + "Desc": "在敌方目标进入战斗时,使其受到的伤害提高#1[i]%。当敌方目标受到我方目标攻击时,银狼有#2[i]%基础概率给受到攻击的敌方目标植入1个随机【缺陷】。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 1100603, + "Name": "攻击载荷", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 1100604, + "Name": "反弹端口", + "Desc": "施放终结技攻击敌方目标后,目标每有1个负面效果,则额外造成等同于银狼#1[i]%攻击力的量子属性附加伤害。该效果在每次终结技攻击中最多触发#2[i]次。", + "ParamList": [ + 0.20000000018626451, + 5 + ] + }, + "5": { + "Id": 1100605, + "Name": "暴力破解", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 1100606, + "Name": "重叠网络", + "Desc": "敌方目标每有1个负面效果,银狼对其造成的伤害提高#1[i]%,最多提高#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + }, + "Skills": { + "1100601": { + "Id": 1100601, + "Name": "|系统警告|", + "Desc": "对指定敌方单体造成等同于银狼#1[i]%攻击力的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "1100602": { + "Id": 1100602, + "Name": "是否允许更改?", + "Desc": "有#2[i]%基础概率为指定敌方单体目标添加1个场上我方目标持有属性的弱点(优先添加我方编队中的第一位角色持有属性的弱点),且该弱点对应属性的抗性降低#4[i]%,持续#3[i]回合。若添加的是敌方目标原有属性的弱点,则不会触发对应属性的抗性降低效果。\\n单个敌方目标仅能被银狼添加1个弱点,当银狼对其再次添加弱点时,仅保留最新添加的弱点。\\n有#5[i]%基础概率额外使该目标的全属性抗性降低#6[f1]%,持续#7[i]回合。\\n对该目标造成等同于银狼#1[i]%攻击力的量子属性伤害。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9800000009126961, + 0.8000000007450581, + 3, + 0.20000000018626451, + 1, + 0.1049999997485429, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.0779999995138496, + 0.840000000782311, + 3, + 0.20000000018626451, + 1, + 0.1074999999254942, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.1759999997448176, + 0.8800000008195639, + 3, + 0.20000000018626451, + 1, + 0.11000000010244548, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2739999999757856, + 0.9200000008568168, + 3, + 0.20000000018626451, + 1, + 0.11250000027939677, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3720000002067536, + 0.9600000008940697, + 3, + 0.20000000018626451, + 1, + 0.11499999975785613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.4700000004377216, + 1, + 3, + 0.20000000018626451, + 1, + 0.11749999993480742, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.5925000007264316, + 1.0500000000465661, + 3, + 0.20000000018626451, + 1, + 0.12062500067986548, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.7150000003166497, + 1.1000000000931323, + 3, + 0.20000000018626451, + 1, + 0.12375000072643161, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8375000006053597, + 1.1500000001396984, + 3, + 0.20000000018626451, + 1, + 0.12687500077299774, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.9600000008940697, + 1.2000000001862645, + 3, + 0.20000000018626451, + 1, + 0.13000000012107193, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.057999999495223, + 1.2400000002235174, + 3, + 0.20000000018626451, + 1, + 0.13250000029802322, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.155999999726191, + 1.2800000002607703, + 3, + 0.20000000018626451, + 1, + 0.13499999977648258, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.253999999957159, + 1.3200000002980232, + 3, + 0.20000000018626451, + 1, + 0.13749999995343387, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.352000000188127, + 1.3600000003352761, + 3, + 0.20000000018626451, + 1, + 0.14000000013038516, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.450000000419095, + 1.400000000372529, + 3, + 0.20000000018626451, + 1, + 0.14250000030733645, + 2 + ] + } + } + }, + "1100603": { + "Id": 1100603, + "Name": "|账号已封禁|", + "Desc": "有#2[i]%基础概率使敌方全体防御力降低#3[f1]%,持续#4[i]回合,同时对敌方全体造成等同于银狼#1[i]%攻击力的量子属性伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.8000000007450581, + 0.3600000003352761, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.840000000782311, + 0.3689999997150153, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.8800000008195639, + 0.3779999997932464, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.9200000008568168, + 0.3869999998714775, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.9600000008940697, + 0.3959999999497086, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 1, + 0.4050000000279397, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 1.0500000000465661, + 0.4162500004749745, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 1.1000000000931323, + 0.4275000002235174, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 1.1500000001396984, + 0.43875000067055225, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 1.2000000001862645, + 0.45000000041909516, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 1.2400000002235174, + 0.4589999997988343, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 1.2800000002607703, + 0.4679999998770654, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 1.3200000002980232, + 0.4769999999552965, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 1.3600000003352761, + 0.4860000000335276, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 1.400000000372529, + 0.4950000001117587, + 3 + ] + } + } + }, + "1100604": { + "Id": 1100604, + "Name": "等待程序响应…", + "Desc": "银狼能够制造:攻击力降低#1[f1]%、防御力降低#2[f1]%、速度降低#3[f1]%3种【缺陷】。\\n银狼每次施放攻击后有#4[i]%基础概率给受到攻击的敌方目标植入1个随机【缺陷】,持续#5[i]回合。敌方目标被消灭时,银狼对其添加的弱点会转移给场上存活的敌人。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 0.060000000055879354, + 0.030000000027939677, + 0.6000000005587935, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 0.06599999964237213, + 0.032999999821186066, + 0.6400000005960464, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 0.07199999992735684, + 0.035999999614432454, + 0.6800000006332994, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 0.07799999951384962, + 0.03899999940767884, + 0.7200000006705523, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 0.08399999979883432, + 0.04199999989941716, + 0.7600000007078052, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 0.09000000008381903, + 0.04499999969266355, + 0.8000000007450581, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 0.09749999991618097, + 0.04875000030733645, + 0.8500000007916242, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 0.1049999997485429, + 0.05250000022351742, + 0.9000000008381903, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 0.11250000027939677, + 0.056250000139698386, + 0.9500000008847564, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.12000000011175871, + 0.060000000055879354, + 1, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 0.12599999969825149, + 0.06299999984912574, + 1.040000000037253, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 0.1319999999832362, + 0.06599999964237213, + 1.0800000000745058, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 0.13799999956972897, + 0.06899999943561852, + 1.1200000001117587, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 0.14399999985471368, + 0.07199999992735684, + 1.1600000001490116, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 0.1500000001396984, + 0.07499999972060323, + 1.2000000001862645, + 3 + ] + } + } + }, + "1100606": { + "Id": 1100606, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1100607": { + "Id": 1100607, + "Name": "|强制结束进程|", + "Desc": "立即攻击敌人,进入战斗后对敌方全体造成等同于银狼#1[i]%攻击力的量子属性伤害,并无视弱点属性削减敌方全体的韧性,击破弱点时,触发量子属性的弱点击破效果。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Maze.png", + "LevelUpSkillID": [ + 1100607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006202, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006204, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11006203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006206, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11006206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006208, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006209, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "效果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 11006101, + "PointName": "生成", + "PointDesc": "【缺陷】的持续时间增加#1[i]回合。每当有敌方目标的弱点被击破时,银狼有#2[i]%基础概率对该目标植入1个随机【缺陷】。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 20, + 5 + ], + "PointID": 11006102, + "PointName": "注入", + "PointDesc": "战斗开始时,立即恢复#1[i]点能量。银狼的回合开始时,自身恢复#2[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 0.10000000009313226, + 0.5000000004656613 + ], + "PointID": 11006103, + "PointName": "旁注", + "PointDesc": "银狼每拥有#1[i]%效果命中,则额外提高#2[i]%攻击力,最高不超过#3[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1006, + "Set4IDList": [ + 108, + 111, + 117 + ], + "Set2IDList": [ + 312, + 303, + 307 + ], + "PropertyList3": [ + "StatusProbabilityBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "StatusProbabilityBase", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 340, + 285 + ] + } + }, + "1008": { + "Name": "阿兰", + "Desc": "空间站「黑塔」的防卫科负责人。\\n不善言辞,希望保护珍视研究的人们顺利完成他们的研究。", + "CharaInfo": { + "Camp": "空间站「黑塔」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "arlan", + "SPNeed": 110, + "BaseType": "Warrior", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 100801, + "Name": "万死不辞", + "Desc": "当前生命值百分比小于等于50%时,战技造成的伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 100802, + "Name": "除制去缚", + "Desc": "施放战技、终结技时,解除自身的1个负面效果。", + "ParamList": [] + }, + "3": { + "Id": 100803, + "Name": "重剑强攻", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 100804, + "Name": "绝处反击", + "Desc": "进入战斗后,受到致命攻击时阿兰不会陷入无法战斗状态,并立即回复至自身生命上限的#1[i]%。该效果在触发1次后或持续#2[i]回合后自动解除。", + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "5": { + "Id": 100805, + "Name": "全力倾注", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 100806, + "Name": "以身作引", + "Desc": "当前生命值百分比小于等于50%时,终结技造成的伤害提高#1[i]%,且对相邻目标的伤害倍率提高到与主目标相同的伤害倍率。", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "100801": { + "Id": 100801, + "Name": "如雷疾行", + "Desc": "对指定敌方单体造成等同于阿兰#1[i]%攻击力的雷属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100802": { + "Id": 100802, + "Name": "禁锢解除", + "Desc": "消耗等同于阿兰生命上限#1[i]%的生命值对指定敌方单体造成等同于阿兰#2[i]%攻击力的雷属性伤害。若当前生命值不足,施放战技时阿兰的当前生命值降至1点。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": null, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1500000001396984, + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1500000001396984, + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1500000001396984, + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1500000001396984, + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1500000001396984, + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1500000001396984, + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1500000001396984, + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1500000001396984, + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1500000001396984, + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1500000001396984, + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.1500000001396984, + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1500000001396984, + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 3 + ] + } + } + }, + "100803": { + "Id": 100803, + "Name": "狂者制裁", + "Desc": "对指定敌方单体造成等同于阿兰#1[i]%攻击力的雷属性伤害,同时对其相邻目标造成等同于阿兰#2[i]%攻击力的雷属性伤害。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9200000008568168, + 0.9600000008940697 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.04799999948591, + 1.023999999742955 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.1759999997448176, + 1.0879999995231628 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.3040000000037253, + 1.1520000000018626 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.432000000262633, + 1.2159999997820705 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5600000005215406, + 1.2800000002607703 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.7200000006705523, + 1.3600000003352761 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 1.440000000409782 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.040000000037253, + 1.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.2000000001862645, + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.3279999997466803, + 1.6640000003390014 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.456000000005588, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.5840000002644956, + 1.792000000597909 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.7120000005234033, + 1.856000000378117 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.840000000782311, + 1.9200000008568168 + ] + } + } + }, + "100804": { + "Id": 100804, + "Name": "至痛至怒", + "Desc": "根据阿兰当前损失的生命值百分比获得伤害加成,最多使阿兰造成的伤害提高#1[i]%。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "100806": { + "Id": 100806, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100807": { + "Id": 100807, + "Name": "极速收割", + "Desc": "立即攻击敌人,进入战斗后对敌方全体造成等同于阿兰#1[i]%攻击力的雷属性伤害。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Maze.png", + "LevelUpSkillID": [ + 100807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.20000000018626451 + ], + "PointID": 1008101, + "PointName": "苏生", + "PointDesc": "消灭敌方目标时,若当前生命值百分比小于等于#1[i]%,则立即回复等同于自身生命上限#2[i]%的生命值。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1008102, + "PointName": "坚忍", + "PointDesc": "抵抗持续伤害类负面状态的概率提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1008103, + "PointName": "抗御", + "PointDesc": "进入战斗时,若当前生命值百分比小于等于#1[i]%,阿兰可以抵抗除持续伤害外的所有伤害。当阿兰受到攻击后,该效果解除。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008202, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1008202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1008203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008206, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1008205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1008206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1008103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008209, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "效果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 45, + "DefenceAdd": 2.2500000002328306, + "HPBase": 163.20000000018626, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 63, + "DefenceAdd": 2.2500000002328306, + "HPBase": 228.48000000044703, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 81, + "DefenceAdd": 2.2500000002328306, + "HPBase": 293.7600000007078, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 99, + "DefenceAdd": 2.2500000002328306, + "HPBase": 359.04000000003725, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 117, + "DefenceAdd": 2.2500000002328306, + "HPBase": 424.320000000298, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 135, + "DefenceAdd": 2.2500000002328306, + "HPBase": 489.6000000005588, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 153, + "DefenceAdd": 2.2500000002328306, + "HPBase": 554.8800000008196, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1008, + "Set4IDList": [ + 109, + 122, + 117 + ], + "Set2IDList": [ + 309, + 301, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1009": { + "Name": "艾丝妲", + "Desc": "空间站「黑塔」的站长,出身名门的大小姐。\\n好奇心旺盛的天文研究者,擅长管理空间站各抒己见的科员。", + "CharaInfo": { + "Camp": "空间站「黑塔」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "asta", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 100901, + "Name": "星有无言之歌", + "Desc": "施放战技时,对敌方随机单体额外造成1次伤害。", + "ParamList": [] + }, + "2": { + "Id": 100902, + "Name": "月见圆缺之意", + "Desc": "施放终结技时,艾丝妲下回合不会减少蓄能层数。", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 100903, + "Name": "黄道陨石之变", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 100904, + "Name": "极光显现之时", + "Desc": "天赋的蓄能层数大于等于#1[i]时,艾丝妲的能量恢复效率提高#2[i]%。", + "ParamList": [ + 2, + 0.1500000001396984 + ] + }, + "5": { + "Id": 100905, + "Name": "深空天体之谜", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 100906, + "Name": "眠于银河之下", + "Desc": "天赋每回合减少的蓄能层数降低#1[i]。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "100901": { + "Id": 100901, + "Name": "光谱射线", + "Desc": "对指定敌方单体造成等同于艾丝妲#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100902": { + "Id": 100902, + "Name": "流星群落", + "Desc": "对指定敌方单体造成等同于艾丝妲#1[i]%攻击力的火属性伤害,并额外造成4次伤害。每次伤害对随机敌方单体造成等同于艾丝妲#1[i]%攻击力的火属性伤害。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + }, + "100903": { + "Id": 100903, + "Name": "星空祝言", + "Desc": "使我方全体速度提高#1[i]点,持续#2[i]回合。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 36, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 37.40000000037253, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 38.80000000074506, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 40.200000000186265, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 41.60000000055879, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 43, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 44.75000000069849, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 46.50000000046566, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 48.25000000023283, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 50, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 51.40000000037253, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 52.80000000074506, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 54.200000000186265, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 55.60000000055879, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 57, + 2 + ] + } + } + }, + "100904": { + "Id": 100904, + "Name": "天象学", + "Desc": "每击中1名不同的敌方目标获得1层蓄能,若受到攻击的敌方目标弱点为火属性,则额外获得1层蓄能。\\n艾丝妲每拥有1层蓄能,会使我方全体攻击力提高#1[f1]%,该效果最多叠加#2[i]层。\\n从自身的第2回合开始,艾丝妲每回合开始时蓄能层数减少#3[i]层。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07000000006519258, + 5, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07699999958276749, + 5, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 5, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09100000001490116, + 5, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.09799999953247607, + 5, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1049999997485429, + 5, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.11375000071711838, + 5, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.12250000028871, + 5, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13125000055879354, + 5, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.14000000013038516, + 5, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.14699999964796007, + 5, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1539999998640269, + 5, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.16100000008009374, + 5, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.16799999959766865, + 5, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.17499999981373549, + 5, + 3 + ] + } + } + }, + "100906": { + "Id": 100906, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100907": { + "Id": 100907, + "Name": "灵光一现", + "Desc": "立即攻击敌人,进入战斗后对敌方全体目标造成等同于艾丝妲#1[i]%攻击力的火属性伤害。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Maze.png", + "LevelUpSkillID": [ + 100907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 3, + 0.5000000004656613 + ], + "PointID": 1009101, + "PointName": "火花", + "PointDesc": "施放普攻时,有#1[i]%基础概率使敌方目标陷入灼烧状态,持续#2[i]回合。\\n灼烧状态下,敌方目标每回合开始时受到等同于艾丝妲普攻#3[i]%的火属性持续伤害。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.18000000016763806 + ], + "PointID": 1009102, + "PointName": "点燃", + "PointDesc": "艾丝妲在场时,我方全体的火属性伤害提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.060000000055879354 + ], + "PointID": 1009103, + "PointName": "星座", + "PointDesc": "艾丝妲每拥有1层蓄能,自身防御力提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009201, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009202, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1009101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009203, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1009202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009204, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1009201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009205, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1009102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009206, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1009205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009207, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1009201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009208, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1009103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009209, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1009208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009210, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1009208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "火属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 69.6000000005588, + "AttackAdd": 3.480000000447035, + "DefenceBase": 63, + "DefenceAdd": 3.1500000001396984, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 97.44000000040978, + "AttackAdd": 3.480000000447035, + "DefenceBase": 88.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 125.28000000026077, + "AttackAdd": 3.480000000447035, + "DefenceBase": 113.40000000037253, + "DefenceAdd": 3.1500000001396984, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 153.12000000011176, + "AttackAdd": 3.480000000447035, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 3.1500000001396984, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 180.96000000089407, + "AttackAdd": 3.480000000447035, + "DefenceBase": 163.80000000074506, + "DefenceAdd": 3.1500000001396984, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 208.80000000074506, + "AttackAdd": 3.480000000447035, + "DefenceBase": 189, + "DefenceAdd": 3.1500000001396984, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 236.64000000059605, + "AttackAdd": 3.480000000447035, + "DefenceBase": 214.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1009, + "Set4IDList": [ + 114, + 111, + 106 + ], + "Set2IDList": [ + 302, + 310, + 308 + ], + "PropertyList3": [ + "HPAddedRatio", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 321, + 278 + ] + } + }, + "1013": { + "Name": "黑塔", + "Desc": "「天才俱乐部」#83号会员,空间站的真正主人。\\n智慧过人却毫无同理心的大科学家。", + "CharaInfo": { + "Camp": "空间站「黑塔」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "herta", + "SPNeed": 110, + "BaseType": "Mage", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 101301, + "Name": "落井当下石", + "Desc": "施放普攻时,若指定敌方单体生命值百分比小于等于#1[i]%,则额外造成等同于黑塔#2[i]%攻击力的冰属性附加伤害。", + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "2": { + "Id": 101302, + "Name": "得胜必追击", + "Desc": "天赋每触发1次,自身暴击率提高#1[i]%,该效果最多叠加#2[i]层。", + "ParamList": [ + 0.030000000027939677, + 5 + ] + }, + "3": { + "Id": 101303, + "Name": "我就是这样女子", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 101304, + "Name": "打人要打脸", + "Desc": "触发天赋时造成的伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "5": { + "Id": 101305, + "Name": "骂人不留口", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 101306, + "Name": "世上没人能负我", + "Desc": "施放终结技后,攻击力提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.25000000023283064, + 1 + ] + } + }, + "Skills": { + "101301": { + "Id": 101301, + "Name": "看什么看", + "Desc": "对指定敌方单体造成等同于黑塔#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "101302": { + "Id": 101302, + "Name": "一锤子买卖", + "Desc": "对敌方全体造成等同于黑塔#1[i]%攻击力的冰属性伤害。若敌方目标当前生命值百分比大于等于#2[i]%,则对该目标造成的伤害提高#3[i]%。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 0.5000000004656613, + 0.20000000018626451 + ] + } + } + }, + "101303": { + "Id": 101303, + "Name": "是魔法,我加了魔法", + "Desc": "对敌方全体造成等同于黑塔#1[i]%攻击力的冰属性伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529 + ] + } + } + }, + "101304": { + "Id": 101304, + "Name": "还是我来吧", + "Desc": "当任意我方目标的攻击使敌方目标的当前生命值百分比小于等于#1[i]%时,黑塔发动追加攻击,对敌方全体造成等同于黑塔#2[i]%攻击力的冰属性伤害。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 0.2649999998975545 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 0.2949999999254942 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 0.31000000028871 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 0.32499999995343387 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 0.3437500009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 0.3625000005122274 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 0.3812500007916242 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 0.4150000000372529 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 0.4300000004004687 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 0.4450000000651926 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 0.4600000004284084 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.47500000009313226 + ] + } + } + }, + "101306": { + "Id": 101306, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101307": { + "Id": 101307, + "Name": "可以优化一下", + "Desc": "使用秘技后,下一次战斗开始时黑塔攻击力提高#1[i]%,持续#2[i]回合。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Maze.png", + "LevelUpSkillID": [ + 101307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1013101, + "PointName": "效率", + "PointDesc": "施放战技时,对目标造成的伤害提高效果额外再提高#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1013102, + "PointName": "人偶", + "PointDesc": "抵抗控制类负面状态的概率提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1013103, + "PointName": "冰结", + "PointDesc": "施放终结技时,对冻结状态下的敌人造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013201, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013202, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1013101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013203, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1013202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013204, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1013202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013205, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1013102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013206, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1013205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013207, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1013205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013208, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1013103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013209, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1013103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013210, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "冰属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 129.6000000005588, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 181.44000000040978, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 233.28000000026077, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 285.12000000011176, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 336.96000000089407, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 388.80000000074506, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 440.64000000059605, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1013, + "Set4IDList": [ + 104, + 102, + 122 + ], + "Set2IDList": [ + 313, + 306, + 315 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "IceAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 338, + 284 + ], + "LocalCriticalChance": 0.1500000001396984 + } + }, + "1014": { + "Name": "Saber", + "Desc": "孤独的英灵走过命运的长夜, 圆桌的旗帜仍在梦中舒展。卡美洛的骑士之王,此时尚未抵达理想乡。\\n仍是少女的她于这场特殊的「圣杯战争」中应召前来,当再度面临石中剑的抉择,她将如何突破过往的幻境?\\n——「我未实现的愿望,也将在此作结。」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "saber", + "SPNeed": 360, + "BaseType": "Warrior", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 101401, + "Name": "失落的白垩坚城", + "Desc": "Saber造成的终结技伤害提高#1[i]%Saber施放普攻或战技后,额外获得#2[i]点【炉心共鸣】。", + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Id": 101402, + "Name": "尘封的圆桌誓言", + "Desc": "【解放的金色王权】和【风王铁锤】造成的暴击伤害提高#1[i]%,每获得1点【炉心共鸣】,额外使造成的暴击伤害提高#2[i]%,可叠加#3[i]次。", + "ParamList": [ + 0.5000000004656613, + 0.05000000004656613, + 10 + ] + }, + "3": { + "Id": 101403, + "Name": "十五个世纪的追寻", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 101404, + "Name": "十四个冬日的奇遇", + "Desc": "Saber的风属性抗性穿透提高#1[i]%。施放终结技后,Saber的风属性抗性穿透提高#2[i]%,可叠加#3[i]次。", + "ParamList": [ + 0.0400000000372529, + 0.0400000000372529, + 4 + ] + }, + "5": { + "Id": 101405, + "Name": "于抵达理想的黎明", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 101406, + "Name": "守护命运长夜", + "Desc": "Saber造成的终结技伤害的风属性抗性穿透提高#1[i]%。进入战斗首次施放终结技后,为Saber固定恢复#3[i]点能量,该效果每再施放#2[i]次终结技可触发1次。", + "ParamList": [ + 0.20000000018626451, + 4, + 300 + ] + } + }, + "Skills": { + "101401": { + "Id": 101401, + "Name": "风王结界", + "Desc": "对指定敌方单体造成等同于Saber#1[i]%攻击力的风属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "101402": { + "Id": 101402, + "Name": "风王铁锤", + "Desc": "对指定敌方单体造成等同于Saber#1[i]%攻击力的风属性伤害,对相邻目标造成等同于Saber#2[i]%攻击力的风属性伤害。若当前持有【炉心共鸣】,且施放本次战技后消耗【炉心共鸣】可为Saber恢复满能量,则使本次战技倍率提高,每有1点【炉心共鸣】使本次战技的伤害倍率提高#4[i]%,并在施放后消耗所有【炉心共鸣】为Saber恢复能量,否则立即获得#3[i]点【炉心共鸣】。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.375, + 2, + 0.07000000006519258 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.41250000055879354, + 2, + 0.07699999958276749 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 2, + 0.08399999979883432 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 2, + 0.09100000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 2, + 0.09799999953247607 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 2, + 0.1049999997485429 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.6093750006984919, + 2, + 0.11375000071711838 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.6562500006984919, + 2, + 0.12250000028871 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.7031250006984919, + 2, + 0.13125000055879354 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 2, + 0.14000000013038516 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.7875000005587935, + 2, + 0.14699999964796007 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.8250000004190952, + 2, + 0.1539999998640269 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.8625000009778887, + 2, + 0.16100000008009374 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.9000000008381903, + 2, + 0.16799999959766865 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 2, + 0.17499999981373549 + ] + } + } + }, + "101403": { + "Id": 101403, + "Name": "誓约胜利之剑", + "Desc": "对敌方全体造成等同于Saber#1[i]%攻击力的风属性伤害。之后,对随机敌方单体造成等同于Saber#2[i]%攻击力的风属性伤害,重复#3[i]次。施放终结技后下次普攻会被替换为【解放的金色王权】且仅能施放【解放的金色王权】。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 120, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 0.5500000005122274, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 0.6050000002142042, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 0.6600000006146729, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 0.7150000003166497, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 0.7700000007171184, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 0.8250000004190952, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 0.89375000144355, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 0.962500001071021, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1.0312500004656613, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.1000000000931323, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1.154999999795109, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1.2100000001955777, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1.2649999998975545, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 1.3200000002980232, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 1.375, + 10 + ] + } + } + }, + "101404": { + "Id": 101404, + "Name": "龙之炉心", + "Desc": "进入战斗时,获得#8[i]点【炉心共鸣】。我方任意目标施放终结技时,Saber造成的伤害提高#3[i]%,持续#4[i]回合,并获得#1[i]点【炉心共鸣】。每消耗1点【炉心共鸣】为Saber固定恢复#5[i]点能量。", + "Type": null, + "Tag": "Enhance", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 25, + 0.20000000018626451, + 2, + 10, + 0.05000000004656613, + 99, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 25, + 0.22000000020489097, + 2, + 10, + 0.054999999701976776, + 99, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 25, + 0.24000000022351742, + 2, + 10, + 0.060000000055879354, + 99, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 25, + 0.26000000024214387, + 2, + 10, + 0.06499999971129, + 99, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 25, + 0.2800000002607703, + 2, + 10, + 0.07000000006519258, + 99, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 25, + 0.3000000002793968, + 2, + 10, + 0.07499999972060323, + 99, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 25, + 0.32499999995343387, + 2, + 10, + 0.08125000051222742, + 99, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 25, + 0.3500000003259629, + 2, + 10, + 0.08749999990686774, + 99, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 25, + 0.375, + 2, + 10, + 0.09375000069849193, + 99, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 25, + 0.40000000037252903, + 2, + 10, + 0.10000000009313226, + 99, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 25, + 0.4200000003911555, + 2, + 10, + 0.1049999997485429, + 99, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 25, + 0.44000000040978193, + 2, + 10, + 0.11000000010244548, + 99, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 25, + 0.4600000004284084, + 2, + 10, + 0.11499999975785613, + 99, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 25, + 0.48000000044703484, + 2, + 10, + 0.12000000011175871, + 99, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 25, + 0.5000000004656613, + 2, + 10, + 0.12499999976716936, + 99, + 1 + ] + } + } + }, + "101406": { + "Id": 101406, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101407": { + "Id": 101407, + "Name": "骑士王的登场", + "Desc": "使用秘技后,下一次战斗开始时Saber攻击力提高#1[i]%,持续#2[i]回合,并获得#3[i]点【炉心共鸣】。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 2, + 2 + ] + } + } + }, + "101408": { + "Id": 101408, + "Name": "解放的金色王权", + "Desc": "获得#2[i]点【炉心共鸣】,并对敌方全体造成等同于Saber#1[i]%攻击力的风属性伤害,若施放时敌方目标数量小于等于2/1,额外对敌方全体造成等同于Saber#3[i]%/#4[i]%攻击力的风属性伤害。", + "Type": "Normal", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 2, + 0.7500000006984919, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9000000008381903, + 2, + 0.9000000008381903, + 0.4200000003911555 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0500000000465661, + 2, + 1.0500000000465661, + 0.49000000045634806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2000000001862645, + 2, + 1.2000000001862645, + 0.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.350000000325963, + 2, + 1.350000000325963, + 0.6300000005867332 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 2, + 1.5000000004656613, + 0.7000000006519258 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6500000006053597, + 2, + 1.6500000006053597, + 0.7700000007171184 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 2, + 1.800000000745058, + 0.840000000782311 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9500000008847564, + 2, + 1.9500000008847564, + 0.9100000008475035 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 2, + 2.1000000000931323, + 0.9800000009126961 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Maze.png", + "LevelUpSkillID": [ + 101407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903, + 0.20000000018626451 + ], + "PointID": 1014101, + "PointName": "龙之骑士", + "PointDesc": "Saber的暴击率提高#1[i]%。进入战斗和施放强化普攻时,获得【魔力放出】。若Saber同时持有【魔力放出】和【炉心共鸣】,且当前施放战技后可为Saber恢复满能量,则消耗【魔力放出】为我方恢复1个战技点并使Saber立即行动。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 120, + 0.40000000037252903, + 0.40000000037252903 + ], + "PointID": 1014102, + "PointName": "湖之祝福", + "PointDesc": "Saber可积攒最多#1[i]点溢出能量,施放终结技后清空并恢复相应的能量值。战斗开始时若能量不足#3[i]%则使其恢复至#2[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ], + "PointID": 1014103, + "PointName": "星之冠冕", + "PointDesc": "施放战技时,使Saber的暴击伤害提高#1[i]%,持续#2[i]回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014201, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1014101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014203, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1014202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1014203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014205, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1014102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1014205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1014206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1014103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1014208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014210, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1014208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "风属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1014, + "Set4IDList": [ + 126, + 122, + 102 + ], + "Set2IDList": [ + 306, + 301, + 309 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 336, + 281 + ] + } + }, + "1015": { + "Name": "Archer", + "Desc": "绝望轮番上演于过去与未来之间,无数理想曾在红色圣骸布之间燃尽。但,请别被这一抹灰烬欺骗——\\n若是有人假借理想之名营造虚幻的美梦,他必将再度燃烧,与世间的伪善战斗到底。\\n无论身在何处,他始终是正义的伙伴。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "archer", + "SPNeed": 240, + "BaseType": "Rogue", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 101501, + "Name": "未曾触及的理想", + "Desc": "单个回合内施放战技#1[i]次后,则本回合下次施放战技不消耗战技点。", + "ParamList": [ + 3 + ] + }, + "2": { + "Id": 101502, + "Name": "未能实现的幸福", + "Desc": "终结技造成的伤害提高#1[i]%。", + "ParamList": [ + 1.2000000001862645 + ] + }, + "3": { + "Id": 101503, + "Name": "难为凡庸的意气", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 101504, + "Name": "难称英雄的一生", + "Desc": "终结技的施放目标若没有量子属性弱点,则终结技攻击时为其添加量子属性弱点,并且该目标的量子属性的抗性降低#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "5": { + "Id": 101505, + "Name": "无铭孤影的守望", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 101506, + "Name": "无尽徘徊的巡礼", + "Desc": "回合开始时立即为我方恢复1个战技点。自身战技提供的伤害提高效果可以叠加的层数提高#1[i]层。造成的战技伤害无视#2[i]%的防御力。", + "ParamList": [ + 1, + 0.20000000018626451 + ] + } + }, + "Skills": { + "101501": { + "Id": 101501, + "Name": "干将•莫邪", + "Desc": "对指定敌方单体造成等同于Archer#1[i]%攻击力的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + } + } + }, + "101502": { + "Id": 101502, + "Name": "伪•螺旋剑", + "Desc": "进入【回路连接】状态。对指定敌方单体造成等同于Archer#1[i]%攻击力的量子属性伤害。【回路连接】状态下施放战技后,本回合不会结束,并使Archer战技造成的伤害提高#2[i]%,该效果可以叠加#3[i]层,持续至退出【回路连接】状态。主动施放#5[i]次战技后或战技点不足以再次施放战技则退出【回路连接】状态,并结束回合。每个波次中的所有敌人被消灭后会退出【回路连接】状态。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 2, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.6000000005587935, + 2, + 1, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.2000000001862645, + 0.6400000005960464, + 2, + 1, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.400000000372529, + 0.6800000006332994, + 2, + 1, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.6000000005587935, + 0.7200000006705523, + 2, + 1, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.800000000745058, + 0.7600000007078052, + 2, + 1, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.8000000007450581, + 2, + 1, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.2500000002328306, + 0.8500000007916242, + 2, + 1, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.5000000004656613, + 0.9000000008381903, + 2, + 1, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.750000000698492, + 0.9500000008847564, + 2, + 1, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 1, + 2, + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.2000000001862645, + 1.040000000037253, + 2, + 1, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.400000000372529, + 1.0800000000745058, + 2, + 1, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.6000000005587935, + 1.1200000001117587, + 2, + 1, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.800000000745058, + 1.1600000001490116, + 2, + 1, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5, + 1.2000000001862645, + 2, + 1, + 5 + ] + } + } + }, + "101503": { + "Id": 101503, + "Name": "无限剑制", + "Desc": "对指定敌方单体造成等同于Archer#1[i]%攻击力的量子属性伤害,并获得#2[i]点充能,最多可拥有#3[i]点充能。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7.2000000001862645, + 2, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7.680000000633299, + 2, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 8.160000000149012, + 2, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 8.640000000596046, + 2, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 9.120000000111759, + 2, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 9.600000000558794, + 2, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 10.200000000186265, + 2, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 10.800000000745058, + 2, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 11.400000000372529, + 2, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 12, + 2, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 12.480000000447035, + 2, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 12.96000000089407, + 2, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 13.440000000409782, + 2, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 13.920000000856817, + 2, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 14.400000000372529, + 2, + 4 + ] + } + } + }, + "101504": { + "Id": 101504, + "Name": "心眼(真)", + "Desc": "当Archer的队友对敌方目标施放攻击后,Archer消耗1点充能,立即对主目标发动追加攻击,造成等同于Archer#1[i]%攻击力的量子属性伤害,并恢复1个战技点。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3 + ] + } + } + }, + "101506": { + "Id": 101506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101507": { + "Id": 101507, + "Name": "千里眼", + "Desc": "立即攻击敌人,进入战斗后对敌方全体造成等同于Archer#1[i]%攻击力的量子属性伤害,并获得#2[i]点充能。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "101509": { + "Id": 101509, + "Name": "结束", + "Desc": "退出【回路连接】状态,并结束回合。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Maze.png", + "LevelUpSkillID": [ + 101507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1015101, + "PointName": "投影魔术", + "PointDesc": "Archer在场时,战技点上限额外增加#1[i]点。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1015102, + "PointName": "正义伙伴", + "PointDesc": "Archer进入战斗时获得#1[i]点充能。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 1, + 4 + ], + "PointID": 1015103, + "PointName": "守护者", + "PointDesc": "我方获得战技点后,若战技点大于等于#3[i]点,Archer的暴击伤害提高#1[i]%,持续#2[i]回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015201, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1015101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015203, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1015202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015204, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015205, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1015102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1015205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015207, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015208, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1015103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1015208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015210, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1015208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "量子属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1015, + "Set4IDList": [ + 108, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 336, + 281 + ] + } + }, + "1101": { + "Name": "布洛妮娅", + "Desc": "贝洛伯格「大守护者」的继承人。\\n兼有公主的高傲和军人的坚贞。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "bronya", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 110101, + "Name": "养精蓄锐", + "Desc": "施放战技时,有#1[i]%固定概率恢复1个战技点,该效果有1回合的触发冷却。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Id": 110102, + "Name": "快速行军", + "Desc": "施放战技时,被指定的我方目标在行动后速度提高#1[i]%,持续1回合。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Id": 110103, + "Name": "鼓炮齐鸣", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 110104, + "Name": "攻其不备", + "Desc": "我方其他角色对弱点为风属性的敌方目标施放普攻后,布洛妮娅立即进行1次追加攻击,对该目标造成等同于普攻伤害#1[i]%的风属性伤害,该效果每回合可触发1次。", + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Id": 110105, + "Name": "所向克捷", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 110106, + "Name": "气贯长虹", + "Desc": "战技对指定我方目标造成的伤害提高效果的持续时间增加#1[i]回合。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "110101": { + "Id": 110101, + "Name": "驭风的子弹", + "Desc": "对指定敌方单体造成等同于布洛妮娅#1[i]%攻击力的风属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110102": { + "Id": 110102, + "Name": "作战再部署", + "Desc": "解除指定我方单体的1个负面效果,并使该目标立即行动,造成的伤害提高#1[i]%,持续#3[i]回合。\\n当对自身施放该技能时,无法触发立即行动效果。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.33000000030733645, + 0, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3630000001285225, + 0, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3959999999497086, + 0, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.42899999977089465, + 0, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.46200000029057264, + 0, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.4950000001117587, + 0, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5362500005867332, + 0, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5775000003632158, + 0, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6187500008381903, + 0, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6600000006146729, + 0, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.693000000435859, + 0, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.726000000257045, + 0, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.7590000000782311, + 0, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7920000005979091, + 0, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8250000004190952, + 0, + 1, + 1 + ] + } + } + }, + "110103": { + "Id": 110103, + "Name": "贝洛伯格进行曲", + "Desc": "使我方全体攻击力提高#1[i]%,同时提高等同于布洛妮娅#2[f1]%暴击伤害+#3[f1]%的暴击伤害,持续#4[i]回合。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.33000000030733645, + 0.12000000011175871, + 0.12000000011175871, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.35200000018812716, + 0.12399999983608723, + 0.12799999956041574, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.37400000006891787, + 0.12799999956041574, + 0.1359999997075647, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3959999999497086, + 0.1319999999832362, + 0.14399999985471368, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4179999998304993, + 0.1359999997075647, + 0.15200000000186265, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.44000000040978193, + 0.14000000013038516, + 0.1600000001490116, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4675000002607703, + 0.1449999997857958, + 0.17000000015832484, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.4950000001117587, + 0.1500000001396984, + 0.18000000016763806, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.522500000661239, + 0.15499999979510903, + 0.1900000001769513, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5500000005122274, + 0.1600000001490116, + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5720000003930181, + 0.16399999987334013, + 0.20799999963492155, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5940000002738088, + 0.16799999959766865, + 0.21599999978207052, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6160000001545995, + 0.1720000000204891, + 0.22399999992921948, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6380000000353903, + 0.17599999974481761, + 0.23200000007636845, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6600000006146729, + 0.18000000016763806, + 0.24000000022351742, + 2 + ] + } + } + }, + "110104": { + "Id": 110104, + "Name": "先人一步", + "Desc": "施放普攻后,布洛妮娅的下一次行动提前#1[i]%。", + "Type": null, + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375 + ] + } + } + }, + "110106": { + "Id": 110106, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110107": { + "Id": 110107, + "Name": "在旗帜下", + "Desc": "使用秘技后,下一次战斗开始时使我方全体攻击力提高#1[i]%,持续#2[i]回合。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Maze.png", + "LevelUpSkillID": [ + 110107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101101, + "PointName": "号令", + "PointDesc": "普攻的暴击率提高至100%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2, + 0.20000000018626451 + ], + "PointID": 1101102, + "PointName": "阵地", + "PointDesc": "战斗开始时,我方全体的防御力提高#2[i]%,持续#1[i]回合。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1101103, + "PointName": "军势", + "PointDesc": "布洛妮娅在场时,我方全体造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101201, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101202, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1101101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101203, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1101202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1101201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101205, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1101102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101206, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1101205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101207, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1101201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1101103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101209, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1101208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101210, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1101208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "风属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 72.6000000005588, + "DefenceAdd": 3.630000000586733, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 101.64000000059605, + "DefenceAdd": 3.630000000586733, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 3.630000000586733, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 159.72000000067055, + "DefenceAdd": 3.630000000586733, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 3.630000000586733, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 3.630000000586733, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 246.8400000007823, + "DefenceAdd": 3.630000000586733, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1101, + "Set4IDList": [ + 114, + 110, + 121 + ], + "Set2IDList": [ + 317, + 310, + 302 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 188 + ], + "LocalCriticalChance": 1 + } + }, + "1102": { + "Name": "希儿", + "Desc": "地底反抗组织「地火」的骨干,别号「蝴蝶」。\\n性格率真直爽,内心隐藏着细腻敏锐的一面。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "seele", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 110201, + "Name": "斩尽", + "Desc": "对当前生命值百分比小于等于#1[i]%的敌方目标造成伤害时,暴击率提高#2[i]%。", + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ] + }, + "2": { + "Id": 110202, + "Name": "蝶舞", + "Desc": "战技的加速效果可以叠加,最多叠加#1[i]层。", + "ParamList": [ + 2 + ] + }, + "3": { + "Id": 110203, + "Name": "缭乱", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 110204, + "Name": "掠影", + "Desc": "希儿消灭敌方目标时,自身恢复#1[i]点能量。", + "ParamList": [ + 15 + ] + }, + "5": { + "Id": 110205, + "Name": "锋锐", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 110206, + "Name": "离析", + "Desc": "施放终结技后使受到攻击的敌方单体陷入【乱蝶】状态,持续#2[i]回合。【乱蝶】状态下的敌方目标受到攻击后,额外受到1次等同于希儿终结技伤害#1[i]%的量子属性附加伤害。若该目标被我方其他目标触发【乱蝶】状态的附加伤害消灭,将不会触发希儿的天赋。\\n当希儿陷入无法战斗状态时,敌方目标的【乱蝶】状态被解除。", + "ParamList": [ + 0.1500000001396984, + 1 + ] + } + }, + "Skills": { + "110201": { + "Id": 110201, + "Name": "强袭", + "Desc": "对指定敌方单体造成等同于希儿#1[i]%攻击力的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110202": { + "Id": 110202, + "Name": "归刃", + "Desc": "使希儿的速度提高#2[i]%,并对指定敌方单体造成等同于希儿#1[i]%攻击力的量子属性伤害,速度提高效果持续#3[i]回合。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323, + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2100000001955777, + 0.25000000023283064, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3200000002980232, + 0.25000000023283064, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4300000004004687, + 0.25000000023283064, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5400000005029142, + 0.25000000023283064, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6500000006053597, + 0.25000000023283064, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7875000005587935, + 0.25000000023283064, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9250000005122274, + 0.25000000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.0625000002328306, + 0.25000000023283064, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645, + 0.25000000023283064, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.31000000028871, + 0.25000000023283064, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4200000003911555, + 0.25000000023283064, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.530000000493601, + 0.25000000023283064, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.6400000005960464, + 0.25000000023283064, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.750000000698492, + 0.25000000023283064, + 2 + ] + } + } + }, + "110203": { + "Id": 110203, + "Name": "乱蝶", + "Desc": "立即进入增幅状态,并对指定敌方单体造成等同于希儿#1[i]%攻击力的量子属性伤害。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.5500000005122274 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.7200000006705523 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.890000000828877 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.0600000000558794 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.230000000214204 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.400000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.612500000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.825000000419095 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.037499999860302 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.250000000232831 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.59000000054948 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.93000000086613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.100000000093132 + ] + } + } + }, + "110204": { + "Id": 110204, + "Name": "再现", + "Desc": "施放普攻、战技、终结技消灭敌方目标时立即获得1个额外回合并进入增幅状态,增幅状态下希儿施放攻击造成的伤害提高#1[i]%,持续#2[i]回合。\\n若希儿在因天赋【再现】获得的额外回合中消灭敌方目标,此天赋不会生效。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1 + ] + } + } + }, + "110206": { + "Id": 110206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110207": { + "Id": 110207, + "Name": "幻身", + "Desc": "使用秘技后进入持续#1[i]秒的隐身状态。隐身状态下不会被敌人发现,且主动攻击敌人进入战斗时,希儿立即进入增幅状态。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Maze.png", + "LevelUpSkillID": [ + 110207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1102101, + "PointName": "夜行", + "PointDesc": "若当前生命值百分比小于等于#1[i]%,则被敌方目标攻击的概率降低。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1102102, + "PointName": "割裂", + "PointDesc": "增幅状态下希儿的量子属性抗性穿透提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1102103, + "PointName": "涟漪", + "PointDesc": "施放普攻后,希儿的下一次行动提前#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102202, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1102101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1102202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1102102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102206, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1102205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1102103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102209, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1102208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1102208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1102, + "Set4IDList": [ + 108, + 122, + 102 + ], + "Set2IDList": [ + 311, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1103": { + "Name": "希露瓦", + "Desc": "贝洛伯格的机械师,曾任筑城者技术部研究员。\\n身为杰帕德•朗道的姐姐,性格却与弟弟截然不同。\\n钟爱大寒潮前一种名为「摇滚」的古老音乐艺术。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "serval", + "SPNeed": 100, + "BaseType": "Mage", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 110301, + "Name": "余音绕梁", + "Desc": "普攻对指定敌方目标的1个随机相邻目标造成等同于普攻伤害#1[i]%的雷属性伤害。", + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Id": 110302, + "Name": "安可!", + "Desc": "每触发1次天赋的附加伤害,希露瓦恢复#1[i]点能量。", + "ParamList": [ + 4 + ] + }, + "3": { + "Id": 110303, + "Name": "听,齿轮的心跳", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 110304, + "Name": "制造噪音吧!", + "Desc": "施放终结技时,有#1[i]%基础概率使非触电状态下的敌方目标状态陷入与战技相同的触电状态。", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 110305, + "Name": "贝洛伯格最强音!", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 110306, + "Name": "这一曲,贯穿天穹!", + "Desc": "希露瓦对触电状态下的敌方目标造成的伤害提高#1[i]%。", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "110301": { + "Id": 110301, + "Name": "雷鸣音阶", + "Desc": "对指定敌方单体造成等同于希露瓦#1[i]%攻击力的雷属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110302": { + "Id": 110302, + "Name": "电光石火间", + "Desc": "对指定敌方单体造成等同于希露瓦#1[i]%攻击力的雷属性伤害,同时对其相邻目标造成等同于希露瓦#2[i]%攻击力的雷属性伤害,此外有#3[i]%基础概率使受到攻击的敌方目标陷入触电状态,持续#4[i]回合。\\n触电状态下,敌方目标每回合开始时受到等同于希露瓦#5[i]%攻击力的雷属性持续伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 0.3000000002793968, + 0.8000000007450581, + 2, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 0.33000000030733645, + 0.8000000007450581, + 2, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 0.3600000003352761, + 0.8000000007450581, + 2, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 0.3900000003632158, + 0.8000000007450581, + 2, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 0.4200000003911555, + 0.8000000007450581, + 2, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 0.45000000041909516, + 0.8000000007450581, + 2, + 0.62000000057742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 0.4875000002793968, + 0.8000000007450581, + 2, + 0.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 0.5250000001396984, + 0.8000000007450581, + 2, + 0.8000000007450581 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 0.5625000006984919, + 0.8000000007450581, + 2, + 0.9200000008568168 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.6000000005587935, + 0.8000000007450581, + 2, + 1.040000000037253 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 0.6300000005867332, + 0.8000000007450581, + 2, + 1.0919999999459833 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 0.6600000006146729, + 0.8000000007450581, + 2, + 1.1439999998547137 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 0.6900000006426126, + 0.8000000007450581, + 2, + 1.195999999763444 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 0.7200000006705523, + 0.8000000007450581, + 2, + 1.2479999996721745 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 0.7500000006984919, + 0.8000000007450581, + 2, + 1.3000000002793968 + ] + } + } + }, + "110303": { + "Id": 110303, + "Name": "机械热潮登场!", + "Desc": "对敌方全体造成等同于希露瓦#1[i]%攻击力的雷属性伤害,并使触电状态下的敌方目标延长#2[i]回合的触电状态。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 28, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0800000000745058, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1520000000018626, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2239999999292195, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2959999998565763, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3679999997839332, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.530000000493601, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.62000000057742, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.710000000661239, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.872000000672415, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.9440000005997717, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.015999999595806, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.087999999523163, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.1600000001490116, + 2 + ] + } + } + }, + "110304": { + "Id": 110304, + "Name": "燃情和弦", + "Desc": "施放攻击后,对所有触电状态下的敌方目标造成等同于希露瓦#1[i]%攻击力的雷属性附加伤害。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "110306": { + "Id": 110306, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110307": { + "Id": 110307, + "Name": "晚安,贝洛伯格", + "Desc": "立即攻击敌人,进入战斗后对敌方随机单体造成等同于希露瓦#4[i]%攻击力的雷属性伤害,同时有#1[i]%基础概率使敌方每个单体目标陷入触电状态,持续#3[i]回合。\\n触电状态下,敌方目标每回合开始时受到等同于希露瓦#2[i]%攻击力的雷属性持续伤害。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 3, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Maze.png", + "LevelUpSkillID": [ + 110307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1103101, + "PointName": "摇滚", + "PointDesc": "施放战技时,使受到攻击的敌方目标陷入触电状态的基础概率提高#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1103102, + "PointName": "电音", + "PointDesc": "战斗开始时,立即恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 2 + ], + "PointID": 1103103, + "PointName": "狂热", + "PointDesc": "消灭敌方目标后,攻击力提高#1[i]%,持续#2[i]回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103201, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103202, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1103101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103203, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1103202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1103202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103205, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1103102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103206, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1103205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103207, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1103205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1103103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103209, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1103103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "效果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103210, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 88.80000000074506, + "AttackAdd": 4.440000000409782, + "DefenceBase": 51, + "DefenceAdd": 2.5500000005122274, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 124.32000000029802, + "AttackAdd": 4.440000000409782, + "DefenceBase": 71.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 159.8400000007823, + "AttackAdd": 4.440000000409782, + "DefenceBase": 91.80000000074506, + "DefenceAdd": 2.5500000005122274, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 195.36000000033528, + "AttackAdd": 4.440000000409782, + "DefenceBase": 112.20000000018626, + "DefenceAdd": 2.5500000005122274, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 230.88000000081956, + "AttackAdd": 4.440000000409782, + "DefenceBase": 132.6000000005588, + "DefenceAdd": 2.5500000005122274, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 266.40000000037253, + "AttackAdd": 4.440000000409782, + "DefenceBase": 153, + "DefenceAdd": 2.5500000005122274, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 301.9200000008568, + "AttackAdd": 4.440000000409782, + "DefenceBase": 173.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1103, + "Set4IDList": [ + 109, + 117, + 122 + ], + "Set2IDList": [ + 301, + 306, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 351, + 296 + ] + } + }, + "1104": { + "Name": "杰帕德", + "Desc": "银鬃铁卫的戍卫官,贝洛伯格数一数二的战士。\\n表里如一,一丝不苟,从不懈怠。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "gepard", + "SPNeed": 100, + "BaseType": "Knight", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 110401, + "Name": "恪尽职守", + "Desc": "施放战技时,使受到攻击的敌方目标陷入冻结状态的基础概率提高#1[i]%。", + "ParamList": [ + 0.3500000003259629 + ] + }, + "2": { + "Id": 110402, + "Name": "余寒", + "Desc": "战技使敌方目标陷入的冻结状态解除后,目标的速度降低#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 110403, + "Name": "永不陷落", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 110404, + "Name": "精诚所至", + "Desc": "杰帕德在场时,我方全体的效果抵抗提高#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 110405, + "Name": "拳似寒铁", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 110406, + "Name": "不屈的决意", + "Desc": "触发天赋时杰帕德立即行动,且当前生命值的回复量额外增加自身生命上限的#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "110401": { + "Id": 110401, + "Name": "一意之拳", + "Desc": "对指定敌方单体造成等同于杰帕德#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110402": { + "Id": 110402, + "Name": "震慑之击", + "Desc": "对指定敌方单体造成等同于杰帕德#1[i]%攻击力的冰属性伤害,同时有#2[i]%基础概率使受到攻击的敌方目标陷入冻结状态,持续#3[i]回合。\\n冻结状态下,敌方目标不能行动同时每回合开始时受到等同于杰帕德#4[i]%攻击力的冰属性附加伤害。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.6500000006053597, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.6500000006053597, + 1, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6500000006053597, + 1, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 1, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.6500000006053597, + 1, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6500000006053597, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597, + 1, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.6500000006053597, + 1, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.6500000006053597, + 1, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.6500000006053597, + 1, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.6500000006053597, + 1, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.6500000006053597, + 1, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.6500000006053597, + 1, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.6500000006053597, + 1, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 0.6500000006053597, + 1, + 0.7500000006984919 + ] + } + } + }, + "110403": { + "Id": 110403, + "Name": "永屹之壁", + "Desc": "为我方全体提供能够抵消等同于杰帕德#1[i]%防御力+#3[i]伤害的护盾,持续#2[i]回合。", + "Type": "Ultra", + "Tag": "Defence", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 150 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.31875000055879354, + 3, + 240 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3375000001396984, + 3, + 307.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.35625000041909516, + 3, + 375 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.375, + 3, + 420 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3900000003632158, + 3, + 465 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4050000000279397, + 3, + 498.7500000006985 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.4200000003911555, + 3, + 532.5000000004657 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.43500000005587935, + 3, + 566.2500000002328 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.45000000041909516, + 3, + 600 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.46500000008381903, + 3, + 633.7500000006985 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.48000000044703484, + 3, + 667.5000000004657 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4950000001117587, + 3, + 701.2500000002328 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5100000004749745, + 3, + 735 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5250000001396984, + 3, + 768.7500000006985 + ] + } + } + }, + "110404": { + "Id": 110404, + "Name": "不屈之身", + "Desc": "受到致命攻击时杰帕德不会陷入无法战斗状态,并立即回复等同于自身生命上限#1[i]%的生命值。该效果单场战斗中只能触发1次。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + }, + "110406": { + "Id": 110406, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110407": { + "Id": 110407, + "Name": "有情之证", + "Desc": "使用秘技后,下一次战斗开始时为我方全体提供能够抵消等同于杰帕德#1[i]%防御力+#3[i]伤害的护盾,持续#2[i]回合。", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 2, + 150 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Maze.png", + "LevelUpSkillID": [ + 110407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1104101, + "PointName": "刚正", + "PointDesc": "杰帕德被敌方攻击的概率提高。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1104201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104102, + "PointName": "统领", + "PointDesc": "【不屈之身】触发后,杰帕德的能量立即恢复至100%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1104201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1104103, + "PointName": "战意", + "PointDesc": "杰帕德提高等同于自身当前防御力#1[i]%的攻击力,每回合开始时刷新。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104201, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104202, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1104101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104203, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1104202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104205, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1104102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104206, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1104205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104207, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1104103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104209, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1104208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "效果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104210, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1104208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "冰属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 4.455000000074506, + "HPBase": 190.0800000000745, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 4.455000000074506, + "HPBase": 266.1119999999646, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 160.3800000003539, + "DefenceAdd": 4.455000000074506, + "HPBase": 342.1439999998547, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 196.02000000001863, + "DefenceAdd": 4.455000000074506, + "HPBase": 418.1759999997448, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 231.66000000061467, + "DefenceAdd": 4.455000000074506, + "HPBase": 494.2079999996349, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 267.3000000002794, + "DefenceAdd": 4.455000000074506, + "HPBase": 570.2400000002235, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 302.94000000087544, + "DefenceAdd": 4.455000000074506, + "HPBase": 646.2720000001136, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1104, + "Set4IDList": [ + 103, + 106, + 114 + ], + "Set2IDList": [ + 304, + 310, + 317 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusProbabilityBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 285, + 221 + ] + } + }, + "1105": { + "Name": "娜塔莎", + "Desc": "贝洛伯格下层区的医生,也是孩子们的照料者。\\n性格温柔可亲、又藏着危险的一面。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "natasha", + "SPNeed": 90, + "BaseType": "Priest", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 110501, + "Name": "遍识药理", + "Desc": "受到攻击后,若当前生命值百分比小于等于#1[i]%,对自身施放1次治疗,回复等同于自身#2[i]%生命上限+#3[i]的生命值。该效果单场战斗中只能触发1次。", + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984, + 400 + ] + }, + "2": { + "Id": 110502, + "Name": "临床研学", + "Desc": "施放终结技时,对当前生命值百分比小于等于#1[i]%的我方目标附加#2[i]回合的持续治疗效果,目标回合开始时为其回复等同于娜塔莎#3[i]%生命上限+#4[i]的生命值。", + "ParamList": [ + 0.3000000002793968, + 1, + 0.060000000055879354, + 160 + ] + }, + "3": { + "Id": 110503, + "Name": "对症下药", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 110504, + "Name": "妙手回春", + "Desc": "受到攻击后,额外恢复#1[i]点能量。", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 110505, + "Name": "医治未病", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 110506, + "Name": "医者仁心", + "Desc": "施放普攻时,额外造成等同于娜塔莎生命上限#1[i]%的物理属性伤害。", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "110501": { + "Id": 110501, + "Name": "仁慈的背面", + "Desc": "对指定敌方单体造成等同于娜塔莎#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110502": { + "Id": 110502, + "Name": "爱,救护与抉择", + "Desc": "立即为指定我方单体回复等同于娜塔莎#1[f1]%生命上限+#4[i]的生命值,同时目标每回合开始时为其回复等同于娜塔莎#2[f1]%生命上限+#5[i]的生命值,持续#3[i]回合。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07000000006519258, + 0.04799999948590994, + 2, + 70, + 48 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07437500054948032, + 0.05099999997764826, + 2, + 112, + 76.80000000074506 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07875000033527613, + 0.05399999977089465, + 2, + 143.50000000046566, + 98.40000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.08312500012107193, + 0.056999999564141035, + 2, + 175, + 120 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08749999990686774, + 0.060000000055879354, + 2, + 196, + 134.40000000037253 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09100000001490116, + 0.06240000016987324, + 2, + 217, + 148.80000000074506 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09450000012293458, + 0.06480000028386712, + 2, + 232.7500000006985, + 159.6000000005588 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09799999953247607, + 0.06719999969936907, + 2, + 248.50000000046566, + 170.40000000037253 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10150000033900142, + 0.06959999981336296, + 2, + 264.25000000023283, + 181.20000000018626 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1049999997485429, + 0.07199999992735684, + 2, + 280, + 192 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10849999985657632, + 0.07440000004135072, + 2, + 295.7500000006985, + 202.80000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11199999996460974, + 0.0768000001553446, + 2, + 311.50000000046566, + 213.6000000005588 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11550000007264316, + 0.07919999957084656, + 2, + 327.25000000023283, + 224.40000000037253 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.11899999948218465, + 0.08160000038333237, + 2, + 343, + 235.20000000018626 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12250000028871, + 0.08399999979883432, + 2, + 358.7500000006985, + 246 + ] + } + } + }, + "110503": { + "Id": 110503, + "Name": "新生之礼", + "Desc": "立即为我方全体回复等同于娜塔莎#1[f1]%生命上限+#2[i]的生命值。", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09199999994598329, + 92 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.09775000042282045, + 147.20000000018626 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10350000020116568, + 188.6000000005588 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1092499999795109, + 230 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11499999975785613, + 257.6000000005588 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.11959999985992908, + 285.20000000018626 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.12419999996200204, + 305.9000000008382 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.128800000064075, + 326.6000000005588 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13340000016614795, + 347.3000000002794 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.13799999956972897, + 368 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.14260000037029386, + 388.7000000006519 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.14719999977387488, + 409.40000000037253 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.15180000057443976, + 430.10000000009313 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1563999999780208, + 450.80000000074506 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.16100000008009374, + 471.50000000046566 + ] + } + } + }, + "110504": { + "Id": 110504, + "Name": "生机焕发", + "Desc": "为当前生命值百分比小于等于#1[i]%的我方目标提供治疗时,娜塔莎的治疗量提高#2[i]%,该效果对持续治疗效果也会生效。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.6250000002328306 + ] + } + } + }, + "110506": { + "Id": 110506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110507": { + "Id": 110507, + "Name": "催眠研习", + "Desc": "立即攻击敌人,进入战斗后对敌方随机单体造成等同于娜塔莎#4[i]%攻击力的物理属性伤害,并有#1[i]%基础概率使敌方每个单体目标陷入虚弱状态。\\n虚弱状态下的敌方目标对我方造成的伤害降低#2[i]%,持续#3[i]回合。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.3000000002793968, + 1, + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Maze.png", + "LevelUpSkillID": [ + 110507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1105101, + "PointName": "舒缓", + "PointDesc": "施放战技时,解除指定我方单体的#1[i]负面效果。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1105102, + "PointName": "医者", + "PointDesc": "娜塔莎提供的治疗量提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1105103, + "PointName": "调理", + "PointDesc": "施放战技产生的持续回复效果延长#1[i]回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105201, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105202, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1105101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105203, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1105202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1105203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105205, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1105102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105206, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1105205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105207, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1105206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1105103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105209, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1105103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "效果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105210, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 64.80000000074506, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 69, + "DefenceAdd": 3.450000000419095, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 90.72000000067055, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 96.6000000005588, + "DefenceAdd": 3.450000000419095, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 116.64000000059605, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 124.20000000018626, + "DefenceAdd": 3.450000000419095, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 151.80000000074506, + "DefenceAdd": 3.450000000419095, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 168.48000000044703, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 179.40000000037253, + "DefenceAdd": 3.450000000419095, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 194.40000000037253, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 207, + "DefenceAdd": 3.450000000419095, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 220.32000000029802, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 234.6000000005588, + "DefenceAdd": 3.450000000419095, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1105, + "Set4IDList": [ + 101, + 114, + 121 + ], + "Set2IDList": [ + 302, + 317, + 310 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1106": { + "Name": "佩拉", + "Desc": "银鬃铁卫的情报官。\\n性格认真,深受铁卫成员们敬畏。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "pela", + "SPNeed": 110, + "BaseType": "Warlock", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 110601, + "Name": "胜利反馈", + "Desc": "敌方目标被消灭时,佩拉恢复#1[i]点能量。", + "ParamList": [ + 5 + ] + }, + "2": { + "Id": 110602, + "Name": "疾进不止", + "Desc": "施放战技解除增益效果时,速度提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.10000000009313226, + 2, + 1 + ] + }, + "3": { + "Id": 110603, + "Name": "压制升级", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 110604, + "Name": "完全剖析", + "Desc": "施放战技时,有#1[i]%基础概率使敌方目标冰属性抗性降低#2[i]%,持续#3[i]回合。", + "ParamList": [ + 1, + 0.12000000011175871, + 2 + ] + }, + "5": { + "Id": 110605, + "Name": "零度妨害", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 110606, + "Name": "疲弱追击", + "Desc": "施放攻击后,若敌方目标处于负面效果,则对其造成等同于佩拉#1[i]%攻击力的冰属性附加伤害。", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "110601": { + "Id": 110601, + "Name": "冰点射击", + "Desc": "对指定敌方单体造成等同于佩拉#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110602": { + "Id": 110602, + "Name": "低温妨害", + "Desc": "解除指定敌方单体的#2[i]增益效果,同时造成等同于佩拉#1[i]%攻击力的冰属性伤害。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0500000000465661, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.154999999795109, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2600000002421439, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3649999999906868, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.4700000004377216, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5750000001862645, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.706250000745058, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.8375000006053597, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9687500011641532, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.204999999841675, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.31000000028871, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.415000000037253, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5200000004842877, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6250000002328306, + 1 + ] + } + } + }, + "110603": { + "Id": 110603, + "Name": "领域压制", + "Desc": "有#1[i]%基础概率使敌方每个单体目标陷入【通解】状态,同时对敌方全体造成等同于佩拉#4[i]%攻击力的冰属性伤害。\\n【通解】状态下,敌方目标防御力降低#2[i]%,持续#3[i]回合。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.3000000002793968, + 2, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.31000000028871, + 2, + 0.6400000005960464 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.3200000002980232, + 2, + 0.6800000006332994 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.33000000030733645, + 2, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.3400000003166497, + 2, + 0.7600000007078052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.3500000003259629, + 2, + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.3625000005122274, + 2, + 0.8500000007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.375, + 2, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.3875000001862645, + 2, + 0.9500000008847564 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.40000000037252903, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.41000000038184226, + 2, + 1.040000000037253 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.4200000003911555, + 2, + 1.0800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.4300000004004687, + 2, + 1.1200000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.44000000040978193, + 2, + 1.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.45000000041909516, + 2, + 1.2000000001862645 + ] + } + } + }, + "110604": { + "Id": 110604, + "Name": "数据采集", + "Desc": "施放攻击后若敌方目标处于负面效果状态,则佩拉额外恢复#1[f1]点能量。该效果每次攻击只能触发1次。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "110606": { + "Id": 110606, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110607": { + "Id": 110607, + "Name": "先发制人", + "Desc": "立即攻击敌人,进入战斗后对敌方随机单体造成等同于佩拉#4[i]%攻击力的冰属性伤害,同时有#1[i]%基础概率使敌方每个单体目标防御力降低#2[i]%,持续#3[i]回合。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451, + 2, + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Maze.png", + "LevelUpSkillID": [ + 110607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1106101, + "PointName": "痛击", + "PointDesc": "对处于负面效果的敌方目标造成的伤害提高#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1106102, + "PointName": "秘策", + "PointDesc": "佩拉在场时,我方全体的效果命中提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1106103, + "PointName": "追歼", + "PointDesc": "施放战技解除增益效果时,下一次攻击造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106201, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1106101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106203, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1106202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106204, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1106203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106205, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1106102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106206, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1106205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106207, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1106206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106208, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1106103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106209, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1106103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106210, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1106201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "冰属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 74.40000000037253, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 63, + "DefenceAdd": 3.1500000001396984, + "HPBase": 134.40000000037253, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 104.16000000014901, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 88.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 188.160000000149, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.92000000085682, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 113.40000000037253, + "DefenceAdd": 3.1500000001396984, + "HPBase": 241.92000000085682, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 163.6800000006333, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 3.1500000001396984, + "HPBase": 295.6800000006333, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 193.44000000040978, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 163.80000000074506, + "DefenceAdd": 3.1500000001396984, + "HPBase": 349.4400000004098, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 223.20000000018626, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 189, + "DefenceAdd": 3.1500000001396984, + "HPBase": 403.20000000018626, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 252.96000000089407, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 214.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 456.96000000089407, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1106, + "Set4IDList": [ + 104, + 106, + 110 + ], + "Set2IDList": [ + 312, + 310, + 308 + ], + "PropertyList3": [ + "StatusProbabilityBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "StatusProbabilityBase", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 318, + 267 + ] + } + }, + "1107": { + "Name": "克拉拉", + "Desc": "与机械生活在一起的流浪少女。\\n内向、温柔,有一颗纯粹的心。\\n渴望下层区的大家都能成为彼此的「家人」。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "clara", + "SPNeed": 110, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 110701, + "Name": "高大的背影", + "Desc": "施放战技后,不会清除敌方目标的【反击标记】。", + "ParamList": [] + }, + "2": { + "Id": 110702, + "Name": "紧紧的拥抱", + "Desc": "施放终结技后攻击力提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 110703, + "Name": "冰冷的钢甲", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 110704, + "Name": "家人的温暖", + "Desc": "受到攻击后,克拉拉受到的伤害降低#1[i]%,效果持续到自己的下个回合开始。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 110705, + "Name": "小小的承诺", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 110706, + "Name": "长久的陪伴", + "Desc": "我方其他目标遭到攻击后,史瓦罗也有#1[i]%固定概率触发对攻击者的反击,并对攻击目标添加【反击标记】。施放终结技时,额外增加#2[i]次强化反击的次数。", + "ParamList": [ + 0.5000000004656613, + 1 + ] + } + }, + "Skills": { + "110701": { + "Id": 110701, + "Name": "我也想帮上忙", + "Desc": "对指定敌方单体造成等同于克拉拉#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110702": { + "Id": 110702, + "Name": "史瓦罗在看着你", + "Desc": "对敌方全体造成等同于克拉拉#1[i]%攻击力的物理属性伤害,并对所有被史瓦罗标上【反击标记】的敌方目标额外造成等同于克拉拉#2[i]%攻击力物理属性伤害。\\n战技施放后所有【反击标记】失效。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 1.5000000004656613 + ] + } + } + }, + "110703": { + "Id": 110703, + "Name": "是约定不是命令", + "Desc": "施放终结技后克拉拉受到的伤害额外降低#4[i]%且被敌方目标攻击的概率大幅提高,持续#3[i]回合。\\n同时史瓦罗的反击得到强化,当任意我方目标受到攻击后史瓦罗立即施放反击,对敌方目标造成的伤害倍率提高#2[i]%,并对其相邻目标造成相当于主目标50%的伤害。强化效果可生效#5[i]次。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5, + 0.9600000008940697, + 2, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5, + 1.023999999742955, + 2, + 0.1600000001490116, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5, + 1.0879999995231628, + 2, + 0.17000000015832484, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 5, + 1.1520000000018626, + 2, + 0.18000000016763806, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 5, + 1.2159999997820705, + 2, + 0.1900000001769513, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5, + 1.2800000002607703, + 2, + 0.20000000018626451, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5, + 1.3600000003352761, + 2, + 0.21250000037252903, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 5, + 1.440000000409782, + 2, + 0.2249999998603016, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 5, + 1.5200000004842877, + 2, + 0.23750000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5, + 1.6000000005587935, + 2, + 0.25000000023283064, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 5, + 1.6640000003390014, + 2, + 0.26000000024214387, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 5, + 1.7280000001192093, + 2, + 0.2700000002514571, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 5, + 1.792000000597909, + 2, + 0.2800000002607703, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5, + 1.856000000378117, + 2, + 0.29000000027008355, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5, + 1.9200000008568168, + 2, + 0.3000000002793968, + 2 + ] + } + } + }, + "110704": { + "Id": 110704, + "Name": "因为我们是家人", + "Desc": "克拉拉在史瓦罗的保护下受到敌方目标攻击的伤害降低#3[i]%。攻击克拉拉的敌方目标会被史瓦罗标上【反击标记】,并遭到史瓦罗的反击,对其造成等同于克拉拉#2[i]%攻击力的物理属性伤害。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": 25, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.8000000007450581, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.8800000008195639, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.9600000008940697, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 1.040000000037253, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 1.1200000001117587, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1.2000000001862645, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 1.3000000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 1.400000000372529, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 1.5000000004656613, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 1.6800000006332994, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 1.7600000007078052, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 1.840000000782311, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 1.9200000008568168, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 2, + 0.10000000009313226 + ] + } + } + }, + "110706": { + "Id": 110706, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110707": { + "Id": 110707, + "Name": "胜利的小小代价", + "Desc": "立即攻击敌人,进入战斗后克拉拉受到敌方攻击的概率提高,持续#1[i]回合。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 5 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Maze.png", + "LevelUpSkillID": [ + 110707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1107101, + "PointName": "家人", + "PointDesc": "受到攻击时有#1[i]%固定概率解除自身1个负面效果。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1107102, + "PointName": "守护", + "PointDesc": "抵抗控制类负面状态的概率提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1107103, + "PointName": "复仇", + "PointDesc": "史瓦罗的反击造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107202, + "PointName": "伤害强化•物理", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1107101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.031999999890103936, + "Name": "物理属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1107202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1107203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1107102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107206, + "PointName": "伤害强化•物理", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1107205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.04799999948590994, + "Name": "物理属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1107206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1107103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107209, + "PointName": "伤害强化•物理", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1107208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.06399999978020787, + "Name": "物理属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1107208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 100.32000000029802, + "AttackAdd": 5.015999999595806, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 140.44799999985844, + "AttackAdd": 5.015999999595806, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 180.57600000011735, + "AttackAdd": 5.015999999595806, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 220.70400000037625, + "AttackAdd": 5.015999999595806, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 260.83200000063516, + "AttackAdd": 5.015999999595806, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 300.96000000089407, + "AttackAdd": 5.015999999595806, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 341.08799999952316, + "AttackAdd": 5.015999999595806, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1107, + "Set4IDList": [ + 105, + 113, + 115 + ], + "Set2IDList": [ + 306, + 315, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 331, + 277 + ] + } + }, + "1108": { + "Name": "桑博", + "Desc": "地表和地底之间来去自如的行商。\\n自来熟,热情幽默,习惯插科打诨。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "sampo", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 110801, + "Name": "加码的爱", + "Desc": "施放战技时,对敌方随机单体额外造成#1[i]次伤害。", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 110802, + "Name": "热情会传染", + "Desc": "风化状态下的敌方目标被消灭时,使敌方全体有#1[i]%基础概率叠加#2[i]层等同于天赋的风化状态。", + "ParamList": [ + 1, + 1 + ] + }, + "3": { + "Id": 110803, + "Name": "大数字!", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 110804, + "Name": "爱之深,恨之切", + "Desc": "战技击中风化状态大于等于#1[i]层的敌方目标时,使其当前承受的风化状态立即产生相当于原伤害#2[i]%的伤害。", + "ParamList": [ + 5, + 0.0800000000745058 + ] + }, + "5": { + "Id": 110805, + "Name": "超大数字!", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 110806, + "Name": "消费升级", + "Desc": "天赋施加的风化状态的伤害倍率提高#1[i]%。", + "ParamList": [ + 0.1500000001396984 + ] + } + }, + "Skills": { + "110801": { + "Id": 110801, + "Name": "酷炫的刀花", + "Desc": "对指定敌方单体造成等同于桑博#1[i]%攻击力的风属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110802": { + "Id": 110802, + "Name": "反复横跳的爱", + "Desc": "对指定敌方单体造成等同于桑博#2[i]%攻击力的风属性伤害,并额外造成#1[i]次伤害,每次伤害对敌方随机单体造成等同于桑博#2[i]%攻击力的风属性伤害。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4, + 0.2800000002607703 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 4, + 0.3079999997280538 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 4, + 0.3359999998938292 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 0.36400000005960464 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4, + 0.39200000022538006 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 4, + 0.4200000003911555 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4, + 0.4550000000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4, + 0.49000000045634806 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4, + 0.5250000001396984 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.5600000005215406 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4, + 0.5879999999888241 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4, + 0.6160000001545995 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4, + 0.644000000320375 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4, + 0.6720000004861504 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4, + 0.7000000006519258 + ] + } + } + }, + "110803": { + "Id": 110803, + "Name": "惊喜礼盒", + "Desc": "对敌方全体造成等同于桑博#1[i]%攻击力的风属性伤害,同时有#4[i]%基础概率使被攻击的敌方目标受到的持续伤害提高#2[i]%,持续#3[i]回合。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.20000000018626451, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 0.21000000019557774, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 0.22000000020489097, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 0.2300000002142042, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 0.24000000022351742, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 0.25000000023283064, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 0.26250000041909516, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 0.27499999990686774, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 0.28750000009313226, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.3000000002793968, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 0.31000000028871, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 0.3200000002980232, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 0.33000000030733645, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 0.3400000003166497, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 0.3500000003259629, + 2, + 1 + ] + } + } + }, + "110804": { + "Id": 110804, + "Name": "撕风的匕首", + "Desc": "桑博击中敌方目标后有#1[i]%基础概率使目标陷入风化状态,持续#3[i]回合。\\n风化状态下,敌方目标每回合开始时受到等同于桑博#2[i]%攻击力的风属性持续伤害。风化状态最多叠加#4[i]层。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6500000006053597, + 0.20000000018626451, + 3, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6500000006053597, + 0.22000000020489097, + 3, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6500000006053597, + 0.24000000022351742, + 3, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.26000000024214387, + 3, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6500000006053597, + 0.2800000002607703, + 3, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6500000006053597, + 0.31000000028871, + 3, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0.3500000003259629, + 3, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6500000006053597, + 0.40000000037252903, + 3, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597, + 0.4600000004284084, + 3, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6500000006053597, + 0.5200000004842877, + 3, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6500000006053597, + 0.546000000089407, + 3, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6500000006053597, + 0.5720000003930181, + 3, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6500000006053597, + 0.5979999999981374, + 3, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6500000006053597, + 0.6240000003017485, + 3, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6500000006053597, + 0.6500000006053597, + 3, + 5 + ] + } + } + }, + "110806": { + "Id": 110806, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110807": { + "Id": 110807, + "Name": "你最闪亮", + "Desc": "使用秘技后使一定区域内的敌人陷入#1[i]秒的目盲状态,目盲状态下的敌人无法发现我方目标。\\n若主动攻击陷入目盲状态的敌人,进入战斗时有#2[i]%固定概率使敌方每个单体目标行动延后#3[i]%。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 0.25000000023283064 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Maze.png", + "LevelUpSkillID": [ + 110807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1108102, + "PointName": "后手", + "PointDesc": "施放终结技时,额外恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1108103, + "PointName": "加料", + "PointDesc": "风化状态下的敌方目标对桑博造成的伤害降低#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108202, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1108101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1108202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1108203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1108102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108206, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1108205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1108206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1108103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108209, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1108103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "效果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1108201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1108101, + "PointName": "圈套", + "PointDesc": "天赋使敌方陷入风化状态的持续时间延长#1[i]回合。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 117.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 151.20000000018626, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 184.80000000074506, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 218.40000000037253, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 252, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 285.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1108, + "Set4IDList": [ + 110, + 116, + 102 + ], + "Set2IDList": [ + 301, + 303, + 311 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 316, + 263 + ] + } + }, + "1109": { + "Name": "虎克", + "Desc": "地底冒险团队「鼹鼠党」的老大(自封)。\\n热爱自由,将生活视为一场又一场冒险。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "hook", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 110901, + "Name": "早睡早起很健康", + "Desc": "战技强化后造成的伤害提高#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 110902, + "Name": "吃好喝好长身体", + "Desc": "战技使敌方目标陷入的灼烧状态持续时间增加#1[i]回合。", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 110903, + "Name": "不挑不选全都要", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 110904, + "Name": "稀里糊涂没关系", + "Desc": "触发天赋时,有#1[i]%基础概率使指定敌方目标的相邻目标也陷入等同于战技的灼烧状态。", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 110905, + "Name": "好事留名鼹鼠党", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 110906, + "Name": "随时准备打坏人", + "Desc": "虎克对灼烧状态下的敌方目标造成的伤害提高#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "110901": { + "Id": 110901, + "Name": "喂!小心火烛", + "Desc": "对指定敌方单体造成等同于虎克#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110902": { + "Id": 110902, + "Name": "嘿!记得虎克吗", + "Desc": "对指定敌方单体造成等同于虎克#1[i]%攻击力的火属性伤害,同时有#2[i]%基础概率使其陷入灼烧状态,持续#3[i]回合。\\n灼烧状态下,敌方目标每回合开始时受到等同于虎克#4[i]%攻击力的火属性持续伤害。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 1, + 2, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 1, + 2, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 1, + 2, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 1, + 2, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 1, + 2, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 1, + 2, + 0.3875000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 1, + 2, + 0.43750000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 1, + 2, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 1, + 2, + 0.5750000001862645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 1, + 2, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 1, + 2, + 0.6825000008102506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 1, + 2, + 0.7150000003166497 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 1, + 2, + 0.7475000005215406 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 1, + 2, + 0.7800000007264316 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 2, + 0.8125000009313226 + ] + } + } + }, + "110903": { + "Id": 110903, + "Name": "轰!飞来焰火", + "Desc": "对指定敌方单体造成等同于虎克#1[i]%攻击力的火属性伤害。\\n施放终结技后,下一次施放的战技得到强化,强化后的战技能够同时对指定敌方单体及其相邻目标造成伤害。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058 + ] + } + } + }, + "110904": { + "Id": 110904, + "Name": "哈!火上浇油", + "Desc": "攻击处于灼烧状态的敌方目标时,追加1次等同于虎克#1[i]%攻击力的火属性附加伤害,并额外恢复#2[i]点能量。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 5 + ] + } + } + }, + "110906": { + "Id": 110906, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110907": { + "Id": 110907, + "Name": "哎!瞧这一团糟", + "Desc": "立即攻击敌人,进入战斗后对敌方随机单体造成等同于虎克#4[i]%攻击力的火属性伤害,同时有#1[i]%基础概率使敌方每个单体目标陷入灼烧状态,持续#3[i]回合。\\n灼烧状态下,敌方目标每回合开始时受到等同于虎克#2[i]%攻击力的火属性持续伤害。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 3, + 0.5000000004656613 + ] + } + } + }, + "110909": { + "Id": 110909, + "Name": "嘿!记得虎克吗", + "Desc": "对指定敌方单体造成等同于虎克#1[i]%攻击力的火属性伤害,同时有#2[i]%基础概率使其陷入灼烧状态,持续#3[i]回合。此外对其相邻目标造成等同于虎克#5[i]%攻击力的火属性伤害。\\n灼烧状态下,敌方目标每回合开始时受到等同于虎克#4[i]%攻击力的火属性持续伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 1, + 2, + 0.25000000023283064, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 1, + 2, + 0.27499999990686774, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 1, + 2, + 0.3000000002793968, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 1, + 2, + 0.32499999995343387, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 1, + 2, + 0.3500000003259629, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 1, + 2, + 0.3875000001862645, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 1, + 2, + 0.43750000023283064, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 1, + 2, + 0.5000000004656613, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1, + 2, + 0.5750000001862645, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1, + 2, + 0.6500000006053597, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1, + 2, + 0.6825000008102506, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1, + 2, + 0.7150000003166497, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1, + 2, + 0.7475000005215406, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 1, + 2, + 0.7800000007264316, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 1, + 2, + 0.8125000009313226, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Maze.png", + "LevelUpSkillID": [ + 110907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 1109101, + "PointName": "童真", + "PointDesc": "触发天赋时,回复等同于虎克生命上限#1[i]%的生命值。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1109102, + "PointName": "无邪", + "PointDesc": "抵抗控制类负面状态的概率提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.20000000018626451 + ], + "PointID": 1109103, + "PointName": "玩火", + "PointDesc": "施放终结技后,虎克的行动提前#2[i]%并额外恢复#1[i]点能量。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1109101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1109202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109204, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1109203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1109102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1109205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1109206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109208, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1109103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1109208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1109208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 182.40000000037253, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 117.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 255.36000000033528, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 151.20000000018626, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 328.320000000298, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 184.80000000074506, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 401.28000000026077, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 218.40000000037253, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 474.2400000002235, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 252, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 547.2000000001863, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 285.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 620.160000000149, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1109, + "Set4IDList": [ + 117, + 122, + 107 + ], + "Set2IDList": [ + 301, + 309, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1110": { + "Name": "玲可", + "Desc": "贝洛伯格的雪原探险家,朗道家的小妹妹。\\n性格淡定,行动力极强。常常孤身前往雪原探险。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "lynx", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 111001, + "Name": "远行雪杖的清晨", + "Desc": "为当前生命值百分比小于等于#1[i]%的我方目标提供治疗时,玲可的治疗量提高#2[i]%,该效果对持续治疗效果也会生效。", + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Id": 111002, + "Name": "便携炉具的正午", + "Desc": "持有【求生反应】的目标被施加负面效果时可抵抗#1[i]负面效果。", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 111003, + "Name": "雪崩信标的午后", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 111004, + "Name": "露营篝火的薄暮", + "Desc": "获得【求生反应】时,使该目标攻击力提高,提高数值等同于玲可#1[f1]%生命上限的攻击力,持续#2[i]回合。", + "ParamList": [ + 0.030000000027939677, + 1 + ] + }, + "5": { + "Id": 111005, + "Name": "极光红茶的新夜", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 111006, + "Name": "测绘图纸的黎明", + "Desc": "【求生反应】的生命上限提高效果额外提高,提高数值等同于玲可#1[f1]%的生命上限,并使其效果抵抗提高#2[i]%。", + "ParamList": [ + 0.060000000055879354, + 0.3000000002793968 + ] + } + }, + "Skills": { + "111001": { + "Id": 111001, + "Name": "冰攀前齿技术", + "Desc": "对指定敌方单体造成等同于自身#1[i]%生命上限的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "111002": { + "Id": 111002, + "Name": "盐渍野营罐头", + "Desc": "为指定我方单体附上【求生反应】,提高等同于玲可#1[f1]%生命上限+#2[i]的生命上限,若该目标为「毁灭」或「存护」命途,被敌方攻击的概率大幅提高,【求生反应】持续#3[i]回合。\\n使该目标回复等同于玲可#4[f1]%生命上限+#5[i]的生命值。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 50, + 2, + 0.0800000000745058, + 80, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.05250000022351742, + 80, + 2, + 0.08499999972991645, + 128, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.054999999701976776, + 102.50000000046566, + 2, + 0.09000000008381903, + 164, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.057499999878928065, + 125, + 2, + 0.09499999973922968, + 200, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.060000000055879354, + 140, + 2, + 0.10000000009313226, + 224, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.06250000023283064, + 155, + 2, + 0.10399999981746078, + 248, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06562500027939677, + 166.25000000023283, + 2, + 0.1079999995417893, + 266, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.0687500003259629, + 177.50000000046566, + 2, + 0.11199999996460974, + 284, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07187500107102096, + 188.7500000006985, + 2, + 0.11599999968893826, + 302, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.07499999972060323, + 200, + 2, + 0.12000000011175871, + 320, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.07749999989755452, + 211.25000000023283, + 2, + 0.12399999983608723, + 338, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.0800000000745058, + 222.50000000046566, + 2, + 0.12799999956041574, + 356, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.0825000002514571, + 233.7500000006985, + 2, + 0.1319999999832362, + 374, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.08499999972991645, + 245, + 2, + 0.1359999997075647, + 392, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.08749999990686774, + 256.25000000023283, + 2, + 0.14000000013038516, + 410, + 5 + ] + } + } + }, + "111003": { + "Id": 111003, + "Name": "雪原急救方案", + "Desc": "解除我方全体的#1[i]负面效果,立即为我方全体回复等同于玲可#2[f1]%生命上限+#3[i]的生命值。", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.09000000008381903, + 90 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.09562500030733645, + 144 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.10125000053085387, + 184.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.10687500075437129, + 225 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.11250000027939677, + 252 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.11699999962002039, + 279 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.12150000035762787, + 299.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.12599999969825149, + 319.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.13050000043585896, + 339.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.13499999977648258, + 360 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.13949999981559813, + 380.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.14399999985471368, + 400.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.14849999989382923, + 420.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.15299999993294477, + 441 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.15749999997206032, + 461.25000000023283 + ] + } + } + }, + "111004": { + "Id": 111004, + "Name": "户外生存经验", + "Desc": "施放战技或终结技时,使我方目标获得#1[i]回合的持续治疗效果,目标每回合开始时回复等同于玲可#2[f1]%生命上限+#3[i]的生命值。若该目标持有【求生反应】,则持续治疗效果额外回复等同于玲可#4[f1]%生命上限+#5[i]的生命值。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.02399999974295497, + 24, + 0.030000000027939677, + 30 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.02549999998882413, + 38.40000000037253, + 0.03187500103376806, + 48 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.026999999536201358, + 49.200000000186265, + 0.033750000642612576, + 61.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.028499999782070518, + 60, + 0.035625000251457095, + 75 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.030000000027939677, + 67.20000000018626, + 0.037499999860301614, + 84 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.03120000008493662, + 74.40000000037253, + 0.03899999940767884, + 93 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.03240000014193356, + 79.80000000074506, + 0.04050000035203993, + 99.75000000069849 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.0336000001989305, + 85.20000000018626, + 0.04199999989941716, + 106.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.034800000255927444, + 90.6000000005588, + 0.04350000014528632, + 113.25000000023283 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.035999999614432454, + 96, + 0.04499999969266355, + 120 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.037199999671429396, + 101.40000000037253, + 0.04649999993853271, + 126.75000000069849 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.03839999972842634, + 106.80000000074506, + 0.04799999948590994, + 133.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.03959999978542328, + 112.20000000018626, + 0.0494999997317791, + 140.25000000023283 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.04080000054091215, + 117.6000000005588, + 0.05099999997764826, + 147 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.04199999989941716, + 123, + 0.05250000022351742, + 153.7500000006985 + ] + } + } + }, + "111006": { + "Id": 111006, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111007": { + "Id": 111007, + "Name": "巧克力能量棒", + "Desc": "使用秘技后,下一次战斗开始时为我方全体附加玲可天赋的持续治疗效果,持续#1[i]回合。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Maze.png", + "LevelUpSkillID": [ + 111007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1110101, + "PointName": "提前勘测", + "PointDesc": "当持有【求生反应】的目标受到攻击后,玲可立即恢复#1[i]点能量。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1110102, + "PointName": "探险技术", + "PointDesc": "抵抗控制类负面状态的概率提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1110103, + "PointName": "极境求生", + "PointDesc": "天赋产生的持续回复效果延长#1[i]回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110201, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110202, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1110101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110203, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1110202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1110203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110205, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1110102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110206, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1110205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110207, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1110206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1110103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110209, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1110103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110210, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 67.20000000018626, + "AttackAdd": 3.360000000335276, + "DefenceBase": 75, + "DefenceAdd": 3.750000000698492, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 94.0800000000745, + "AttackAdd": 3.360000000335276, + "DefenceBase": 105, + "DefenceAdd": 3.750000000698492, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 120.96000000089407, + "AttackAdd": 3.360000000335276, + "DefenceBase": 135, + "DefenceAdd": 3.750000000698492, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 147.8400000007823, + "AttackAdd": 3.360000000335276, + "DefenceBase": 165, + "DefenceAdd": 3.750000000698492, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 174.72000000067055, + "AttackAdd": 3.360000000335276, + "DefenceBase": 195, + "DefenceAdd": 3.750000000698492, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 201.6000000005588, + "AttackAdd": 3.360000000335276, + "DefenceBase": 225, + "DefenceAdd": 3.750000000698492, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 228.48000000044703, + "AttackAdd": 3.360000000335276, + "DefenceBase": 255, + "DefenceAdd": 3.750000000698492, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1110, + "Set4IDList": [ + 101, + 114, + 106 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1111": { + "Name": "卢卡", + "Desc": "贝洛伯格下层区的冠军拳手,「地火」的得力干将之一。\\n搏击俱乐部的蝉联冠军,以自身的热情激励着下层区有梦想的孩子们。", + "CharaInfo": { + "Camp": "贝洛伯格", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "luka", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 111101, + "Name": "争斗不休", + "Desc": "当卢卡行动时,若指定的敌方目标处于裂伤状态,卢卡造成的伤害提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Id": 111102, + "Name": "敌弱,我强", + "Desc": "若战技击中的敌方目标弱点为物理属性,获得#1[i]层【斗志】。", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 111103, + "Name": "为擂台而生", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 111104, + "Name": "百折不回", + "Desc": "每获得1层【斗志】,攻击力提高#1[i]%,该效果最多叠加#2[i]层。", + "ParamList": [ + 0.05000000004656613, + 4 + ] + }, + "5": { + "Id": 111105, + "Name": "地火之魂", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 111106, + "Name": "冠军应得的喝彩", + "Desc": "施放强化普攻的【碎天拳】击中陷入裂伤状态下的敌方目标后,本次强化普攻使用的【直冲拳】每施放过1段攻击,则额外使其当前承受的裂伤状态立即产生1次相当于原伤害#1[i]%的伤害。", + "ParamList": [ + 0.0800000000745058 + ] + } + }, + "Skills": { + "111101": { + "Id": 111101, + "Name": "直冲拳", + "Desc": "对指定敌方单体造成等同于卢卡#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "111102": { + "Id": 111102, + "Name": "裂伤拳", + "Desc": "对指定敌方单体造成等同于卢卡#1[i]%攻击力的物理属性伤害,随后有#2[i]%基础概率使目标陷入裂伤状态,持续#5[i]回合。\\n裂伤状态下,敌方目标每回合开始时受到等同于自身#3[f1]%生命上限的物理属性持续伤害,最多不超过卢卡攻击力的#4[i]%。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 1, + 0.24000000022351742, + 1.3000000002793968, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 1, + 0.24000000022351742, + 1.4300000004004687, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 1, + 0.24000000022351742, + 1.5600000005215406, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 1, + 0.24000000022351742, + 1.6900000006426126, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 1, + 0.24000000022351742, + 1.8200000007636845, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 1, + 0.24000000022351742, + 2.014999999664724, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 1, + 0.24000000022351742, + 2.2749999999068677, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 1, + 0.24000000022351742, + 2.6000000005587935, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 1, + 0.24000000022351742, + 2.9900000009220093, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 1, + 0.24000000022351742, + 3.3800000003539026, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 1, + 0.24000000022351742, + 3.5489999998826534, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 1, + 0.24000000022351742, + 3.718000000109896, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 1, + 0.24000000022351742, + 3.8870000003371388, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 1, + 0.24000000022351742, + 4.055999999633059, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 1, + 0.24000000022351742, + 4.224999999860302, + 3 + ] + } + } + }, + "111103": { + "Id": 111103, + "Name": "制胜一击", + "Desc": "获得#5[i]层【斗志】,并有#2[i]%基础概率使指定敌方单体受到的伤害提高#3[f1]%,持续#4[i]回合,随后对该目标造成等同于卢卡#1[i]%攻击力的物理属性伤害。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9800000009126961, + 1, + 0.12000000011175871, + 3, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.1119999999646097, + 1, + 0.12799999956041574, + 3, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.243999999947846, + 1, + 0.1359999997075647, + 3, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.375999999931082, + 1, + 0.14399999985471368, + 3, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.5079999999143183, + 1, + 0.15200000000186265, + 3, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.6400000005960464, + 1, + 0.1600000001490116, + 3, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.8050000004004687, + 1, + 0.17000000015832484, + 3, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.970000000903383, + 1, + 0.18000000016763806, + 3, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.1349999997764826, + 1, + 0.1900000001769513, + 3, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.3000000002793968, + 1, + 0.20000000018626451, + 3, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.432000000262633, + 1, + 0.20799999963492155, + 3, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.564000000245869, + 1, + 0.21599999978207052, + 3, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.6960000002291054, + 1, + 0.22399999992921948, + 3, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.8280000002123415, + 1, + 0.23200000007636845, + 3, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.9600000008940697, + 1, + 0.24000000022351742, + 3, + 2 + ] + } + } + }, + "111104": { + "Id": 111104, + "Name": "火花四溅", + "Desc": "卢卡在施放普攻【直冲拳】和战技【裂伤拳】后,获得#1[i]层【斗志】,最多可持有4层【斗志】。当持有的【斗志】大于等于2层时,普攻【直冲拳】强化为【直冲碎天拳】。当强化普攻的【碎天拳】击中陷入裂伤状态下的敌方目标后,则使其当前承受的裂伤状态立即产生1次相当于原伤害#2[i]%的伤害。战斗开始时,卢卡持有1层【斗志】。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.6800000006332994 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.6970000001601875 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.7140000003855675 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.7310000006109476 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.7480000001378357 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.7650000003632158 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.7862500008195639 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.80750000057742 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.8287500010337681 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.8500000007916242 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.8670000003185123 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.8840000005438924 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.9010000007692724 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.9180000002961606 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.9350000005215406 + ] + } + } + }, + "111106": { + "Id": 111106, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111107": { + "Id": 111107, + "Name": "抢先者", + "Desc": "立即攻击敌人,进入战斗后对敌方随机单体造成等同于卢卡#1[i]%攻击力的物理属性伤害,并有#2[i]%基础概率使目标陷入与战技相同的裂伤状态。随后卢卡额外获得1层【斗志】。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + } + } + }, + "111108": { + "Id": 111108, + "Name": "直冲碎天拳", + "Desc": "消耗2层【斗志】,先使用【直冲拳】施放3段攻击,每段攻击对指定敌方单体造成等同于卢卡#1[i]%攻击力的物理属性伤害。\\n再使用【碎天拳】施放1段攻击,对指定敌方单体造成等同于卢卡#2[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.12000000011175871, + 0.48000000044703484 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14000000013038516, + 0.5600000005215406 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1600000001490116, + 0.6400000005960464 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18000000016763806, + 0.7200000006705523 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.22000000020489097, + 0.8800000008195639 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.24000000022351742, + 0.9600000008940697 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.26000000024214387, + 1.040000000037253 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.2800000002607703, + 1.1200000001117587 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Maze.png", + "LevelUpSkillID": [ + 111107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1111101, + "PointName": "动能过载", + "PointDesc": "施放战技时,立即解除敌方目标#1[i]增益效果。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1111102, + "PointName": "循环制动", + "PointDesc": "每获得1层【斗志】,额外恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1111103, + "PointName": "粉碎斗志", + "PointDesc": "施放强化普攻时,【直冲拳】的每1段攻击都有#1[i]%固定概率使卢卡额外施放1段攻击。此效果对额外施放的攻击不会生效。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111202, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1111101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1111202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1111203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1111102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111206, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1111205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1111206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1111103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111209, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1111103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "效果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1111201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1111, + "Set4IDList": [ + 105, + 116, + 102 + ], + "Set2IDList": [ + 301, + 307, + 309 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "BreakDamageAddedRatioBase" + ], + "ScoreRankList": [ + 322, + 284 + ] + } + }, + "1112": { + "Name": "托帕&账账", + "Desc": "星际和平公司旗下「战略投资部」高级干部托帕,领导特殊债务纠察小组。\\n年纪轻轻便已成为「石心十人」之一,基石为「催讨黄玉」。\\n搭档次元扑满「账账」则能敏锐感知「财富」所在,即便是安保、催债、精算等工作也不在话下。\\n如今他们正一同巡行银河,追究各类影响公司业务开展的债务纠纷。", + "CharaInfo": { + "Camp": "星际和平公司", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "topaz", + "SPNeed": 130, + "BaseType": "Rogue", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 111201, + "Name": "未来市场", + "Desc": "陷入【负债证明】状态下的敌方目标受到追加攻击时,将会陷入【被执行】状态,单次攻击内最多生效1次。\\n【被执行】使敌方目标受到的追加攻击的暴击伤害提高#1[i]%,最多叠加#2[i]层。【负债证明】被移除时,【被执行】也会被移除。", + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Id": 111202, + "Name": "善意收购", + "Desc": "账账自身行动并发动攻击后,托帕恢复#1[i]点能量。", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 111203, + "Name": "抓大放小", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 111204, + "Name": "敏捷处理", + "Desc": "账账自身回合开始时,托帕的行动提前#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 111205, + "Name": "需求膨胀", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 111206, + "Name": "激励机制", + "Desc": "账账处于【涨幅惊人!】状态的攻击次数增加#1[i]次,且攻击时火属性抗性穿透提高#2[i]%。", + "ParamList": [ + 1, + 0.10000000009313226 + ] + } + }, + "Skills": { + "111201": { + "Id": 111201, + "Name": "赤字…", + "Desc": "对指定敌方单体造成等同于托帕#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "111202": { + "Id": 111202, + "Name": "支付困难?", + "Desc": "使指定敌方单体陷入【负债证明】状态,使其受到的追加攻击伤害提高#2[i]%。【负债证明】仅对最新被施加的目标生效,我方目标回合开始或行动时,若场上不存在陷入【负债证明】状态的敌方目标,托帕使随机敌方目标陷入【负债证明】状态。\\n使账账对该目标造成等同于托帕#1[i]%攻击力的火属性伤害。施放此战技造成伤害时,被视为发动了追加攻击。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.6250000002328306 + ] + } + } + }, + "111203": { + "Id": 111203, + "Name": "扭亏为盈!", + "Desc": "使账账进入【涨幅惊人!】状态,伤害倍率提高#1[i]%,暴击伤害提高#2[i]%,且当陷入【负债证明】状态下的敌方目标受到我方的普攻、战技或终结技的攻击时,账账行动提前#3[i]%。账账施放#4[i]次攻击后退出【涨幅惊人!】状态。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.12499999976716936, + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.13749999995343387, + 0.5000000004656613, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.1500000001396984, + 0.5000000004656613, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.1625000003259629, + 0.5000000004656613, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.17499999981373549, + 0.5000000004656613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.1875, + 0.5000000004656613, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.20312500023283064, + 0.5000000004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.2187500004656613, + 0.5000000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.23437500069849193, + 0.5000000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.25000000023283064, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.26250000041909516, + 0.5000000004656613, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.27499999990686774, + 0.5000000004656613, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.28750000009313226, + 0.5000000004656613, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.3000000002793968, + 0.5000000004656613, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.3125000004656613, + 0.5000000004656613, + 2 + ] + } + } + }, + "111204": { + "Id": 111204, + "Name": "猪市?!", + "Desc": "战斗开始时召唤账账。账账初始拥有#1[i]点速度,行动时发动追加攻击,对陷入【负债证明】状态下的敌方单体造成等同于托帕#2[i]%攻击力的火属性伤害。\\n陷入【负债证明】状态下的敌方目标受到我方的追加攻击时,账账行动提前#3[i]%。在账账自身回合内,无法触发行动提前效果。\\n当托帕陷入无法战斗状态时账账消失。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 80, + 0.7500000006984919, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 80, + 0.8250000004190952, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 80, + 0.9000000008381903, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 80, + 0.9750000005587935, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 80, + 1.0500000000465661, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 80, + 1.1249999997671694, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 80, + 1.2187500004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 80, + 1.3125000004656613, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 80, + 1.4062500004656613, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 80, + 1.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 80, + 1.5750000001862645, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 80, + 1.6500000006053597, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 80, + 1.725000000325963, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 80, + 1.800000000745058, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 80, + 1.8750000004656613, + 0.5000000004656613 + ] + } + } + }, + "111206": { + "Id": 111206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111207": { + "Id": 111207, + "Name": "明补", + "Desc": "托帕入场时召唤账账,账账会自动搜寻一定范围内的普通战利品与扑满。\\n主动施放秘技使下一场战斗中账账施放首次攻击后,托帕恢复#1[i]点能量。\\n主动施放秘技与大地图内的敌人战斗胜利后,若托帕仍在队伍中,则在获取信用点时额外获取少量信用点,每个地球日内最多额外获取#2[i]点。\\n主动施放秘技与模拟宇宙、差分宇宙内的敌人战斗胜利后,额外获取少量宇宙碎片并有小概率获得1个随机奇物。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 60, + 10000 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Maze.png", + "LevelUpSkillID": [ + 111207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112101, + "PointName": "透支", + "PointDesc": "托帕施放普攻造成伤害时,被视为发动了追加攻击。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1112102, + "PointName": "金融动荡", + "PointDesc": "托帕和账账对拥有火属性弱点的敌方目标造成的伤害提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1112103, + "PointName": "技术性调整", + "PointDesc": "当账账处于【涨幅惊人!】状态施放攻击后,额外使托帕恢复#1[i]点能量。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112201, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1112101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112203, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1112202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112205, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1112102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1112205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112207, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1112103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1112208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112210, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1112208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "火属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 56.10000000009313, + "DefenceAdd": 2.8050000004004687, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 78.54000000050291, + "DefenceAdd": 2.8050000004004687, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 100.9800000009127, + "DefenceAdd": 2.8050000004004687, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 123.42000000039116, + "DefenceAdd": 2.8050000004004687, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 145.86000000080094, + "DefenceAdd": 2.8050000004004687, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.8050000004004687, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 190.74000000068918, + "DefenceAdd": 2.8050000004004687, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1112, + "Set4IDList": [ + 115, + 107, + 117 + ], + "Set2IDList": [ + 318, + 306, + 315 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1201": { + "Name": "青雀", + "Desc": "仙舟「罗浮」太卜司的卜者,兼书库管理员。\\n因工作一再偷闲摸鱼,即将贬无可贬成为「掌门人」。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 79, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 80, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 81, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "qingque", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 120101, + "Name": "散勇化骁摸幺鱼", + "Desc": "施放终结技造成的伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 120102, + "Name": "棋枰作枕好入眠", + "Desc": "青雀每次触发抽牌时,立即恢复#1[i]点能量。", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 120103, + "Name": "观琼视茕门前清", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 120104, + "Name": "帝垣翔鳞和绝张", + "Desc": "施放战技后,有#1[i]%固定概率获得【不求人】状态,持续至本回合结束。\\n【不求人】状态下,施放普攻或施放强化普攻后立即进行1次追加攻击,对该目标造成等同于普攻或强化普攻伤害100%的量子属性伤害。", + "ParamList": [ + 0.24000000022351742 + ] + }, + "5": { + "Id": 120105, + "Name": "七星流离全不靠", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 120106, + "Name": "虚心平意候枭卢", + "Desc": "施放强化普攻后,恢复1个战技点。", + "ParamList": [] + } + }, + "Skills": { + "120101": { + "Id": 120101, + "Name": "门前清", + "Desc": "使用1张当前花色最少的琼玉牌,对指定敌方单体造成等同于青雀#1[i]%攻击力的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120102": { + "Id": 120102, + "Name": "海底捞月", + "Desc": "立即抽取#1[i]张琼玉牌,使自身造成的伤害提高#2[i]%,持续至本回合结束。该效果可以叠加#3[i]层。施放该战技后,本回合不会结束。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.14000000013038516, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.1539999998640269, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.16799999959766865, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.18200000002980232, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.19599999976344407, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.21000000019557774, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.2275000000372529, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.24499999987892807, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.26250000041909516, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.2800000002607703, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.29399999999441206, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.3079999997280538, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.3220000001601875, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.3359999998938292, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.3500000003259629, + 4 + ] + } + } + }, + "120103": { + "Id": 120103, + "Name": "四幺暗刻?和!", + "Desc": "对敌方全体造成等同于青雀#1[i]%攻击力的量子属性伤害,并获得4张相同花色的琼玉牌。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529 + ] + } + } + }, + "120104": { + "Id": 120104, + "Name": "帝垣琼玉", + "Desc": "我方目标回合开始时,青雀会从3种不同花色的琼玉牌中随机抽取1张,最多持有4张琼玉牌。\\n青雀回合开始时,若持有的琼玉牌数为4且花色相同,青雀消耗所有琼玉牌进入【暗杠】状态。\\n处于【暗杠】状态时无法再次施放战技,同时使自身攻击力提高#1[i]%,普攻【门前清】强化为【杠上开花!】,【暗杠】状态会在施放【杠上开花!】后结束。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "120106": { + "Id": 120106, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120107": { + "Id": 120107, + "Name": "独弈之乐", + "Desc": "使用秘技后,进入战斗时青雀会抽取#1[i]张琼玉牌。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + }, + "120108": { + "Id": 120108, + "Name": "杠上开花!", + "Desc": "对指定敌方单体造成等同于青雀#1[i]%攻击力的量子属性伤害,并对其相邻目标造成等同于青雀#2[i]%攻击力的量子属性伤害。\\n【杠上开花!】无法恢复战技点。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.440000000409782, + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9200000008568168, + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.6400000005960464, + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.1200000001117587, + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.360000000335276, + 1.400000000372529 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Maze.png", + "LevelUpSkillID": [ + 120107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201101, + "PointName": "争番", + "PointDesc": "施放战技时,恢复1个战技点。该效果单场战斗中只能触发1次。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1201102, + "PointName": "听牌", + "PointDesc": "战技使自身造成的伤害提高效果额外提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1201103, + "PointName": "抢杠", + "PointDesc": "施放强化普攻后,青雀的速度提高#1[i]%,持续1回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201202, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1201101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1201202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1201202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1201102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201206, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1201205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1201205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1201103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201209, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1201103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 88.80000000074506, + "AttackAdd": 4.440000000409782, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 124.32000000029802, + "AttackAdd": 4.440000000409782, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 159.8400000007823, + "AttackAdd": 4.440000000409782, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 195.36000000033528, + "AttackAdd": 4.440000000409782, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 230.88000000081956, + "AttackAdd": 4.440000000409782, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 266.40000000037253, + "AttackAdd": 4.440000000409782, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 301.9200000008568, + "AttackAdd": 4.440000000409782, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1201, + "Set4IDList": [ + 108, + 102, + 111 + ], + "Set2IDList": [ + 309, + 305, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1202": { + "Name": "停云", + "Desc": "仙舟「罗浮」天舶司的接渡使。\\n随商团出使过众多世界,缔结贸易与盟谊。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "tingyun", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 120201, + "Name": "春风得意,时运驰骋", + "Desc": "得到【赐福】的我方单体施放终结技后速度提高#1[i]%,持续1回合。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 120202, + "Name": "君子惠渥,晏笑承之", + "Desc": "得到【赐福】的我方单体在消灭敌方目标时恢复#1[i]点能量,该效果每回合只能触发1次。", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 120203, + "Name": "青丘遗泽", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 120204, + "Name": "鸣火机变,度时察势", + "Desc": "【赐福】附加的伤害倍率提高#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 120205, + "Name": "绥绥狐魅", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 120206, + "Name": "和气生财,泽盈四方", + "Desc": "终结技为我方目标恢复的能量提高#1[i]点。", + "ParamList": [ + 10 + ] + } + }, + "Skills": { + "120201": { + "Id": 120201, + "Name": "逐客令", + "Desc": "对指定敌方单体造成等同于停云#1[i]%攻击力的雷属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120202": { + "Id": 120202, + "Name": "祥音和韵", + "Desc": "为指定我方单体提供【赐福】,使其攻击力提高#2[i]%,最高不超过停云当前攻击力的#4[i]%。\\n获得【赐福】的目标施放攻击后,会额外造成1次等同于其自身#1[i]%攻击力的雷属性附加伤害。\\n【赐福】持续#3[i]回合且仅对停云战技最新的施放目标生效。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064, + 3, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.27499999990686774, + 3, + 0.1600000001490116 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.3000000002793968, + 3, + 0.17000000015832484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.32499999995343387, + 3, + 0.18000000016763806 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.3500000003259629, + 3, + 0.1900000001769513 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375, + 3, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.4062500004656613, + 3, + 0.21250000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.43750000023283064, + 3, + 0.2249999998603016 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.46875000069849193, + 3, + 0.23750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 3, + 0.25000000023283064 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.5250000001396984, + 3, + 0.26000000024214387 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.5500000005122274, + 3, + 0.2700000002514571 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.5750000001862645, + 3, + 0.2800000002607703 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.6000000005587935, + 3, + 0.29000000027008355 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.6250000002328306, + 3, + 0.3000000002793968 + ] + } + } + }, + "120203": { + "Id": 120203, + "Name": "庆云光覆仪祷", + "Desc": "为指定我方单体恢复#1[i]点能量,同时使目标造成的伤害提高#3[i]%,持续#2[i]回合。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 50, + 2, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 50, + 2, + 0.2300000002142042 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 50, + 2, + 0.26000000024214387 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 50, + 2, + 0.29000000027008355 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 50, + 2, + 0.3200000002980232 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 50, + 2, + 0.3500000003259629 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 50, + 2, + 0.3875000001862645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 50, + 2, + 0.42500000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 50, + 2, + 0.4625000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 50, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 50, + 2, + 0.530000000493601 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 50, + 2, + 0.5600000005215406 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 50, + 2, + 0.5900000005494803 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 50, + 2, + 0.62000000057742 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 50, + 2, + 0.6500000006053597 + ] + } + } + }, + "120204": { + "Id": 120204, + "Name": "紫电扶摇", + "Desc": "敌方目标受到停云攻击后,获得【赐福】的目标立即对其造成等同于自身#1[i]%攻击力的雷属性附加伤害。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919 + ] + } + } + }, + "120206": { + "Id": 120206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120207": { + "Id": 120207, + "Name": "惠风和畅", + "Desc": "使用秘技后立即为自身恢复#1[i]点能量。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 50 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Maze.png", + "LevelUpSkillID": [ + 120207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1202101, + "PointName": "驻晴", + "PointDesc": "施放战技时,停云自身速度提高#1[i]%,持续1回合。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1202103, + "PointName": "亨通", + "PointDesc": "停云的回合开始时,自身立即恢复#1[i]点能量。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202202, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1202101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1202202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202204, + "PointName": "伤害强化•雷", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1202201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "雷属性伤害提高" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1202102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202206, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1202205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1202201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202208, + "PointName": "伤害强化•雷", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1202103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "雷属性伤害提高" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202209, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1202208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1202208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903 + ], + "PointID": 1202102, + "PointName": "止厄", + "PointDesc": "普攻造成的伤害提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 72, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 115.20000000018626, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 100.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 161.28000000026077, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 129.6000000005588, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 207.36000000033528, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 158.40000000037253, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 253.44000000040978, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 187.20000000018626, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 299.5200000004843, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 216, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 345.6000000005588, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 244.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 391.6800000006333, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1202, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 308, + 312, + 302 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 318, + 263 + ] + } + }, + "1203": { + "Name": "罗刹", + "Desc": "随身携带着棺椁,自天之外海而来的化外行商。\\n医术精湛。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "luocha", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 120301, + "Name": "濯洗生者", + "Desc": "结界生效时我方全体攻击力提高#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 120302, + "Name": "净庭赐礼", + "Desc": "触发战技效果时,若指定我方目标当前生命值百分比小于50%,则罗刹提供的治疗量提高#1[i]%;若指定我方目标当前生命值百分比大于等于50%,则为其提供能够抵消等同于罗刹#2[i]%攻击力+#3[i]伤害的护盾,持续#4[i]回合。", + "ParamList": [ + 0.3000000002793968, + 0.18000000016763806, + 240, + 2 + ] + }, + "3": { + "Id": 120303, + "Name": "愚人试探", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 120304, + "Name": "荆冠审判", + "Desc": "结界生效时使敌方目标陷入虚弱状态,造成的伤害降低#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 120305, + "Name": "受难之痕", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 120306, + "Name": "皆归尘土", + "Desc": "施放终结技时,有#1[i]%固定概率使敌方全体全属性抗性降低#2[i]%,持续#3[i]回合。", + "ParamList": [ + 1, + 0.20000000018626451, + 2 + ] + } + }, + "Skills": { + "120301": { + "Id": 120301, + "Name": "黑渊的棘刺", + "Desc": "对指定敌方单体造成等同于罗刹#1[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120302": { + "Id": 120302, + "Name": "白花的祈望", + "Desc": "施放战技后立即为指定我方单体回复等同于罗刹#1[i]%攻击力+#2[i]的生命值,并使罗刹获得1层【白花之刻】。\\n当我方任意单体当前生命值百分比小于等于#3[i]%时,罗刹会立即对其触发1次等同于战技的效果,此次触发不消耗战技点。该效果在#4[i]回合后可再次触发。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 200, + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.42500000004656613, + 320, + 0.5000000004656613, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.45000000041909516, + 410, + 0.5000000004656613, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.47500000009313226, + 500, + 0.5000000004656613, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 560, + 0.5000000004656613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5200000004842877, + 620, + 0.5000000004656613, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5400000005029142, + 665, + 0.5000000004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5600000005215406, + 710, + 0.5000000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5800000005401671, + 755, + 0.5000000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 800, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.62000000057742, + 845, + 0.5000000004656613, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6400000005960464, + 890, + 0.5000000004656613, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6600000006146729, + 935, + 0.5000000004656613, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6800000006332994, + 980, + 0.5000000004656613, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7000000006519258, + 1025, + 0.5000000004656613, + 2 + ] + } + } + }, + "120303": { + "Id": 120303, + "Name": "归葬的遂愿", + "Desc": "解除敌方全体#2[i]增益效果,并对敌方全体造成等同于罗刹#1[i]%攻击力的虚数属性伤害,同时使罗刹获得1层【白花之刻】。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529, + 1 + ] + } + } + }, + "120304": { + "Id": 120304, + "Name": "生息的轮转", + "Desc": "当【白花之刻】达到#1[i]层时,罗刹会消耗全部【白花之刻】展开结界。\\n处于结界中的任意敌方目标受到攻击后,施放攻击的我方目标立即回复等同于罗刹#2[f1]%攻击力+#4[i]的生命值。\\n结界效果持续#3[i]回合。当罗刹陷入无法战斗状态时,结界也会被解除。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.12000000011175871, + 2, + 60 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.12749999994412065, + 2, + 96 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.13499999977648258, + 2, + 123 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.14250000030733645, + 2, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.1500000001396984, + 2, + 168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.15599999972619116, + 2, + 186 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.16200000001117587, + 2, + 199.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.16799999959766865, + 2, + 213 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.17399999988265336, + 2, + 226.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.18000000016763806, + 2, + 240 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.18599999975413084, + 2, + 253.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.19200000003911555, + 2, + 267 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.19799999962560833, + 2, + 280.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.20399999991059303, + 2, + 294 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.21000000019557774, + 2, + 307.50000000046566 + ] + } + } + }, + "120306": { + "Id": 120306, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120307": { + "Id": 120307, + "Name": "愚者的悲悯", + "Desc": "使用秘技后,下一次战斗开始时立即触发天赋。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Maze.png", + "LevelUpSkillID": [ + 120307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1203101, + "PointName": "浸池苏生", + "PointDesc": "触发战技效果时,解除指定我方单体的#1[i]负面效果。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1203101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1203202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1203203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1203102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1203205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1203206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1203103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1203103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.07000000006519258, + 93 + ], + "PointID": 1203102, + "PointName": "浇灌尘身", + "PointDesc": "处于结界中的任意敌方目标受到我方攻击后,除攻击者外的我方目标也会回复等同于罗刹#1[f1]%攻击力+#2[i]的生命值。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7000000006519258 + ], + "PointID": 1203103, + "PointName": "行过幽谷", + "PointDesc": "抵抗控制类负面状态的概率提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 174.24000000022352, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 243.93600000045262, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 313.6320000004489, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 383.3279999997467, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 453.02399999974295, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 522.7200000006706, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 592.4159999999683, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1203, + "Set4IDList": [ + 101, + 121, + 102 + ], + "Set2IDList": [ + 301, + 317, + 308 + ], + "PropertyList3": [ + "HealRatioBase", + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 322, + 266 + ] + } + }, + "1204": { + "Name": "景元", + "Desc": "仙舟联盟帝弓七天将之一,负责节制罗浮云骑军的「神策将军」。\\n师从前代「罗浮」剑首,但并不显名于武力。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 31, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jingyuan", + "SPNeed": 130, + "BaseType": "Mage", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 120401, + "Name": "星流霆击碎昆冈", + "Desc": "【神君】施放攻击时,对指定敌方单体的相邻目标造成的伤害倍率额外提高,提高数值等同于对主目标伤害倍率的#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Id": 120402, + "Name": "戎戈动地开天阵", + "Desc": "【神君】行动后,景元的普攻、战技、终结技造成的伤害提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "3": { + "Id": 120403, + "Name": "移锋惊电冲霄汉", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 120404, + "Name": "刃卷横云落玉沙", + "Desc": "【神君】每段攻击后,景元恢复#1[i]点能量。", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 120405, + "Name": "百战弃躯轻死生", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 120406, + "Name": "威灵有应破敌雠", + "Desc": "【神君】每段攻击后会使指定敌方目标额外陷入易伤状态。\\n易伤状态下的敌方目标受到的伤害提高#1[i]%,持续至【神君】本次攻击结束,该效果最多叠加#2[i]层。", + "ParamList": [ + 0.12000000011175871, + 3 + ] + } + }, + "Skills": { + "120401": { + "Id": 120401, + "Name": "石火流光", + "Desc": "对指定敌方单体造成等同于景元#1[i]%攻击力的雷属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120402": { + "Id": 120402, + "Name": "紫霄震曜", + "Desc": "对敌方全体造成等同于景元#1[i]%攻击力的雷属性伤害,同时增加#2[i]段【神君】下回合的攻击段数。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 2 + ] + } + } + }, + "120403": { + "Id": 120403, + "Name": "吾身光明", + "Desc": "对敌方全体造成等同于景元#1[i]%攻击力的雷属性伤害。同时增加#2[i]段【神君】下回合的攻击段数。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529, + 3 + ] + } + } + }, + "120404": { + "Id": 120404, + "Name": "斩勘神形", + "Desc": "战斗开始时召唤【神君】。【神君】初始拥有#1[i]点速度以及#4[i]段攻击段数,行动时发动追加攻击,每段攻击对随机敌方单体造成等同于景元攻击力#2[i]%的雷属性伤害,同时对其相邻目标造成等同于主目标#5[i]%的雷属性伤害。\\n【神君】最多累计#6[i]段攻击段数且每增加1段攻击段数,速度提高#3[i]点,行动结束后速度和攻击段数恢复至初始状态。\\n当景元陷入无法战斗状态时【神君】消失。\\n当景元受到控制类负面状态影响时【神君】也无法行动。", + "Type": null, + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 60, + 0.33000000030733645, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 60, + 0.3630000001285225, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 60, + 0.3959999999497086, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 60, + 0.42899999977089465, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 60, + 0.46200000029057264, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 60, + 0.4950000001117587, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 60, + 0.5362500005867332, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 60, + 0.5775000003632158, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 60, + 0.6187500008381903, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 60, + 0.6600000006146729, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 60, + 0.693000000435859, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 60, + 0.726000000257045, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 60, + 0.7590000000782311, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 60, + 0.7920000005979091, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 60, + 0.8250000004190952, + 10, + 3, + 0.25000000023283064, + 10 + ] + } + } + }, + "120406": { + "Id": 120406, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120407": { + "Id": 120407, + "Name": "摄召威灵", + "Desc": "使用秘技后,下一次战斗开始时【神君】第1回合的攻击段数增加#1[i]段。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Maze.png", + "LevelUpSkillID": [ + 120407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1204101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1204202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1204202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1204102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1204205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1204205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1204103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1204103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 6, + 0.25000000023283064 + ], + "PointID": 1204101, + "PointName": "破阵", + "PointDesc": "若【神君】下回合的攻击段数大于等于#1[i]段,则其下回合的暴击伤害提高#2[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1204102, + "PointName": "绸缪", + "PointDesc": "战斗开始时,立即恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1204103, + "PointName": "遣将", + "PointDesc": "施放战技后,暴击率提升#1[i]%,持续#2[i]回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1204, + "Set4IDList": [ + 115, + 109, + 122 + ], + "Set2IDList": [ + 318, + 306, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1205": { + "Name": "刃", + "Desc": "「星核猎手」的成员,弃身锋刃的剑客。\\n效忠于「命运的奴隶」,拥有可怖的自愈能力。", + "CharaInfo": { + "Camp": "星核猎手", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "blade", + "SPNeed": 130, + "BaseType": "Warrior", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 120501, + "Name": "剑录大限,地狱变相", + "Desc": "终结技对指定敌方单体造成的伤害额外提高,提高数值等同于刃#1[i]%本场战斗中累计的已损失生命值。\\n本场战斗中累计已损失生命值最高不超过刃生命上限的#2[i]%,施放终结技后会清空并进行重新累计。", + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Id": 120502, + "Name": "支离旧梦,万端遗恨", + "Desc": "刃处于【地狱变】状态时,暴击率提高#1[i]%。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "Id": 120503, + "Name": "冶炼玄钢,铣淬寒芒", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 120504, + "Name": "泉台歧路,百骸回春", + "Desc": "当前生命值百分比从大于50%降低至小于等于50%时,生命上限提高#1[i]%,该效果最多叠加#2[i]层。", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "5": { + "Id": 120505, + "Name": "十王判死,业镜悬照", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 120506, + "Name": "命留魂销,复返此身", + "Desc": "充能的层数上限降低至4层。天赋触发追加攻击造成的伤害额外提高,提高数值等同于刃#1[i]%的生命上限。", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "120501": { + "Id": 120501, + "Name": "支离剑", + "Desc": "对指定敌方单体造成等同于刃#1[i]%攻击力的风属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120502": { + "Id": 120502, + "Name": "地狱变", + "Desc": "消耗等同于刃生命上限#1[i]%的生命值,进入【地狱变】状态。\\n处于【地狱变】状态时无法施放战技,同时使自身造成的伤害提高#4[i]%,普攻【支离剑】强化为【无间剑树】,持续#2[i]回合。\\n若当前生命值不足,施放战技时刃的当前生命值降低至1点。\\n该战技无法恢复能量。施放该战技后,本回合不会结束。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.1479999995790422 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.17599999974481761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.20399999991059303 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.23200000007636845 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.26000000024214387 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.2949999999254942 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.33000000030733645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.3649999999906868 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.4279999998398125 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.45600000000558794 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.48400000017136335 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5120000003371388 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5400000005029142 + ] + } + } + }, + "120503": { + "Id": 120503, + "Name": "大辟万死", + "Desc": "将刃的当前生命值转化为生命上限的50%,并对敌方单体造成等同于刃#1[i]%攻击力+#2[i]%生命上限+#5[i]%本场战斗中累计已损失生命值的风属性伤害,同时对其相邻目标造成等同于刃#3[f1]%攻击力+#4[i]%生命上限+#6[i]%本场战斗中累计已损失生命值的风属性伤害。\\n本场战斗中累计已损失生命值最高不超过刃生命上限的#7[i]%,施放终结技后会清空并进行重新累计。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 0.6000000005587935, + 0.09599999967031181, + 0.24000000022351742, + 0.6000000005587935, + 0.24000000022351742, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.2559999998193234, + 0.6400000005960464, + 0.10240000020712614, + 0.2559999998193234, + 0.6400000005960464, + 0.2559999998193234, + 0.9000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.27200000011362135, + 0.6800000006332994, + 0.10880000004544854, + 0.27200000011362135, + 0.6800000006332994, + 0.27200000011362135, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 0.7200000006705523, + 0.11519999988377094, + 0.28799999970942736, + 0.7200000006705523, + 0.28799999970942736, + 0.9000000008381903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3040000000037253, + 0.7600000007078052, + 0.12160000042058527, + 0.3040000000037253, + 0.7600000007078052, + 0.3040000000037253, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3200000002980232, + 0.8000000007450581, + 0.12799999956041574, + 0.3200000002980232, + 0.8000000007450581, + 0.3200000002980232, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3400000003166497, + 0.8500000007916242, + 0.1359999997075647, + 0.3400000003166497, + 0.8500000007916242, + 0.3400000003166497, + 0.9000000008381903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3600000003352761, + 0.9000000008381903, + 0.14399999985471368, + 0.3600000003352761, + 0.9000000008381903, + 0.3600000003352761, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3800000003539026, + 0.9500000008847564, + 0.15200000000186265, + 0.3800000003539026, + 0.9500000008847564, + 0.3800000003539026, + 0.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 1, + 0.1600000001490116, + 0.40000000037252903, + 1, + 0.40000000037252903, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.41599999996833503, + 1.040000000037253, + 0.166399999987334, + 0.41599999996833503, + 1.040000000037253, + 0.41599999996833503, + 0.9000000008381903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.43200000026263297, + 1.0800000000745058, + 0.17280000052414834, + 0.43200000026263297, + 1.0800000000745058, + 0.43200000026263297, + 0.9000000008381903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.44799999985843897, + 1.1200000001117587, + 0.17919999966397882, + 0.44799999985843897, + 1.1200000001117587, + 0.44799999985843897, + 0.9000000008381903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.4640000001527369, + 1.1600000001490116, + 0.18560000020079315, + 0.4640000001527369, + 1.1600000001490116, + 0.4640000001527369, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.48000000044703484, + 1.2000000001862645, + 0.19200000003911555, + 0.48000000044703484, + 1.2000000001862645, + 0.48000000044703484, + 0.9000000008381903 + ] + } + } + }, + "120504": { + "Id": 120504, + "Name": "倏忽恩赐", + "Desc": "刃受到伤害或消耗生命值时,获得1层充能,最多叠加5层。该效果每次受到攻击最多叠加1层。\\n当充能叠加至上限时,立即对敌方全体施放1次追加攻击,造成等同于刃#2[i]%攻击力+#4[i]%生命上限的风属性伤害并回复等同于刃生命上限#3[i]%的生命值,施放追加攻击后,消耗所有充能。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.22000000020489097, + 0.25000000023283064, + 0.5500000005122274 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.24200000008568168, + 0.25000000023283064, + 0.6050000002142042 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.2639999999664724, + 0.25000000023283064, + 0.6600000006146729 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.2859999998472631, + 0.25000000023283064, + 0.7150000003166497 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.3079999997280538, + 0.25000000023283064, + 0.7700000007171184 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.33000000030733645, + 0.25000000023283064, + 0.8250000004190952 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.35750000015832484, + 0.25000000023283064, + 0.89375000144355 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.3850000000093132, + 0.25000000023283064, + 0.962500001071021 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.41250000055879354, + 0.25000000023283064, + 1.0312500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.44000000040978193, + 0.25000000023283064, + 1.1000000000931323 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.46200000029057264, + 0.25000000023283064, + 1.154999999795109 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.48400000017136335, + 0.25000000023283064, + 1.2100000001955777 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.5060000000521541, + 0.25000000023283064, + 1.2649999998975545 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.5279999999329448, + 0.25000000023283064, + 1.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.5500000005122274, + 0.25000000023283064, + 1.375 + ] + } + } + }, + "120506": { + "Id": 120506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120507": { + "Id": 120507, + "Name": "业途风", + "Desc": "立即攻击敌人,进入战斗后消耗等同于刃生命上限#2[i]%的生命值,同时对敌方全体造成等同于刃生命上限#1[i]%的风属性伤害。\\n若当前生命值不足,施放秘技时刃的当前生命值降低至1点。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "120508": { + "Id": 120508, + "Name": "无间剑树", + "Desc": "消耗等同于刃生命上限#1[i]%的生命值,对指定敌方单体造成等同于刃#2[i]%攻击力+#4[i]%生命上限的风属性伤害,同时对其相邻目标造成等同于刃#3[i]%攻击力+#5[i]%生命上限的风属性伤害。\\n若当前生命值不足,施放【无间剑树】时刃的当前生命值降低至1点。\\n【无间剑树】无法恢复战技点。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 0.0800000000745058, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 0.24000000022351742, + 0.09599999967031181, + 0.6000000005587935, + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 0.2800000002607703, + 0.11199999996460974, + 0.7000000006519258, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 0.3200000002980232, + 0.12799999956041574, + 0.8000000007450581, + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 0.3600000003352761, + 0.14399999985471368, + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 0.40000000037252903, + 0.1600000001490116, + 1, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 0.44000000040978193, + 0.17599999974481761, + 1.1000000000931323, + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 0.48000000044703484, + 0.19200000003911555, + 1.2000000001862645, + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 0.5200000004842877, + 0.20799999963492155, + 1.3000000002793968, + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.5600000005215406, + 0.22399999992921948, + 1.400000000372529, + 0.5600000005215406 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Maze.png", + "LevelUpSkillID": [ + 120507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1205101, + "PointName": "无尽形寿", + "PointDesc": "刃的当前生命值百分比小于等于生命上限的50%时,受到治疗时的回复量提高#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 100 + ], + "PointID": 1205102, + "PointName": "吞忍百死", + "PointDesc": "施放【无间剑树】后,若击中处于弱点击破状态的敌方目标,刃回复等同于自身#1[i]%生命上限+#2[i]的生命值。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1205103, + "PointName": "坏劫隳亡", + "PointDesc": "天赋施放的追加攻击伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205201, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1205101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205203, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1205202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1205203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205205, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1205102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1205205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205207, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1205206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1205103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205210, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1120501, + "Name": "剑录大限,地狱变相", + "Desc": "强化普攻与终结技对指定敌方单体造成的伤害额外提高,提高数值等同于刃#1[i]%本场战斗中累计的已损失生命值。\\n本场战斗中累计已损失生命值最高不超过刃生命上限的#2[i]%,施放终结技后会清空并进行重新累计。", + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Id": 1120502, + "Name": "支离旧梦,万端遗恨", + "Desc": "刃处于【地狱变】状态时,暴击率提高#1[i]%。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "Id": 1120503, + "Name": "冶炼玄钢,铣淬寒芒", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 1120504, + "Name": "泉台歧路,百骸回春", + "Desc": "当前生命值百分比从大于50%降低至小于等于50%时,生命上限提高#1[i]%,该效果最多叠加#2[i]层。", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "5": { + "Id": 1120505, + "Name": "十王判死,业镜悬照", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 1120506, + "Name": "命留魂销,复返此身", + "Desc": "充能的层数上限降低至4层。天赋触发追加攻击造成的伤害额外提高,提高数值等同于刃#1[i]%的生命上限。", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "1120501": { + "Id": 1120501, + "Name": "支离剑", + "Desc": "对指定敌方单体造成等同于刃#1[i]%生命上限的风属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "1120502": { + "Id": 1120502, + "Name": "地狱变", + "Desc": "消耗等同于刃生命上限#1[i]%的生命值,进入【地狱变】状态。\\n处于【地狱变】状态时无法施放战技,同时使自身造成的伤害提高#4[i]%,被敌方目标攻击的概率大幅提高,普攻【支离剑】强化为【无间剑树】,持续#2[i]回合。\\n若当前生命值不足,施放战技时刃的当前生命值降低至1点。\\n该战技无法恢复能量。施放该战技后,本回合不会结束。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.12000000011175871, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.1479999995790422, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.17599999974481761, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.20399999991059303, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.23200000007636845, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.26000000024214387, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.2949999999254942, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.33000000030733645, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.3649999999906868, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.40000000037252903, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.4279999998398125, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.45600000000558794, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.48400000017136335, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5120000003371388, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5400000005029142, + 5 + ] + } + } + }, + "1120503": { + "Id": 1120503, + "Name": "大辟万死", + "Desc": "将刃的当前生命值转化为生命上限的50%,并对敌方单体造成等同于刃#1[i]%生命上限+#5[i]%本场战斗中累计已损失生命值的风属性伤害,同时对其相邻目标造成等同于刃#3[f1]%生命上限+#6[i]%本场战斗中累计已损失生命值的风属性伤害。\\n本场战斗中累计已损失生命值最高不超过刃生命上限的#7[i]%,施放终结技后会清空并进行重新累计。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.6000000005587935, + 0.3600000003352761, + 0.3000000002793968, + 0.6000000005587935, + 0.3000000002793968, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.6400000005960464, + 0.3840000000782311, + 0.3200000002980232, + 0.6400000005960464, + 0.3200000002980232, + 0.9000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.6800000006332994, + 0.40799999982118607, + 0.3400000003166497, + 0.6800000006332994, + 0.3400000003166497, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.7200000006705523, + 0.43200000026263297, + 0.3600000003352761, + 0.7200000006705523, + 0.3600000003352761, + 0.9000000008381903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.7600000007078052, + 0.45600000000558794, + 0.3800000003539026, + 0.7600000007078052, + 0.3800000003539026, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.8000000007450581, + 0.48000000044703484, + 0.40000000037252903, + 0.8000000007450581, + 0.40000000037252903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.8500000007916242, + 0.5100000004749745, + 0.42500000004656613, + 0.8500000007916242, + 0.42500000004656613, + 0.9000000008381903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.9000000008381903, + 0.5400000005029142, + 0.45000000041909516, + 0.9000000008381903, + 0.45000000041909516, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.9500000008847564, + 0.5700000005308539, + 0.47500000009313226, + 0.9500000008847564, + 0.47500000009313226, + 0.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1, + 0.6000000005587935, + 0.5000000004656613, + 1, + 0.5000000004656613, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 1.040000000037253, + 0.6240000003017485, + 0.5200000004842877, + 1.040000000037253, + 0.5200000004842877, + 0.9000000008381903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 1.0800000000745058, + 0.6480000000447035, + 0.5400000005029142, + 1.0800000000745058, + 0.5400000005029142, + 0.9000000008381903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 1.1200000001117587, + 0.6720000004861504, + 0.5600000005215406, + 1.1200000001117587, + 0.5600000005215406, + 0.9000000008381903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 1.1600000001490116, + 0.6960000002291054, + 0.5800000005401671, + 1.1600000001490116, + 0.5800000005401671, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 1.2000000001862645, + 0.7200000006705523, + 0.6000000005587935, + 1.2000000001862645, + 0.6000000005587935, + 0.9000000008381903 + ] + } + } + }, + "1120504": { + "Id": 1120504, + "Name": "倏忽恩赐", + "Desc": "刃受到伤害或消耗生命值时,获得1层充能,最多叠加5层。该效果每次受到攻击最多叠加1层。\\n当充能叠加至上限时,立即对敌方全体施放1次追加攻击,造成等同于刃#2[i]%生命上限的风属性伤害并回复等同于刃生命上限#3[i]%的生命值,施放追加攻击后,消耗所有充能。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.6500000006053597, + 0.25000000023283064, + 0.6500000006053597 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.7150000003166497, + 0.25000000023283064, + 0.7150000003166497 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.7800000007264316, + 0.25000000023283064, + 0.7800000007264316 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.8450000004377216, + 0.25000000023283064, + 0.8450000004377216 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.9100000008475035, + 0.25000000023283064, + 0.9100000008475035 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.9750000005587935, + 0.25000000023283064, + 0.9750000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1.0562500001396984, + 0.25000000023283064, + 1.0562500001396984 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1.1374999999534339, + 0.25000000023283064, + 1.1374999999534339 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1.2187500004656613, + 0.25000000023283064, + 1.2187500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.3000000002793968, + 0.25000000023283064, + 1.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1.3649999999906868, + 0.25000000023283064, + 1.3649999999906868 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1.4300000004004687, + 0.25000000023283064, + 1.4300000004004687 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1.4950000001117587, + 0.25000000023283064, + 1.4950000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1.5600000005215406, + 0.25000000023283064, + 1.5600000005215406 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1.6250000002328306, + 0.25000000023283064, + 1.6250000002328306 + ] + } + } + }, + "1120506": { + "Id": 1120506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1120507": { + "Id": 1120507, + "Name": "业途风", + "Desc": "立即攻击敌人,进入战斗后消耗等同于刃生命上限#2[i]%的生命值,同时对敌方全体造成等同于刃生命上限#1[i]%的风属性伤害。\\n若当前生命值不足,施放秘技时刃的当前生命值降低至1点。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "1120508": { + "Id": 1120508, + "Name": "无间剑树", + "Desc": "消耗等同于刃生命上限#1[i]%的生命值,对指定敌方单体造成等同于刃#2[i]%生命上限的风属性伤害,同时对其相邻目标造成等同于刃#3[i]%生命上限的风属性伤害。\\n若当前生命值不足,施放【无间剑树】时刃的当前生命值降低至1点。\\n【无间剑树】无法恢复战技点。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.6500000006053597, + 0.26000000024214387, + 0.6500000006053597, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 0.7800000007264316, + 0.31200000015087426, + 0.7800000007264316, + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 0.9100000008475035, + 0.36400000005960464, + 0.9100000008475035, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 1.040000000037253, + 0.41599999996833503, + 1.040000000037253, + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 1.1700000001583248, + 0.4679999998770654, + 1.1700000001583248, + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 1.3000000002793968, + 0.5200000004842877, + 1.3000000002793968, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 1.4300000004004687, + 0.5720000003930181, + 1.4300000004004687, + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 1.5600000005215406, + 0.6240000003017485, + 1.5600000005215406, + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 1.6900000006426126, + 0.6760000002104789, + 1.6900000006426126, + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 1.8200000007636845, + 0.7280000001192093, + 1.8200000007636845, + 0.5600000005215406 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Maze.png", + "LevelUpSkillID": [ + 1120507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 11205101, + "PointName": "无尽形寿", + "PointDesc": "刃的当前生命值百分比小于等于生命上限的50%时,受到治疗时的回复量提高#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 100 + ], + "PointID": 11205102, + "PointName": "吞忍百死", + "PointDesc": "施放【无间剑树】后,若击中处于弱点击破状态的敌方目标,刃回复等同于自身#1[i]%生命上限+#2[i]的生命值。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 15 + ], + "PointID": 11205103, + "PointName": "坏劫隳亡", + "PointDesc": "天赋施放的追加攻击伤害提高#1[i]%,并额外回复#2[i]点能量。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205201, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11205101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205203, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11205202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11205203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205205, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11205102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11205205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205207, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11205206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11205103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205210, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1205, + "Set4IDList": [ + 113, + 110, + 102 + ], + "Set2IDList": [ + 306, + 309, + 302 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1206": { + "Name": "素裳", + "Desc": "出生于仙舟「曜青」,前往「罗浮」云骑军接受历练的新兵。\\n身佩母亲赠予的家传剑器,憧憬着自己即将书写的未来。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 31, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 32, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "sushang", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 120601, + "Name": "游刃有余", + "Desc": "对陷入弱点击破状态的敌方目标施放战技后,恢复1个战技点。", + "ParamList": [] + }, + "2": { + "Id": 120602, + "Name": "其身百炼", + "Desc": "触发【剑势】后,素裳受到的伤害降低#1[i]%,持续1回合。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 120603, + "Name": "传古剑流", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 120604, + "Name": "其心百辟", + "Desc": "素裳的击破特攻提高#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Id": 120605, + "Name": "太虚神意", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 120606, + "Name": "上善若水", + "Desc": "天赋的加速效果可以叠加,最多叠加2层,且进入战斗后素裳立即获得1层天赋的加速效果。", + "ParamList": [] + } + }, + "Skills": { + "120601": { + "Id": 120601, + "Name": "云骑剑经 • 素霓", + "Desc": "对指定敌方单体造成等同于素裳#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120602": { + "Id": 120602, + "Name": "云骑剑经 • 山倾", + "Desc": "对指定敌方单体造成等同于素裳#1[i]%攻击力的物理属性伤害。同时最后一击后有#3[i]%概率发动【剑势】,对目标造成等同于素裳#2[i]%攻击力的物理属性附加伤害。\\n若该目标处于弱点击破状态,则【剑势】必定发动。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0500000000465661, + 0.5000000004656613, + 0.33000000030733645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.154999999795109, + 0.5500000005122274, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2600000002421439, + 0.6000000005587935, + 0.33000000030733645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3649999999906868, + 0.6500000006053597, + 0.33000000030733645 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.4700000004377216, + 0.7000000006519258, + 0.33000000030733645 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5750000001862645, + 0.7500000006984919, + 0.33000000030733645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.706250000745058, + 0.8125000009313226, + 0.33000000030733645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.8375000006053597, + 0.8750000004656613, + 0.33000000030733645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9687500011641532, + 0.9375000006984919, + 0.33000000030733645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 1, + 0.33000000030733645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.204999999841675, + 1.0500000000465661, + 0.33000000030733645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.31000000028871, + 1.1000000000931323, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.415000000037253, + 1.1500000001396984, + 0.33000000030733645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5200000004842877, + 1.2000000001862645, + 0.33000000030733645 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6250000002328306, + 1.2500000002328306, + 0.33000000030733645 + ] + } + } + }, + "120603": { + "Id": 120603, + "Name": "太虚形蕴 • 烛夜", + "Desc": "对指定敌方单体造成等同于素裳#1[i]%攻击力的物理属性伤害,并使素裳立即行动。同时使其攻击力提高#4[i]%,且施放战技时额外增加2次【剑势】的发动判定,持续#2[i]回合。\\n通过额外判定发动的【剑势】伤害为原伤害的#3[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9200000008568168, + 2, + 0.5000000004656613, + 0.18000000016763806 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.04799999948591, + 2, + 0.5000000004656613, + 0.19200000003911555 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.1759999997448176, + 2, + 0.5000000004656613, + 0.20399999991059303 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.3040000000037253, + 2, + 0.5000000004656613, + 0.21599999978207052 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.432000000262633, + 2, + 0.5000000004656613, + 0.227999999653548 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5600000005215406, + 2, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.7200000006705523, + 2, + 0.5000000004656613, + 0.2549999998882413 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 2, + 0.5000000004656613, + 0.2700000002514571 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.040000000037253, + 2, + 0.5000000004656613, + 0.28499999991618097 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.2000000001862645, + 2, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.3279999997466803, + 2, + 0.5000000004656613, + 0.31200000015087426 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.456000000005588, + 2, + 0.5000000004656613, + 0.32400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.5840000002644956, + 2, + 0.5000000004656613, + 0.3359999998938292 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.7120000005234033, + 2, + 0.5000000004656613, + 0.3479999997653067 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.840000000782311, + 2, + 0.5000000004656613, + 0.3600000003352761 + ] + } + } + }, + "120604": { + "Id": 120604, + "Name": "游刃若水", + "Desc": "当场上有敌方目标的弱点被击破,素裳的速度提高#1[f2]%,持续#2[i]回合。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 2 + ] + } + } + }, + "120606": { + "Id": 120606, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120607": { + "Id": 120607, + "Name": "云骑剑经 • 叩阵", + "Desc": "立即攻击敌人,进入战斗后对敌方全体造成等同于素裳#1[i]%攻击力的物理属性伤害。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Maze.png", + "LevelUpSkillID": [ + 120607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1206101, + "PointName": "赤子", + "PointDesc": "若当前生命值百分比小于等于#1[i]%,则被敌方目标攻击的概率降低。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0249999996740371, + 10 + ], + "PointID": 1206102, + "PointName": "逐寇", + "PointDesc": "每发动1次【剑势】,【剑势】造成的伤害提高#1[i]%,该效果最多叠加#2[i]层。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1206103, + "PointName": "破敌", + "PointDesc": "施放普攻或战技后,若场上有敌方目标处于弱点击破状态,则素裳的行动提前#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1206101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1206202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1206102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1206205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1206103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1206208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1206208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 57, + "DefenceAdd": 2.850000000791624, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 79.80000000074506, + "DefenceAdd": 2.850000000791624, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 102.6000000005588, + "DefenceAdd": 2.850000000791624, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 125.40000000037253, + "DefenceAdd": 2.850000000791624, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 148.20000000018626, + "DefenceAdd": 2.850000000791624, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 171, + "DefenceAdd": 2.850000000791624, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 193.80000000074506, + "DefenceAdd": 2.850000000791624, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1206, + "Set4IDList": [ + 105, + 111, + 119 + ], + "Set2IDList": [ + 311, + 307, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 353, + 298 + ] + } + }, + "1207": { + "Name": "驭空", + "Desc": "仙舟「罗浮」天舶司的首领,久历战阵的飞行士与射手。\\n而今却陷于繁冗公务,难以抽身。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "yukong", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 120701, + "Name": "天舶飞将,枕弧待战", + "Desc": "进入战斗时,我方全体速度提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Id": 120702, + "Name": "青霄驰骋,驱驭苍穹", + "Desc": "当我方任意单体当前能量值等于其能量上限时,驭空额外恢复#1[i]点能量。该效果我方每个单体仅可触发1次,当驭空施放终结技后,重置该效果触发次数。", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 120703, + "Name": "危弓未辍,执射不宁", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 120704, + "Name": "百里闻风,九曲响镝", + "Desc": "持有【鸣弦号令】时,驭空造成的伤害提高#1[i]%。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 120705, + "Name": "井仪贯侯,疾羽参连", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 120706, + "Name": "弦栝如雷,铣珧激荡", + "Desc": "驭空施放终结技时,立即先获得#1[i]层【鸣弦号令】。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "120701": { + "Id": 120701, + "Name": "流镝", + "Desc": "对指定敌方单体造成等同于驭空#1[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120702": { + "Id": 120702, + "Name": "天阙鸣弦", + "Desc": "获得#1[i]层【鸣弦号令】,最多持有不超过2层。当驭空持有【鸣弦号令】时,我方全体攻击力提高#2[i]%,且每次我方目标回合结束时,移除驭空1层【鸣弦号令】。\\n驭空施放战技获得【鸣弦号令】的回合,不会移除【鸣弦号令】。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "120703": { + "Id": 120703, + "Name": "贯云饮羽", + "Desc": "施放终结技时,若驭空持有【鸣弦号令】,则额外使我方全体暴击率提高#2[f1]%,暴击伤害提高#3[i]%。同时对指定敌方单体造成等同于驭空#1[i]%攻击力的虚数属性伤害。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.21000000019557774, + 0.3900000003632158 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.21699999971315265, + 0.41599999996833503 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.22399999992921948, + 0.4420000002719462 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.23100000014528632, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.23799999966286123, + 0.4940000001806766 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 0.24499999987892807, + 0.5200000004842877 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 0.25375000084750354, + 0.5525000006891787 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 0.26250000041909516, + 0.5850000001955777 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 0.2712500006891787, + 0.6175000004004687 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 0.2800000002607703, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 0.2869999997783452, + 0.6760000002104789 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 0.29399999999441206, + 0.7020000005140901 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 0.3010000002104789, + 0.7280000001192093 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 0.3079999997280538, + 0.7540000004228204 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 0.31499999994412065, + 0.7800000007264316 + ] + } + } + }, + "120704": { + "Id": 120704, + "Name": "箭彻七札", + "Desc": "施放普攻可额外造成等同于驭空#1[i]%攻击力的虚数属性伤害,并使本次攻击的削韧值提高#2[i]%,该效果在#3[i]回合后可再次触发。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1, + 1 + ] + } + } + }, + "120706": { + "Id": 120706, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120707": { + "Id": 120707, + "Name": "云鸢逐风", + "Desc": "使用秘技后进入持续#1[i]秒的冲刺状态。冲刺状态下自身移动速度提高#2[i]%,且主动攻击敌人进入战斗时,驭空获得#3[i]层【鸣弦号令】。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.3500000003259629, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Maze.png", + "LevelUpSkillID": [ + 120707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1207101, + "PointName": "襄尺", + "PointDesc": "驭空被施加负面效果时可抵抗1次负面效果,该效果在#1[i]回合后可再次触发。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.12000000011175871 + ], + "PointID": 1207102, + "PointName": "迟彝", + "PointDesc": "驭空在场时,我方全体造成的虚数属性伤害提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1207103, + "PointName": "气壮", + "PointDesc": "持有【鸣弦号令】时,每当我方目标行动后,驭空将额外恢复#1[i]点能量。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207201, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1207101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207203, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1207202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207204, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1207201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207205, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1207102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1207205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207207, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1207201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207208, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1207103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1207208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207210, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1207208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 51, + "DefenceAdd": 2.5500000005122274, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 71.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 91.80000000074506, + "DefenceAdd": 2.5500000005122274, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 112.20000000018626, + "DefenceAdd": 2.5500000005122274, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 132.6000000005588, + "DefenceAdd": 2.5500000005122274, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 153, + "DefenceAdd": 2.5500000005122274, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 173.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1207, + "Set4IDList": [ + 102, + 112, + 111 + ], + "Set2IDList": [ + 302, + 312, + 308 + ], + "PropertyList3": [ + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 350, + 294 + ], + "LocalCriticalChance": 0.2800000002607703 + } + }, + "1208": { + "Name": "符玄", + "Desc": "仙舟「罗浮」太卜司之首。\\n凭借第三眼与穷观阵为仙舟占算航路,预卜事务吉凶。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "fuxuan", + "SPNeed": 135, + "BaseType": "Knight", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 120801, + "Name": "司危", + "Desc": "【鉴知】使暴击伤害提高#1[i]%。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Id": 120802, + "Name": "柔兆", + "Desc": "【穷观阵】开启时,若我方目标受到致命伤害,则本次行动中所有受到致命伤害的我方目标都不会陷入无法战斗状态,并立即回复等同于其自身生命上限#1[i]%的生命值。该效果单场战斗中可以触发1次。", + "ParamList": [ + 0.7000000006519258 + ] + }, + "3": { + "Id": 120803, + "Name": "直符", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 120804, + "Name": "格泽", + "Desc": "当处于【穷观阵】的我方其他目标受到攻击后,符玄恢复#1[i]点能量。", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 120805, + "Name": "计神", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 120806, + "Name": "种陵", + "Desc": "【穷观阵】开启时,会累计我方全体本场战斗中的已损失生命值。符玄施放终结技造成的伤害提高,提高数值等同于本场战斗中累计已损失生命值的#1[i]%。\\n本场战斗中累计已损失生命值最高不超过符玄生命上限的#2[i]%,施放终结技后会清空并进行重新累计。", + "ParamList": [ + 2, + 1.2000000001862645 + ] + } + }, + "Skills": { + "120801": { + "Id": 120801, + "Name": "始击岁星", + "Desc": "对指定敌方单体造成等同于符玄#1[i]%生命上限的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "120802": { + "Id": 120802, + "Name": "太微行棋,灵台示影", + "Desc": "开启【穷观阵】,使符玄队友所承受的未受护盾抵挡之前的伤害的#1[i]%分摊给符玄,持续#3[i]回合。\\n处于【穷观阵】的我方全体获得【鉴知】。【鉴知】状态下的我方目标生命上限提高,提高数值等同于符玄生命上限的#4[f1]%,暴击率提高#5[f1]%。\\n当符玄陷入无法战斗状态时,【穷观阵】也会被解除。", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.032999999821186066, + 0.06599999964237213 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.035999999614432454, + 0.07199999992735684 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.03899999940767884, + 0.07799999951384962 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04199999989941716, + 0.08399999979883432 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04499999969266355, + 0.09000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04875000030733645, + 0.09749999991618097 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.05250000022351742, + 0.1049999997485429 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.056250000139698386, + 0.11250000027939677 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06299999984912574, + 0.12599999969825149 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06599999964237213, + 0.1319999999832362 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06899999943561852, + 0.13799999956972897 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.07499999972060323, + 0.1500000001396984 + ] + } + } + }, + "120803": { + "Id": 120803, + "Name": "天律大衍,历劫归一", + "Desc": "对敌方全体造成等同于符玄#1[i]%生命上限的量子属性伤害,并获得1次符玄天赋生命回复的触发次数。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6400000005960464 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6800000006332994 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7600000007078052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8500000007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9500000008847564 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.040000000037253 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.0800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1200000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2000000001862645 + ] + } + } + }, + "120804": { + "Id": 120804, + "Name": "乾清坤夷,否极泰来", + "Desc": "当符玄处于可战斗状态时,为我方全体附加【避厄】。【避厄】状态下的我方目标受到的伤害降低#1[f1]%。\\n当符玄当前生命值百分比小于等于#2[i]%时触发生命回复,使自身回复等同于已损失生命值#3[i]%的生命值,受到致命攻击时无法触发该效果。该效果初始拥有1次触发次数,最多可拥有2次触发次数。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1079999995417893, + 0.5000000004656613, + 0.8100000007543713 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.11599999968893826, + 0.5000000004656613, + 0.8200000007636845 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.12399999983608723, + 0.5000000004656613, + 0.8300000007729977 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1319999999832362, + 0.5000000004656613, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 0.8500000007916242 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.8625000009778887 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.8750000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.17000000015832484, + 0.5000000004656613, + 0.8875000006519258 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1879999996162951, + 0.5000000004656613, + 0.9100000008475035 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.19599999976344407, + 0.5000000004656613, + 0.9200000008568168 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20399999991059303, + 0.5000000004656613, + 0.93000000086613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.212000000057742, + 0.5000000004656613, + 0.9400000008754432 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 0.9500000008847564 + ] + } + } + }, + "120806": { + "Id": 120806, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120807": { + "Id": 120807, + "Name": "岁记否泰,固守四郭", + "Desc": "使用秘技后,我方全体获得持续#1[i]秒的屏障。该屏障可抵挡敌人的所有攻击,不会进入战斗。屏障持续期间进入战斗时符玄自动开启【穷观阵】,持续#2[i]回合。", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Maze.png", + "LevelUpSkillID": [ + 120807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 20 + ], + "PointID": 1208101, + "PointName": "太乙式盘", + "PointDesc": "【穷观阵】开启时,符玄施放战技将额外恢复#1[i]点能量。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1208201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 133 + ], + "PointID": 1208102, + "PointName": "遁甲星舆", + "PointDesc": "施放终结技时为我方其他目标回复等同于符玄#1[i]%生命上限+#2[i]的生命值。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1208201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208103, + "PointName": "六壬兆堪", + "PointDesc": "【穷观阵】开启时,若敌方目标对我方施加了控制类负面状态,则我方全体抵抗本次行动中敌方目标施加的所有控制类负面状态。该效果可以触发1次。再次开启【穷观阵】后将刷新效果可触发次数。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208201, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1208101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208203, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1208202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208205, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1208102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1208205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208207, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1208103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1208208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208210, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1208208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 63.360000000335276, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 200.64000000059605, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 88.70400000037625, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 280.89600000041537, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 114.04799999948591, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 361.15200000000186, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 139.39200000022538, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 441.4079999998212, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 164.73600000026636, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 521.664000000339, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 190.0800000000745, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 601.9200000008568, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 215.42400000011548, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 682.1759999997448, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1208, + "Set4IDList": [ + 113, + 106, + 108 + ], + "Set2IDList": [ + 302, + 310, + 308 + ], + "PropertyList3": [ + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "DefenceAddedRatio", + "StatusResistanceBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 328, + 280 + ], + "LocalCriticalChance": 0.12000000011175871 + } + }, + "1209": { + "Name": "彦卿", + "Desc": "将军景元的侍卫,不过总角之年的御剑天才。\\n手中握剑,即立于不败之地。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "yanqing", + "SPNeed": 140, + "BaseType": "Rogue", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 120901, + "Name": "素刃", + "Desc": "当彦卿攻击敌方目标时,如果目标处于冻结状态,则立即对目标造成等同于彦卿#1[i]%攻击力的冰属性附加伤害。", + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Id": 120902, + "Name": "空明", + "Desc": "处于【智剑连心】效果时,额外提高#1[i]%的能量恢复效率。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "3": { + "Id": 120903, + "Name": "剑胎", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 120904, + "Name": "霜厉", + "Desc": "当前生命值百分比大于等于#1[i]%时,提高自身#2[i]%的冰属性抗性穿透。", + "ParamList": [ + 0.8000000007450581, + 0.12000000011175871 + ] + }, + "5": { + "Id": 120905, + "Name": "武骨", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 120906, + "Name": "自在", + "Desc": "消灭敌方目标时,如果当前持有【智剑连心】或终结技的增益效果,则使这些增益效果的持续时间全部延长1回合。", + "ParamList": [] + } + }, + "Skills": { + "120901": { + "Id": 120901, + "Name": "霜锋点寒芒", + "Desc": "对指定敌方单体造成等同于彦卿#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120902": { + "Id": 120902, + "Name": "遥击三尺水", + "Desc": "对指定敌方单体造成等同于彦卿#1[i]%攻击力的冰属性伤害,并为彦卿附加【智剑连心】,持续1回合。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2100000001955777 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3200000002980232 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5400000005029142 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7875000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9250000005122274 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.0625000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.31000000028871 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4200000003911555 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.6400000005960464 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.750000000698492 + ] + } + } + }, + "120903": { + "Id": 120903, + "Name": "快雨燕相逐", + "Desc": "提高自身#1[i]%暴击率,若彦卿处于【智剑连心】效果,则使其暴击伤害额外提高#2[i]%增益效果持续1回合。随后对指定敌方单体造成等同于彦卿#3[i]%攻击力的冰属性伤害。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 2.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 0.3200000002980232, + 2.2400000002235174 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.3400000003166497, + 2.3800000003539026 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6000000005587935, + 0.3600000003352761, + 2.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6000000005587935, + 0.3800000003539026, + 2.660000000614673 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903, + 2.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6000000005587935, + 0.42500000004656613, + 2.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935, + 0.45000000041909516, + 3.1500000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6000000005587935, + 0.47500000009313226, + 3.324999999953434 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 3.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6000000005587935, + 0.5200000004842877, + 3.6400000005960464 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6000000005587935, + 0.5400000005029142, + 3.7800000007264316 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6000000005587935, + 0.5600000005215406, + 3.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 0.5800000005401671, + 4.060000000055879 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935, + 4.2000000001862645 + ] + } + } + }, + "120904": { + "Id": 120904, + "Name": "呼剑如影", + "Desc": "彦卿处于【智剑连心】效果时,受到攻击的概率降低,并为自身提高#1[f1]%暴击率和#2[i]%暴击伤害。对敌方目标施放攻击后,有#3[i]%固定概率发动追加攻击,对目标造成等同于彦卿#4[i]%攻击力的冰属性伤害,并有#6[i]%基础概率使其陷入冻结状态,持续1回合。\\n冻结状态下,敌方目标不能行动,同时每回合开始时受到等同于彦卿#5[i]%攻击力的冰属性附加伤害。\\n当彦卿受到伤害后,【智剑连心】将会消失。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 0.5000000004656613, + 0.25000000023283064, + 0.25000000023283064, + 0.6500000006053597 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 0.16499999980442226, + 0.5100000004749745, + 0.27499999990686774, + 0.27499999990686774, + 0.6500000006053597 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 0.18000000016763806, + 0.5200000004842877, + 0.3000000002793968, + 0.3000000002793968, + 0.6500000006053597 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 0.19499999983236194, + 0.530000000493601, + 0.32499999995343387, + 0.32499999995343387, + 0.6500000006053597 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 0.21000000019557774, + 0.5400000005029142, + 0.3500000003259629, + 0.3500000003259629, + 0.6500000006053597 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 0.2249999998603016, + 0.5500000005122274, + 0.375, + 0.375, + 0.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 0.24375000083819032, + 0.5625000006984919, + 0.4062500004656613, + 0.4062500004656613, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 0.26250000041909516, + 0.5750000001862645, + 0.43750000023283064, + 0.43750000023283064, + 0.6500000006053597 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 0.28125000069849193, + 0.587500000372529, + 0.46875000069849193, + 0.46875000069849193, + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613, + 0.5000000004656613, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 0.31499999994412065, + 0.6100000005681068, + 0.5250000001396984, + 0.5250000001396984, + 0.6500000006053597 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 0.33000000030733645, + 0.62000000057742, + 0.5500000005122274, + 0.5500000005122274, + 0.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 0.3449999999720603, + 0.6300000005867332, + 0.5750000001862645, + 0.5750000001862645, + 0.6500000006053597 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 0.3600000003352761, + 0.6400000005960464, + 0.6000000005587935, + 0.6000000005587935, + 0.6500000006053597 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 0.375, + 0.6500000006053597, + 0.6250000002328306, + 0.6250000002328306, + 0.6500000006053597 + ] + } + } + }, + "120906": { + "Id": 120906, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120907": { + "Id": 120907, + "Name": "御剑真诀", + "Desc": "使用秘技后,下一次战斗开始时彦卿对当前生命值百分比大于等于#1[i]%的敌方目标造成的伤害提高#2[i]%,持续#3[i]回合。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Maze.png", + "LevelUpSkillID": [ + 120907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1209101, + "PointName": "颁冰", + "PointDesc": "施放攻击后,对携带冰属性弱点的敌方目标造成等同于彦卿#1[i]%攻击力的冰属性附加伤害。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1209102, + "PointName": "凌霜", + "PointDesc": "处于【智剑连心】效果时,效果抵抗提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1209103, + "PointName": "轻吕", + "PointDesc": "触发暴击时,速度提高#1[i]%,持续#2[i]回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209202, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1209101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1209202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1209102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209206, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1209205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1209103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209209, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1209208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1209208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 56.10000000009313, + "DefenceAdd": 2.8050000004004687, + "HPBase": 121.44000000040978, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 78.54000000050291, + "DefenceAdd": 2.8050000004004687, + "HPBase": 170.0159999995958, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 100.9800000009127, + "DefenceAdd": 2.8050000004004687, + "HPBase": 218.59200000041164, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 123.42000000039116, + "DefenceAdd": 2.8050000004004687, + "HPBase": 267.16799999959767, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.86000000080094, + "DefenceAdd": 2.8050000004004687, + "HPBase": 315.7440000004135, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.8050000004004687, + "HPBase": 364.320000000298, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 190.74000000068918, + "DefenceAdd": 2.8050000004004687, + "HPBase": 412.89600000041537, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1209, + "Set4IDList": [ + 104, + 117, + 122 + ], + "Set2IDList": [ + 311, + 301, + 306 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1210": { + "Name": "桂乃芬", + "Desc": "客居仙舟「罗浮」的行为艺术家——或者说,街头艺人。\\n在三餐温饱之余,追逐着自己在罗浮的新生活。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "guinaifen", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 121001, + "Name": "倒立吃面条", + "Desc": "施放战技时,有#1[i]%基础概率使受到攻击的敌方目标效果抵抗降低#2[i]%,持续#3[i]回合。", + "ParamList": [ + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Id": 121002, + "Name": "刷牙吹口哨", + "Desc": "当敌方目标处于灼烧状态时,桂乃芬的普攻与战技对其施加的灼烧状态的伤害倍率提升#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 121003, + "Name": "胸口碎大石", + "Desc": "战技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 121004, + "Name": "金枪锁咽喉", + "Desc": "桂乃芬施加的灼烧状态每触发一次伤害,使自身恢复#1[i]点能量。", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 121005, + "Name": "吞剑通脊背", + "Desc": "终结技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 121006, + "Name": "徒手接子弹", + "Desc": "使【吞火】的可叠加层数增加#1[i]层。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "121001": { + "Id": 121001, + "Name": "劈头满堂彩", + "Desc": "对指定敌方单体造成等同于桂乃芬#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121002": { + "Id": 121002, + "Name": "迎面开门红", + "Desc": "对指定敌方单体造成等同于桂乃芬#1[i]%攻击力的火属性伤害,并对相邻目标造成等同于桂乃芬#2[i]%攻击力的火属性伤害,有#3[i]%基础概率使目标与相邻目标陷入灼烧状态。灼烧状态下,敌方目标每回合开始时受到等同于桂乃芬#4[i]%攻击力的火属性持续伤害,持续#5[i]回合。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.20000000018626451, + 1, + 0.8390400004573166, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.22000000020489097, + 1, + 0.9229800018947572, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.24000000022351742, + 1, + 1.0069200003053993, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.26000000024214387, + 1, + 1.0908600010443479, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.2800000002607703, + 1, + 1.1748000003863126, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968, + 1, + 1.3007100007962435, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.32499999995343387, + 1, + 1.4685900008771569, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.3500000003259629, + 1, + 1.6784400006290525, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.375, + 1, + 1.9302600014489144, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903, + 1, + 2.182080000638962, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.4200000003911555, + 1, + 2.2912020003423095, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.44000000040978193, + 1, + 2.400324000744149, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.4600000004284084, + 1, + 2.5094460004474968, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.48000000044703484, + 1, + 2.6185680008493364, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613, + 1, + 2.727690001251176, + 2 + ] + } + } + }, + "121003": { + "Id": 121003, + "Name": "给您来段看家戏", + "Desc": "对敌方全体造成等同于桂乃芬#1[f1]%攻击力的火属性伤害,若目标处于灼烧状态,使其当前承受的灼烧状态立即产生相当于原伤害#2[i]%的伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622, + 0.7400000006891787 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641, + 0.7600000007078052 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678, + 0.8000000007450581 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697, + 0.8200000007636845 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265, + 0.8450000004377216 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 0.8700000008102506 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852, + 0.8950000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.9200000008568168 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745, + 0.9400000008754432 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763, + 0.9600000008940697 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782, + 0.9800000009126961 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782, + 1.0200000000186265 + ] + } + } + }, + "121004": { + "Id": 121004, + "Name": "古来君子养艺人", + "Desc": "桂乃芬在场时,敌方受到的灼烧状态触发伤害后,有#1[i]%基础概率陷入【吞火】状态,【吞火】状态下敌方目标受到的伤害提高#4[f1]%,持续#5[i]回合,最多叠加#6[i]层。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0, + 0, + 0.0400000000372529, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0, + 0, + 0.04299999983049929, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0, + 0, + 0.04599999962374568, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0, + 0, + 0.04899999941699207, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0, + 0, + 0.05199999990873039, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0, + 0, + 0.054999999701976776, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0, + 0, + 0.058750000316649675, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0, + 0, + 0.06250000023283064, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0, + 0, + 0.06625000014901161, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0, + 0, + 0.07000000006519258, + 3, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0, + 0, + 0.07299999985843897, + 3, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0, + 0, + 0.07599999965168536, + 3, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0, + 0, + 0.07899999944493175, + 3, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0, + 0, + 0.08199999993667006, + 3, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0, + 0, + 0.08499999972991645, + 3, + 3 + ] + } + } + }, + "121006": { + "Id": 121006, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121007": { + "Id": 121007, + "Name": "耍耍把式卖卖艺", + "Desc": "立即攻击敌人,进入战斗后造成#2[i]次伤害,每次伤害对敌方随机单体造成等同于桂乃芬#1[i]%攻击力的火属性伤害并有#3[i]%基础概率使目标陷入【吞火】状态。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 4, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Maze.png", + "LevelUpSkillID": [ + 121007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 1210101, + "PointName": "缘竿", + "PointDesc": "普攻有#1[i]%基础概率使敌方目标陷入与战技相同的灼烧状态。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1210102, + "PointName": "投狭", + "PointDesc": "战斗开始时,桂乃芬的行动提前#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1210103, + "PointName": "逾锋", + "PointDesc": "对陷入灼烧状态的敌方目标造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210201, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210202, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1210101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210203, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1210202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210204, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1210203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210205, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1210102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210206, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1210205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210207, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1210206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210208, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1210103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210209, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1210103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "击破特攻" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210210, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1210201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "火属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 120, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 168, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 216, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 264, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 312, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 360, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 408, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1210, + "Set4IDList": [ + 116, + 102, + 107 + ], + "Set2IDList": [ + 301, + 303, + 307 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 321, + 270 + ] + } + }, + "1211": { + "Name": "白露", + "Desc": "仙舟「罗浮」持明族的尊长,有「衔药龙女」之称的医士。\\n以独门医理和唯有龙脉方可施行的「医疗手段」救死扶伤。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "bailu", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 121101, + "Name": "百脉甘津宁神久", + "Desc": "【生息】结束时若我方目标当前生命值等于其生命上限,则额外恢复目标#1[i]点能量。", + "ParamList": [ + 8 + ] + }, + "2": { + "Id": 121102, + "Name": "壶中洞天云螭眠", + "Desc": "施放终结技后,白露的治疗量提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "3": { + "Id": 121103, + "Name": "掌间乾坤便通玄", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 121104, + "Name": "肘后备急除外障", + "Desc": "战技提供的每1次治疗会额外使受治疗者造成的伤害提高#1[i]%,最多叠加#2[i]层,持续#3[i]回合。", + "ParamList": [ + 0.10000000009313226, + 3, + 2 + ] + }, + "5": { + "Id": 121105, + "Name": "方定一倾浣俗尘", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 121106, + "Name": "龙漦吐哺胜金丹", + "Desc": "白露在单场战斗中累计可以对受到致命攻击的我方目标提供治疗的效果触发次数增加#1[i]次。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "121101": { + "Id": 121101, + "Name": "望 、闻、问…蹴!", + "Desc": "对指定敌方单体造成等同于白露#1[i]%攻击力的雷属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121102": { + "Id": 121102, + "Name": "云吟乍涌坠珠露", + "Desc": "立即为指定我方单体回复等同于白露#1[f1]%生命上限+#2[i]的生命值,然后白露随机为我方单体进行#4[i]次治疗,每提供1次治疗,下一次治疗回复的生命值会降低#3[i]%。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07799999951384962, + 78, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.08287500101141632, + 124.80000000074506, + 0.1500000001396984, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08775000041350722, + 159.9000000008382, + 0.1500000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09262500051409006, + 195, + 0.1500000001396984, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.09749999991618097, + 218.40000000037253, + 0.1500000001396984, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10140000027604401, + 241.80000000074506, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10529999993741512, + 259.35000000032596, + 0.1500000001396984, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10919999959878623, + 276.9000000008382, + 0.1500000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11309999995864928, + 294.4500000004191, + 0.1500000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.11699999962002039, + 312, + 0.1500000001396984, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12090000067837536, + 329.5500000005122, + 0.1500000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.12480000033974648, + 347.10000000009313, + 0.1500000001396984, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.1287000000011176, + 364.65000000060536, + 0.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.13260000036098063, + 382.20000000018626, + 0.1500000001396984, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.13650000002235174, + 399.7500000006985, + 0.1500000001396984, + 2 + ] + } + } + }, + "121103": { + "Id": 121103, + "Name": "匏蛟跃渊先雷音", + "Desc": "立即为我方全体回复等同于白露#1[f1]%生命上限+#2[i]的生命值。\\n对于没有【生息】的我方目标,白露使其附上【生息】,对于已拥有【生息】的我方目标,白露使其已有的【生息】持续时间延长1回合。\\n【生息】可持续#3[i]回合,该效果不可叠加。", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09000000008381903, + 90, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.09562500030733645, + 144, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10125000053085387, + 184.50000000046566, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10687500075437129, + 225, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11250000027939677, + 252, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.11699999962002039, + 279, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.12150000035762787, + 299.25000000023283, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.12599999969825149, + 319.50000000046566, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13050000043585896, + 339.7500000006985, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.13499999977648258, + 360, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.13949999981559813, + 380.25000000023283, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.14399999985471368, + 400.50000000046566, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.14849999989382923, + 420.7500000006985, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.15299999993294477, + 441, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.15749999997206032, + 461.25000000023283, + 2 + ] + } + } + }, + "121104": { + "Id": 121104, + "Name": "奔走悬壶济世长", + "Desc": "拥有【生息】的我方目标,在受到攻击后会回复等同于白露#1[f1]%生命上限+#2[i]的生命值,该效果可以触发#5[i]次。\\n当白露的队友受到致命攻击时,不会陷入无法战斗状态,白露会立即为其提供治疗,回复等同于白露#3[f1]%生命上限+#4[i]的生命值。该效果单场战斗中可以触发1次。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.035999999614432454, + 36, + 0.12000000011175871, + 120, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.038249999983236194, + 57.60000000055879, + 0.12749999994412065, + 192, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04050000035203993, + 73.80000000074506, + 0.13499999977648258, + 246, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04275000072084367, + 90, + 0.14250000030733645, + 300, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.04499999969266355, + 100.80000000074506, + 0.1500000001396984, + 336, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.04680000012740493, + 111.6000000005588, + 0.15599999972619116, + 372, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.048599999863654375, + 119.70000000065193, + 0.16200000001117587, + 399, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.05040000029839575, + 127.80000000074506, + 0.16799999959766865, + 426, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.0522000000346452, + 135.9000000008382, + 0.17399999988265336, + 453, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.05399999977089465, + 144, + 0.18000000016763806, + 480, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.055800000205636024, + 152.10000000009313, + 0.18599999975413084, + 507, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.05759999994188547, + 160.20000000018626, + 0.19200000003911555, + 534, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.05939999967813492, + 168.3000000002794, + 0.19799999962560833, + 561, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.061200000112876296, + 176.40000000037253, + 0.20399999991059303, + 588, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.06299999984912574, + 184.50000000046566, + 0.21000000019557774, + 615, + 2 + ] + } + } + }, + "121106": { + "Id": 121106, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121107": { + "Id": 121107, + "Name": "徜徉灵泽病恙短", + "Desc": "使用秘技后,下一次战斗开始时为我方全体附上【生息】,持续#1[i]回合。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Maze.png", + "LevelUpSkillID": [ + 121107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1211101, + "PointName": "岐黄精义", + "PointDesc": "白露对我方目标造成过量治疗时会提高目标#1[i]%的生命上限,持续#2[i]回合。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1211102, + "PointName": "持明龙脉", + "PointDesc": "【生息】效果的触发次数增加#1[i]次。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1211103, + "PointName": "鳞渊福泽", + "PointDesc": "拥有【生息】的角色受到的伤害降低#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211201, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211202, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1211101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211203, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1211202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1211203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211205, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1211102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211206, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1211205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211207, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1211206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1211103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211209, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1211103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211210, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 179.5200000004843, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 251.32799999974668, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 323.13599999970756, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 394.9440000005998, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 466.75200000056066, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 610.3679999997839, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1211, + "Set4IDList": [ + 101, + 114, + 106 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1212": { + "Name": "镜流", + "Desc": "曾经的罗浮剑首,云骑军不败盛名的缔造者。\\n而今其名字已被抹去,成为行走于魔阴身边缘的仙舟叛徒。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 79, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jingliu", + "SPNeed": 140, + "BaseType": "Warrior", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 121201, + "Name": "月犯天关", + "Desc": "施放终结技或强化战技时,镜流的暴击伤害提高#1[i]%,持续#3[i]回合。若只攻击了1个敌方目标,则额外对该目标造成1次等同于镜流#2[i]%攻击力的冰属性伤害。", + "ParamList": [ + 0.24000000022351742, + 1, + 1 + ] + }, + "2": { + "Id": 121202, + "Name": "朔晕七星", + "Desc": "施放终结技后,下一次强化战技的伤害提高#1[i]%。", + "ParamList": [ + 0.8000000007450581 + ] + }, + "3": { + "Id": 121203, + "Name": "半璧迫望", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 121204, + "Name": "持秉玄烛", + "Desc": "【转魄】状态下消耗队友生命值获得的攻击力额外提高,提高数值等同于我方全体生命值消耗总量的#1[i]%,获得的攻击力上限提高#2[i]%。", + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "5": { + "Id": 121205, + "Name": "晦入三台", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 121206, + "Name": "蚀变于娄", + "Desc": "镜流进入【转魄】状态时,【朔望】的上限层数提高1层并额外获得#1[i]层【朔望】。【转魄】状态下,暴击伤害提高#2[i]%。", + "ParamList": [ + 1, + 0.5000000004656613 + ] + } + }, + "Skills": { + "121201": { + "Id": 121201, + "Name": "流影方晖", + "Desc": "对指定敌方单体造成等同于镜流#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121202": { + "Id": 121202, + "Name": "无罅飞光", + "Desc": "对指定敌方单体造成等同于镜流#1[i]%攻击力的冰属性伤害,并获得#2[i]层【朔望】。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "121203": { + "Id": 121203, + "Name": "昙华生灭,天河泻梦", + "Desc": "对指定敌方单体造成等同于镜流#1[i]%攻击力的冰属性伤害,并对其相邻目标造成等同于镜流#3[i]%攻击力的冰属性伤害。攻击结束后获得#2[i]层【朔望】。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.9200000008568168, + 1, + 0.9600000008940697, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.040000000037253, + 1, + 1.0200000000186265, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.1600000001490116, + 1, + 1.0800000000745058, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2800000002607703, + 1, + 1.1400000001303852, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1, + 1.2000000001862645, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.5500000005122274, + 1, + 1.2749999999068677, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.700000000651926, + 1, + 1.350000000325963, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.850000000791624, + 1, + 1.4250000000465661, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 1.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1200000001117587, + 1, + 1.5600000005215406, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.2400000002235174, + 1, + 1.62000000057742, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.360000000335276, + 1, + 1.6800000006332994, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.480000000447035, + 1, + 1.7400000006891787, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.6000000005587935, + 1, + 1.800000000745058, + 1 + ] + } + } + }, + "121204": { + "Id": 121204, + "Name": "澹月转魄", + "Desc": "当拥有#5[i]层【朔望】时,镜流将进入【转魄】状态,并使行动提前#6[i]%、暴击率提高#7[i]%,随后战技【无罅飞光】强化为【寒川映月】且仅能使用该战技。【转魄】状态下施放攻击时,消耗队友#2[i]%生命上限的生命值(最多消耗到每位队友生命值等于1)。根据本次我方全体生命值消耗总量的#3[i]%提高镜流攻击力,最高不超过镜流基础攻击力的#4[i]%,持续至本次攻击结束。【转魄】状态结束前无法再次进入【转魄】状态。【朔望】最多可累计3层,当【朔望】层数为0时,退出【转魄】状态。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 0.9000000008381903, + 2, + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 0.9900000009220093, + 2, + 1, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.0800000000745058, + 2, + 1, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.1700000001583248, + 2, + 1, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.2600000002421439, + 2, + 1, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.350000000325963, + 2, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.4625000006053597, + 2, + 1, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.5750000001862645, + 2, + 1, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.6875000004656613, + 2, + 1, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.800000000745058, + 2, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.890000000828877, + 2, + 1, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.9800000009126961, + 2, + 1, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.0700000000651926, + 2, + 1, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.1600000001490116, + 2, + 1, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.2500000002328306, + 2, + 1, + 0.5500000005122274 + ] + } + } + }, + "121206": { + "Id": 121206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121207": { + "Id": 121207, + "Name": "古镜照神", + "Desc": "使用秘技后,在自身周围制造1片持续#3[i]秒的特殊领域,处于特殊领域内的敌人陷入冻结状态。与处于特殊领域内的敌人进入战斗后,立即为自身恢复#6[i]点能量、获得#1[i]层【朔望】并有#2[i]%基础概率使敌方目标陷入冻结状态,持续#4[i]回合。冻结状态下,敌方目标无法行动,且每回合开始时受到等同于镜流#5[i]%攻击力的冰属性附加伤害。我方制造的领域效果最多存在1个。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 20, + 1, + 0.8000000007450581, + 15 + ] + } + } + }, + "121209": { + "Id": 121209, + "Name": "寒川映月", + "Desc": "对指定敌方单体造成等同于镜流#1[i]%攻击力的冰属性伤害,并对其相邻目标造成等同于镜流#3[i]%攻击力的冰属性伤害。消耗#2[i]层【朔望】。施放本技能不消耗战技点。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 1, + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.375, + 1, + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5000000004656613, + 1, + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6250000002328306, + 1, + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.750000000698492, + 1, + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.8750000004656613, + 1, + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.0312500004656613, + 1, + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1875, + 1, + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.3437500009313226, + 1, + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.5000000004656613, + 1, + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.6250000002328306, + 1, + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.750000000698492, + 1, + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.8750000004656613, + 1, + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1249999997671694, + 1, + 1.562500000698492 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Maze.png", + "LevelUpSkillID": [ + 121207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1212101, + "PointName": "死境", + "PointDesc": "【转魄】状态下,效果抵抗提高#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1212102, + "PointName": "剑首", + "PointDesc": "施放【无罅飞光】后,下次行动提前#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1212103, + "PointName": "霜魄", + "PointDesc": "【转魄】状态下,终结技造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212201, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212202, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1212101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212203, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1212202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1212203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212205, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1212102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212206, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1212205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212207, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1212206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1212103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212209, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212210, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1121201, + "Name": "月犯天关", + "Desc": "施放终结技或强化战技时,镜流的暴击伤害提高#1[i]%,持续#3[i]回合,并且额外对主目标造成1次等同于镜流#2[i]%最大生命值的冰属性伤害。", + "ParamList": [ + 0.3600000003352761, + 0.8000000007450581, + 1 + ] + }, + "2": { + "Id": 1121202, + "Name": "朔晕七星", + "Desc": "施放终结技后,下一次强化战技的伤害提高#1[i]%。", + "ParamList": [ + 0.8000000007450581 + ] + }, + "3": { + "Id": 1121203, + "Name": "半璧迫望", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 1121204, + "Name": "持秉玄烛", + "Desc": "【转魄】状态下每层【月色】额外提高#1[i]%暴击伤害。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 1121205, + "Name": "晦入三台", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 1121206, + "Name": "蚀变于娄", + "Desc": "镜流进入【转魄】状态时,【朔望】的上限层数提高1层并额外获得#1[i]层【朔望】。【转魄】状态下,冰属性抗性穿透提高#2[i]%。", + "ParamList": [ + 1, + 0.20000000018626451 + ] + } + }, + "Skills": { + "1121201": { + "Id": 1121201, + "Name": "流影方晖", + "Desc": "对指定敌方单体造成等同于镜流#1[i]%生命上限的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "1121202": { + "Id": 1121202, + "Name": "无罅飞光", + "Desc": "对指定敌方单体造成等同于镜流#1[i]%生命上限的冰属性伤害,并获得#2[i]层【朔望】。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1 + ] + } + } + }, + "1121203": { + "Id": 1121203, + "Name": "昙华生灭,天河泻梦", + "Desc": "对指定敌方单体造成等同于镜流#1[i]%生命上限的冰属性伤害,并对其相邻目标造成等同于镜流#3[i]%生命上限的冰属性伤害。攻击结束后获得#2[i]层【朔望】。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 1, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 1, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 1, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 1, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 1, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 1, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 1, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 1, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 1, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.890000000828877, + 1, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.9800000009126961, + 1, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.0700000000651926, + 1, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.1600000001490116, + 1, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.2500000002328306, + 1, + 1.1249999997671694, + 1 + ] + } + } + }, + "1121204": { + "Id": 1121204, + "Name": "澹月转魄", + "Desc": "当拥有#5[i]层【朔望】时,镜流将进入【转魄】状态,额外获得1层【朔望】,并使行动提前#6[i]%、暴击率提高#7[i]%,随后战技【无罅飞光】强化为【寒川映月】且仅能使用该战技。【转魄】状态下施放攻击时,消耗队友#2[i]%生命上限的生命值(最多消耗到每位队友生命值等于1)。【转魄】状态内,我方目标消耗生命值时,镜流会获得一层【月色】,每层【月色】使镜流造成的暴击伤害提高#3[i]%,最多拥有#4[i]层。【转魄】状态结束前无法再次进入【转魄】状态。【朔望】最多可累计3层,当【朔望】层数为0时,退出【转魄】状态并移除所有的【月色】。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.22000000020489097, + 5, + 2, + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.24200000008568168, + 5, + 2, + 1, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.2639999999664724, + 5, + 2, + 1, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.2859999998472631, + 5, + 2, + 1, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.3079999997280538, + 5, + 2, + 1, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.33000000030733645, + 5, + 2, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.35750000015832484, + 5, + 2, + 1, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.3850000000093132, + 5, + 2, + 1, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.41250000055879354, + 5, + 2, + 1, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.44000000040978193, + 5, + 2, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.46200000029057264, + 5, + 2, + 1, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.48400000017136335, + 5, + 2, + 1, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5060000000521541, + 5, + 2, + 1, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5279999999329448, + 5, + 2, + 1, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5500000005122274, + 5, + 2, + 1, + 0.5500000005122274 + ] + } + } + }, + "1121206": { + "Id": 1121206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1121207": { + "Id": 1121207, + "Name": "古镜照神", + "Desc": "使用秘技后,在自身周围制造1片持续#3[i]秒的特殊领域,处于特殊领域内的敌人陷入冻结状态。与处于特殊领域内的敌人进入战斗后,立即为自身恢复#6[i]点能量、获得#1[i]层【朔望】并有#2[i]%基础概率使敌方目标陷入冻结状态,持续#4[i]回合。冻结状态下,敌方目标无法行动,且每回合开始时受到等同于镜流#5[i]%生命上限的冰属性附加伤害。我方制造的领域效果最多存在1个。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 20, + 1, + 0.8000000007450581, + 15 + ] + } + } + }, + "1121209": { + "Id": 1121209, + "Name": "寒川映月", + "Desc": "对指定敌方单体造成等同于镜流#1[i]%生命上限的冰属性伤害,并对其相邻目标造成等同于镜流#3[i]%生命上限的冰属性伤害。消耗#2[i]层【朔望】。施放本技能不消耗战技点。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 1, + 0.375 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 1, + 0.41250000055879354 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 1, + 0.45000000041909516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 1, + 0.4875000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 1, + 0.5250000001396984 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 1, + 0.5625000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 1, + 0.6093750006984919 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 1, + 0.6562500006984919 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 1, + 0.7031250006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1, + 0.7500000006984919 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 1, + 0.7875000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 1, + 0.8250000004190952 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1, + 0.8625000009778887 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1, + 0.9375000006984919 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Maze.png", + "LevelUpSkillID": [ + 1121207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 11212101, + "PointName": "死境", + "PointDesc": "【转魄】状态下,效果抵抗提高#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 11212102, + "PointName": "剑首", + "PointDesc": "施放【无罅飞光】后,额外恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 11212103, + "PointName": "霜魄", + "PointDesc": "【转魄】状态下,终结技造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212201, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212202, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11212101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212203, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11212202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11212203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212205, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11212102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212206, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11212205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212207, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11212206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11212103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212209, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212210, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 195.36000000033528, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 273.50400000019, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 351.6480000000447, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 429.7920000005979, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 507.9360000004526, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 586.0800000000745, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 664.2239999999292, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1212, + "Set4IDList": [ + 122, + 104, + 108 + ], + "Set2IDList": [ + 319, + 309, + 306 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 338, + 280 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1213": { + "Name": "丹恒•饮月", + "Desc": "丹恒身为持明族的本相,其上一世「饮月君」所遗存的力量。\\n接受了额顶的峥嵘角冠,就要接受那罪人所立的一切功过。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "danhengil", + "SPNeed": 140, + "BaseType": "Warrior", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 121301, + "Name": "萦天", + "Desc": "使【亢心】的可叠加层数增加#1[i]层。且每段攻击额外获得1层【亢心】。", + "ParamList": [ + 4 + ] + }, + "2": { + "Id": 121302, + "Name": "九斿", + "Desc": "施放终结技后丹恒•饮月行动提前100%,并且会额外获得1个【逆鳞】。", + "ParamList": [] + }, + "3": { + "Id": 121303, + "Name": "云旂", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 121304, + "Name": "嘲风", + "Desc": "【叱咤】的增益效果会持续到下一个自身回合结束。", + "ParamList": [] + }, + "5": { + "Id": 121305, + "Name": "偃蹇", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 121306, + "Name": "见谯", + "Desc": "我方其他角色施放终结技后,丹恒•饮月下一次施放【盘拏耀跃】时虚数属性抗性穿透提高#1[i]%,该效果最多叠加#2[i]层。", + "ParamList": [ + 0.20000000018626451, + 3 + ] + } + }, + "Skills": { + "121301": { + "Id": 121301, + "Name": "泽芝", + "Desc": "施放2段攻击对指定敌方单体造成等同于丹恒•饮月#1[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121302": { + "Id": 121302, + "Name": "龙力自在", + "Desc": "使普攻的效果得到强化,最多可连续强化3次,施放本技能不消耗战技点且不视为使用战技。\\n强化1次,【泽芝】变为【瞬华】。\\n强化2次,【泽芝】变为【天矢阴】。\\n强化3次,【泽芝】变为【盘拏耀跃】。\\n施放【天矢阴】或【盘拏耀跃】时,从第4段攻击开始每段攻击前获得1层【叱咤】,使丹恒•饮月的暴击伤害提高#1[f1]%,该效果最多叠加#2[i]层,持续至自身回合结束。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06599999964237213, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07199999992735684, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07799999951384962, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08399999979883432, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09749999991618097, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1049999997485429, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11250000027939677, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.12000000011175871, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12599999969825149, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1319999999832362, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.13799999956972897, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.14399999985471368, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 4 + ] + } + } + }, + "121303": { + "Id": 121303, + "Name": "苍龙傲睨,劫水濯世", + "Desc": "施放3段攻击对指定敌方单体造成等同于丹恒•饮月#1[i]%攻击力的虚数属性伤害,同时对其相邻目标造成等同于丹恒•饮月#2[i]%攻击力的虚数属性伤害。并使自身获得#3[i]个【逆鳞】。\\n【逆鳞】最多持有#4[i]个,可用来抵扣丹恒•饮月的战技点消耗。消耗【逆鳞】视为消耗战技点。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 0.840000000782311, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.9200000008568168, + 0.8960000004153699, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.040000000037253, + 0.9520000007469207, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.1600000001490116, + 1.007999999448657, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2800000002607703, + 1.0639999997802079, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1.1200000001117587, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.5500000005122274, + 1.1900000001769513, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.700000000651926, + 1.2600000002421439, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.850000000791624, + 1.3300000003073364, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.400000000372529, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1200000001117587, + 1.456000000005588, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.2400000002235174, + 1.5120000003371388, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.360000000335276, + 1.5679999999701977, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.480000000447035, + 1.6240000003017485, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.6000000005587935, + 1.6800000006332994, + 2, + 3 + ] + } + } + }, + "121304": { + "Id": 121304, + "Name": "亢心", + "Desc": "丹恒•饮月施放每段攻击后获得1层【亢心】,使自身造成的伤害提高#1[f1]%,该效果可以叠加#2[i]层,持续至自身回合结束。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 6 + ] + } + } + }, + "121306": { + "Id": 121306, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121307": { + "Id": 121307, + "Name": "掣空如虹", + "Desc": "使用秘技后进入持续#2[i]秒的【蟠跃】状态。【蟠跃】状态下使用攻击会快速向前移动一段距离并攻击接触到的敌人,在快速移动的过程中可抵挡敌人的所有攻击。【蟠跃】状态下主动攻击敌人进入战斗后,对敌方全体造成等同于丹恒•饮月#3[i]%攻击力的虚数属性伤害,并使自身获得#1[i]个【逆鳞】。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 20, + 1.2000000001862645 + ] + } + } + }, + "121308": { + "Id": 121308, + "Name": "瞬华", + "Desc": "施放3段攻击对指定敌方单体造成等同于丹恒•饮月#1[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5600000005215406 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.8200000007636845 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.080000000074506 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.3400000003166497 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.8600000008009374 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.1200000001117587 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.3800000003539026 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.6400000005960464 + ] + } + } + }, + "121309": { + "Id": 121309, + "Name": "取消", + "Desc": "取消强化。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121310": { + "Id": 121310, + "Name": "天矢阴", + "Desc": "施放5段攻击对指定敌方单体造成等同于丹恒•饮月#1[i]%攻击力的虚数属性伤害。从第4段攻击开始同时对其相邻目标造成等同于丹恒•饮月#2[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 35, + "BPNeed": 2, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9000000008381903, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.2800000002607703, + 0.3600000003352761 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.660000000614673, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.040000000037253, + 0.48000000044703484 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.4200000003911555, + 0.5400000005029142 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.800000000745058, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4.180000000167638, + 0.6600000006146729 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.560000000521541, + 0.7200000006705523 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.940000000875443, + 0.7800000007264316 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5.320000000298023, + 0.840000000782311 + ] + } + } + }, + "121312": { + "Id": 121312, + "Name": "盘拏耀跃", + "Desc": "施放7段攻击对指定敌方单体造成等同于丹恒•饮月#1[i]%攻击力的虚数属性伤害。从第4段攻击开始同时对其相邻目标造成等同于丹恒•饮月#2[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 40, + "BPNeed": 3, + "BPAdd": null, + "ShowStanceList": [ + 120, + 0, + 60 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1.0800000000745058 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.5000000004656613, + 1.2600000002421439 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4.500000000465661, + 1.62000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5.500000000465661, + 1.9800000009126961 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 6, + 2.1600000001490116 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 6.500000000465661, + 2.3400000003166497 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 2.5200000004842877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Maze.png", + "LevelUpSkillID": [ + 121307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1213101, + "PointName": "伏辰", + "PointDesc": "战斗开始时,立即恢复#1[i]点能量。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1213102, + "PointName": "修禹", + "PointDesc": "抵抗控制类负面状态的概率提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.24000000022351742 + ], + "PointID": 1213103, + "PointName": "起蛰", + "PointDesc": "对拥有虚数属性弱点的敌方目标造成伤害时,暴击伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213201, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1213101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213203, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1213202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1213203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213205, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1213102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1213205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213207, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1213206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1213103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1213208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213210, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1213208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1213, + "Set4IDList": [ + 102, + 112, + 117 + ], + "Set2IDList": [ + 309, + 305, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1214": { + "Name": "雪衣", + "Desc": "仙舟「罗浮」上监察生死的机构「十王司」的判官。\\n早已身死道消多年,借偃偶身躯「还阳」,履行使命。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "xueyi", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 121401, + "Name": "缚心魔", + "Desc": "天赋的追加攻击造成的伤害提高#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "2": { + "Id": 121402, + "Name": "破五尘", + "Desc": "天赋的追加攻击无视弱点属性削减敌方的韧性,同时为自身恢复等同于雪衣#1[i]%生命上限的生命值。击破弱点时,触发量子属性的弱点击破效果。", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 121403, + "Name": "止苦谛", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 121404, + "Name": "断业根", + "Desc": "施放终结技时,击破特攻提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.40000000037252903, + 2 + ] + }, + "5": { + "Id": 121405, + "Name": "勾灵神", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 121406, + "Name": "司死生", + "Desc": "【恶报】的层数上限降低至#1[i]层。", + "ParamList": [ + 6 + ] + } + }, + "Skills": { + "121401": { + "Id": 121401, + "Name": "破魔锥", + "Desc": "对指定敌方单体造成等同于雪衣#1[i]%攻击力的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121402": { + "Id": 121402, + "Name": "摄伏诸恶", + "Desc": "对指定敌方单体造成等同于雪衣#1[i]%攻击力的量子属性伤害,同时对其相邻目标造成等同于雪衣#2[i]%攻击力的量子属性伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 0.3850000000093132 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 0.4550000000745058 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 0.49000000045634806 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 0.5687500007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 0.6125000007450581 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 0.6562500006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 0.7350000003352761 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 0.7700000007171184 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 0.8050000004004687 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 0.840000000782311 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613 + ] + } + } + }, + "121403": { + "Id": 121403, + "Name": "天罚贯身", + "Desc": "对指定敌方单体造成等同于雪衣#1[i]%攻击力的量子属性伤害,本次攻击无视弱点属性削减敌方单体的韧性。击破弱点时,触发量子属性的弱点击破效果。\\n在本次攻击中,削减的韧性越多,造成的伤害越高,最多提高#3[f1]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 120, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.09000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.6000000005587935, + 0.09599999967031181, + 0.3840000000782311 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.7000000006519258, + 0.10199999995529652, + 0.40799999982118607 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.800000000745058, + 0.1079999995417893, + 0.43200000026263297 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9000000008381903, + 0.113999999826774, + 0.45600000000558794 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.12000000011175871, + 0.48000000044703484 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.1249999997671694, + 0.12749999994412065, + 0.5100000004749745 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.2500000002328306, + 0.13499999977648258, + 0.5400000005029142 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.375, + 0.14250000030733645, + 0.5700000005308539 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.5000000004656613, + 0.1500000001396984, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.6000000005587935, + 0.15599999972619116, + 0.6240000003017485 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.700000000651926, + 0.16200000001117587, + 0.6480000000447035 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.800000000745058, + 0.16799999959766865, + 0.6720000004861504 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.9000000008381903, + 0.17399999988265336, + 0.6960000002291054 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.18000000016763806, + 0.7200000006705523 + ] + } + } + }, + "121404": { + "Id": 121404, + "Name": "十王圣断,业报恒常", + "Desc": "雪衣施放攻击削减敌方韧性时,会叠加【恶报】层数,削减的韧性越多叠加【恶报】层数越多,可以叠加#1[i]层。\\n当雪衣的队友施放攻击削减敌方韧性后,雪衣叠加#3[i]层【恶报】。\\n当【恶报】叠加至上限时消耗当前所有【恶报】,立即对敌方目标发动追加攻击,造成3次伤害,每次伤害对敌方随机单体造成等同于雪衣#2[i]%攻击力的量子属性伤害。本次追加攻击无法叠加【恶报】。", + "Type": null, + "Tag": "Bounce", + "SPBase": 2, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 8, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 8, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 8, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 8, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 8, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 8, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 8, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 8, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 8, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 8, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 8, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 8, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 8, + 1.1249999997671694, + 1 + ] + } + } + }, + "121406": { + "Id": 121406, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121407": { + "Id": 121407, + "Name": "斩立决", + "Desc": "立即攻击敌人,进入战斗后对敌方全体造成等同于雪衣#1[i]%攻击力的量子属性伤害。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Maze.png", + "LevelUpSkillID": [ + 121407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 2.400000000372529 + ], + "PointID": 1214101, + "PointName": "预兆机杼", + "PointDesc": "使自身造成的伤害提高,提高数值等同于击破特攻的#1[i]%,最多使造成的伤害提高#2[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.10000000009313226 + ], + "PointID": 1214102, + "PointName": "摧锋轴承", + "PointDesc": "如果敌方目标当前韧性大于等于其自身韧性上限的#1[i]%,施放终结技时造成的伤害提高#2[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 6 + ], + "PointID": 1214103, + "PointName": "伺观中枢", + "PointDesc": "雪衣会累计溢出的【恶报】层数,最多累计#1[i]层。雪衣触发天赋后,获得相应溢出层数的【恶报】。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214201, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1214101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214203, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1214202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214204, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1214203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214205, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1214102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1214205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214207, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1214206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214208, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1214103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1214208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214210, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1214208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "击破特攻" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1214, + "Set4IDList": [ + 108, + 111, + 119 + ], + "Set2IDList": [ + 307, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 348, + 293 + ] + } + }, + "1215": { + "Name": "寒鸦", + "Desc": "仙舟「罗浮」十王司的判官之一。\\n受命十王,执掌冥谶天笔,读取罪业种种,并下达业报判罚。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "hanya", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 121501, + "Name": "一心", + "Desc": "持有终结技效果的我方目标消灭敌方目标时,寒鸦行动提前#1[i]%,该效果每回合只能触发#2[i]次。", + "ParamList": [ + 0.1500000001396984, + 1 + ] + }, + "2": { + "Id": 121502, + "Name": "二观", + "Desc": "施放战技后,速度提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 121503, + "Name": "三尘", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 121504, + "Name": "四谛", + "Desc": "终结技的持续时间额外增加#1[i]回合。", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 121505, + "Name": "五阴", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 121506, + "Name": "六正", + "Desc": "天赋的伤害提高效果额外提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + } + }, + "Skills": { + "121501": { + "Id": 121501, + "Name": "冥谶天笔", + "Desc": "对指定敌方单体造成等同于寒鸦#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121502": { + "Id": 121502, + "Name": "生灭系缚", + "Desc": "对指定敌方单体造成等同于寒鸦#1[i]%攻击力的物理属性伤害,并使其陷入【承负】状态。\\n每当我方目标对【承负】状态下的敌方目标施放2次普攻、战技、终结技后,立即为我方恢复1个战技点。【承负】仅对最新被施加的目标生效,并会在触发#2[i]次战技点恢复效果后自动解除。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 17, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 2 + ] + } + } + }, + "121503": { + "Id": 121503, + "Name": "十王敕令,遍土遵行", + "Desc": "使指定我方单体速度提高,提高数值等同于寒鸦速度的#3[f1]%,并使该目标攻击力提高#1[i]%,持续#2[i]回合。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 28, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 2, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 2, + 0.15499999979510903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 2, + 0.1600000001490116 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 2, + 0.16499999980442226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 2, + 0.17000000015832484 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 2, + 0.17499999981373549 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 2, + 0.18125000060535967 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 2, + 0.1875 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 2, + 0.1937500007916242 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 2, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 2, + 0.20499999984167516 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 2, + 0.21000000019557774 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 2, + 0.2149999998509884 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 2, + 0.22000000020489097 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 2, + 0.2249999998603016 + ] + } + } + }, + "121504": { + "Id": 121504, + "Name": "罚恶", + "Desc": "我方目标对陷入【承负】状态下的敌方目标施放普攻、战技、终结技时,造成的伤害提高#1[i]%,持续#2[i]回合。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 2 + ] + } + } + }, + "121506": { + "Id": 121506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121507": { + "Id": 121507, + "Name": "判冥", + "Desc": "立即攻击敌人,进入战斗后对敌方随机单体附上等同于战技效果的【承负】。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Maze.png", + "LevelUpSkillID": [ + 121507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 1 + ], + "PointID": 1215101, + "PointName": "录事", + "PointDesc": "触发【承负】战技点回复效果的我方单位攻击力提高#1[i]%,持续#2[i]回合。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 1215102, + "PointName": "幽府", + "PointDesc": "持有【承负】的敌方目标被消灭时,如果【承负】为全队回复战技点的触发次数小于等于#1[i],则额外回复#2[i]点战技点。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1215103, + "PointName": "还阳", + "PointDesc": "当【承负】战技点恢复效果被触发时,自身恢复#1[i]点能量。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215202, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1215101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1215202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1215201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1215102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215206, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1215205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1215201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1215103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215209, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1215208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1215208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1215, + "Set4IDList": [ + 114, + 102, + 121 + ], + "Set2IDList": [ + 317, + 308, + 310 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 254, + 208 + ] + } + }, + "1217": { + "Name": "藿藿", + "Desc": "仙舟罗浮的十王司见习判官,被岁阳附身的狐人小女孩。\\n性格怯懦,弱小可怜,害怕种种怪异之事却肩负起勾摄邪魔的职责。", + "CharaInfo": { + "Camp": "仙舟「罗浮」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "huohuo", + "SPNeed": 140, + "BaseType": "Priest", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 121701, + "Name": "岁阳寄体,妖邪依凭", + "Desc": "天赋产生的【禳命】持续时间延长#2[i]回合,且当藿藿拥有【禳命】时我方全体提高#1[i]%的速度。", + "ParamList": [ + 0.12000000011175871, + 1 + ] + }, + "2": { + "Id": 121702, + "Name": "判官书符,镇尾锁灵", + "Desc": "当藿藿拥有【禳命】时,若我方目标受到致命攻击,不会陷入无法战斗状态,并立即回复等同于其自身生命上限#1[i]%的生命值,使【禳命】的持续回合数减1。该效果单场战斗中可以触发#2[i]次。", + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "3": { + "Id": 121703, + "Name": "贞凶体质,烛火招萤", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 121704, + "Name": "坐卧不离,争拗难宁", + "Desc": "施放战技或触发天赋为我方目标提供治疗时,目标的当前生命值越低治疗量越高,最多使藿藿提供的治疗量提高#1[i]%。", + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Id": 121705, + "Name": "降妖捉鬼,十王敕令", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 121706, + "Name": "同休共戚,相须而行", + "Desc": "为我方目标提供治疗时,使目标造成的伤害提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.5000000004656613, + 2 + ] + } + }, + "Skills": { + "121701": { + "Id": 121701, + "Name": "令旗•征风召雨", + "Desc": "对指定敌方单体造成等同于藿藿#1[i]%生命上限的风属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "121702": { + "Id": 121702, + "Name": "灵符•保命护身", + "Desc": "解除指定我方单体的#5[i]负面效果,立即为指定我方单体回复等同于藿藿#1[f1]%生命上限+#2[i]的生命值,同时为其相邻目标回复等同于藿藿#3[f1]%生命上限+#4[i]的生命值。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14000000013038516, + 140, + 0.11199999996460974, + 112, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1487500004004687, + 224, + 0.11899999948218465, + 179.20000000018626, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.15749999997206032, + 287, + 0.12599999969825149, + 229.6000000005588, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16625000024214387, + 350, + 0.13299999991431832, + 280, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17499999981373549, + 392, + 0.14000000013038516, + 313.6000000005588, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18200000002980232, + 434, + 0.14560000016354024, + 347.20000000018626, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18899999954737723, + 465.50000000046566, + 0.15120000019669533, + 372.40000000037253, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.19599999976344407, + 497, + 0.1568000002298504, + 397.6000000005588, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2029999999795109, + 528.5000000004657, + 0.1624000002630055, + 422.80000000074506, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.21000000019557774, + 560, + 0.16799999959766865, + 448, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21699999971315265, + 591.5000000004657, + 0.17360000032931566, + 473.20000000018626, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22399999992921948, + 623, + 0.17919999966397882, + 498.40000000037253, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.23100000014528632, + 654.5000000004657, + 0.18480000039562583, + 523.6000000005588, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.23799999966286123, + 686, + 0.1904000004287809, + 548.8000000007451, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.24499999987892807, + 717.5000000004657, + 0.19599999976344407, + 574, + 1 + ] + } + } + }, + "121703": { + "Id": 121703, + "Name": "尾巴•遣神役鬼", + "Desc": "为除自身以外的队友恢复等同于各自#1[f1]%能量上限的能量,同时使其攻击力提高#2[f1]%,持续#3[i]回合。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.24000000022351742, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 0.2559999998193234, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 0.27200000011362135, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 0.28799999970942736, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 0.3040000000037253, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 0.3200000002980232, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 0.3400000003166497, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 0.3600000003352761, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 0.3800000003539026, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 0.41599999996833503, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 0.43200000026263297, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 0.44799999985843897, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 0.4640000001527369, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 0.48000000044703484, + 2 + ] + } + } + }, + "121704": { + "Id": 121704, + "Name": "凭附•气通天真", + "Desc": "施放战技后藿藿获得【禳命】,持续#1[i]回合,藿藿每回合开始时持续回合数减1。当藿藿拥有【禳命】时,我方目标回合开始或施放终结技时回复自身等同于藿藿#3[f1]%生命上限+#5[i]的生命值,同时对每个当前生命值百分比小于等于#6[i]%的我方目标各产生1次回复效果。\\n触发【禳命】为我方目标提供治疗时,解除该目标#2[i]负面效果,该效果可以触发#7[i]次,再次施放战技后将刷新效果可触发次数。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1, + 0.030000000027939677, + 0, + 30, + 0.5000000004656613, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 1, + 0.03187500103376806, + 0, + 48, + 0.5000000004656613, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 1, + 0.033750000642612576, + 0, + 61.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 1, + 0.035625000251457095, + 0, + 75, + 0.5000000004656613, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 1, + 0.037499999860301614, + 0, + 84, + 0.5000000004656613, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 1, + 0.03899999940767884, + 0, + 93, + 0.5000000004656613, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 1, + 0.04050000035203993, + 0, + 99.75000000069849, + 0.5000000004656613, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 1, + 0.04199999989941716, + 0, + 106.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 1, + 0.04350000014528632, + 0, + 113.25000000023283, + 0.5000000004656613, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.04499999969266355, + 0, + 120, + 0.5000000004656613, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 1, + 0.04649999993853271, + 0, + 126.75000000069849, + 0.5000000004656613, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 1, + 0.04799999948590994, + 0, + 133.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 1, + 0.0494999997317791, + 0, + 140.25000000023283, + 0.5000000004656613, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 1, + 0.05099999997764826, + 0, + 147, + 0.5000000004656613, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 1, + 0.05250000022351742, + 0, + 153.7500000006985, + 0.5000000004656613, + 6 + ] + } + } + }, + "121706": { + "Id": 121706, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121707": { + "Id": 121707, + "Name": "凶煞•劾压鬼物", + "Desc": "藿藿恐吓周围的敌人,使其陷入【魄散】状态。【魄散】状态下的敌人会向远离藿藿的方向逃跑,持续#4[i]秒。与陷入【魄散】状态的敌人进入战斗后,有#1[i]%基础概率使敌方每个单体目标攻击力降低#2[i]%,持续#3[i]回合。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.25000000023283064, + 2, + 10 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Maze.png", + "LevelUpSkillID": [ + 121707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1217101, + "PointName": "不敢自专", + "PointDesc": "战斗开始时,藿藿获得【禳命】,持续#1[i]回合。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1217102, + "PointName": "贞凶之命", + "PointDesc": "抵抗控制类负面状态的概率提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1217103, + "PointName": "怯惧应激", + "PointDesc": "触发天赋为我方目标提供治疗时,藿藿恢复#1[i]点能量。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217201, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217202, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1217101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217203, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1217202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217204, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1217203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217205, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1217102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217206, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1217205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217207, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1217206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217208, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1217103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217209, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1217103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "效果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217210, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1217, + "Set4IDList": [ + 101, + 114, + 110 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1218": { + "Name": "椒丘", + "Desc": "仙舟「曜青」的狐人医士、策士,常以笑脸迎人,实际颇有心计。\\n出身于丹鼎司名家,曾一度心死避世,不再行医,后为医治「天击将军」飞霄再度出山。\\n精于医食同源的丹方研究,尤其是能带给人痛感的辣味食物,发明了名为「九宫格」的鼎镬药式。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jiaoqiu", + "SPNeed": 100, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 121801, + "Name": "五味五走,生熟有定", + "Desc": "我方目标对处于【烬煨】状态的敌方目标造成的伤害提高#1[i]%。每当触发天赋效果使敌方目标陷入【烬煨】状态时,使本次叠加的【烬煨】层数额外提高#2[i]层。", + "ParamList": [ + 0.40000000037252903, + 1 + ] + }, + "2": { + "Id": 121802, + "Name": "爽口作疾,厚味措毒", + "Desc": "敌方目标处于【烬煨】状态时,【烬煨】对其造成的火属性持续伤害倍率提高#1[i]%。", + "ParamList": [ + 3 + ] + }, + "3": { + "Id": 121803, + "Name": "和合之妙,敌不及拒", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 121804, + "Name": "藏腑和平,血气资荣", + "Desc": "结界存在时,敌方目标的攻击力降低#1[i]%。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 121805, + "Name": "明争天地,暗斗变击", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 121806, + "Name": "九沸九变,火为之纪", + "Desc": "敌方目标被消灭时,其持有的【烬煨】会叠加给场上存活的【烬煨】层数最低的敌人。【烬煨】的层数上限提升至#2[i],每层【烬煨】会使目标的全属性抗性降低#3[i]%。", + "ParamList": [ + 1, + 9, + 0.030000000027939677 + ] + } + }, + "Skills": { + "121801": { + "Id": 121801, + "Name": "仁火攻心", + "Desc": "对指定敌方单体造成等同于椒丘#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121802": { + "Id": 121802, + "Name": "燔燎急袭", + "Desc": "对指定敌方单体造成等同于椒丘#1[i]%攻击力的火属性伤害,同时对其相邻目标造成等同于椒丘#2[i]%攻击力的火属性伤害,有#3[i]%基础概率对主目标施加1层【烬煨】。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1.1249999997671694, + 1 + ] + } + } + }, + "121803": { + "Id": 121803, + "Name": "鼎阵妙法,奇正相生", + "Desc": "将敌方目标具有的【烬煨】层数统一设置为场上【烬煨】层数的最高值,随后开启结界并对敌方全体造成等同于椒丘#1[i]%攻击力的火属性伤害。\\n处于结界中时,敌方目标受到的终结技伤害提高#3[f1]%,且行动时有#2[i]%基础概率被施加1层【烬煨】,结界存在期间该效果最多触发#5[i]次,且每个敌方目标每回合只能触发1次。椒丘每次施放终结技时重置触发次数。\\n结界持续#4[i]回合,自身每回合开始时结界持续回合数减1。当椒丘陷入无法战斗状态时,结界也会被解除。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 0.09000000008381903, + 3, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6400000005960464, + 0.5100000004749745, + 0.09599999967031181, + 3, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6800000006332994, + 0.5200000004842877, + 0.10199999995529652, + 3, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523, + 0.530000000493601, + 0.1079999995417893, + 3, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7600000007078052, + 0.5400000005029142, + 0.113999999826774, + 3, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581, + 0.5500000005122274, + 0.12000000011175871, + 3, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8500000007916242, + 0.5625000006984919, + 0.12749999994412065, + 3, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9000000008381903, + 0.5750000001862645, + 0.13499999977648258, + 3, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9500000008847564, + 0.587500000372529, + 0.14250000030733645, + 3, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.6000000005587935, + 0.1500000001396984, + 3, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.040000000037253, + 0.6100000005681068, + 0.15599999972619116, + 3, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.0800000000745058, + 0.62000000057742, + 0.16200000001117587, + 3, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1200000001117587, + 0.6300000005867332, + 0.16799999959766865, + 3, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.1600000001490116, + 0.6400000005960464, + 0.17399999988265336, + 3, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2000000001862645, + 0.6500000006053597, + 0.18000000016763806, + 3, + 6 + ] + } + } + }, + "121804": { + "Id": 121804, + "Name": "四示八权,纤滋精味", + "Desc": "椒丘使用普攻、战技、终结技击中敌人时,有#1[i]%基础概率对其施加1层【烬煨】,1层时使敌人受到的伤害提高#2[f1]%,此后每叠加1层提高#3[f1]%。\\n【烬煨】最多叠加#4[i]层,持续#5[i]回合。\\n当敌方目标处于【烬煨】状态时,也会被视为同时陷入了灼烧状态,每回合开始时受到等同于椒丘#6[i]%攻击力的火属性持续伤害。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.07499999972060323, + 0.0249999996740371, + 5, + 2, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.0825000002514571, + 0.027499999850988388, + 5, + 2, + 0.9900000009220093 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.09000000008381903, + 0.030000000027939677, + 5, + 2, + 1.0800000000745058 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.09749999991618097, + 0.032500000204890966, + 5, + 2, + 1.1700000001583248 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.1049999997485429, + 0.034999999683350325, + 5, + 2, + 1.2600000002421439 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.11250000027939677, + 0.037499999860301614, + 5, + 2, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.12187500111758709, + 0.040625000605359674, + 5, + 2, + 1.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.13125000055879354, + 0.0437500006519258, + 5, + 2, + 1.5750000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.14062500069849193, + 0.04687500069849193, + 5, + 2, + 1.6875000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.1500000001396984, + 0.05000000004656613, + 5, + 2, + 1.800000000745058 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.15749999997206032, + 0.05250000022351742, + 5, + 2, + 1.890000000828877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.16499999980442226, + 0.054999999701976776, + 5, + 2, + 1.9800000009126961 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.17250000033527613, + 0.057499999878928065, + 5, + 2, + 2.0700000000651926 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.18000000016763806, + 0.060000000055879354, + 5, + 2, + 2.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.1875, + 0.06250000023283064, + 5, + 2, + 2.2500000002328306 + ] + } + } + }, + "121806": { + "Id": 121806, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121807": { + "Id": 121807, + "Name": "旺火却乱", + "Desc": "使用秘技后,制造1片持续#2[i]秒的特殊领域。与处于特殊领域内的敌人进入战斗后,对敌方全体造成等同于椒丘#1[i]%攻击力的火属性伤害,并有#3[i]%基础概率施加1层【烬煨】。我方制造的领域效果最多存在1个。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 15, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Maze.png", + "LevelUpSkillID": [ + 121807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1218101, + "PointName": "爟火", + "PointDesc": "战斗开始时,立即恢复#1[i]点能量。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984, + 0.6000000005587935, + 2.400000000372529 + ], + "PointID": 1218102, + "PointName": "举炊", + "PointDesc": "椒丘效果命中大于#1[i]%时,每超过#2[i]%,则额外提高#3[i]%攻击力,最高不超过#4[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1218103, + "PointName": "炙香", + "PointDesc": "结界存在时,敌方目标进入战斗时,会被施加【烬煨】,层数与结界展开期间【烬煨】层数最高者相同,最低为#1[i]层。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218201, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218202, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1218101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218203, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1218202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218204, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1218203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218205, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1218102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218206, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1218205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218207, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1218206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218208, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1218103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218209, + "PointName": "伤害强化•火", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1218103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "火属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218210, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1218201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "效果命中" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1218, + "Set4IDList": [ + 116, + 110, + 106 + ], + "Set2IDList": [ + 303, + 302, + 308 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "StatusProbabilityBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 328, + 273 + ] + } + }, + "1220": { + "Name": "飞霄", + "Desc": "仙舟「曜青」的天击将军,帝弓七天将之一,为人不拘一格,率直潇洒。\\n精通百般武艺,炼化躯体至极致,享有「大捷将军」美名,深受仙舟军民爱戴。\\n但身负「月狂」之症,如要在时限内猎尽孽物——飞霄唯一的敌手,便是自己。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "feixiao", + "SPNeed": 12, + "BaseType": "Rogue", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 122001, + "Name": "镇绥天钧", + "Desc": "发动【闪裂刃舞】或【钺贯天冲】后,使飞霄造成的终结技伤害额外提高,提高数值等同于原伤害的#1[i]%,最多叠加#2[i]层,持续至终结技行动结束。", + "ParamList": [ + 0.10000000009313226, + 5 + ] + }, + "2": { + "Id": 122002, + "Name": "礼辰祷月", + "Desc": "天赋效果中,我方目标每施放1次追加攻击即可使飞霄获得1点【飞黄】。该效果每回合最多触发#1[i]次。", + "ParamList": [ + 6 + ] + }, + "3": { + "Id": 122003, + "Name": "景星出宿", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 122004, + "Name": "驱飓听冰", + "Desc": "天赋的追加攻击的削韧值提高#1[i]%,并且发动时使自身速度提高#2[i]%,持续#3[i]回合。", + "ParamList": [ + 1, + 0.0800000000745058, + 2 + ] + }, + "5": { + "Id": 122005, + "Name": "擢登霄汉", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 122006, + "Name": "惟首正丘", + "Desc": "飞霄造成的终结技伤害的全属性抗性穿透提高#1[i]%。天赋的追加攻击伤害同时视为终结技伤害,并且伤害倍率提高#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 1.400000000372529 + ] + } + }, + "Skills": { + "122001": { + "Id": 122001, + "Name": "闪裂", + "Desc": "对指定敌方单体造成等同于飞霄#1[i]%攻击力的风属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122002": { + "Id": 122002, + "Name": "钺贯", + "Desc": "对指定敌方单体造成等同于飞霄#1[i]%攻击力的风属性伤害,随后立即对该目标额外发动1次天赋的追加攻击。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613 + ] + } + } + }, + "122003": { + "Id": 122003, + "Name": "凿破大荒", + "Desc": "对指定敌方单体造成最多等同于飞霄#4[i]%攻击力的风属性伤害,期间可无视弱点属性削减目标韧性,目标未处于弱点击破状态时飞霄的弱点击破效率提高#2[i]%。\\n其中,飞霄先对该目标发动【闪裂刃舞】或【钺贯天冲】,总计#3[i]次。最后对该目标造成等同于飞霄#1[i]%攻击力的风属性伤害。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 1, + 6, + 4.0200000000186265 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 1, + 6, + 4.317999999737367 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 1, + 6, + 4.6160000001545995 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 1, + 6, + 4.914000000571832 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 1, + 6, + 5.212000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 1, + 6, + 5.5100000004749745 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 1, + 6, + 5.882500000996515 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 1, + 6, + 6.254999999888241 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 1, + 6, + 6.627500000409782 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 6, + 7 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1, + 6, + 7.297999999718741 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1, + 6, + 7.596000000135973 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1, + 6, + 7.894000000553206 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1, + 6, + 8.192000000039116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1, + 6, + 8.490000000456348 + ] + } + } + }, + "122004": { + "Id": 122004, + "Name": "雷狩", + "Desc": "【飞黄】达到#3[i]点时可激活终结技,最多累计#4[i]点。我方目标每施放#2[i]次攻击,飞霄获得1点【飞黄】,飞霄的终结技攻击不计入次数。\\n当飞霄的队友对敌方目标施放攻击后,飞霄立即对主目标发动追加攻击,造成等同于飞霄#1[i]%攻击力的风属性伤害。若不存在可攻击的主目标,则攻击敌方随机单体。该效果每回合最多触发1次,飞霄回合开始时重置可触发次数。发动此攻击时使自身造成的伤害提高#5[i]%,持续#6[i]回合。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 2, + 6, + 12, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6050000002142042, + 2, + 6, + 12, + 0.33000000030733645, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6600000006146729, + 2, + 6, + 12, + 0.3600000003352761, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7150000003166497, + 2, + 6, + 12, + 0.3900000003632158, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7700000007171184, + 2, + 6, + 12, + 0.4200000003911555, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8250000004190952, + 2, + 6, + 12, + 0.45000000041909516, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.89375000144355, + 2, + 6, + 12, + 0.4875000002793968, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.962500001071021, + 2, + 6, + 12, + 0.5250000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.0312500004656613, + 2, + 6, + 12, + 0.5625000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1000000000931323, + 2, + 6, + 12, + 0.6000000005587935, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.154999999795109, + 2, + 6, + 12, + 0.6300000005867332, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2100000001955777, + 2, + 6, + 12, + 0.6600000006146729, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.2649999998975545, + 2, + 6, + 12, + 0.6900000006426126, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.3200000002980232, + 2, + 6, + 12, + 0.7200000006705523, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.375, + 2, + 6, + 12, + 0.7500000006984919, + 2 + ] + } + } + }, + "122006": { + "Id": 122006, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122007": { + "Id": 122007, + "Name": "岚身", + "Desc": "使用秘技后进入持续#1[i]秒的【陷锋】状态。【陷锋】状态下会牵引一定范围内的敌人,并且自身移动速度提高#2[i]%,进入战斗后获得#4[i]点【飞黄】。\\n【陷锋】状态下主动攻击会使所有牵引的敌人进入战斗。进入战斗后,每个波次开始时对敌方全体造成等同于飞霄#3[i]%攻击力的风属性伤害,该伤害必定造成暴击。若牵引了超过1个敌人,每超过1个敌人,该伤害的倍率提高#5[i]%,最多提高至#6[i]%。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.5000000004656613, + 2, + 1, + 1, + 10 + ] + } + } + }, + "122008": { + "Id": 122008, + "Name": "闪裂刃舞", + "Desc": "对所选目标造成等同于飞霄#1[i]%攻击力的风属性伤害。若目标处于弱点击破状态,伤害倍率提高#2[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 0.375 + ] + } + } + }, + "122009": { + "Id": 122009, + "Name": "钺贯天冲", + "Desc": "对所选目标造成等同于飞霄#1[i]%攻击力的风属性伤害。若目标未处于弱点击破状态,伤害倍率提高#2[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 0.375 + ] + } + } + }, + "122014": { + "Id": 122014, + "Name": "凿破大荒", + "Desc": "", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 1, + 6, + 4.0200000000186265 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 1, + 6, + 4.317999999737367 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 1, + 6, + 4.6160000001545995 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 1, + 6, + 4.914000000571832 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 1, + 6, + 5.212000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 1, + 6, + 5.5100000004749745 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 1, + 6, + 5.882500000996515 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 1, + 6, + 6.254999999888241 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 1, + 6, + 6.627500000409782 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 6, + 7 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1, + 6, + 7.297999999718741 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1, + 6, + 7.596000000135973 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1, + 6, + 7.894000000553206 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1, + 6, + 8.192000000039116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1, + 6, + 8.490000000456348 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Maze.png", + "LevelUpSkillID": [ + 122007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1220101, + "PointName": "天通", + "PointDesc": "战斗开始时,获得#1[i]点【飞黄】。\\n回合开始时,若上回合未通过天赋发动追加攻击,计入1次获得【飞黄】所需的攻击次数。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3600000003352761 + ], + "PointID": 1220102, + "PointName": "解形", + "PointDesc": "施放终结技对敌方目标造成伤害时,被视为发动了追加攻击追加攻击的暴击伤害提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.48000000044703484, + 3 + ], + "PointID": 1220103, + "PointName": "电举", + "PointDesc": "施放战技时,攻击力提高#1[i]%,持续#2[i]回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1220101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1220202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1220102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1220205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1220103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1220208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1220208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 52.80000000074506, + "DefenceAdd": 2.6400000005960464, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 73.92000000085682, + "DefenceAdd": 2.6400000005960464, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 95.04000000003725, + "DefenceAdd": 2.6400000005960464, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 116.16000000014901, + "DefenceAdd": 2.6400000005960464, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 137.28000000026077, + "DefenceAdd": 2.6400000005960464, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 158.40000000037253, + "DefenceAdd": 2.6400000005960464, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 179.5200000004843, + "DefenceAdd": 2.6400000005960464, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1220, + "Set4IDList": [ + 120, + 110, + 115 + ], + "Set2IDList": [ + 315, + 306, + 311 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1221": { + "Name": "云璃", + "Desc": "仙舟「朱明」的猎剑士,备受「烛渊将军」怀炎宠爱的孙女,性格直率。\\n从小跟随怀炎学习剑艺与锻艺,乃「焰轮八叶」中次年幼的天才剑士。\\n对朱明流出的魔剑深恶痛绝,立誓要「搜猎魔剑,尽数断绝」。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "yunli", + "SPNeed": 240, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 122101, + "Name": "沉锋离垢", + "Desc": "【勘破•斩】与【勘破•灭】造成的伤害提高#1[i]%,【勘破•灭】的额外伤害次数增加#2[i]次。", + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "2": { + "Id": 122102, + "Name": "初芒破生", + "Desc": "发动反击造成伤害时无视敌方目标#1[i]%的防御力。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 122103, + "Name": "九尺运斤", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 122104, + "Name": "大匠击橐", + "Desc": "发动【勘破•斩】或【勘破•灭】后使自身效果抵抗提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "5": { + "Id": 122105, + "Name": "恒兵匪石", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 122106, + "Name": "剑胆琴心", + "Desc": "【格挡】状态期间,敌方主动施放技能时无论是否攻击云璃,都会触发【勘破•灭】同时移除【格挡】效果,发动【勘破•斩】或【勘破•灭】造成伤害时暴击率提高#1[i]%,物理属性抗性穿透提高#2[i]%。", + "ParamList": [ + 0.1500000001396984, + 0.20000000018626451 + ] + } + }, + "Skills": { + "122101": { + "Id": 122101, + "Name": "翻风转日", + "Desc": "对指定敌方单体造成等同于云璃#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122102": { + "Id": 122102, + "Name": "飞铗震赫", + "Desc": "回复等同于云璃#3[f1]%攻击力+#4[i]的生命值,并对指定敌方单体造成等同于云璃#1[i]%攻击力的物理属性伤害,对其相邻目标造成等同于云璃#2[i]%攻击力的物理属性伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.20000000018626451, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.33000000030733645, + 0.21250000037252903, + 80 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.3600000003352761, + 0.2249999998603016, + 102.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.3900000003632158, + 0.23750000004656613, + 125 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.25000000023283064, + 140 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 0.26000000024214387, + 155 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 0.2700000002514571, + 166.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 0.2800000002607703, + 177.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 0.29000000027008355, + 188.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.3000000002793968, + 200 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.6300000005867332, + 0.31000000028871, + 211.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 0.3200000002980232, + 222.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.6900000006426126, + 0.33000000030733645, + 233.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.7200000006705523, + 0.3400000003166497, + 245 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.3500000003259629, + 256.25000000023283 + ] + } + } + }, + "122103": { + "Id": 122103, + "Name": "剑为地纪,刃惊天宗", + "Desc": "消耗#8[i]点能量,云璃获得【格挡】并使敌方全体陷入嘲讽状态,持续至下一个我方或敌方回合结束时。并使云璃下一次反击造成的暴击伤害提高#2[i]%。触发天赋的反击效果时,将替换为发动反击【勘破•灭】同时移除【格挡】效果。若【格挡】状态期间没有触发反击,状态结束时云璃立即对随机敌方目标发动反击【勘破•斩】。 \\n【勘破•斩】:对目标造成等同于云璃#1[i]%攻击力的物理属性伤害,对其相邻目标造成等同于云璃#6[i]%攻击力的物理属性伤害。\\n【勘破•灭】:对目标造成等同于云璃#1[i]%攻击力的物理属性伤害,对其相邻目标造成等同于云璃#6[i]%攻击力的物理属性伤害,随后额外造成#4[i]次伤害,每次伤害对随机敌方单体造成等同于云璃#7[i]%攻击力的物理伤害。\\n云璃通过此技能造成伤害时,被视为造成了终结技伤害。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3200000002980232, + 0.6000000005587935, + 0, + 6, + 0, + 0.6600000006146729, + 0.43200000026263297, + 120 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.407999999821186, + 0.6400000005960464, + 0, + 6, + 0, + 0.7040000003762543, + 0.46080000093206763, + 120 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.4960000000428408, + 0.6800000006332994, + 0, + 6, + 0, + 0.7480000001378357, + 0.48960000020451844, + 120 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5840000002644956, + 0.7200000006705523, + 0, + 6, + 0, + 0.7920000005979091, + 0.5184000001754612, + 120 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6720000004861504, + 0.7600000007078052, + 0, + 6, + 0, + 0.8360000003594905, + 0.5472000001464039, + 120 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.7600000007078052, + 0.8000000007450581, + 0, + 6, + 0, + 0.8800000008195639, + 0.5760000001173466, + 120 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.8700000008102506, + 0.8500000007916242, + 0, + 6, + 0, + 0.9350000005215406, + 0.612000000430271, + 120 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9800000009126961, + 0.9000000008381903, + 0, + 6, + 0, + 0.9900000009220093, + 0.6480000000447035, + 120 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.090000000083819, + 0.9500000008847564, + 0, + 6, + 0, + 1.0449999996926636, + 0.6840000003576279, + 120 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645, + 1, + 0, + 6, + 0, + 1.1000000000931323, + 0.7200000006705523, + 120 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.2879999997094274, + 1.040000000037253, + 0, + 6, + 0, + 1.1439999998547137, + 0.748800000641495, + 120 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.375999999931082, + 1.0800000000745058, + 0, + 6, + 0, + 1.187999999616295, + 0.7776000006124377, + 120 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.464000000152737, + 1.1200000001117587, + 0, + 6, + 0, + 1.2320000000763685, + 0.8064000005833805, + 120 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5520000003743917, + 1.1600000001490116, + 0, + 6, + 0, + 1.2759999998379499, + 0.8352000005543232, + 120 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6400000005960464, + 1.2000000001862645, + 0, + 6, + 0, + 1.3200000002980232, + 0.8640000005252659, + 120 + ] + } + } + }, + "122104": { + "Id": 122104, + "Name": "闪铄", + "Desc": "当云璃受到敌方目标攻击后,额外恢复#3[i]点能量,并立即向攻击者发起反击,对其造成等同于云璃#1[i]%攻击力的物理属性伤害,对其相邻目标造成等同于云璃#2[i]%攻击力的物理属性伤害。\\n若不存在可反击的目标,则反击敌方随机目标。", + "Type": null, + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 15 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.33000000030733645, + 15 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.3600000003352761, + 15 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.3900000003632158, + 15 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 15 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 15 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 15 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 15 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 15 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 15 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.6300000005867332, + 15 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 15 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.6900000006426126, + 15 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.7200000006705523, + 15 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 15 + ] + } + } + }, + "122106": { + "Id": 122106, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122107": { + "Id": 122107, + "Name": "后发先至", + "Desc": "使自身获得【招架】效果,持续#2[i]秒,期间攻击敌人或受到攻击进入战斗后,立即对随机敌方单体施放【勘破•灭】,并使本次攻击造成的伤害提高#1[i]%。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Maze.png", + "LevelUpSkillID": [ + 122107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221101, + "PointName": "灼毂", + "PointDesc": "每发动1次【勘破•斩】后,下一次【勘破•斩】将替换为【勘破•灭】。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1221102, + "PointName": "却邪", + "PointDesc": "【格挡】状态下抵抗受到的控制类负面效果,并使受到的伤害降低#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1221103, + "PointName": "真刚", + "PointDesc": "施放反击时,云璃的攻击力提高#1[i]%,持续1回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1221101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1221202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221204, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1221203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1221102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1221205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1221206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221208, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1221103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1221208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1221208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1221, + "Set4IDList": [ + 120, + 117, + 105 + ], + "Set2IDList": [ + 315, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 337, + 283 + ] + } + }, + "1222": { + "Name": "灵砂", + "Desc": "仙舟「罗浮」丹鼎司新任司鼎,伶俐秀慧的持明医士。\\n嗅觉敏锐,常以此识别病症,并以香薰安定他人心神。\\n善于处理混杂的人际关系,即使心底暴躁如雷,表面上依旧滴水不漏。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "lingsha", + "SPNeed": 110, + "BaseType": "Priest", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 122201, + "Name": "馨气当盛,除邪避讳", + "Desc": "灵砂的弱点击破效率提高#2[i]%。当有敌方单位的弱点被击破时,使其防御力降低#1[i]%。", + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + }, + "2": { + "Id": 122202, + "Name": "欹枕垂云,烟奁红雪", + "Desc": "施放终结技时,使我方全体击破特攻提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.40000000037252903, + 3 + ] + }, + "3": { + "Id": 122203, + "Name": "含芽细炷,浪蕊浓焚", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 122204, + "Name": "横垂宝幄,半拂琼筵", + "Desc": "【浮元】行动时,为当前生命值最低的我方目标回复等同于灵砂#1[i]%攻击力的生命值。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Id": 122205, + "Name": "纵横圆转,内常不倾", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 122206, + "Name": "晓兰深藏,宿香暗贮", + "Desc": "【浮元】在场时,使敌方全体全属性抗性降低#1[i]%,【浮元】攻击时,额外造成#2[i]次伤害,每次伤害对随机敌方单体造成等同于灵砂#3[i]%攻击力的火属性伤害和#4[i]点削韧值,优先选择韧性值大于0且有火属性弱点的目标。", + "ParamList": [ + 0.20000000018626451, + 4, + 0.5000000004656613, + 5 + ] + } + }, + "Skills": { + "122201": { + "Id": 122201, + "Name": "肃香", + "Desc": "对指定敌方单体造成等同于灵砂#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122202": { + "Id": 122202, + "Name": "识烟飞彩", + "Desc": "对敌方全体造成等同于灵砂#1[i]%攻击力的火属性伤害,同时为我方全体回复等同于灵砂#2[f1]%攻击力+#3[i]的生命值,使【浮元】行动提前#4[i]%。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.10000000009313226, + 105, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 0.1049999997485429, + 168, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 0.11000000010244548, + 215.25000000023283, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 0.11499999975785613, + 262.50000000046566, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 0.12000000011175871, + 294, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.12399999983608723, + 325.50000000046566, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0.12799999956041574, + 349.12499999976717, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 0.1319999999832362, + 372.7500000006985, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 0.1359999997075647, + 396.375, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 420, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 0.14399999985471368, + 443.62500000023283, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 0.1479999995790422, + 467.25000000023283, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 0.15200000000186265, + 490.87500000046566, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 0.15599999972619116, + 514.5000000004657, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.1600000001490116, + 538.1249999997672, + 0.20000000018626451 + ] + } + } + }, + "122203": { + "Id": 122203, + "Name": "幔亭缭霞", + "Desc": "使敌方全体陷入【醇醉】状态,【醇醉】状态下,使目标受到的击破伤害提高#4[i]%,持续#5[i]回合。\\n对敌方全体造成等同于灵砂#1[i]%攻击力的火属性伤害,同时为我方全体回复等同于灵砂#2[f1]%攻击力+#3[i]的生命值,使【浮元】行动提前#6[i]%。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.0800000000745058, + 90, + 0.1500000001396984, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.08499999972991645, + 144, + 0.1600000001490116, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.09000000008381903, + 184.50000000046566, + 0.17000000015832484, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.09499999973922968, + 225, + 0.18000000016763806, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.10000000009313226, + 252, + 0.1900000001769513, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.10399999981746078, + 279, + 0.20000000018626451, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.1079999995417893, + 299.25000000023283, + 0.21250000037252903, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.11199999996460974, + 319.50000000046566, + 0.2249999998603016, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.11599999968893826, + 339.7500000006985, + 0.23750000004656613, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.12000000011175871, + 360, + 0.25000000023283064, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.12399999983608723, + 380.25000000023283, + 0.26000000024214387, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.12799999956041574, + 400.50000000046566, + 0.2700000002514571, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.1319999999832362, + 420.7500000006985, + 0.2800000002607703, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.1359999997075647, + 441, + 0.29000000027008355, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.14000000013038516, + 461.25000000023283, + 0.3000000002793968, + 2, + 1 + ] + } + } + }, + "122204": { + "Id": 122204, + "Name": "烟斜雾横,氛氲化生", + "Desc": "施放战技时召唤【浮元】,初始拥有#1[i]点速度以及#7[i]次行动次数。\\n【浮元】行动时发动追加攻击,对敌方全体造成等同于灵砂#2[i]%攻击力的火属性伤害。额外对随机敌方单体造成等同于灵砂#8[i]%攻击力的火属性伤害,本次伤害优先选择韧性值大于0且有火属性弱点的目标。解除我方全体的#6[i]负面效果,并回复等同于灵砂#3[f1]%攻击力+#4[i]的生命值。\\n【浮元】最多累计#5[i]次行动次数,当次数为0或灵砂陷入无法战斗状态时【浮元】消失。\\n【浮元】在场时,施放战技会增加#7[i]次【浮元】的行动次数。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 90, + 0.375, + 0.0800000000745058, + 90, + 5, + 1, + 3, + 0.375 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 90, + 0.41250000055879354, + 0.08499999972991645, + 144, + 5, + 1, + 3, + 0.41250000055879354 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 90, + 0.45000000041909516, + 0.09000000008381903, + 184.50000000046566, + 5, + 1, + 3, + 0.45000000041909516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 90, + 0.4875000002793968, + 0.09499999973922968, + 225, + 5, + 1, + 3, + 0.4875000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 90, + 0.5250000001396984, + 0.10000000009313226, + 252, + 5, + 1, + 3, + 0.5250000001396984 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 90, + 0.5625000006984919, + 0.10399999981746078, + 279, + 5, + 1, + 3, + 0.5625000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 90, + 0.6093750006984919, + 0.1079999995417893, + 299.25000000023283, + 5, + 1, + 3, + 0.6093750006984919 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 90, + 0.6562500006984919, + 0.11199999996460974, + 319.50000000046566, + 5, + 1, + 3, + 0.6562500006984919 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 90, + 0.7031250006984919, + 0.11599999968893826, + 339.7500000006985, + 5, + 1, + 3, + 0.7031250006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 90, + 0.7500000006984919, + 0.12000000011175871, + 360, + 5, + 1, + 3, + 0.7500000006984919 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 90, + 0.7875000005587935, + 0.12399999983608723, + 380.25000000023283, + 5, + 1, + 3, + 0.7875000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 90, + 0.8250000004190952, + 0.12799999956041574, + 400.50000000046566, + 5, + 1, + 3, + 0.8250000004190952 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 90, + 0.8625000009778887, + 0.1319999999832362, + 420.7500000006985, + 5, + 1, + 3, + 0.8625000009778887 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 90, + 0.9000000008381903, + 0.1359999997075647, + 441, + 5, + 1, + 3, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 90, + 0.9375000006984919, + 0.14000000013038516, + 461.25000000023283, + 5, + 1, + 3, + 0.9375000006984919 + ] + } + } + }, + "122206": { + "Id": 122206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122207": { + "Id": 122207, + "Name": "流翠散云", + "Desc": "使用秘技后,下一次战斗开始时立即召唤【浮元】,并使敌方全体陷入【醇醉】状态,持续#1[i]回合。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Maze.png", + "LevelUpSkillID": [ + 122207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064, + 0.10000000009313226, + 0.5000000004656613, + 0.20000000018626451 + ], + "PointID": 1222101, + "PointName": "朱燎", + "PointDesc": "使自身攻击力/治疗量提高,提高数值等同于击破特攻的#1[i]%/#2[i]%,最多使攻击力/治疗量提高#3[i]%/#4[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1222102, + "PointName": "兰烟", + "PointDesc": "施放普攻时额外恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 2 + ], + "PointID": 1222103, + "PointName": "遗爇", + "PointDesc": "【浮元】在场时,我方任意角色受到伤害或消耗生命值时,若队伍中有存在当前生命值百分比小于等于#1[i]%的角色,【浮元】会立即对敌人发动天赋的追加攻击,此次触发不消耗【浮元】行动次数,该效果在#2[i]回合后可再次触发。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222201, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1222101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222203, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1222202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222204, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1222203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222205, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1222102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1222205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222207, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1222206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222208, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1222103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1222103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222210, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "击破特攻" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1222, + "Set4IDList": [ + 119, + 111, + 101 + ], + "Set2IDList": [ + 316, + 307, + 302 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 344, + 297 + ] + } + }, + "1223": { + "Name": "貊泽", + "Desc": "仙舟「曜青」的影卫,沉默寡言、独来独往。\\n专司情报与不见光的事务,鲜少在人前露面。貊泽显露锋芒时,便是敌人的死期。\\n刺杀手段丰富,对整洁和条理有超乎寻常的执着。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "moze", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 122301, + "Name": "矢志", + "Desc": "进入战斗后,貊泽恢复#2[i]点能量。每触发1次天赋的附加伤害,貊泽恢复#1[i]点能量。", + "ParamList": [ + 2, + 20 + ] + }, + "2": { + "Id": 122302, + "Name": "惩膺", + "Desc": "我方全体目标对成为【猎物】的敌方目标造成伤害时,暴击伤害提高#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 122303, + "Name": "追奔", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 122304, + "Name": "逐薮", + "Desc": "施放终结技时,貊泽造成的伤害提高#1[f1]%,持续#2[i]回合。", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "5": { + "Id": 122305, + "Name": "闪诳", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 122306, + "Name": "丹心", + "Desc": "天赋的追加攻击的伤害倍率提高#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + } + }, + "Skills": { + "122301": { + "Id": 122301, + "Name": "飞铙", + "Desc": "对指定敌方单体造成等同于貊泽#1[i]%攻击力的雷属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122302": { + "Id": 122302, + "Name": "迅羽掠袭", + "Desc": "使指定敌方单体目标成为【猎物】,并对其造成等同于貊泽#1[i]%攻击力的雷属性伤害,并获得#2[i]点充能。\\n当场上没有可以战斗的其他角色时,貊泽无法使用战技,并解除敌人的【猎物】状态。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 9 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 9 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 9 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 9 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 9 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 9 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 9 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 9 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 9 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 9 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 9 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 9 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 9 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 9 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 9 + ] + } + } + }, + "122303": { + "Id": 122303, + "Name": "锋入幽渺,影出凌厉", + "Desc": "对指定敌方单体造成等同于貊泽#1[i]%攻击力的雷属性伤害,并对该目标发动天赋的追加攻击。若本次追加攻击施放前目标被消灭则对敌方随机单体发动追加攻击。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.62000000057742 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.7280000001192093 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.8360000003594905 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9440000005997717 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.0519999999087304 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1600000001490116 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.294999999925494 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4300000004004687 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.5650000001769513 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.808000000193715 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.9160000004339963 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.023999999742955 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.131999999983236 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.2400000002235174 + ] + } + } + }, + "122304": { + "Id": 122304, + "Name": "伸天卑飞,折翅为芒", + "Desc": "场上存在【猎物】时,貊泽会进入离场状态。\\n我方目标攻击【猎物】后,貊泽会额外造成1次等同于自身#1[i]%攻击力的雷属性附加伤害,并消耗1点充能。每消耗#2[i]点充能,貊泽会对【猎物】发动1次追加攻击,造成等同于自身#3[i]%攻击力的雷属性伤害,当充能为0时,解除目标【猎物】状态,并重置计入发动追加攻击所需的充能点数。天赋的追加攻击不会消耗充能。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 3, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 3, + 0.8800000008195639 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 3, + 0.9600000008940697 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 3, + 1.040000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 3, + 1.1200000001117587 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 3, + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 3, + 1.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 3, + 1.400000000372529 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 3, + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 3, + 1.6800000006332994 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 3, + 1.7600000007078052 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 3, + 1.840000000782311 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 3, + 1.9200000008568168 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 3, + 2 + ] + } + } + }, + "122306": { + "Id": 122306, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122307": { + "Id": 122307, + "Name": "胁翼匿迹", + "Desc": "使用秘技后进入持续#1[i]秒的隐身状态。隐身状态下不会被敌人发现,貊泽在隐身状态下攻击敌人进入战斗时伤害提高#2[i]%,持续#3[i]回合。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Maze.png", + "LevelUpSkillID": [ + 122307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 1223101, + "PointName": "墨毫绣衣", + "PointDesc": "施放天赋的追加攻击后,恢复#1[i]个战技点,该效果在#2[i]回合后可再次触发。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968 + ], + "PointID": 1223102, + "PointName": "手奋匕尺", + "PointDesc": "貊泽解除离场状态时,行动提前#1[i]%。每个波次开始时,貊泽行动提前#2[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1223103, + "PointName": "不折镆干", + "PointDesc": "施放终结技造成伤害时,被视为发动了追加攻击。【猎物】受到的追加攻击伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223201, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1223101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223203, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1223202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223205, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1223102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223206, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1223205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223207, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1223103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223209, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1223208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223210, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1223208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 110.40000000037253, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 154.56000000052154, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 198.72000000067055, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 242.88000000081956, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 287.04000000003725, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 331.20000000018626, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 375.3600000003353, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1223, + "Set4IDList": [ + 117, + 109, + 120 + ], + "Set2IDList": [ + 315, + 314, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 283 + ] + } + }, + "1224": { + "Name": "三月七", + "Desc": "换上仙舟服饰的三月七,执剑的武侠少女。\\n向云璃与彦卿拜师学艺,为在仙舟留下更多美好的「回忆」而跃跃欲试。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "mar7th2", + "SPNeed": 110, + "BaseType": "Rogue", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 122401, + "Name": "初花学剑动星芒", + "Desc": "场上存在【师父】时,三月七的速度提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 122402, + "Name": "白刃耀雪舞骇浪", + "Desc": "每当【师父】施放普攻或战技攻击敌方目标后,三月七立即发动追加攻击,对本次攻击的主目标造成等同于三月七#1[i]%攻击力的虚数属性伤害,并根据【师父】的命途触发对应效果,随后获得#3[i]点充能。若不存在可攻击的主目标,则攻击敌方随机单体。该效果每回合最多触发1次。", + "ParamList": [ + 0.6000000005587935, + 5, + 1, + 15 + ] + }, + "3": { + "Id": 122403, + "Name": "头脑机灵本领强", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 122404, + "Name": "龙飞凤舞不窝囊", + "Desc": "回合开始时,恢复#1[i]点能量。", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 122405, + "Name": "多练武术少吃糖", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 122406, + "Name": "天下第一本姑娘", + "Desc": "施放终结技后,下一次强化普攻造成的暴击伤害提高#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "122401": { + "Id": 122401, + "Name": "荡涤妖邪琉璃剑", + "Desc": "对指定敌方单体造成等同于三月七#1[i]%攻击力的虚数属性伤害,随后获得#2[i]点充能。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1 + ] + } + } + }, + "122402": { + "Id": 122402, + "Name": "师父,请喝茶!", + "Desc": "使除自身以外的我方指定单体成为【师父】,【师父】的速度提高#1[f1]%。仅战技最新的施放目标被视为三月七的【师父】。\\n每当施放普攻或造成1段强化普攻的伤害时,若场上存在指定命途的【师父】,则触发对应效果:\\n「智识」、「毁灭」、「巡猎」、「记忆」:额外造成等同于三月七#2[i]%攻击力的基于【师父】属性的附加伤害。\\n「同谐」、「虚无」、「存护」、「丰饶」:本次伤害的削韧值提高#3[i]%。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.10000000009313226, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06399999978020787, + 0.11000000010244548, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.06799999950453639, + 0.12000000011175871, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07199999992735684, + 0.13000000012107193, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07599999965168536, + 0.14000000013038516, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0800000000745058, + 0.1500000001396984, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08499999972991645, + 0.1625000003259629, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09000000008381903, + 0.17499999981373549, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09499999973922968, + 0.1875, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10399999981746078, + 0.21000000019557774, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1079999995417893, + 0.22000000020489097, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11199999996460974, + 0.2300000002142042, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.11599999968893826, + 0.24000000022351742, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12000000011175871, + 0.25000000023283064, + 1 + ] + } + } + }, + "122403": { + "Id": 122403, + "Name": "盖世女侠三月七", + "Desc": "对指定敌方单体造成等同于三月七#1[i]%攻击力的虚数属性伤害。\\n使下一次强化普攻的初始段数增加#2[i]段,额外造成伤害的固定概率提高#3[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.440000000409782, + 2, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5360000000800937, + 2, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6320000004488975, + 2, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7280000001192093, + 2, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.824000000488013, + 2, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9200000008568168, + 2, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.040000000037253, + 2, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1600000001490116, + 2, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2800000002607703, + 2, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.496000000042841, + 2, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.5920000004116446, + 2, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.6880000000819564, + 2, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.78400000045076, + 2, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.880000000819564, + 2, + 0.20000000018626451 + ] + } + } + }, + "122404": { + "Id": 122404, + "Name": "师父,我悟了!", + "Desc": "【师父】施放攻击或终结技后,三月七每次获得最多1点充能。\\n充能大于等于#1[i]点时,三月七立即行动,造成的伤害提高#2[i]%,普攻得到强化且无法施放战技。施放强化普攻后,消耗#1[i]点充能。充能上限#3[i]点。", + "Type": null, + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7, + 0.40000000037252903, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7, + 0.44000000040978193, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 7, + 0.48000000044703484, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 7, + 0.5200000004842877, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7, + 0.5600000005215406, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7, + 0.6000000005587935, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7, + 0.6500000006053597, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 7, + 0.7000000006519258, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 7, + 0.7500000006984919, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 0.8000000007450581, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 7, + 0.840000000782311, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 7, + 0.8800000008195639, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 7, + 0.9200000008568168, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 7, + 0.9600000008940697, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 7, + 1, + 10 + ] + } + } + }, + "122406": { + "Id": 122406, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122407": { + "Id": 122407, + "Name": "一气化三餐", + "Desc": "若三月七在队伍中,每当队友施放1次秘技,下一次战斗开始时三月七获得1点充能,最多获得#1[i]点。\\n使用秘技后,下一次战斗开始时三月七恢复#2[i]点能量。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 30 + ] + } + } + }, + "122408": { + "Id": 122408, + "Name": "一扎眉攒,二扎心", + "Desc": "初始造成#4[i]段伤害,每段对指定敌方单体造成等同于三月七#1[i]%攻击力的虚数属性伤害。每当造成最后1段伤害后,有#2[i]%固定概率再造成1段伤害,最多额外造成#3[i]段伤害。施放强化普攻恢复的能量不随段数提高而提高。\\n强化普攻无法恢复战技点。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.6000000005587935, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.48000000044703484, + 0.6000000005587935, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5600000005215406, + 0.6000000005587935, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6400000005960464, + 0.6000000005587935, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7200000006705523, + 0.6000000005587935, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8800000008195639, + 0.6000000005587935, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9600000008940697, + 0.6000000005587935, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.040000000037253, + 0.6000000005587935, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1200000001117587, + 0.6000000005587935, + 3, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Maze.png", + "LevelUpSkillID": [ + 122407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1224101, + "PointName": "惊鸿", + "PointDesc": "战斗开始时,三月七的行动提前#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224102, + "PointName": "玲珑", + "PointDesc": "三月七能够削减具有【师父】属性弱点的敌方目标的韧性。击破弱点时,触发虚数属性的弱点击破效果。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 0.3600000003352761, + 2 + ], + "PointID": 1224103, + "PointName": "斡波", + "PointDesc": "施放强化普攻后,使【师父】的暴击伤害提高#1[i]%,击破特攻提高#2[i]%,持续#3[i]回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224202, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1224101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1224202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1224102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224206, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1224205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1224103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224209, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1224208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1224208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1224, + "Set4IDList": [ + 102, + 112, + 117 + ], + "Set2IDList": [ + 309, + 314, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 349, + 292 + ] + } + }, + "1225": { + "Name": "忘归人", + "Desc": "八面玲珑的狐人少女,样貌、名字、身份皆被人夺去。\\n命运为她留下一线生机,而「毁灭」的烙印仍在蠢蠢欲动。\\n历经生死、重获新生的忘归人,何时才能返乡?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "fugue", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 122501, + "Name": "狐尘已去,云驾有期", + "Desc": "持有【狐祈】的我方目标,弱点击破效率提高#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Id": 122502, + "Name": "瑞应之來,必昭有德", + "Desc": "当有敌方目标的弱点被击破时,为忘归人恢复#1[i]点能量。施放终结技后,我方全体行动提前#2[i]%。", + "ParamList": [ + 3, + 0.24000000022351742 + ] + }, + "3": { + "Id": 122503, + "Name": "正色鸿焘,神思化伐", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 122504, + "Name": "自我离形,而今几姓", + "Desc": "持有【狐祈】的我方目标,造成的击破伤害提高#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 122505, + "Name": "五色云生,穹施后承", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 122506, + "Name": "肇素未来,晦明兴灭", + "Desc": "忘归人的弱点击破效率提高#1[i]%。当忘归人处于【炽灼】状态时,【狐祈】效果对我方全体生效。", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "122501": { + "Id": 122501, + "Name": "焕焕辰尾", + "Desc": "对指定敌方单体造成等同于忘归人#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122502": { + "Id": 122502, + "Name": "有道祥见,衔书摇风", + "Desc": "使指定我方单体获得【狐祈】,并使自身进入【炽灼】状态,持续#1[i]回合,忘归人每回合开始时持续回合数减1,且【狐祈】仅对忘归人战技最新的施放目标生效。\\n持有【狐祈】的我方目标,击破特攻提高#2[i]%,攻击没有对应属性弱点的敌人也能削减韧性,效果等同于原削韧值的#6[i]%,无法与其他无视弱点属性削韧效果叠加。\\n处于【炽灼】状态时,忘归人普攻获得强化。持有【狐祈】的我方目标每次施放攻击时,忘归人有#3[i]%基础概率使受到攻击的敌方目标防御力降低#4[i]%,持续#5[i]回合。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.1500000001396984, + 1, + 0.0800000000745058, + 2, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.16499999980442226, + 1, + 0.09000000008381903, + 2, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.18000000016763806, + 1, + 0.10000000009313226, + 2, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.19499999983236194, + 1, + 0.11000000010244548, + 2, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.21000000019557774, + 1, + 0.12000000011175871, + 2, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.2249999998603016, + 1, + 0.13000000012107193, + 2, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.24375000083819032, + 1, + 0.14250000030733645, + 2, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.26250000041909516, + 1, + 0.15499999979510903, + 2, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.28125000069849193, + 1, + 0.16749999998137355, + 2, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.3000000002793968, + 1, + 0.18000000016763806, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.31499999994412065, + 1, + 0.1900000001769513, + 2, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.33000000030733645, + 1, + 0.20000000018626451, + 2, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.3449999999720603, + 1, + 0.21000000019557774, + 2, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.3600000003352761, + 1, + 0.22000000020489097, + 2, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.375, + 1, + 0.2300000002142042, + 2, + 0.5000000004656613 + ] + } + } + }, + "122503": { + "Id": 122503, + "Name": "阳极照世,离火满缀", + "Desc": "对敌方全体造成等同于忘归人#1[i]%攻击力的火属性伤害,本次攻击无视弱点属性削减敌方全体的韧性,击破弱点时,触发火属性的弱点击破效果。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613 + ] + } + } + }, + "122504": { + "Id": 122504, + "Name": "善盈后福,德气流布", + "Desc": "忘归人在场时,敌方目标会被额外附上等同于自身韧性上限#2[i]%的【云火昭】,在初始韧性被削减至0时可被继续削减【云火昭】,【云火昭】被削减至0时会再次受到弱点击破伤害。\\n忘归人在场时,我方攻击处于弱点击破状态的敌方目标后,会将本次攻击的削韧值转化为1次#1[i]%超击破伤害。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 0.40000000037252903 + ] + } + } + }, + "122506": { + "Id": 122506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122507": { + "Id": 122507, + "Name": "炤炤彻旷", + "Desc": "使用秘技后使一定区域内的敌人陷入#1[i]秒的晕眩状态,晕眩状态下敌人不会主动攻击我方目标。\\n若主动攻击陷入晕眩状态的敌人,进入战斗后忘归人行动提前#4[i]%,并有#2[i]%基础概率使敌方每个单体目标陷入与忘归人战技相同的防御力降低状态,持续#3[i]回合。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 2, + 0.40000000037252903 + ] + } + } + }, + "122508": { + "Id": 122508, + "Name": "冉冉方炽", + "Desc": "对指定敌方单体造成等同于忘归人#1[i]%攻击力的火属性伤害,对相邻目标造成等同于忘归人#2[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Maze.png", + "LevelUpSkillID": [ + 122507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1225101, + "PointName": "青丘重光", + "PointDesc": "我方目标造成弱点击破后额外使敌方目标行动延后#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 1 + ], + "PointID": 1225102, + "PointName": "涂山玄设", + "PointDesc": "使自身击破特攻提高#1[i]%,施放首次战技后立即恢复#2[i]点战技点。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.060000000055879354, + 2, + 2, + 2.2000000001862645, + 0.12000000011175871 + ], + "PointID": 1225103, + "PointName": "玑星太素", + "PointDesc": "当有敌方目标的弱点被击破时,使除自身以外的队友击破特攻提高#1[i]%,若忘归人的击破特攻大于等于#4[i]%,击破特攻提高的效果额外提高#5[i]%,持续#2[i]回合,该效果最多可叠加#3[i]层。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225201, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225202, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1225101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225203, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1225202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1225203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225205, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1225102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225206, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1225205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225207, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1225206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1225103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225209, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1225103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "击破特攻" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225210, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1225201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 75.90000000083819, + "DefenceAdd": 3.7950000003911555, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 106.26000000024214, + "DefenceAdd": 3.7950000003911555, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 136.62000000057742, + "DefenceAdd": 3.7950000003911555, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 166.9800000009127, + "DefenceAdd": 3.7950000003911555, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 197.34000000031665, + "DefenceAdd": 3.7950000003911555, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 227.70000000065193, + "DefenceAdd": 3.7950000003911555, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 258.0600000000559, + "DefenceAdd": 3.7950000003911555, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1225, + "Set4IDList": [ + 119, + 111, + 118 + ], + "Set2IDList": [ + 316, + 308, + 307 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 271, + 213 + ] + } + }, + "1301": { + "Name": "加拉赫", + "Desc": "匹诺康尼猎犬家系的治安官,对来访宾客以礼相待,但保有戒心。似乎有着诸多往事,却从不主动提及。", + "CharaInfo": { + "Camp": "匹诺康尼", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "gallagher", + "SPNeed": 110, + "BaseType": "Priest", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 130101, + "Name": "盐与犬", + "Desc": "加拉赫进入战斗后会恢复#1[i]点能量,效果抵抗提高#2[i]%。", + "ParamList": [ + 20, + 0.5000000004656613 + ] + }, + "2": { + "Id": 130102, + "Name": "狮子之尾", + "Desc": "施放战技时,解除指定我方单体的#1[i]负面效果,同时使其效果抵抗提高#2[i]%,持续#3[i]回合。", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 130103, + "Name": "逝者的新生", + "Desc": "战技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 130104, + "Name": "临终的轻语", + "Desc": "加拉赫终结技造成的【酩酊】状态持续时间延长#1[i]回合。", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 130105, + "Name": "午后之死", + "Desc": "终结技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 130106, + "Name": "血与沙", + "Desc": "加拉赫的击破特攻提高#1[i]%,弱点击破效率提高#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + } + }, + "Skills": { + "130101": { + "Id": 130101, + "Name": "开瓶费", + "Desc": "对指定敌方单体造成等同于加拉赫#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130102": { + "Id": 130102, + "Name": "罐装特调", + "Desc": "立即为指定我方单体回复#1[i]点生命值。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 200 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 340 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 480 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 676 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 830 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1138 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1292 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1446 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1600 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1684 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1768 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1852 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1936 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2020 + ] + } + } + }, + "130103": { + "Id": 130103, + "Name": "香槟仪礼", + "Desc": "使敌方全体陷入【酩酊】状态,持续#2[i]回合,同时对敌方全体造成等同于加拉赫#1[i]%攻击力的火属性伤害,并将下一次普攻强化为【酒花奔涌】。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 2 + ] + } + } + }, + "130104": { + "Id": 130104, + "Name": "鏖战正酣", + "Desc": "【酩酊】使目标受到的击破伤害提高#1[f1]%。陷入【酩酊】状态的目标每次受到我方角色攻击后,会回复攻击者#2[i]点生命值。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 80 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06599999964237213, + 136 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07199999992735684, + 192 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07799999951384962, + 270.40000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08399999979883432, + 332 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 393.6000000005588 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09749999991618097, + 455.20000000018626 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1049999997485429, + 516.8000000007451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11250000027939677, + 578.4000000003725 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.12000000011175871, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12599999969825149, + 673.6000000005588 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1319999999832362, + 707.2000000001863 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.13799999956972897, + 740.8000000007451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.14399999985471368, + 774.4000000003725 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 808 + ] + } + } + }, + "130106": { + "Id": 130106, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130107": { + "Id": 130107, + "Name": "亲启佳酿", + "Desc": "立即攻击敌人,进入战斗后使敌方全体陷入【酩酊】状态,持续#1[i]回合,并对敌方全体造成等同于加拉赫#2[i]%攻击力的火属性伤害。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.5000000004656613 + ] + } + } + }, + "130108": { + "Id": 130108, + "Name": "酒花奔涌", + "Desc": "对指定敌方单体造成等同于加拉赫#1[i]%攻击力的火属性伤害。并使目标攻击力降低#2[f1]%,持续#3[i]回合。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5000000004656613, + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.750000000698492, + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2500000002328306, + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5000000004656613, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.750000000698492, + 0.1600000001490116, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.17000000015832484, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.2500000002328306, + 0.18000000016763806, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.5000000004656613, + 0.1900000001769513, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Maze.png", + "LevelUpSkillID": [ + 130107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ], + "PointID": 1301101, + "PointName": "崭新配方", + "PointDesc": "使自身提供的治疗量提高,提高数值等同于击破特攻的#1[i]%,最多使提供的治疗量提高#2[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301102, + "PointName": "天然酵母", + "PointDesc": "施放终结技后,立刻使自己行动提前100%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301103, + "PointName": "敬请干杯", + "PointDesc": "加拉赫施放【酒花奔涌】攻击陷入【酩酊】状态的目标时,使此次天赋提供的生命回复效果对我方队友也会生效。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301201, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301202, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1301101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301203, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1301202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1301203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301205, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1301102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301206, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1301205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301207, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1301206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1301103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301209, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1301103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "效果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301210, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 72, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 177.6000000005588, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 100.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 248.64000000059605, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 129.6000000005588, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 319.6800000006333, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 158.40000000037253, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 390.72000000067055, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 187.20000000018626, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 461.7600000007078, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 216, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 532.8000000007451, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 244.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 603.8400000007823, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1301, + "Set4IDList": [ + 119, + 111, + 101 + ], + "Set2IDList": [ + 316, + 307, + 302 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "BreakDamageAddedRatioBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 309, + 254 + ] + } + }, + "1302": { + "Name": "银枝", + "Desc": "「纯美骑士团」的古典骑士,虔诚地仰慕着已失踪的「纯美」星神伊德莉拉。\\n为人正直、光明磊落,于宇宙中漫游,宣扬伊德莉拉的美名。", + "CharaInfo": { + "Camp": "纯美骑士团", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "argenti", + "SPNeed": 180, + "BaseType": "Mage", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 130201, + "Name": "审美王国的缺口", + "Desc": "每层【升格】额外使暴击伤害提高#1[i]%。", + "ParamList": [ + 0.0400000000372529 + ] + }, + "2": { + "Id": 130202, + "Name": "玛瑙石的谦卑", + "Desc": "施放终结技时,若敌方目标数量大于等于#1[i]个时,攻击力提高#2[i]%,持续#3[i]回合。", + "ParamList": [ + 3, + 0.40000000037252903, + 1 + ] + }, + "3": { + "Id": 130203, + "Name": "荆棘路的荣光", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 130204, + "Name": "号角的奉献", + "Desc": "战斗开始时,获得#1[i]层【升格】,并使天赋的效果可叠加上限提高#2[i]层。", + "ParamList": [ + 2, + 2 + ] + }, + "5": { + "Id": 130205, + "Name": "宇宙某处的雪", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 130206, + "Name": "「你」的光芒", + "Desc": "施放终结技时,无视敌方目标#1[i]%的防御力。", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "130201": { + "Id": 130201, + "Name": "芬芳一现", + "Desc": "对指定敌方单体造成等同于银枝#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130202": { + "Id": 130202, + "Name": "公正,此处盛放", + "Desc": "对敌方全体造成等同于银枝#1[i]%攻击力的物理属性伤害。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613 + ] + } + } + }, + "130203": { + "Id": 130203, + "Name": "驻于花庭,赐与尽美", + "Desc": "消耗#2[i]点能量,对敌方全体造成等同于银枝#1[i]%攻击力的物理属性伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 90 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 90 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 90 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 90 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 90 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 90 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 90 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 90 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 90 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 90 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 90 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 90 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 90 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 90 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 90 + ] + } + } + }, + "130204": { + "Id": 130204, + "Name": "崇高的客体", + "Desc": "施放普攻、战技、终结技时,每击中1个敌方目标,为银枝恢复#1[i]点能量并获得1层【升格】,使银枝暴击率提高#2[f1]%,该效果最多叠加#3[i]层。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.010000000009313226, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.011500000255182385, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.012999999802559614, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.014500000048428774, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.015999999595806003, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.017499999841675162, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.019375000149011612, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.02125000045634806, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.02312500006519258, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.0249999996740371, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.02649999991990626, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.027999999467283487, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.029499999713152647, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.030999999959021807, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.032500000204890966, + 10 + ] + } + } + }, + "130206": { + "Id": 130206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130207": { + "Id": 130207, + "Name": "纯粹高洁宣言", + "Desc": "使用秘技后使一定区域内的敌人陷入#1[i]秒的晕眩状态,晕眩状态下敌人不会主动攻击我方目标。\\n若主动攻击陷入晕眩状态的敌人,进入战斗时,对敌方全体造成等同于银枝#2[i]%攻击力的物理属性伤害,并使银枝恢复#3[i]点能量。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.8000000007450581, + 15 + ] + } + } + }, + "130214": { + "Id": 130214, + "Name": "驻「我」华庭,授予至勋", + "Desc": "消耗#4[i]点能量,对敌方全体造成等同于银枝#1[i]%攻击力的物理属性伤害,并额外造成#2[i]次伤害,每次伤害对敌方随机单体造成等同于银枝#3[i]%攻击力的物理属性伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.6800000006332994, + 6, + 0.5700000005308539, + 180 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.792000000597909, + 6, + 0.6080000000074506, + 180 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9040000005625188, + 6, + 0.6460000001825392, + 180 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.015999999595806, + 6, + 0.6840000003576279, + 180 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1279999995604157, + 6, + 0.7220000005327165, + 180 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2400000002235174, + 6, + 0.7600000007078052, + 180 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3800000003539026, + 6, + 0.80750000057742, + 180 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.5200000004842877, + 6, + 0.8550000004470348, + 180 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.660000000614673, + 6, + 0.9025000010151416, + 180 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 6, + 0.9500000008847564, + 180 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.912000000709668, + 6, + 0.9880000003613532, + 180 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.023999999742955, + 6, + 1.0259999996051192, + 180 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.1359999997075647, + 6, + 1.0639999997802079, + 180 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.2479999996721745, + 6, + 1.1019999999552965, + 180 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.360000000335276, + 6, + 1.1400000001303852, + 180 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Maze.png", + "LevelUpSkillID": [ + 130207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1302101, + "PointName": "虔诚", + "PointDesc": "回合开始时,立即获得#1[i]层【升格】。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1302102, + "PointName": "慷慨", + "PointDesc": "在敌方目标进入战斗时,自身立即恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ], + "PointID": 1302103, + "PointName": "勇气", + "PointDesc": "对当前生命值百分比小于等于#1[i]%的敌方目标造成的伤害提高#2[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302202, + "PointName": "伤害强化•物理", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1302101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.031999999890103936, + "Name": "物理属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1302202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1302202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1302102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302206, + "PointName": "伤害强化•物理", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1302205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.04799999948590994, + "Name": "物理属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1302205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1302103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302209, + "PointName": "伤害强化•物理", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1302103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.06399999978020787, + "Name": "物理属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 100.32000000029802, + "AttackAdd": 5.015999999595806, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 140.44799999985844, + "AttackAdd": 5.015999999595806, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 180.57600000011735, + "AttackAdd": 5.015999999595806, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 220.70400000037625, + "AttackAdd": 5.015999999595806, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 260.83200000063516, + "AttackAdd": 5.015999999595806, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 300.96000000089407, + "AttackAdd": 5.015999999595806, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 341.08799999952316, + "AttackAdd": 5.015999999595806, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1302, + "Set4IDList": [ + 122, + 105, + 108 + ], + "Set2IDList": [ + 306, + 313, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1303": { + "Name": "阮•梅", + "Desc": "天才俱乐部会员,生命科学领域专家,与黑塔等人联手研发模拟宇宙。", + "CharaInfo": { + "Camp": "空间站「黑塔」", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "ruanmei", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 130301, + "Name": "神经仿绣图", + "Desc": "终结技展开结界期间,我方全体造成伤害时无视目标#1[i]%的防御力。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 130302, + "Name": "芦前漫步", + "Desc": "阮•梅在场时,我方全体对处于弱点击破状态的敌方目标造成伤害时,攻击力提高#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 130303, + "Name": "彩缎烟衫绿婆娑", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 130304, + "Name": "寻神铜镜前", + "Desc": "当敌方目标的弱点被击破时,阮•梅自身击破特攻提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 1, + 3 + ] + }, + "5": { + "Id": 130305, + "Name": "手弄慵鬟玲珑钗", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 130306, + "Name": "半脱纱巾落团扇", + "Desc": "终结技展开的结界持续时间延长#1[i]回合。天赋造成的击破伤害倍率额外提高#2[i]%。", + "ParamList": [ + 1, + 2 + ] + } + }, + "Skills": { + "130301": { + "Id": 130301, + "Name": "一针幽兰", + "Desc": "对指定敌方单体造成等同于阮•梅#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130302": { + "Id": 130302, + "Name": "慢捻抹复挑", + "Desc": "施放战技后阮•梅获得【弦外音】,持续#3[i]回合,阮•梅每回合开始时持续回合数减1。当阮•梅拥有【弦外音】时,我方全体伤害提高#1[f1]%,弱点击破效率提高#2[i]%。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.17599999974481761, + 0.5000000004656613, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.19200000003911555, + 0.5000000004656613, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.20799999963492155, + 0.5000000004656613, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.22399999992921948, + 0.5000000004656613, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3200000002980232, + 0.5000000004656613, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3359999998938292, + 0.5000000004656613, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.35200000018812716, + 0.5000000004656613, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.36799999978393316, + 0.5000000004656613, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3840000000782311, + 0.5000000004656613, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 3 + ] + } + } + }, + "130303": { + "Id": 130303, + "Name": "摇花缎水,沾衣不摘", + "Desc": "阮•梅展开结界,持续#2[i]回合,自身每回合开始时结界持续回合数减1。\\n处于结界中时我方全体全属性抗性穿透提高#1[f1]%,且攻击后会对敌方目标施加【残梅绽】。\\n【残梅绽】会在敌方目标尝试从弱点击破状态恢复时触发,延长目标的弱点击破状态并使其行动延后,延后数值等同于阮•梅#3[i]%的击破特攻+#4[i]%,并对其造成等同于阮•梅#5[i]%冰属性击破伤害的击破伤害。\\n敌方目标从弱点击破状态恢复前不可被再次附加【残梅绽】。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1600000001490116, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.17000000015832484, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3400000003166497 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.18000000016763806, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3600000003352761 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1900000001769513, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3800000003539026 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21250000037252903, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.42500000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2249999998603016, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.45000000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23750000004656613, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.47500000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.26000000024214387, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2700000002514571, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5400000005029142 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2800000002607703, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5600000005215406 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.29000000027008355, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5800000005401671 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.6000000005587935 + ] + } + } + }, + "130304": { + "Id": 130304, + "Name": "分型的螺旋", + "Desc": "使除自身以外的队友速度提高#1[f1]%。我方全体击破敌方目标弱点时,阮•梅对其造成等同于自身#2[f1]%冰属性击破伤害的击破伤害。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0800000000745058, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.08199999993667006, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.08599999966099858, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08799999952316284, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09250000026077032, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09499999973922968, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09749999991618097, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10199999995529652, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.10399999981746078, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.10599999967962503, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1079999995417893, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.11000000010244548, + 1.5000000004656613 + ] + } + } + }, + "130306": { + "Id": 130306, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130307": { + "Id": 130307, + "Name": "拭琴抚罗袂", + "Desc": "使用秘技后,获得【拭琴抚罗袂】,使下一次战斗开始时自动触发#1[i]次战技,此次触发不消耗战技点。\\n在模拟宇宙、差分宇宙中,当阮•梅拥有【拭琴抚罗袂】时,我方主动攻击敌人时总会视为利用弱点进入战斗,且本次攻击可以无视弱点属性削减敌方全体的韧性。击破弱点时,触发攻击者自身属性的弱点击破效果。每拥有1个祝福,本次攻击的削韧值额外提高#2[i]%,且击破敌方目标弱点后对其额外造成等同于阮•梅#3[i]%冰属性击破伤害的击破伤害,最多计入#4[i]个祝福。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 1, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Maze.png", + "LevelUpSkillID": [ + 130307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1303101, + "PointName": "物体呼吸中", + "PointDesc": "我方全体击破特攻提高#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1303102, + "PointName": "日消遐思长", + "PointDesc": "阮•梅的回合开始时,自身恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.2000000001862645, + 0.10000000009313226, + 0.060000000055879354, + 0.3600000003352761 + ], + "PointID": 1303103, + "PointName": "落烛照水燃", + "PointDesc": "战斗中阮•梅的击破特攻大于#1[i]%时,每超过#2[i]%,则战技使我方全体伤害提高的效果额外提高#3[i]%,最高不超过#4[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303201, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303202, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1303101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303203, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1303202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303204, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1303201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303205, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1303102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303206, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1303205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303207, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1303201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303208, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1303103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303209, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1303208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303210, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1303208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "击破特攻" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1303, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 312, + 308 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 241, + 187 + ] + } + }, + "1304": { + "Name": "砂金", + "Desc": "星际和平公司「战略投资部」的高层成员。\\n风险爱好者,常面带笑容,真心却难以揣测。", + "CharaInfo": { + "Camp": "星际和平公司", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "aventurine", + "SPNeed": 110, + "BaseType": "Knight", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 130401, + "Name": "囚徒博弈", + "Desc": "持有【坚垣筹码】的我方目标暴击伤害提高#1[i]%。施放终结技后,为我方全体提供护盾【坚垣筹码】,护盾量等同于战技提供的护盾量的#2[i]%,持续#3[i]回合。", + "ParamList": [ + 0.20000000018626451, + 1, + 3 + ] + }, + "2": { + "Id": 130402, + "Name": "有限理性", + "Desc": "施放普攻时使目标的全属性抗性降低#2[i]%,持续#3[i]回合。", + "ParamList": [ + 1.2000000001862645, + 0.12000000011175871, + 3 + ] + }, + "3": { + "Id": 130403, + "Name": "最高倍率", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 130404, + "Name": "意外绞刑", + "Desc": "触发天赋的追加攻击时,会先使砂金防御力提高#1[i]%,持续#2[i]回合,并使天赋的追加攻击额外增加#3[i]段攻击段数。", + "ParamList": [ + 0.40000000037252903, + 2, + 3 + ] + }, + "5": { + "Id": 130405, + "Name": "模糊厌恶", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 130406, + "Name": "猎鹿游戏", + "Desc": "每有1个队友持有护盾,砂金造成的伤害提高#1[i]%,最高不超过#2[i]%。", + "ParamList": [ + 0.5000000004656613, + 1.5000000004656613 + ] + } + }, + "Skills": { + "130401": { + "Id": 130401, + "Name": "直观投注", + "Desc": "对指定敌方单体造成等同于砂金#1[i]%防御力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130402": { + "Id": 130402, + "Name": "繁荣基石", + "Desc": "为我方全体提供能够抵消等同于砂金#1[f1]%防御力+#2[i]伤害的护盾【坚垣筹码】,持续#3[i]回合。重复获得【坚垣筹码】时,护盾量可以叠加,最高不超过当前战技提供的护盾量的#4[i]%。", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1600000001490116, + 80, + 3, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.17000000015832484, + 128, + 3, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 164, + 3, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1900000001769513, + 200, + 3, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.20000000018626451, + 224, + 3, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20799999963492155, + 248, + 3, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21599999978207052, + 266, + 3, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.22399999992921948, + 284, + 3, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23200000007636845, + 302, + 3, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 320, + 3, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24799999967217445, + 338, + 3, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2559999998193234, + 356, + 3, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2639999999664724, + 374, + 3, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27200000011362135, + 392, + 3, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2800000002607703, + 410, + 3, + 2 + ] + } + } + }, + "130403": { + "Id": 130403, + "Name": "轮盘勋爵", + "Desc": "随机获得1到#1[i]点【盲注】,随后使指定敌方单体陷入【惊惶】状态,持续#4[i]回合,并对指定敌方单体造成等同于砂金#2[i]%防御力的虚数属性伤害。我方目标击中【惊惶】状态下的敌方目标时,造成的暴击伤害提高#3[f1]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7, + 1.62000000057742, + 0.09000000008381903, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7, + 1.7280000001192093, + 0.09599999967031181, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 7, + 1.8360000003594905, + 0.10199999995529652, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 7, + 1.9440000005997717, + 0.1079999995417893, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7, + 2.0519999999087304, + 0.113999999826774, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7, + 2.1600000001490116, + 0.12000000011175871, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7, + 2.294999999925494, + 0.12749999994412065, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 7, + 2.4300000004004687, + 0.13499999977648258, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 7, + 2.5650000001769513, + 0.14250000030733645, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 2.700000000651926, + 0.1500000001396984, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 7, + 2.808000000193715, + 0.15599999972619116, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 7, + 2.9160000004339963, + 0.16200000001117587, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 7, + 3.023999999742955, + 0.16799999959766865, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 7, + 3.131999999983236, + 0.17399999988265336, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 7, + 3.2400000002235174, + 0.18000000016763806, + 3 + ] + } + } + }, + "130404": { + "Id": 130404, + "Name": "枪口以右", + "Desc": "持有【坚垣筹码】的我方单体效果抵抗提高#4[f1]%,并在受到攻击后,使砂金获得1点【盲注】,砂金持有【坚垣筹码】时能抵抗控制类负面状态,该效果在#5[i]回合后可再次触发,并在受到攻击后额外获得#1[i]点【盲注】。【盲注】达到7点后,砂金消耗7点充能发动#2[i]追加攻击,每段攻击对随机敌方单体造成等同于砂金#3[i]%防御力的虚数属性伤害,【盲注】上限10点。", + "Type": null, + "Tag": "Bounce", + "SPBase": 1, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 10, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 7, + 0.12499999976716936, + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 7, + 0.13749999995343387, + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 7, + 0.1500000001396984, + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 7, + 0.1625000003259629, + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 7, + 0.17499999981373549, + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 7, + 0.1875, + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 7, + 0.20312500023283064, + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 7, + 0.2187500004656613, + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 7, + 0.23437500069849193, + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 7, + 0.25000000023283064, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 7, + 0.26250000041909516, + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 7, + 0.27499999990686774, + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 7, + 0.28750000009313226, + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 7, + 0.3000000002793968, + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 7, + 0.3125000004656613, + 0.6250000002328306, + 2 + ] + } + } + }, + "130406": { + "Id": 130406, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130407": { + "Id": 130407, + "Name": "红黑之间", + "Desc": "使用秘技后获得以下1种效果:\\n一定概率获得防御力提高#1[i]%;\\n大概率获得防御力提高#2[i]%;\\n小概率获得防御力提高#3[i]%。\\n重复使用时保留数值最高的效果。\\n下一次战斗开始时,使我方全体提高对应数值的防御力,持续#4[i]回合。", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 0.6000000005587935, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Maze.png", + "LevelUpSkillID": [ + 130407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.02000000001862645, + 0.48000000044703484, + 1600 + ], + "PointID": 1304101, + "PointName": "杠杆", + "PointDesc": "若砂金的防御力高于#3[i]点,每超过100点防御力可使自身暴击率提高#1[i]%,最多提高#2[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1304201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 1 + ], + "PointID": 1304102, + "PointName": "热手", + "PointDesc": "战斗开始时,为我方全体提供护盾【坚垣筹码】,护盾量等同于战技提供的护盾量的#2[i]%,持续#1[i]回合。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1304201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.07199999992735684, + 96, + 3, + 0.07199999992735684, + 96 + ], + "PointID": 1304103, + "PointName": "宾果!", + "PointDesc": "持有【坚垣筹码】的队友发动追加攻击后,为砂金积攒1点【盲注】,该效果最多触发#3[i]次,当砂金回合开始时,重置该效果触发次数。砂金在发动天赋的追加攻击后,为我方全体提供能够抵消等同于砂金#1[i]%防御力+#2[i]伤害的【坚垣筹码】,并为护盾值最低的我方目标额外提供能够抵消等同于砂金#4[i]%防御力+#5[i]伤害的【坚垣筹码】,持续3回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304201, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304202, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1304101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304203, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1304202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304205, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1304102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304206, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1304205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304207, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1304103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304209, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1304208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304210, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1304208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 4.455000000074506, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 4.455000000074506, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 160.3800000003539, + "DefenceAdd": 4.455000000074506, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 196.02000000001863, + "DefenceAdd": 4.455000000074506, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 231.66000000061467, + "DefenceAdd": 4.455000000074506, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 267.3000000002794, + "DefenceAdd": 4.455000000074506, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 302.94000000087544, + "DefenceAdd": 4.455000000074506, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1304, + "Set4IDList": [ + 103, + 117, + 120 + ], + "Set2IDList": [ + 306, + 304, + 310 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "DefenceAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 301, + 247 + ], + "LocalCriticalChance": 0.48000000044703484 + } + }, + "1305": { + "Name": "真理医生", + "Desc": "博识学会学者。\\n性情古怪、言辞刻薄却又风度翩翩。\\n奇异石膏头雕下的面容似乎出人意料的俊美。", + "CharaInfo": { + "Camp": "博识学会", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "drratio", + "SPNeed": 140, + "BaseType": "Rogue", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 130501, + "Name": "倨傲生祸患", + "Desc": "行迹【归纳】的叠加层数上限提高#1[i]层。战斗开始时,立即获得#2[i]层【归纳】。需要先解锁行迹【归纳】。", + "ParamList": [ + 4, + 4 + ] + }, + "2": { + "Id": 130502, + "Name": "显微而阐幽", + "Desc": "天赋的追加攻击击中目标时,目标每有1个负面效果,则额外造成等同于真理医生#1[i]%攻击力的虚数属性附加伤害。该效果在每次追加攻击中最多触发#2[i]次。", + "ParamList": [ + 0.20000000018626451, + 4 + ] + }, + "3": { + "Id": 130503, + "Name": "认识你自己", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 130504, + "Name": "盲目造痴愚", + "Desc": "触发天赋时,真理医生额外恢复#1[i]点能量。", + "ParamList": [ + 15 + ] + }, + "5": { + "Id": 130505, + "Name": "海阔舟无楫", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 130506, + "Name": "永恒唯真理", + "Desc": "【智者的短见】的触发效果额外增加#1[i]次,天赋的追加攻击造成的伤害提高#2[i]%。", + "ParamList": [ + 1, + 0.5000000004656613 + ] + } + }, + "Skills": { + "130501": { + "Id": 130501, + "Name": "知识就是力量", + "Desc": "对指定敌方单体造成等同于真理医生#1[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130502": { + "Id": 130502, + "Name": "精神助产术", + "Desc": "对指定敌方单体造成等同于真理医生#1[i]%攻击力的虚数属性伤害。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613 + ] + } + } + }, + "130503": { + "Id": 130503, + "Name": "三段悖论", + "Desc": "对指定敌方单体造成等同于真理医生#1[i]%攻击力的虚数属性伤害,并附上【智者的短见】。真理医生的队友攻击持有【智者的短见】的目标时,真理医生对该目标发动1次天赋的追加攻击。\\n【智者的短见】效果最多触发#2[i]次且仅对真理医生终结技最新施放的目标生效。施放终结技后重置该效果触发次数。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5360000000800937, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6320000004488975, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7280000001192093, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.824000000488013, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9200000008568168, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.040000000037253, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1600000001490116, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2800000002607703, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.496000000042841, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.5920000004116446, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.6880000000819564, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.78400000045076, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.880000000819564, + 2 + ] + } + } + }, + "130504": { + "Id": 130504, + "Name": "我思故我在", + "Desc": "施放战技时,有#2[i]%固定概率对该目标发动1次追加攻击,造成等同于真理医生#1[i]%攻击力的虚数属性伤害。目标每有1个负面效果,追加攻击发动的固定概率提高#3[i]%。若追加攻击施放前目标被消灭则对敌方随机单体发动追加攻击。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.350000000325963, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4850000001024455, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.62000000057742, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7550000003539026, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.890000000828877, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.024999999674037, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.193750000791624, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.3625000005122274, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.5312500009313226, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.8350000004284084, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.970000000903383, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.104999999748543, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.2400000002235174, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.375, + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "130506": { + "Id": 130506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130507": { + "Id": 130507, + "Name": "偶像塑造", + "Desc": "使用秘技后,制造一个特殊领域嘲讽附近敌人,持续#1[i]秒。与处于特殊领域内的敌人进入战斗后,有#2[i]%基础概率使敌方每个单体目标速度降低#3[i]%,持续#4[i]回合。我方制造的领域效果最多存在1个。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 0.1500000001396984, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Maze.png", + "LevelUpSkillID": [ + 130507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0249999996740371, + 0.05000000004656613, + 6 + ], + "PointID": 1305101, + "PointName": "归纳", + "PointDesc": "施放战技时,目标每有1个负面效果,真理医生暴击率提高#1[f1]%、暴击伤害提高#2[i]%,该效果最多叠加#3[i]层。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.10000000009313226, + 2 + ], + "PointID": 1305102, + "PointName": "演绎", + "PointDesc": "施放战技攻击敌方目标后,有#1[i]%基础概率使受到攻击的敌方目标效果抵抗降低#2[i]%,持续#3[i]回合。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.10000000009313226, + 0.5000000004656613 + ], + "PointID": 1305103, + "PointName": "推理", + "PointDesc": "造成伤害时,若目标负面状态大于等于#1[i]个,目标每有1个负面效果,真理医生对其造成的伤害提高#2[i]%,最多提高#3[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1305101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1305202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1305102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1305205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1305103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1305208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1305208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 105.6000000005588, + "AttackAdd": 5.28000000026077, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 147.8400000007823, + "AttackAdd": 5.28000000026077, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 190.0800000000745, + "AttackAdd": 5.28000000026077, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 232.32000000029802, + "AttackAdd": 5.28000000026077, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 274.56000000052154, + "AttackAdd": 5.28000000026077, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 316.80000000074506, + "AttackAdd": 5.28000000026077, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 359.04000000003725, + "AttackAdd": 5.28000000026077, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1305, + "Set4IDList": [ + 117, + 112, + 115 + ], + "Set2IDList": [ + 315, + 306, + 311 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1306": { + "Name": "花火", + "Desc": "「假面愚者」的成员之一,难以捉摸,不择手段。\\n危险的戏剧大师,沉迷于扮演,身怀千张假面,能化万种面相。\\n财富、地位、权力…于花火而言都不重要,能让她出手的,唯有「乐趣」。", + "CharaInfo": { + "Camp": "假面愚者", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sparkle", + "SPNeed": 110, + "BaseType": "Shaman", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 130601, + "Name": "悬置怀疑", + "Desc": "终结技施加的【谜诡】的持续时间额外增加1回合,持有【谜诡】的我方目标攻击力提高#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "2": { + "Id": 130602, + "Name": "虚构无端", + "Desc": "天赋每层效果额外使我方目标造成伤害时无视目标#1[i]%的防御力。", + "ParamList": [ + 0.0800000000745058 + ] + }, + "3": { + "Id": 130603, + "Name": "梦幻泡影", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 130604, + "Name": "游戏人间", + "Desc": "终结技可以额外恢复1点战技点,天赋的战技点上限增加效果额外增加1点。", + "ParamList": [] + }, + "5": { + "Id": 130605, + "Name": "双面真相", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 130606, + "Name": "多重解答", + "Desc": "战技的暴击伤害提高效果额外提高,提高数值等同于花火暴击伤害的#1[i]%,花火施放战技时,使战技的暴击伤害提高效果对持有【谜诡】的队友都会生效,花火施放终结技时,若我方单体中有目标持有战技的暴击伤害提高效果,使该效果扩散至持有【谜诡】的队友。", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "130601": { + "Id": 130601, + "Name": "独角戏", + "Desc": "对指定敌方单体造成等同于花火#1[i]%攻击力的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130602": { + "Id": 130602, + "Name": "梦游鱼", + "Desc": "使指定我方单体的暴击伤害提高,提高数值等同于花火#1[f1]%暴击伤害+#2[f1]%,持续#3[i]回合,并使该目标行动提前#4[i]%。\\n当花火对自身施放该技能时,无法触发行动提前效果。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 0.2700000002514571, + 1, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1319999999832362, + 0.28799999970942736, + 1, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14399999985471368, + 0.30599999986588955, + 1, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.15599999972619116, + 0.32400000002235174, + 1, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.16799999959766865, + 0.34200000017881393, + 1, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19499999983236194, + 0.38250000053085387, + 1, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21000000019557774, + 0.4050000000279397, + 1, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2249999998603016, + 0.4275000002235174, + 1, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.45000000041909516, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2520000000949949, + 0.4679999998770654, + 1, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2639999999664724, + 0.4860000000335276, + 1, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.27599999983794987, + 0.5040000001899898, + 1, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.28799999970942736, + 0.522000000346452, + 1, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.5400000005029142, + 1, + 0.5000000004656613 + ] + } + } + }, + "130603": { + "Id": 130603, + "Name": "一人千役", + "Desc": "为我方恢复#2[i]个战技点,并使我方全体获得【谜诡】。持有【谜诡】的我方目标触发花火天赋造成的伤害提高效果每层额外提高#3[f1]%,持续#4[i]回合。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 4, + 0.060000000055879354, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 4, + 0.06399999978020787, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 4, + 0.06799999950453639, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 4, + 0.07199999992735684, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 4, + 0.07599999965168536, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 4, + 0.0800000000745058, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 4, + 0.08499999972991645, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 4, + 0.09000000008381903, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 4, + 0.09499999973922968, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 4, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 4, + 0.10399999981746078, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 4, + 0.1079999995417893, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 4, + 0.11199999996460974, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 4, + 0.11599999968893826, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 4, + 0.12000000011175871, + 2 + ] + } + } + }, + "130604": { + "Id": 130604, + "Name": "叙述性诡计", + "Desc": "花火在场时,战技点上限额外增加#3[i]点。当我方目标每消耗1点战技点,则使我方全体造成的伤害提高#2[f1]%,该效果持续#1[i]回合,最多可叠加#4[i]层。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.030000000027939677, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.032999999821186066, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.035999999614432454, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.03899999940767884, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.04199999989941716, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.04499999969266355, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.04875000030733645, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.05250000022351742, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.056250000139698386, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.060000000055879354, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.06299999984912574, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.06599999964237213, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.06899999943561852, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.07199999992735684, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.07499999972060323, + 2, + 3 + ] + } + } + }, + "130606": { + "Id": 130606, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130607": { + "Id": 130607, + "Name": "不可靠叙事者", + "Desc": "使用秘技后,我方全体进入持续#2[i]秒的【迷误】状态。【迷误】状态下不会被敌人发现。【迷误】状态期间进入战斗时为我方恢复#1[i]个战技点。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Maze.png", + "LevelUpSkillID": [ + 130607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1306101, + "PointName": "岁时记", + "PointDesc": "施放普攻时额外恢复#1[i]点能量。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306102, + "PointName": "人造花", + "PointDesc": "战技提供的暴击伤害提高效果会延长到目标下一个回合开始。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 0.1500000001396984, + 0.3000000002793968, + 0.1500000001396984 + ], + "PointID": 1306103, + "PointName": "夜想曲", + "PointDesc": "我方全体的攻击力提高#4[i]%。当我方队伍中存在1名/2名/3名量子属性的角色时,我方量子属性的角色的攻击力额外提高#1[i]%/#2[i]%/#3[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306201, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306202, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1306101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306203, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1306202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1306201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306205, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1306102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306206, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1306205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306207, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1306201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1306103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306209, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1306208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306210, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1306208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 190.0800000000745, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 342.1439999998547, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 418.1759999997448, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 494.2079999996349, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 570.2400000002235, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 646.2720000001136, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1306, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 317, + 310, + 312 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 187 + ], + "LocalCriticalChance": 1 + } + }, + "1307": { + "Name": "黑天鹅", + "Desc": "流光忆庭的忆者,慵懒神秘的占卜师。\\n耐心聆听他人「记忆」,诸般命运尽在掌握。", + "CharaInfo": { + "Camp": "流光忆庭", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "blackswan", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 130701, + "Name": "三磅石,七阶柱", + "Desc": "当黑天鹅处于可战斗状态时,处于风化、裂伤、灼烧、触电状态下的敌方目标对应的风、物理、火、雷属性抗性分别降低#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Id": 130702, + "Name": "羔羊,请勿为我恸哭", + "Desc": "【奥迹】状态下的敌方目标被消灭时,有#1[i]%基础概率使相邻目标陷入#2[i]层【奥迹】。", + "ParamList": [ + 1, + 6 + ] + }, + "3": { + "Id": 130703, + "Name": "上界如此,下界亦然", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 130704, + "Name": "泪水,亦是礼物", + "Desc": "【揭露】状态下,敌方目标效果抵抗降低#1[i]%,且每回合开始时或被消灭时使黑天鹅恢复#2[i]点能量。能量恢复效果在【揭露】状态持续时间内最多触发1次,再次陷入【揭露】状态会刷新触发次数。", + "ParamList": [ + 0.10000000009313226, + 8 + ] + }, + "5": { + "Id": 130705, + "Name": "候鸟之路", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 130706, + "Name": "万神皆善,苦役者未知", + "Desc": "当敌方目标受到黑天鹅的队友的攻击时,黑天鹅有#2[i]%基础概率使目标陷入1层【奥迹】。\\n每当黑天鹅使敌方目标陷入【奥迹】时,有#1[i]%固定概率使本次叠加的【奥迹】层数额外提高#3[i]层。", + "ParamList": [ + 0.5000000004656613, + 0.6500000006053597, + 1 + ] + } + }, + "Skills": { + "130701": { + "Id": 130701, + "Name": "洞见,缄默的黎明", + "Desc": "对指定敌方单体造成等同于黑天鹅#1[i]%攻击力的风属性伤害,有#2[i]%基础概率使目标陷入1层【奥迹】,且攻击陷入风化、裂伤、灼烧、触电状态的目标后,分别各有#3[i]%基础概率额外使目标陷入1层【奥迹】。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3600000003352761, + 0.530000000493601, + 0.530000000493601 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 0.5600000005215406, + 0.5600000005215406 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.48000000044703484, + 0.5900000005494803, + 0.5900000005494803 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5400000005029142, + 0.62000000057742, + 0.62000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.6500000006053597, + 0.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6600000006146729, + 0.6800000006332994, + 0.6800000006332994 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 0.710000000661239, + 0.710000000661239 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7800000007264316, + 0.7400000006891787, + 0.7400000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.840000000782311, + 0.7700000007171184, + 0.7700000007171184 + ] + } + } + }, + "130702": { + "Id": 130702, + "Name": "失坠,伪神的黄昏", + "Desc": "对指定敌方单体及其相邻目标造成等同于黑天鹅#1[i]%攻击力的风属性伤害,同时有#2[i]%基础概率使目标与相邻目标陷入1层【奥迹】,此外有#3[i]%基础概率使目标与相邻目标防御力降低#4[f1]%,持续#5[i]回合。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 1, + 1, + 0.1479999995790422, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.4950000001117587, + 1, + 1, + 0.1539999998640269, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5400000005029142, + 1, + 1, + 0.1600000001490116, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5850000001955777, + 1, + 1, + 0.1659999997355044, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6300000005867332, + 1, + 1, + 0.1720000000204891, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6750000002793968, + 1, + 1, + 0.17799999960698187, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.7312500011175871, + 1, + 1, + 0.18550000013783574, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7875000005587935, + 1, + 1, + 0.19299999997019768, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.8437500013969839, + 1, + 1, + 0.20050000050105155, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.9000000008381903, + 1, + 1, + 0.20799999963492155, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.9450000005308539, + 1, + 1, + 0.21399999991990626, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.9900000009220093, + 1, + 1, + 0.22000000020489097, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.0349999996833503, + 1, + 1, + 0.22599999979138374, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.0800000000745058, + 1, + 1, + 0.23200000007636845, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.1249999997671694, + 1, + 1, + 0.23799999966286123, + 3 + ] + } + } + }, + "130703": { + "Id": 130703, + "Name": "沉醉于彼界的臂湾", + "Desc": "使敌方全体陷入【揭露】状态,持续#2[i]回合。\\n【揭露】状态下,敌方目标自身回合内受到的伤害提高#3[i]%,且当敌方目标处于【奥迹】状态时,也会被视为同时陷入了风化、裂伤、灼烧、触电状态,并且【奥迹】每回合开始造成伤害后不会重置层数。【奥迹】不会重置层数的效果在【揭露】状态持续时间内最多触发#4[i]次,再次陷入【揭露】状态会刷新触发次数。\\n对敌方全体造成等同于黑天鹅#1[i]%攻击力的风属性伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523, + 2, + 0.1500000001396984, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622, + 2, + 0.1600000001490116, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641, + 2, + 0.17000000015832484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659, + 2, + 0.18000000016763806, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678, + 2, + 0.1900000001769513, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697, + 2, + 0.20000000018626451, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265, + 2, + 0.21250000037252903, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 2, + 0.2249999998603016, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852, + 2, + 0.23750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 2, + 0.25000000023283064, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745, + 2, + 0.26000000024214387, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763, + 2, + 0.2700000002514571, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782, + 2, + 0.2800000002607703, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538, + 2, + 0.29000000027008355, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782, + 2, + 0.3000000002793968, + 1 + ] + } + } + }, + "130704": { + "Id": 130704, + "Name": "无端命运的机杼", + "Desc": "敌方目标每回合开始时每受到1次持续伤害,有#2[i]%基础概率陷入1层【奥迹】。\\n【奥迹】状态下,敌方目标每回合开始时受到等同于黑天鹅#1[i]%攻击力的风属性持续伤害,每层【奥迹】使此伤害倍率提高#3[f1]%,随后重置为1层。【奥迹】最多叠加#8[i]层。\\n仅在敌方目标回合开始【奥迹】造成伤害时,黑天鹅根据目标陷入的【奥迹】层数触发额外效果:\\n大于等于#4[i]层:对相邻目标造成等同于黑天鹅#5[i]%攻击力的风属性持续伤害,并且有#2[i]%基础概率使相邻目标陷入1层【奥迹】。\\n大于等于#6[i]层:使本次造成的持续伤害无视该目标及其相邻目标#7[i]%的防御力。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.5000000004656613, + 0.04799999948590994, + 3, + 0.7200000006705523, + 7, + 0.20000000018626451, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1183999998029321, + 0.5150000001303852, + 0.0559200004208833, + 3, + 0.838800000725314, + 7, + 0.20000000018626451, + 50 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2768000003416091, + 0.530000000493601, + 0.06384000065736473, + 3, + 0.9576000007800758, + 7, + 0.20000000018626451, + 50 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4352000001817942, + 0.5450000001583248, + 0.07176000089384615, + 3, + 1.076399999903515, + 7, + 0.20000000018626451, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5936000007204711, + 0.5600000005215406, + 0.07968000043183565, + 3, + 1.1951999999582767, + 7, + 0.20000000018626451, + 50 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.7520000005606562, + 0.5750000001862645, + 0.08759999996982515, + 3, + 1.3140000000130385, + 7, + 0.20000000018626451, + 50 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.8960000004153699, + 0.5937500011641532, + 0.0948000003118068, + 3, + 1.4220000002533197, + 7, + 0.20000000018626451, + 50 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.040000000037253, + 0.6125000007450581, + 0.10199999995529652, + 3, + 1.530000000493601, + 7, + 0.20000000018626451, + 50 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.220000000204891, + 0.6312500010244548, + 0.11100000003352761, + 3, + 1.6650000002700835, + 7, + 0.20000000018626451, + 50 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.6500000006053597, + 0.12000000011175871, + 3, + 1.800000000745058, + 7, + 0.20000000018626451, + 50 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.6650000002700835, + 0.12599999969825149, + 3, + 1.890000000828877, + 7, + 0.20000000018626451, + 50 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.6800000006332994, + 0.1319999999832362, + 3, + 1.9800000009126961, + 7, + 0.20000000018626451, + 50 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.6950000002980232, + 0.13799999956972897, + 3, + 2.0700000000651926, + 7, + 0.20000000018626451, + 50 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.710000000661239, + 0.14399999985471368, + 3, + 2.1600000001490116, + 7, + 0.20000000018626451, + 50 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.7250000003259629, + 0.1500000001396984, + 3, + 2.2500000002328306, + 7, + 0.20000000018626451, + 50 + ] + } + } + }, + "130706": { + "Id": 130706, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130707": { + "Id": 130707, + "Name": "取此真相,弃舍表征", + "Desc": "使用秘技后,下一次战斗开始时有#1[i]%基础概率使敌方每个单体目标陷入1层【奥迹】。使其中每个成功陷入【奥迹】的目标再次陷入1层【奥迹】,重复此效果直到未能成功使该目标陷入【奥迹】。每次使目标陷入【奥迹】的基础概率等同于上一次成功使该目标陷入【奥迹】时的基础概率#2[i]%。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Maze.png", + "LevelUpSkillID": [ + 130707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6500000006053597 + ], + "PointID": 1307101, + "PointName": "脏中躁动", + "PointDesc": "施放战技攻击陷入风化、裂伤、灼烧、触电状态的指定敌方单体后,分别各有#1[i]%基础概率额外使目标陷入1层【奥迹】。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6500000006053597, + 3 + ], + "PointID": 1307102, + "PointName": "杯底端倪", + "PointDesc": "在敌方目标进入战斗时,有#1[i]%基础概率陷入1层【奥迹】。\\n敌方目标在我方单次攻击内每受到1次持续伤害,有#1[i]%基础概率陷入1层【奥迹】,单次攻击内最多陷入#2[i]层。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 0.7200000006705523 + ], + "PointID": 1307103, + "PointName": "烛影朕兆", + "PointDesc": "使自身造成的伤害提高,提高数值等同于效果命中的#1[i]%,最多使造成的伤害提高#2[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307202, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1307101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1307202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307204, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1307203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1307102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307206, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1307205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1307206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307208, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1307103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307209, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1307103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1307201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1307, + "Set4IDList": [ + 116, + 110, + 102 + ], + "Set2IDList": [ + 303, + 322, + 301 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "StatusProbabilityBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 323, + 268 + ] + } + }, + "1308": { + "Name": "黄泉", + "Desc": "自称「巡海游侠」的旅人,本名不详。\\n身佩一柄长刀,独行银河。", + "CharaInfo": { + "Camp": "巡海游侠", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "acheron", + "SPNeed": 9, + "BaseType": "Warlock", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 130801, + "Name": "高天寥落真言始", + "Desc": "对处于负面效果的敌方目标造成伤害时暴击率提高#1[i]%。", + "ParamList": [ + 0.18000000016763806 + ] + }, + "2": { + "Id": 130802, + "Name": "霆鼓俱寂,瑟风亦止", + "Desc": "行迹【奈落】最高数值所需求「虚无」命途角色的数量减少1名,自身回合开始时获得1点【残梦】,同时为【集真赤】最多的敌方附上1层【集真赤】。", + "ParamList": [] + }, + "3": { + "Id": 130803, + "Name": "寒肃惊永蛰", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 130804, + "Name": "亘焰燎照镜中人", + "Desc": "在敌方目标进入战斗时,使其陷入终结技伤害易伤状态,受到的终结技伤害提高#1[i]%。", + "ParamList": [ + 0.0800000000745058 + ] + }, + "5": { + "Id": 130805, + "Name": "崇岩支离,千身飘零", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 130806, + "Name": "灾咎解桎梏", + "Desc": "黄泉造成的终结技伤害全属性抗性穿透提高#1[i]%,施放普攻、战技造成的伤害同时视为终结技伤害,并无视弱点属性削减敌方韧性。击破弱点时,触发雷属性的弱点击破效果。", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "130801": { + "Id": 130801, + "Name": "三途枯榷", + "Desc": "对指定敌方单体造成等同于黄泉#1[i]%攻击力的雷属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130802": { + "Id": 130802, + "Name": "八雷飞渡", + "Desc": "获得#3[i]点【残梦】,为指定敌方单体附上#3[i]层【集真赤】,对其造成等同于黄泉#1[i]%攻击力的雷属性伤害,同时对其相邻目标造成等同于黄泉#2[i]%攻击力的雷属性伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.3000000002793968, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.33000000030733645, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.3600000003352761, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.3900000003632158, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.4200000003911555, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.45000000041909516, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.4875000002793968, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.5250000001396984, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.5625000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.6000000005587935, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.6300000005867332, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.6600000006146729, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.6900000006426126, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.7200000006705523, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.7500000006984919, + 1 + ] + } + } + }, + "130803": { + "Id": 130803, + "Name": "残梦尽染,一刀缭断", + "Desc": "依次发动3次【啼泽雨斩】和1次【黄泉返渡】,对指定敌方单体最多造成等同于黄泉#6[i]%攻击力的雷属性伤害,对其他目标最多造成等同于黄泉#7[i]%攻击力的雷属性伤害。\\n【啼泽雨斩】:对指定敌方单体造成等同于黄泉攻击力#1[f1]%的雷属性伤害,并消去目标最多3层【集真赤】。消去【集真赤】时,立即对敌方全体造成等同于黄泉#2[f1]%攻击力的雷属性伤害,每消去1层【集真赤】本次伤害倍率额外提高,最多提高至#5[f1]%。\\n【黄泉返渡】:对敌方全体造成等同于黄泉#3[i]%攻击力的雷属性伤害并移除所有【集真赤】。\\n终结技期间无法为敌方附上【集真赤】。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523, + 9, + 0.3600000003352761, + 2.2320000000763685, + 1.800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622, + 9, + 0.3840000000782311, + 2.380800000857562, + 1.9200000008568168 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641, + 9, + 0.40799999982118607, + 2.5296000002417713, + 2.040000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659, + 9, + 0.43200000026263297, + 2.678400000324473, + 2.1600000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678, + 9, + 0.45600000000558794, + 2.8272000004071742, + 2.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697, + 9, + 0.48000000044703484, + 2.9760000004898757, + 2.400000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265, + 9, + 0.5100000004749745, + 3.162000000011176, + 2.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058, + 9, + 0.5400000005029142, + 3.3479999997653067, + 2.700000000651926 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852, + 9, + 0.5700000005308539, + 3.5340000002179295, + 2.850000000791624 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645, + 9, + 0.6000000005587935, + 3.7200000006705523, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745, + 9, + 0.6240000003017485, + 3.8688000007532537, + 3.1200000001117587 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763, + 9, + 0.6480000000447035, + 4.017599999904633, + 3.2400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782, + 9, + 0.6720000004861504, + 4.166399999987334, + 3.360000000335276 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538, + 9, + 0.6960000002291054, + 4.3152000000700355, + 3.480000000447035 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782, + 9, + 0.7200000006705523, + 4.464000000152737, + 3.6000000005587935 + ] + } + } + }, + "130804": { + "Id": 130804, + "Name": "红叶时雨,万倾一空", + "Desc": "【残梦】达到#1[i]点时可激活终结技。终结技期间可无视弱点属性削减敌方韧性,并使敌方全体全属性抗性降低#2[i]%,持续至终结技结束。\\n任意单位施放技能期间使敌方目标陷入负面效果,黄泉获得1点【残梦】并为目标附上1层【集真赤】,若使多个目标陷入负面效果,则为其中【集真赤】最多的敌方目标附上1层【集真赤】。该效果每次施放技能最多触发1次。\\n黄泉在场时,敌方目标离场或被任意单位消灭后,其持有的【集真赤】会转移至全场【集真赤】最多的敌方目标。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 9, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 9, + 0.11000000010244548 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 9, + 0.12000000011175871 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 9, + 0.13000000012107193 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 9, + 0.14000000013038516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 9, + 0.1500000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 9, + 0.1625000003259629 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 9, + 0.17499999981373549 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9, + 0.1875 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 9, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 9, + 0.21000000019557774 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 9, + 0.22000000020489097 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 9, + 0.2300000002142042 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 9, + 0.24000000022351742 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 9, + 0.25000000023283064 + ] + } + } + }, + "130806": { + "Id": 130806, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130807": { + "Id": 130807, + "Name": "四相断我", + "Desc": "立即攻击敌人,每个波次开始时获得【四相断我】,对敌方全体造成等同于黄泉#1[i]%攻击力的雷属性伤害,且无视弱点属性削减敌方全体的韧性,击破弱点时,触发雷属性的弱点击破效果。\\n【四相断我】:施放终结技后黄泉获得#2[i]点【残梦】,并为敌方随机单体附上#2[i]层【集真赤】。\\n若攻击普通敌人则立即将其消灭,不会进入战斗。未击中敌人时不消耗秘技点。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "130814": { + "Id": 130814, + "Name": "啼泽雨斩", + "Desc": "", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130815": { + "Id": 130815, + "Name": "啼泽雨斩", + "Desc": "", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130816": { + "Id": 130816, + "Name": "啼泽雨斩", + "Desc": "", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130817": { + "Id": 130817, + "Name": "黄泉返渡", + "Desc": "", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Maze.png", + "LevelUpSkillID": [ + 130807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 3 + ], + "PointID": 1308101, + "PointName": "赤鬼", + "PointDesc": "战斗开始时,立即获得#1[i]点【残梦】,并为随机1名敌方附上#1[i]层【集真赤】。当【残梦】达到上限时,每溢出1点【残梦】获得1层【四相断我】,使【四相断我】最多可以叠加至#2[i]层。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.1500000001396984, + 1.6000000005587935 + ], + "PointID": 1308102, + "PointName": "奈落", + "PointDesc": "我方队伍中存在1名/2名除黄泉之外的「虚无」命途角色时,使黄泉普攻、战技、终结技造成的伤害为原伤害的#1[i]%/#2[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 3, + 6, + 0.25000000023283064 + ], + "PointID": 1308103, + "PointName": "雷心", + "PointDesc": "终结技的【啼泽雨斩】击中持有【集真赤】的敌方目标时,使黄泉造成的伤害提高#1[i]%,该效果最多叠加#2[i]层,持续#3[i]回合,并在发动【黄泉返渡】时额外造成#4[i]次伤害,每次伤害对敌方随机单体造成等同于黄泉#5[i]%攻击力的雷属性伤害,该伤害视为终结技伤害。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308202, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1308101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1308202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308204, + "PointName": "伤害强化•雷", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1308203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "雷属性伤害提高" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1308102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308206, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1308205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1308206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308208, + "PointName": "伤害强化•雷", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1308103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "雷属性伤害提高" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308209, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1308103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1308201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1308, + "Set4IDList": [ + 117, + 122, + 109 + ], + "Set2IDList": [ + 314, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1309": { + "Name": "知更鸟", + "Desc": "出生于匹诺康尼,闻名银河的天环族歌者,举止从容优雅的少女。\\n此次受家族宴请回到故乡,在「谐乐大典」为众宾献歌一曲。\\n可以依靠「同谐」的力量传递歌声,在歌迷乃至万界生灵之中展现「共鸣」。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "robin", + "SPNeed": 160, + "BaseType": "Shaman", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 130901, + "Name": "微笑的国度", + "Desc": "处于【协奏】状态时,我方全体全属性抗性穿透提高#1[i]%。", + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "Id": 130902, + "Name": "两者的午茶", + "Desc": "处于【协奏】状态时,我方全体速度提高#1[i]%。天赋的能量恢复效果额外提高#2[i]点。", + "ParamList": [ + 0.1600000001490116, + 1 + ] + }, + "3": { + "Id": 130903, + "Name": "倒悬的弦宫", + "Desc": "战技等级+2,最多不超过15级,终结技等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 130904, + "Name": "雨滴的钥匙", + "Desc": "施放终结技时,解除我方全体的控制类负面状态,使我方全体在知更鸟处于【协奏】状态期间的效果抵抗提高#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 130905, + "Name": "孤星的眼泪", + "Desc": "普攻等级+1,最多不超过10级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 130906, + "Name": "月隐的午夜", + "Desc": "处于【协奏】状态时,终结技造成的物理属性附加伤害的暴击伤害额外提高#2[i]%。【月隐的午夜】效果最多触发#1[i]次,每次施放终结技时重置触发次数。", + "ParamList": [ + 8, + 4.500000000465661 + ] + } + }, + "Skills": { + "130901": { + "Id": 130901, + "Name": "扑翼白声", + "Desc": "对指定敌方单体造成等同于知更鸟#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130902": { + "Id": 130902, + "Name": "翎之咏叹调", + "Desc": "使我方全体造成的伤害提高#1[i]%,持续#2[i]回合,知更鸟每回合开始时持续回合数减1。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 3 + ] + } + } + }, + "130903": { + "Id": 130903, + "Name": "千音迭奏,群星赋格", + "Desc": "知更鸟进入【协奏】状态,使除自身以外的队友立即行动。\\n处于【协奏】状态时,我方全体攻击力提高,提高数值等同于知更鸟攻击力的#1[f1]%+#3[i]点,且我方目标每次施放攻击后,知更鸟会额外造成1次等同于其自身#4[i]%攻击力的物理属性附加伤害,该伤害暴击率固定为#5[i]%,暴击伤害固定为#6[i]%。\\n处于【协奏】状态时,知更鸟免疫控制类负面状态,【协奏】状态结束前不会进入自己的回合且无法行动。\\n行动序列上出现【协奏】倒计时,倒计时回合开始时知更鸟退出【协奏】状态并立即行动,倒计时固定拥有#2[i]点速度。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.15200000000186265, + 90, + 50, + 0.7200000006705523, + 1, + 1.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.159599999897182, + 90, + 65, + 0.7680000001564622, + 1, + 1.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.16719999979250133, + 90, + 80, + 0.8160000003408641, + 1, + 1.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1748000003863126, + 90, + 95, + 0.8640000005252659, + 1, + 1.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 90, + 110, + 0.9120000007096678, + 1, + 1.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1900000001769513, + 90, + 125, + 0.9600000008940697, + 1, + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19949999987147748, + 90, + 143.7500000006985, + 1.0200000000186265, + 1, + 1.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.20899999956600368, + 90, + 162.50000000046566, + 1.0800000000745058, + 1, + 1.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2184999999590218, + 90, + 181.25000000023283, + 1.1400000001303852, + 1, + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.227999999653548, + 90, + 200, + 1.2000000001862645, + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.23560000024735928, + 90, + 215, + 1.2479999996721745, + 1, + 1.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.24320000014267862, + 90, + 230, + 1.2959999998565763, + 1, + 1.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2508000007364899, + 90, + 245, + 1.3440000000409782, + 1, + 1.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.2583999999333173, + 90, + 260, + 1.39200000022538, + 1, + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.26599999982863665, + 90, + 275, + 1.440000000409782, + 1, + 1.5000000004656613 + ] + } + } + }, + "130904": { + "Id": 130904, + "Name": "调性合颂", + "Desc": "使我方全体暴击伤害提高#1[f1]%,且我方目标攻击敌方目标后,知更鸟额外为自身恢复#2[i]点能量。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06499999971129, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.0800000000745058, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09499999973922968, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12499999976716936, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.14375000074505806, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.18125000060535967, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2149999998509884, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.24499999987892807, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.26000000024214387, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.27499999990686774, + 2 + ] + } + } + }, + "130906": { + "Id": 130906, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130907": { + "Id": 130907, + "Name": "酣醉序曲", + "Desc": "施放秘技后,在自身周围展开持续#1[i]秒的特殊领域,处于领域内的敌人不会对知更鸟发动攻击,且在领域展开期间跟随知更鸟。领域展开期间进入战斗后,每个波次开始时知更鸟恢复#2[i]点能量。我方制造的领域效果最多存在1个。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 5 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Maze.png", + "LevelUpSkillID": [ + 130907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1309101, + "PointName": "华彩花腔", + "PointDesc": "战斗开始时,自身行动提前#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1309102, + "PointName": "即兴装饰", + "PointDesc": "处于【协奏】状态时,我方全体发动追加攻击造成的暴击伤害提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1309103, + "PointName": "模进乐段", + "PointDesc": "施放战技时额外恢复#1[i]点能量。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1309101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1309202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309204, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1309201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1309102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1309205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1309201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309208, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1309103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1309208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1309208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 174.24000000022352, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 243.93600000045262, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 313.6320000004489, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 383.3279999997467, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 453.02399999974295, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 522.7200000006706, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 592.4159999999683, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1309, + "Set4IDList": [ + 102, + 105, + 116 + ], + "Set2IDList": [ + 302, + 301, + 308 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "AttackAddedRatio", + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "AttackDelta", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 313, + 272 + ] + } + }, + "1310": { + "Name": "流萤", + "Desc": "星核猎手成员,身着机械装甲「萨姆」战斗。忠于任务,性格坚强。\\n作为战胜虫群的兵器而诞生,其生长速度异于常人,但生命非常短暂。\\n为了找寻「生」的机会而加入星核猎手,找寻违抗命运的方式。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sam", + "SPNeed": 240, + "BaseType": "Warrior", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 131001, + "Name": "我曾安眠,赤染之茧", + "Desc": "施放强化战技时无视目标#1[i]%的防御,且强化战技不消耗战技点。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "2": { + "Id": 131002, + "Name": "自破碎的天空坠落", + "Desc": "「完全燃烧」状态下施放强化普攻、强化战技消灭敌方目标或使目标陷入弱点击破状态时,装甲「萨姆」立即获得1个额外回合。该效果在#2[i]回合后可再次触发。", + "ParamList": [ + 1, + 1 + ] + }, + "3": { + "Id": 131003, + "Name": "沉睡在静默的星河", + "Desc": "战技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 131004, + "Name": "我会看见,飞萤之火", + "Desc": "「完全燃烧」状态下,装甲「萨姆」的效果抵抗提高#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 131005, + "Name": "自无梦的长夜亮起", + "Desc": "终结技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 131006, + "Name": "绽放在终竟的明天", + "Desc": "「完全燃烧」状态下装甲「萨姆」的火属性抗性穿透提高#1[i]%。施放强化普攻、强化战技时弱点击破效率提高#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + } + }, + "Skills": { + "131001": { + "Id": 131001, + "Name": "指令-闪燃推进", + "Desc": "对指定敌方单体造成等同于装甲「萨姆」#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131002": { + "Id": 131002, + "Name": "指令-天火轰击", + "Desc": "消耗等同于自身生命上限#2[i]%的生命值固定恢复等同于自身#3[i]%能量上限的能量,对指定敌方单体造成等同于装甲「萨姆」#1[i]%攻击力的火属性伤害。若当前生命值不足,施放战技时装甲「萨姆」的当前生命值降至1点。使自身下一次行动提前#4[i]%。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903, + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.40000000037252903, + 0.5100000004749745, + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903, + 0.5200000004842877, + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.40000000037252903, + 0.530000000493601, + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.40000000037252903, + 0.5400000005029142, + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.40000000037252903, + 0.5500000005122274, + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.40000000037252903, + 0.5625000006984919, + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.40000000037252903, + 0.5750000001862645, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.40000000037252903, + 0.587500000372529, + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.40000000037252903, + 0.6000000005587935, + 0.25000000023283064 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903, + 0.6100000005681068, + 0.25000000023283064 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.40000000037252903, + 0.62000000057742, + 0.25000000023283064 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.40000000037252903, + 0.6300000005867332, + 0.25000000023283064 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903, + 0.6400000005960464, + 0.25000000023283064 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 0.40000000037252903, + 0.6500000006053597, + 0.25000000023283064 + ] + } + } + }, + "131003": { + "Id": 131003, + "Name": "火萤Ⅳ型-完全燃烧", + "Desc": "进入「完全燃烧」状态,自身行动提前100%并获得强化普攻和强化战技。「完全燃烧」状态下速度提高#3[i]点,且施放强化普攻、强化战技时自身弱点击破效率提高#2[i]%、使敌方目标受到装甲「萨姆」造成的击破伤害提高#1[f1]%,持续至本次攻击结束。\\n行动序列上出现「完全燃烧」倒计时,倒计时回合开始时装甲「萨姆」解除「完全燃烧」状态,倒计时固定拥有#4[i]速度。\\n「完全燃烧」状态下装甲「萨姆」无法施放终结技。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 30, + 70 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 0.5000000004656613, + 33, + 70 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 36, + 70 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 0.5000000004656613, + 39, + 70 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 42, + 70 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 45, + 70 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 0.5000000004656613, + 48.75000000069849, + 70 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 0.5000000004656613, + 52.50000000046566, + 70 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 0.5000000004656613, + 56.25000000023283, + 70 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 60, + 70 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 0.5000000004656613, + 63, + 70 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 66, + 70 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 0.5000000004656613, + 69, + 70 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 72, + 70 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 75, + 70 + ] + } + } + }, + "131004": { + "Id": 131004, + "Name": "茧式源火中枢", + "Desc": "生命值越低受到的伤害越低,生命值小于等于#3[i]%时减伤效果达到最大值,最多降低#1[i]%。「完全燃烧」状态下减伤效果维持最大值,效果抵抗提高#4[i]%。\\n战斗开始时若能量不足#2[i]%则使其恢复至#2[i]%。当能量恢复至上限时解除自身所有负面效果。", + "Type": null, + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 0.20000000018626451, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 0.20000000018626451, + 0.12000000011175871 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.20000000018626451, + 0.14000000013038516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613, + 0.20000000018626451, + 0.1600000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 0.20000000018626451, + 0.18000000016763806 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.5000000004656613, + 0.20000000018626451, + 0.2249999998603016 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.5000000004656613, + 0.20000000018626451, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.5000000004656613, + 0.20000000018626451, + 0.27499999990686774 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 0.20000000018626451, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.5000000004656613, + 0.20000000018626451, + 0.3200000002980232 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.5000000004656613, + 0.20000000018626451, + 0.3400000003166497 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.5000000004656613, + 0.20000000018626451, + 0.3600000003352761 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.5000000004656613, + 0.20000000018626451, + 0.3800000003539026 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613, + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "131006": { + "Id": 131006, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131007": { + "Id": 131007, + "Name": "Δ指令-焦土陨击", + "Desc": "跳跃至空中并进行自由移动,持续#1[i]秒,此时施放下落攻击可以提前结束持续时间。持续时间结束后,下落并立即攻击一定范围内的所有敌人,每个波次开始时为敌方全体添加火属性弱点,持续#3[i]回合,此后对敌方全体造成等同于装甲「萨姆」#2[i]%攻击力的火属性伤害。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5, + 2, + 2 + ] + } + } + }, + "131008": { + "Id": 131008, + "Name": "火萤Ⅳ型-底火斩击", + "Desc": "回复等同于自身#2[i]%生命上限的生命值。对指定敌方单体造成等同于装甲「萨姆」#1[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 45, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2000000001862645, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.400000000372529, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6000000005587935, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.800000000745058, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2000000001862645, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.400000000372529, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6000000005587935, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 0.20000000018626451 + ] + } + } + }, + "131009": { + "Id": 131009, + "Name": "火萤Ⅳ型-死星过载", + "Desc": "回复等同于自身#3[i]%生命上限的生命值。为指定敌方单体添加火属性弱点,持续#4[i]回合。对该目标造成等同于装甲「萨姆」(#5[f1]*击破特攻+#1[f1]%)攻击力的火属性伤害。同时对其相邻目标造成等同于装甲「萨姆」(#6[f1]*击破特攻+#2[f1]%)攻击力的火属性伤害。最多计算#7[i]%击破特攻。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 45 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.8125000009313226, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1.0500000000465661, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1.1000000000931323, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1.1500000001396984, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1.2000000001862645, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1.2500000002328306, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Maze.png", + "LevelUpSkillID": [ + 131007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5500000005122274 + ], + "PointID": 1310101, + "PointName": "α模组-偏时迸发", + "PointDesc": "「完全燃烧」状态下,攻击没有火属性弱点的敌人也能削减韧性,效果等同于原技能削韧值的#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2, + 3.6000000005587935, + 0.3500000003259629, + 0.5000000004656613 + ], + "PointID": 1310102, + "PointName": "β模组-自限装甲", + "PointDesc": "「完全燃烧」状态下,当装甲「萨姆」的击破特攻大于等于#1[i]%/#2[i]%时,攻击处于弱点击破状态下的敌方目标后,会将本次攻击的削韧值转化为1次#3[i]%/#4[i]%超击破伤害。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1800, + 10, + 0.007999999448657036 + ], + "PointID": 1310103, + "PointName": "γ模组-过载核心", + "PointDesc": "若装甲「萨姆」的攻击力高于#1[i]点,每超过#2[i]点攻击力可使自身击破特攻提高#3[f1]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310201, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310202, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1310101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310203, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1310202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310204, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1310203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310205, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1310102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310206, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1310205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310207, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1310206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310208, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1310103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310209, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1310208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "效果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310210, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1310208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "击破特攻" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 5.28000000026077, + "HPBase": 110.88000000081956, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 147.8400000007823, + "DefenceAdd": 5.28000000026077, + "HPBase": 155.23200000007637, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 190.0800000000745, + "DefenceAdd": 5.28000000026077, + "HPBase": 199.5840000002645, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 232.32000000029802, + "DefenceAdd": 5.28000000026077, + "HPBase": 243.93600000045262, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 274.56000000052154, + "DefenceAdd": 5.28000000026077, + "HPBase": 288.2879999997094, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 316.80000000074506, + "DefenceAdd": 5.28000000026077, + "HPBase": 332.64000000059605, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 359.04000000003725, + "DefenceAdd": 5.28000000026077, + "HPBase": 376.9920000007842, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1310, + "Set4IDList": [ + 119, + 112, + 107 + ], + "Set2IDList": [ + 316, + 307, + 309 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 246, + 190 + ] + } + }, + "1312": { + "Name": "米沙", + "Desc": "匹诺康尼酒店的门童侍应,乖巧懂事的小男孩。\\n对无名客抱有极大憧憬,梦想有朝一日自己也能踏上旅途。", + "CharaInfo": { + "Camp": "匹诺康尼", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": "…" + }, + "Stories": { + "0": "…", + "1": "…", + "2": "…", + "3": "…", + "4": "…" + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "misha", + "SPNeed": 100, + "BaseType": "Warrior", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 131201, + "Name": "飘忽的幻影", + "Desc": "施放终结技时,场上每有1个敌方目标,本次终结技的攻击段数额外增加#1[i]段,最多额外增加#2[i]段。", + "ParamList": [ + 1, + 5 + ] + }, + "2": { + "Id": 131202, + "Name": "青春的怅望", + "Desc": "终结技每段攻击前,有#3[i]%基础概率使目标防御力降低#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.1600000001490116, + 3, + 0.24000000022351742 + ] + }, + "3": { + "Id": 131203, + "Name": "欢乐年光的影子", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 131204, + "Name": "亲挚的音容", + "Desc": "终结技每段攻击的伤害倍率提高#1[i]%。", + "ParamList": [ + 0.060000000055879354 + ] + }, + "5": { + "Id": 131205, + "Name": "最初的爱与友谊", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 131206, + "Name": "久已生疏的憧憬", + "Desc": "施放终结技时,使自身造成的伤害提高#2[i]%,持续至自身回合结束,且下一次施放战技后为我方恢复#1[i]个战技点。", + "ParamList": [ + 1, + 0.3000000002793968 + ] + } + }, + "Skills": { + "131201": { + "Id": 131201, + "Name": "请…请让一下!", + "Desc": "对指定敌方单体造成等同于米沙#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131202": { + "Id": 131202, + "Name": "客…客房服务!", + "Desc": "增加#3[i]段米沙下一次终结技的攻击段数。对指定敌方单体造成等同于米沙#1[i]%攻击力的冰属性伤害,并对其相邻目标造成等同于米沙#2[i]%攻击力的冰属性伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.44000000040978193, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.48000000044703484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.5200000004842877, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.5600000005215406, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.7000000006519258, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.7500000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.8800000008195639, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.9200000008568168, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.9600000008940697, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1, + 1 + ] + } + } + }, + "131203": { + "Id": 131203, + "Name": "要…要迟到了!", + "Desc": "初始拥有#1[i]段攻击段数。首先施放1段攻击对指定敌方单体造成等同于米沙#2[i]%攻击力的冰属性伤害,其余每段攻击对敌方随机单体造成等同于米沙#2[i]%攻击力的冰属性伤害。每段攻击前有#3[f1]%基础概率使目标陷入冻结状态,持续1回合。\\n冻结状态下,敌方目标不能行动,同时每回合开始时受到等同于米沙#4[i]%攻击力的冰属性附加伤害。\\n终结技最多累计#5[i]段攻击段数,施放终结技后攻击段数恢复至初始状态。", + "Type": "Ultra", + "Tag": "Bounce", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.3600000003352761, + 0.12000000011175871, + 0.18000000016763806, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.3840000000782311, + 0.12799999956041574, + 0.19200000003911555, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.40799999982118607, + 0.1359999997075647, + 0.20399999991059303, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.43200000026263297, + 0.14399999985471368, + 0.21599999978207052, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.45600000000558794, + 0.15200000000186265, + 0.227999999653548, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.48000000044703484, + 0.1600000001490116, + 0.24000000022351742, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.5100000004749745, + 0.17000000015832484, + 0.2549999998882413, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.5400000005029142, + 0.18000000016763806, + 0.2700000002514571, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.5700000005308539, + 0.1900000001769513, + 0.28499999991618097, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.6000000005587935, + 0.20000000018626451, + 0.3000000002793968, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.6240000003017485, + 0.20799999963492155, + 0.31200000015087426, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.6480000000447035, + 0.21599999978207052, + 0.32400000002235174, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.6720000004861504, + 0.22399999992921948, + 0.3359999998938292, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.6960000002291054, + 0.23200000007636845, + 0.3479999997653067, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.7200000006705523, + 0.24000000022351742, + 0.3600000003352761, + 10 + ] + } + } + }, + "131204": { + "Id": 131204, + "Name": "擒纵机构", + "Desc": "我方全体每消耗1个战技点,增加#2[i]段米沙下一次终结技的攻击段数,同时米沙恢复#1[f1]点能量。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "131206": { + "Id": 131206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131207": { + "Id": 131207, + "Name": "停一停吧,你真美丽!", + "Desc": "使用秘技后,制造1片持续#1[i]秒的特殊领域。处于特殊领域内的敌人陷入【梦境监牢】状态。【梦境监牢】状态下的敌人会停止所有行动。与处于【梦境监牢】状态下的敌人进入战斗后,增加#2[i]段米沙下一次终结技的攻击段数。我方制造的领域效果最多存在1个。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Maze.png", + "LevelUpSkillID": [ + 131207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 1312101, + "PointName": "释放", + "PointDesc": "终结技首段攻击前,使目标陷入冻结状态的基础概率提高#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935 + ], + "PointID": 1312102, + "PointName": "锁接", + "PointDesc": "施放终结技时,效果命中提高#1[i]%,持续至本次终结技行动结束。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1312103, + "PointName": "传冲", + "PointDesc": "对陷入冻结状态的敌方目标造成伤害时,暴击伤害提升#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312201, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312202, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1312101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312203, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1312202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312204, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1312203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312205, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1312102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312206, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1312205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312207, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1312206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312208, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1312103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312209, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1312208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312210, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1312208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "冰属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 172.80000000074506, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 241.92000000085682, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 311.04000000003725, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 380.160000000149, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 449.28000000026077, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 518.4000000003725, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 587.5200000004843, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1312, + "Set4IDList": [ + 104, + 122, + 102 + ], + "Set2IDList": [ + 306, + 301, + 311 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1313": { + "Name": "星期日", + "Desc": "「秩序」的美梦已然消散,但仍有人不会放下初愿。\\n——折翼坠地的旅人,他的脚步将迈向何方?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sunday", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 131301, + "Name": "千纪沉寂之末", + "Desc": "星期日施放战技时,使目标角色造成伤害时无视目标#2[i]%的防御力,召唤物造成伤害时无视目标#3[i]%的防御力,持续#1[i]回合。", + "ParamList": [ + 2, + 0.1600000001490116, + 0.40000000037252903 + ] + }, + "2": { + "Id": 131302, + "Name": "笃信补完微缺", + "Desc": "首次施放终结技后恢复#2[i]个战技点。【蒙福者】造成的伤害提高#1[i]%。", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 131303, + "Name": "荆棘的静修所", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 131304, + "Name": "雕塑的卷首语", + "Desc": "回合开始时,恢复#1[i]点能量。", + "ParamList": [ + 8 + ] + }, + "5": { + "Id": 131305, + "Name": "纸筏漂流银湾", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 131306, + "Name": "群星喧哗之始", + "Desc": "天赋的暴击率提高效果可以叠加,最多叠加#1[i]层,并使天赋的持续时间增加#3[i]回合。星期日施放终结技时,也可以为目标添加天赋的暴击率提高效果。天赋的暴击率提高效果生效时,当目标的暴击率超过100%,每溢出1%暴击率提高#2[i]%暴击伤害。", + "ParamList": [ + 3, + 0.02000000001862645, + 1 + ] + } + }, + "Skills": { + "131301": { + "Id": 131301, + "Name": "闪烁的劝诫", + "Desc": "对指定敌方单体造成等同于星期日#1[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131302": { + "Id": 131302, + "Name": "纸与仪典的恩赐", + "Desc": "使指定我方单体角色及其召唤物立即行动,并使其造成的伤害提高#2[i]%,若目标拥有召唤物,则造成的伤害提高效果额外提高#4[i]%,持续#3[i]回合。\\n对【蒙福者】施放战技后恢复1个战技点。\\n当星期日对「同谐」命途的角色施放该技能时,无法触发立即行动效果。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.1500000001396984, + 2, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.16499999980442226, + 2, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.18000000016763806, + 2, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.19499999983236194, + 2, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.21000000019557774, + 2, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.2249999998603016, + 2, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.24375000083819032, + 2, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.26250000041909516, + 2, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.28125000069849193, + 2, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.3000000002793968, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.31499999994412065, + 2, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.33000000030733645, + 2, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.3449999999720603, + 2, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.3600000003352761, + 2, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.375, + 2, + 0.6250000002328306 + ] + } + } + }, + "131303": { + "Id": 131303, + "Name": "轻与伤痕的赞颂", + "Desc": "为指定我方单体角色恢复等同于#1[f1]%能量上限的能量,并使目标及其召唤物成为【蒙福者】,【蒙福者】的暴击伤害提高,提高数值等同于星期日#2[f1]%暴击伤害+#4[f1]%。\\n星期日自身每回合开始时【蒙福者】状态持续回合减1,共持续#3[i]回合。且仅对除星期日自身外终结技最新的施放目标生效。当星期日陷入无法战斗状态时,【蒙福者】效果也会被解除。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.12000000011175871, + 3, + 0.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 0.13799999956972897, + 3, + 0.08399999979883432 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.20000000018626451, + 0.15599999972619116, + 3, + 0.08799999952316284 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.20000000018626451, + 0.17399999988265336, + 3, + 0.09199999994598329 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.20000000018626451, + 0.19200000003911555, + 3, + 0.09599999967031181 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.21000000019557774, + 3, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20000000018626451, + 0.23250000039115548, + 3, + 0.1049999997485429 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.20000000018626451, + 0.2549999998882413, + 3, + 0.11000000010244548 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.20000000018626451, + 0.27750000008381903, + 3, + 0.11499999975785613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 3, + 0.12000000011175871 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20000000018626451, + 0.31799999973736703, + 3, + 0.12399999983608723 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.20000000018626451, + 0.3359999998938292, + 3, + 0.12799999956041574 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20000000018626451, + 0.3540000000502914, + 3, + 0.1319999999832362 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.20000000018626451, + 0.3720000002067536, + 3, + 0.1359999997075647 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.20000000018626451, + 0.3900000003632158, + 3, + 0.14000000013038516 + ] + } + } + }, + "131304": { + "Id": 131304, + "Name": "倾诉之肉身", + "Desc": "施放战技时,使目标的暴击率提高#1[f1]%,持续#2[i]回合。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 3 + ] + } + } + }, + "131306": { + "Id": 131306, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131307": { + "Id": 131307, + "Name": "荣光之秘", + "Desc": "使用秘技后,下一次战斗星期日首次对我方目标施放技能时,使目标造成的伤害提高#1[i]%,持续#2[i]回合。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Maze.png", + "LevelUpSkillID": [ + 131307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 40 + ], + "PointID": 1313101, + "PointName": "主日渴慕", + "PointDesc": "施放终结技时,若为目标恢复的能量不足#1[i]点,恢复的能量提高至#1[i]点。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 25 + ], + "PointID": 1313102, + "PointName": "崇高拂尘", + "PointDesc": "战斗开始时,星期日恢复#1[i]点能量。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1313103, + "PointName": "掌中安港", + "PointDesc": "施放战技时,解除目标的#1[i]负面效果。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313201, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313202, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1313101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313203, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1313202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1313201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313205, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1313102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313206, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1313205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313207, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1313201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1313103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313209, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1313208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "效果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313210, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1313208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 72.6000000005588, + "DefenceAdd": 3.630000000586733, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 101.64000000059605, + "DefenceAdd": 3.630000000586733, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 3.630000000586733, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 159.72000000067055, + "DefenceAdd": 3.630000000586733, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 3.630000000586733, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 3.630000000586733, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 246.8400000007823, + "DefenceAdd": 3.630000000586733, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1313, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 317, + 310, + 308 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 187 + ], + "LocalCriticalChance": 1 + } + }, + "1314": { + "Name": "翡翠", + "Desc": "星际和平公司「战略投资部」的高级干部,「石心十人」之一,基石为「典贷翡翠」。\\n冷艳优雅的放贷人,善于洞悉人心,有着名为「慈玉典押」的个人爱好。\\n愿意为获取高价值的事物耐心等待,也擅长从看似一无所有的客户身上榨取价值。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jade", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 131401, + "Name": "无私?亦可交割", + "Desc": "翡翠天赋的追加攻击伤害提高#1[i]%,持有【收债人】状态的角色施放攻击后击中敌方目标数量等于2/1名时,翡翠额外获得#2[i]/#3[i]点充能。", + "ParamList": [ + 0.3200000002980232, + 1, + 2 + ] + }, + "2": { + "Id": 131402, + "Name": "道德?谨此核押", + "Desc": "【当品】叠加至#1[i]层时,翡翠暴击率提高#2[i]%。", + "ParamList": [ + 15, + 0.18000000016763806 + ] + }, + "3": { + "Id": 131403, + "Name": "坦率?只待典当", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 131404, + "Name": "真诚?唯凭认沽", + "Desc": "施放终结技时,使翡翠造成的伤害无视敌方目标#1[i]%的防御力,持续#2[i]回合。", + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "5": { + "Id": 131405, + "Name": "希冀?已然绝卖", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 131406, + "Name": "公平?仍须保荐", + "Desc": "场上有【收债人】状态的角色时,翡翠量子属性抗性穿透提高#1[i]%,同时翡翠获得【收债人】状态。", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "131401": { + "Id": 131401, + "Name": "挞楚抽薪", + "Desc": "对指定敌方单体造成等同于翡翠#1[i]%攻击力的量子属性伤害,同时对其相邻目标造成等同于翡翠#2[i]%攻击力的量子属性伤害。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5400000005029142, + 0.18000000016763806 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6300000005867332, + 0.21000000019557774 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523, + 0.24000000022351742 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8100000007543713, + 0.2700000002514571 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9900000009220093, + 0.33000000030733645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 0.3600000003352761 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1700000001583248, + 0.3900000003632158 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2600000002421439, + 0.4200000003911555 + ] + } + } + }, + "131402": { + "Id": 131402, + "Name": "恣肆吞併的担保", + "Desc": "指定我方单体成为【收债人】,使其速度提高#1[i]点,持续#4[i]回合。\\n【收债人】施放攻击后,对每个击中的敌方目标造成1次等同于翡翠#3[i]%攻击力的量子属性附加伤害,并消耗【收债人】生命上限#2[i]%的生命值,若当前生命值不足,当前生命值降至1点。\\n若翡翠成为【收债人】时,无法获得速度提高效果且攻击后不消耗生命值。\\n当场上存在【收债人】时,翡翠无法施放战技,翡翠每回合开始时【收债人】状态持续回合数减1。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1500000001396984, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1600000001490116, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 30, + 0.02000000001862645, + 0.17000000015832484, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 30, + 0.02000000001862645, + 0.18000000016763806, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1900000001769513, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 30, + 0.02000000001862645, + 0.20000000018626451, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 30, + 0.02000000001862645, + 0.21250000037252903, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2249999998603016, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 30, + 0.02000000001862645, + 0.23750000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 30, + 0.02000000001862645, + 0.25000000023283064, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 30, + 0.02000000001862645, + 0.26000000024214387, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2700000002514571, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2800000002607703, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 30, + 0.02000000001862645, + 0.29000000027008355, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 30, + 0.02000000001862645, + 0.3000000002793968, + 3 + ] + } + } + }, + "131403": { + "Id": 131403, + "Name": "堕此欲渊,立此狱契", + "Desc": "对敌方全体造成等同于翡翠#3[i]%攻击力的量子属性伤害。同时使翡翠天赋的追加攻击获得强化,追加攻击造成的伤害倍率提高#1[i]%。强化效果可生效#2[i]次。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 2, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 2, + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 2, + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 2, + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 2, + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 2, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 2, + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 2, + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 2, + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 2, + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 2, + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 2, + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 2, + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 2, + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 2, + 3 + ] + } + } + }, + "131404": { + "Id": 131404, + "Name": "剔烁之牙", + "Desc": "翡翠或成为【收债人】的目标施放攻击后,每击中1名敌方目标均可获得1点充能。当充能到达#3[i]点后,消耗#3[i]点充能,发动1次追加攻击,对敌方全体目标造成等同于翡翠#5[i]%攻击力的量子属性伤害,本次追加攻击无法获得充能。\\n翡翠发动天赋的追加攻击时立即获得#4[i]层【当品】,每层【当品】使暴击伤害提高#1[f1]%,最多叠加#2[i]层。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.011999999871477485, + 50, + 8, + 5, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.013199999928474426, + 50, + 8, + 5, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.014399999985471368, + 50, + 8, + 5, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.01560000004246831, + 50, + 8, + 5, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.01680000009946525, + 50, + 8, + 5, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.01799999945797026, + 50, + 8, + 5, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.01949999970383942, + 50, + 8, + 5, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.02099999994970858, + 50, + 8, + 5, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.02250000019557774, + 50, + 8, + 5, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.02399999974295497, + 50, + 8, + 5, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.02519999979995191, + 50, + 8, + 5, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.026399999856948853, + 50, + 8, + 5, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.027599999913945794, + 50, + 8, + 5, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.028799999970942736, + 50, + 8, + 5, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.030000000027939677, + 50, + 8, + 5, + 1.5000000004656613 + ] + } + } + }, + "131406": { + "Id": 131406, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131407": { + "Id": 131407, + "Name": "猎手的视界", + "Desc": "使用秘技后使一定区域内的敌人陷入#1[i]秒【盲从】。【盲从】状态下敌人不会主动攻击我方目标。主动攻击陷入【盲从】的敌人进入战斗时,使所有处于【盲从】状态的敌人同时进入战斗。进入战斗后对敌方全体造成等同于翡翠#2[i]%攻击力的量子属性伤害,立即获得#3[i]层【当品】。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 15 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Maze.png", + "LevelUpSkillID": [ + 131407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 1 + ], + "PointID": 1314101, + "PointName": "逆回购", + "PointDesc": "在敌方目标进入战斗时,翡翠获得#2[i]层【当品】。处于【收债人】状态的角色回合开始时,额外获得#1[i]层【当品】。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1314102, + "PointName": "折牙票", + "PointDesc": "战斗开始时,翡翠的行动提前#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.004999999655410647 + ], + "PointID": 1314103, + "PointName": "绝当品", + "PointDesc": "天赋中每层【当品】额外使翡翠的攻击力提高#1[f1]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314201, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1314101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314203, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1314202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1314202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314205, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1314102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314206, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1314205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314207, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1314205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1314103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314209, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1314103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314210, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "量子属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1314, + "Set4IDList": [ + 108, + 115, + 102 + ], + "Set2IDList": [ + 313, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1315": { + "Name": "波提欧", + "Desc": "浪迹银河的改造人牛仔,极度乐观、放荡不羁。\\n身为「巡海游侠」的一员,为惩奸除恶,可以无所不用其极——\\n高调行事的背后,渴望以此引起复仇对象「星际和平公司」的注意。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "boothill", + "SPNeed": 115, + "BaseType": "Rogue", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 131501, + "Name": "扬尘孤星", + "Desc": "战斗开始时,获得1层【优势口袋】。波提欧造成伤害时无视敌方目标#1[i]%的防御力。", + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "Id": 131502, + "Name": "里程碑贩子", + "Desc": "处于【绝命对峙】并获得【优势口袋】时,恢复#1[i]个战技点,并且击破特攻提高#2[i]%,持续#3[i]回合。该效果单个回合内不可重复触发,在获得溢出的【优势口袋】时也会触发。", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 131503, + "Name": "大理石果园守卫", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 131504, + "Name": "冷肉名厨", + "Desc": "处于【绝命对峙】的敌方目标受到波提欧攻击时,受到的伤害额外提高#1[i]%。波提欧受到处于【绝命对峙】的敌方目标的攻击时,受到的伤害提高效果降低#2[i]%。", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "5": { + "Id": 131505, + "Name": "树桩演说家", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 131506, + "Name": "撬棍旅馆的浣熊", + "Desc": "触发天赋造成击破伤害时,对目标额外造成等同于原伤害倍率#1[i]%击破伤害,对相邻目标额外造成等同于原伤害倍率#2[i]%击破伤害。", + "ParamList": [ + 0.40000000037252903, + 0.7000000006519258 + ] + } + }, + "Skills": { + "131501": { + "Id": 131501, + "Name": "蹄铁裂颅", + "Desc": "对指定敌方单体造成等同于波提欧#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131502": { + "Id": 131502, + "Name": "炽砾舞者的探戈", + "Desc": "使指定敌方单体及自身进入【绝命对峙】状态,波提欧普攻获得强化且无法施放战技,持续#3[i]回合,波提欧每回合开始时持续回合数减1。\\n处于【绝命对峙】的敌方目标陷入嘲讽状态。该目标/波提欧受到对方攻击时,受到的伤害提高#1[i]%/#2[i]%。\\n该目标被消灭或弱点被击破后,波提欧均可获得1层【优势口袋】,随后解除【绝命对峙】。\\n该战技无法恢复能量。施放该战技后,本回合不会结束。", + "Type": "BPSkill", + "Tag": "Impair", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 0.1500000001396984, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 0.1500000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 0.1500000001396984, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 0.1500000001396984, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 0.1500000001396984, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 0.1500000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 0.1500000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 0.1500000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 0.1500000001396984, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 0.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 0.1500000001396984, + 2 + ] + } + } + }, + "131503": { + "Id": 131503, + "Name": "尘魔舞者的日落秀", + "Desc": "为指定敌方单体添加物理弱点,持续#3[i]回合。\\n对该目标造成等同于波提欧#1[i]%攻击力的物理属性伤害,并使其行动延后#2[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406, + 0.31000000028871, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523, + 0.3200000002980232, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564, + 0.33000000030733645, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253, + 0.3400000003166497, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645, + 0.3500000003259629, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529, + 0.3625000005122274, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935, + 0.375, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058, + 0.3875000001862645, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.40000000037252903, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012, + 0.41000000038184226, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023, + 0.4200000003911555, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035, + 0.4300000004004687, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464, + 0.44000000040978193, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058, + 0.45000000041909516, + 2 + ] + } + } + }, + "131504": { + "Id": 131504, + "Name": "轮中五豆", + "Desc": "每层【优势口袋】使强化普攻的削韧值提高#4[i]%,最多叠加#5[i]层。\\n施放强化普攻期间,若目标处于弱点击破状态,基于【优势口袋】层数,对目标造成等同于波提欧#1[i]%/#2[i]%/#3[i]%物理属性击破伤害的击破伤害,该伤害计入的韧性上限不超过普攻【蹄铁裂颅】基础削韧值的#6[i]倍。\\n战斗胜利后,波提欧能够将【优势口袋】保留至下一次战斗中。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 0.6000000005587935, + 0.8500000007916242, + 0.5000000004656613, + 3, + 16 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 0.6600000006146729, + 0.9350000005215406, + 0.5000000004656613, + 3, + 16 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 0.7200000006705523, + 1.0200000000186265, + 0.5000000004656613, + 3, + 16 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 0.7800000007264316, + 1.104999999748543, + 0.5000000004656613, + 3, + 16 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 0.840000000782311, + 1.1900000001769513, + 0.5000000004656613, + 3, + 16 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 0.9000000008381903, + 1.2749999999068677, + 0.5000000004656613, + 3, + 16 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 0.9750000005587935, + 1.3812500007916242, + 0.5000000004656613, + 3, + 16 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 1.0500000000465661, + 1.4875000002793968, + 0.5000000004656613, + 3, + 16 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 1.1249999997671694, + 1.5937500011641532, + 0.5000000004656613, + 3, + 16 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 1.2000000001862645, + 1.7000000006519258, + 0.5000000004656613, + 3, + 16 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 1.2600000002421439, + 1.7850000003818423, + 0.5000000004656613, + 3, + 16 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 1.3200000002980232, + 1.8700000008102506, + 0.5000000004656613, + 3, + 16 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 1.3800000003539026, + 1.955000000540167, + 0.5000000004656613, + 3, + 16 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 1.440000000409782, + 2.040000000037253, + 0.5000000004656613, + 3, + 16 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 1.5000000004656613, + 2.1249999997671694, + 0.5000000004656613, + 3, + 16 + ] + } + } + }, + "131506": { + "Id": 131506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131507": { + "Id": 131507, + "Name": "三乘九的微笑", + "Desc": "使用秘技后,下一次战斗首次施放战技时,为目标添加与终结技相同的物理弱点,持续#1[i]回合。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + }, + "131508": { + "Id": 131508, + "Name": "击锤连弩", + "Desc": "对指定敌方单体造成等同于波提欧#1[i]%攻击力的物理属性伤害。\\n强化普攻无法恢复战技点,且仅能以处于【绝命对峙】的敌方目标为目标。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5400000005029142 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7600000007078052 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9800000009126961 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.4200000003911555 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.6400000005960464 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.8600000008009374 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.080000000074506 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Maze.png", + "LevelUpSkillID": [ + 131507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 0.5000000004656613, + 1.5000000004656613 + ], + "PointID": 1315101, + "PointName": "幽灵装填", + "PointDesc": "使自身暴击率/暴击伤害提高,提高数值等同于击破特攻的#1[i]%/#3[i]%,最多使暴击率/暴击伤害提高#2[i]%/#4[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1315102, + "PointName": "蛇之上行", + "PointDesc": "波提欧处于【绝命对峙】时,受到未处于【绝命对峙】目标的伤害降低#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1315103, + "PointName": "抵近射击", + "PointDesc": "处于【绝命对峙】并获得【优势口袋】时,恢复#1[i]点能量。该效果在获得溢出的【优势口袋】时也会触发。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315201, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1315101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315203, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1315202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315205, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1315102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315206, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1315205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315207, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1315103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315209, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1315208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315210, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1315208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "击破特攻" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1315, + "Set4IDList": [ + 111, + 119, + 102 + ], + "Set2IDList": [ + 307, + 316, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase" + ], + "ScoreRankList": [ + 280, + 226 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1317": { + "Name": "乱破", + "Desc": "如丑时三刻的闪光弹一般现身在匹诺康尼,以忍者自居,将世间一切归因于「忍法」的奇妙少女。\\n贯彻吟诵忍•真言、绘制缭乱•忍符、修习忍•法帖的「忍•道」——即说唱,涂鸦,漫画——苦炼自身意志,驰骋星间行侠仗义。\\n身为「巡海游侠」的一员,始终追猎着名为「御猿•邪忍」的恶党,直至银河尽头。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "rappa", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 131701, + "Name": "常世道返三途无六钱", + "Desc": "施放终结技进入【结印】状态期间,乱破造成的伤害无视目标#1[i]%的防御,退出【结印】状态后恢复#2[i]点能量。", + "ParamList": [ + 0.1500000001396984, + 20 + ] + }, + "2": { + "Id": 131702, + "Name": "俳句暗记有识无挂碍", + "Desc": "强化普攻的前2段攻击对指定敌方单体的削韧值提高#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Id": 131703, + "Name": "堂塔伽蓝末法无间狱", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 131704, + "Name": "经年劣化任侠无忍义", + "Desc": "【结印】状态期间,我方全体速度提高#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 131705, + "Name": "一心不乱鸣弦无徒矢", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 131706, + "Name": "破邪显正应报无慈悲", + "Desc": "战斗开始时乱破获得#1[i]点天赋效果的充能,且充能上限增加#2[i]点。发动【忍具•降魔花弁】第3段攻击后获得#1[i]点充能。", + "ParamList": [ + 5, + 5 + ] + } + }, + "Skills": { + "131701": { + "Id": 131701, + "Name": "忍术•七转八起", + "Desc": "对指定敌方单体造成等同于乱破#1[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131702": { + "Id": 131702, + "Name": "忍切•初志贯彻", + "Desc": "对敌方全体造成等同于乱破#1[i]%攻击力的虚数属性伤害。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613 + ] + } + } + }, + "131703": { + "Id": 131703, + "Name": "忍道•极•爱死天流", + "Desc": "进入【结印】状态,立即获得1个额外回合并获得#3[i]点【彩墨】,同时弱点击破效率提高#1[i]%,击破特攻提高#2[i]%。\\n【结印】状态下普攻获得强化且无法施放战技和终结技,施放强化普攻后会消耗1点【彩墨】,耗尽时退出【结印】状态。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 0.12000000011175871, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 0.14000000013038516, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 0.1600000001490116, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 0.18000000016763806, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 0.2249999998603016, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 0.27499999990686774, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 0.3200000002980232, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 0.3400000003166497, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 0.3600000003352761, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 0.3800000003539026, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903, + 3 + ] + } + } + }, + "131704": { + "Id": 131704, + "Name": "忍•科学•堪忍袋", + "Desc": "每当敌方目标的弱点被击破时,乱破获得1点充能,最多拥有#1[i]点充能。乱破下一次发动【忍具•降魔花弁】的第3段攻击时,额外对敌方全体造成等同于乱破#3[i]%虚数属性击破伤害的击破伤害,该伤害可无视弱点属性削减#4[i]点韧性,并消耗所有充能,每点充能使本次击破伤害倍率提高#5[i]%,并使无视弱点属性的削韧值提高#6[i]点。\\n击破弱点时,触发虚数属性的弱点击破效果。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 6, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0, + 0.3000000002793968, + 2, + 0.25000000023283064, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 10, + 0, + 0.33000000030733645, + 2, + 0.27499999990686774, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 10, + 0, + 0.3600000003352761, + 2, + 0.3000000002793968, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 10, + 0, + 0.3900000003632158, + 2, + 0.32499999995343387, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 10, + 0, + 0.4200000003911555, + 2, + 0.3500000003259629, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 10, + 0, + 0.45000000041909516, + 2, + 0.375, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 10, + 0, + 0.4875000002793968, + 2, + 0.4062500004656613, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 10, + 0, + 0.5250000001396984, + 2, + 0.43750000023283064, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 10, + 0, + 0.5625000006984919, + 2, + 0.46875000069849193, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10, + 0, + 0.6000000005587935, + 2, + 0.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10, + 0, + 0.6300000005867332, + 2, + 0.5250000001396984, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 10, + 0, + 0.6600000006146729, + 2, + 0.5500000005122274, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 10, + 0, + 0.6900000006426126, + 2, + 0.5750000001862645, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 10, + 0, + 0.7200000006705523, + 2, + 0.6000000005587935, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 10, + 0, + 0.7500000006984919, + 2, + 0.6250000002328306, + 1 + ] + } + } + }, + "131706": { + "Id": 131706, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131707": { + "Id": 131707, + "Name": "忍步•血义理", + "Desc": "使用秘技后进入持续#1[i]秒的【涂鸦】状态。【涂鸦】状态下会快速向前移动一段距离并攻击接触到的敌人,在快速移动的过程中可抵挡敌人的所有攻击。【涂鸦】状态下施放攻击可以提前结束持续时间,主动攻击敌人进入战斗后,对每个敌方目标造成#5[i]点无视弱点属性的削韧,以及等同于乱破#2[i]%虚数属性击破伤害的击破伤害,并对其相邻目标造成等同于乱破#3[i]%虚数属性击破伤害的击破伤害,同时使自身获得#4[i]点能量。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 2, + 1.800000000745058, + 10, + 30 + ] + } + } + }, + "131708": { + "Id": 131708, + "Name": "忍具•降魔花弁", + "Desc": "发动【忍具•降魔花弁】,前2段攻击对指定敌方单体造成等同于乱破#1[i]%攻击力的虚数属性伤害,并对其相邻目标造成等同于乱破#2[i]%攻击力的虚数属性伤害,第3段对敌方全体造成等同于乱破#3[i]%攻击力的虚数属性伤害。\\n强化普攻无法恢复战技点,攻击没有虚数弱点的敌人也可以削减韧性,效果等同于原削韧值的#4[i]%。击破弱点时,触发虚数属性的弱点击破效果。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497, + 0.6800000006332994, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026, + 0.7600000007078052, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.840000000782311, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084, + 0.9200000008568168, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142, + 1.0800000000745058, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671, + 1.1600000001490116, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742, + 1.2400000002235174, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 1.3200000002980232, + 0.5000000004656613 + ] + } + } + }, + "131710": { + "Id": 131710, + "Name": "忍具•降魔花弁", + "Desc": "", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729 + ] + } + } + }, + "131712": { + "Id": 131712, + "Name": "忍具•降魔花弁", + "Desc": "", + "Type": "Normal", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232 + ] + } + } + }, + "131718": { + "Id": 131718, + "Name": "忍具•降魔花弁", + "Desc": "发动【忍具•降魔花弁】,前2段攻击对指定敌方单体造成等同于乱破#1[i]%攻击力的虚数属性伤害,并对其相邻目标造成等同于乱破#2[i]%攻击力的虚数属性伤害,第3段对敌方全体造成等同于乱破#3[i]%攻击力的虚数属性伤害。\\n强化普攻无法恢复战技点,攻击没有虚数弱点的敌人也可以削减韧性,效果等同于原削韧值的#4[i]%。击破弱点时,触发虚数属性的弱点击破效果。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 75, + 0, + 45 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497, + 0.6800000006332994, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026, + 0.7600000007078052, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.840000000782311, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084, + 0.9200000008568168, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142, + 1.0800000000745058, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671, + 1.1600000001490116, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742, + 1.2400000002235174, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 1.3200000002980232, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Maze.png", + "LevelUpSkillID": [ + 131707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 1 + ], + "PointID": 1317101, + "PointName": "忍法帖•魔天", + "PointDesc": "精英级别及以上的敌方目标的弱点被击破时,乱破额外获得#2[i]点充能,并恢复#1[i]点能量。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935 + ], + "PointID": 1317102, + "PointName": "忍法帖•海鸣", + "PointDesc": "【结印】状态期间,乱破施放强化普攻对处于弱点击破状态下的敌方目标造成伤害后,会将本次伤害的削韧值转化为1次#1[i]%超击破伤害。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.02000000001862645, + 2400, + 0.010000000009313226, + 0.0800000000745058, + 2 + ], + "PointID": 1317103, + "PointName": "忍法帖•枯叶", + "PointDesc": "敌方目标的弱点被击破时,受到的击破伤害提高#1[i]%,若乱破当前攻击力高于#2[i]点,每超过100点攻击力可使该数值额外提高#3[i]%,最多额外提高#4[i]%。效果持续#5[i]回合。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317202, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1317101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1317202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317204, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1317202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1317102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317206, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1317205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1317205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317208, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1317103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317209, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1317103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 97.6800000006333, + "AttackAdd": 4.884000000543892, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 136.75200000056066, + "AttackAdd": 4.884000000543892, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 175.824000000488, + "AttackAdd": 4.884000000543892, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 214.89600000041537, + "AttackAdd": 4.884000000543892, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 253.96800000034273, + "AttackAdd": 4.884000000543892, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 293.04000000003725, + "AttackAdd": 4.884000000543892, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 332.1119999999646, + "AttackAdd": 4.884000000543892, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1317, + "Set4IDList": [ + 119, + 111, + 118 + ], + "Set2IDList": [ + 307, + 316, + 301 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 246, + 189 + ] + } + }, + "1401": { + "Name": "大黑塔", + "Desc": "尊贵的「天才俱乐部」#83,人类,女性,年轻,貌美,可爱。\\n传说她隐居在银河边境,几乎不踏出其间,想必此次现身——\\n一定是为了某个不得不亲自出马的问题吧?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "theherta", + "SPNeed": 220, + "BaseType": "Mage", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 140101, + "Name": "群星岸落之夜", + "Desc": "强化战技计算【解读】层数时,额外计算主目标及相邻目标中层数最高的1个目标当前【解读】层数的#1[i]%。施放强化战技重置【解读】时,改为将层数重置为#2[i]层。", + "ParamList": [ + 0.5000000004656613, + 15 + ] + }, + "2": { + "Id": 140102, + "Name": "穿过锁孔之风", + "Desc": "大黑塔进入战斗和施放终结技后,额外获得1层【灵感】。施放强化战技后,大黑塔的下一次行动提前#1[i]%。", + "ParamList": [ + 0.3500000003259629, + 42, + 0.25000000023283064 + ] + }, + "3": { + "Id": 140103, + "Name": "进入盛夏之门", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 140104, + "Name": "第十六把钥匙", + "Desc": "队伍中的「智识」命途角色的速度提高#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 140105, + "Name": "苦药似的真理", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 140106, + "Name": "甜饵般的答案", + "Desc": "大黑塔的冰属性抗性穿透提高#4[i]%,当场上敌方目标数量等于3或以上/2/1名时,终结技的伤害倍率提高#1[i]%/#2[i]%/#3[i]%。", + "ParamList": [ + 1.400000000372529, + 2.5000000004656613, + 4, + 0.20000000018626451 + ] + } + }, + "Skills": { + "140101": { + "Id": 140101, + "Name": "开窍了吗", + "Desc": "对指定敌方单体造成等同于大黑塔#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 3, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 3, + 1, + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 3, + 1, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 3, + 1, + 0.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 3, + 1, + 0.3000000002793968 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 3, + 1, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 3, + 1, + 0.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 3, + 1, + 0.3000000002793968 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 3, + 1, + 0.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 3, + 1, + 0.3000000002793968 + ] + } + } + }, + "140102": { + "Id": 140102, + "Name": "格局打开", + "Desc": "对指定敌方单体造成等同于大黑塔#1[i]%攻击力的冰属性伤害并施加#2[i]层【解读】。对本次战技命中过的目标及其相邻目标造成等同于大黑塔#1[i]%攻击力的冰属性伤害,该效果可重复2次。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 45, + 15, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 1 + ] + } + } + }, + "140103": { + "Id": 140103, + "Name": "早说了是魔法吧", + "Desc": "将敌方全体的【解读】层数重新排序,较高层数的【解读】将优先转移到精英级别及以上的目标,并对敌方全体造成等同于大黑塔#1[i]%攻击力的冰属性伤害。终结技施放时,使大黑塔攻击力提高#4[i]%,持续#5[i]回合,施放后使大黑塔立即行动,并获得1层【灵感】。【灵感】最多持有#6[i]层,持有【灵感】时,战技强化为【我有一个大胆的想法】。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 1, + 0.40000000037252903, + 3, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 2, + 1, + 0.44000000040978193, + 3, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 2, + 1, + 0.48000000044703484, + 3, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 2, + 1, + 0.5200000004842877, + 3, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 2, + 1, + 0.5600000005215406, + 3, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 2, + 1, + 0.6000000005587935, + 3, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 2, + 1, + 0.6500000006053597, + 3, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 2, + 1, + 0.7000000006519258, + 3, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 2, + 1, + 0.7500000006984919, + 3, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 2, + 1, + 0.8000000007450581, + 3, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 2, + 1, + 0.840000000782311, + 3, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 2, + 1, + 0.8800000008195639, + 3, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 2, + 1, + 0.9200000008568168, + 3, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 2, + 1, + 0.9600000008940697, + 3, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 2, + 1, + 1, + 3, + 4 + ] + } + } + }, + "140104": { + "Id": 140104, + "Name": "拿来吧你", + "Desc": "敌方目标进入战斗时,大黑塔对其施加1层【解读】。每个波次开始时,对一个随机敌方目标施加#6[i]层【解读】,优先施加给精英级别及以上的目标。强化战技的主目标持有【解读】时,造成的伤害倍率提高,每层对主目标/其他目标提高#1[f1]%/#2[f1]%,若队伍中的「智识」命途角色大于等于2名,每层额外对主目标/其他目标提高#1[f1]%/#2[f1]%。【解读】最多可叠加#3[i]层,使用强化战技时,将主目标的【解读】重置为1层。敌方目标离场或被任意单位消灭后,【解读】会被转移,优先转移到精英级别及以上的目标。", + "Type": null, + "Tag": "Enhance", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 0.02000000001862645, + 42, + 1, + 42, + 25 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04399999976158142, + 0.02199999988079071, + 42, + 1, + 42, + 25 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04799999948590994, + 0.02399999974295497, + 42, + 1, + 42, + 25 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.05199999990873039, + 0.02599999960511923, + 42, + 1, + 42, + 25 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.055999999633058906, + 0.027999999467283487, + 42, + 1, + 42, + 25 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.060000000055879354, + 0.030000000027939677, + 42, + 1, + 42, + 25 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06499999971129, + 0.032500000204890966, + 42, + 1, + 42, + 25 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.07000000006519258, + 0.034999999683350325, + 42, + 1, + 42, + 25 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07499999972060323, + 0.037499999860301614, + 42, + 1, + 42, + 25 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529, + 42, + 1, + 42, + 25 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.08399999979883432, + 0.04199999989941716, + 42, + 1, + 42, + 25 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.08799999952316284, + 0.04399999976158142, + 42, + 1, + 42, + 25 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.09199999994598329, + 0.04599999962374568, + 42, + 1, + 42, + 25 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.09599999967031181, + 0.04799999948590994, + 42, + 1, + 42, + 25 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.10000000009313226, + 0.05000000004656613, + 42, + 1, + 42, + 25 + ] + } + } + }, + "140106": { + "Id": 140106, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140107": { + "Id": 140107, + "Name": "看看好看的", + "Desc": "使用秘技后,下一次战斗开始时大黑塔攻击力提高#1[i]%,持续#2[i]回合。\\n若当前场景存在普通战利品,使用秘技后标记最多#3[i]个普通战利品的位置。\\n在模拟宇宙、差分宇宙中使用秘技进入战斗后,每个波次开始时对精英级别以下的敌方目标造成等同于目标#4[i]%生命上限的真实伤害,对精英级别及以上的目标造成等同于目标#5[i]%生命上限的真实伤害。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 2, + 3, + 0.9900000009220093, + 0.3000000002793968, + 25 + ] + } + } + }, + "140109": { + "Id": 140109, + "Name": "我有一个大胆的想法", + "Desc": "消耗1层【灵感】,对指定敌方单体造成等同于大黑塔#1[i]%攻击力的冰属性伤害并施加#2[i]层【解读】。对本次战技中被击中过的目标及其相邻目标造成等同于大黑塔#1[i]%攻击力的冰属性伤害,重复2次,最后,对所有敌方目标造成等同于大黑塔#3[i]%攻击力的冰属性伤害。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 15, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1, + 0.22000000020489097 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1, + 0.24000000022351742 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1, + 0.26000000024214387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1, + 0.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1, + 0.32499999995343387 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1, + 0.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1, + 0.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1, + 0.44000000040978193 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1, + 0.4600000004284084 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1, + 0.48000000044703484 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Maze.png", + "LevelUpSkillID": [ + 140107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.5000000004656613 + ], + "PointID": 1401101, + "PointName": "冷漠的诚实", + "PointDesc": "我方目标攻击时,对被击中的敌方目标施加1层【解读】。攻击后,本次攻击每击中1个目标就使大黑塔固定恢复#1[i]点能量,最多计算5个目标。施放强化战技时,若主目标的【解读】层数达到42,使大黑塔造成的伤害提高#2[i]%,持续到本次攻击结束。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 3, + 1, + 2 + ], + "PointID": 1401102, + "PointName": "视界外来信", + "PointDesc": "进入战斗时,若队伍中的「智识」命途角色大于等于2名,使我方全体暴击伤害提高#1[i]%,行迹【冷漠的诚实】计算击中目标数时至少计算#2[i]个目标,攻击后对被击中的敌方目标中【解读】层数最高的目标施加#3[i]层【解读】,若攻击者为「智识」命途角色则额外施加#4[i]层【解读】。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.010000000009313226, + 99 + ], + "PointID": 1401103, + "PointName": "饥饿的地景", + "PointDesc": "敌方目标每被施加1层【解读】,大黑塔获得1层【谜底】,最多叠加#2[i]层。施放终结技时,每持有1层【谜底】,使本次终结技的伤害倍率提高#1[f1]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401201, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1401101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401203, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1401202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401204, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1401202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401205, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1401102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401206, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1401205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401207, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1401205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "冰属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401208, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1401103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401209, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1401103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401210, + "PointName": "伤害强化•冰", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "冰属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1401, + "Set4IDList": [ + 122, + 104, + 102 + ], + "Set2IDList": [ + 314, + 309, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1402": { + "Name": "阿格莱雅", + "Desc": "在那黎明照拂的圣城,织者抚弄金丝,连缀命运。\\n背负「浪漫」火种的黄金裔,召集世间英雄,带领他们再度踏上漫长的征程\\n——击落众神,归还神火,予以几近覆灭的翁法罗斯新生。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "aglaea", + "SPNeed": 350, + "BaseType": "Memory", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 140201, + "Name": "飘曳金星的行列", + "Desc": "处于【间隙织线】状态下的敌人受到的伤害提高#1[i]%,阿格莱雅或衣匠攻击该目标后额外恢复#2[i]点能量。", + "ParamList": [ + 0.1500000001396984, + 20 + ] + }, + "2": { + "Id": 140202, + "Name": "行舟命运的眼睑", + "Desc": "当阿格莱雅或衣匠行动时,使阿格莱雅与衣匠造成的伤害无视目标#1[i]%的防御力,该效果最多叠加#2[i]层,持续至除自身与衣匠以外的任意单位主动施放技能时。", + "ParamList": [ + 0.14000000013038516, + 3 + ] + }, + "3": { + "Id": 140203, + "Name": "华珠凝滞的礼物", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级;忆灵天赋等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 140204, + "Name": "大理石内的闪烁", + "Desc": "忆灵天赋的速度提高效果层数上限提高#1[i]层。阿格莱雅施放攻击后也能使衣匠获得忆灵天赋的速度提高效果。", + "ParamList": [ + 1, + 2 + ] + }, + "5": { + "Id": 140205, + "Name": "漆黑苦难的织者", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级;忆灵技等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 140206, + "Name": "盈虚无常的金线", + "Desc": "当阿格莱雅处于【至高之姿】状态时,自身与衣匠的雷属性抗性穿透提高#1[i]%,当阿格莱雅或衣匠的速度高于160/240/320点时,其造成的连携攻击伤害提高#2[i]%/#3[i]%/#4[i]%。", + "ParamList": [ + 0.20000000018626451, + 0.10000000009313226, + 0.3000000002793968, + 0.6000000005587935 + ] + } + }, + "Skills": { + "140201": { + "Id": 140201, + "Name": "刺纹之蜜", + "Desc": "对指定敌方单体造成等同于阿格莱雅#1[i]%攻击力的雷属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1 + ] + } + } + }, + "140202": { + "Id": 140202, + "Name": "高举吧,升华的名讳", + "Desc": "为衣匠回复等同于其#1[i]%生命上限的生命值。若衣匠不在场,则召唤忆灵衣匠,并使自身立即行动。", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 0, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 0, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 0, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 0, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 0, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 0, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 0, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 0, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 0, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 0, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 0, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 0, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 0, + 5 + ] + } + } + }, + "140203": { + "Id": 140203, + "Name": "共舞吧,命定的衣匠", + "Desc": "召唤忆灵衣匠,若衣匠已在场,则使其生命值回复至上限。阿格莱雅进入【至高之姿】状态并使自身立即行动。\\n【至高之姿】状态下,阿格莱雅获得衣匠忆灵天赋的速度提高层数,每层使自身速度提高#1[f1]%,普通攻击强化为【孤锋千吻】并且无法施放战技,衣匠免疫控制类负面状态。\\n行动序列上出现倒计时,倒计时固定拥有#4[i]速度,倒计时存在期间再次施放终结技将重置倒计时,回合开始时使衣匠自毁。衣匠消失时阿格莱雅解除【至高之姿】状态。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0, + 0, + 100, + 0, + 0 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1049999997485429, + 0, + 0, + 100, + 0, + 0 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.11000000010244548, + 0, + 0, + 100, + 0, + 0 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.11499999975785613, + 0, + 0, + 100, + 0, + 0 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.12000000011175871, + 0, + 0, + 100, + 0, + 0 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12499999976716936, + 0, + 0, + 100, + 0, + 0 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.13125000055879354, + 0, + 0, + 100, + 0, + 0 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.13749999995343387, + 0, + 0, + 100, + 0, + 0 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.14375000074505806, + 0, + 0, + 100, + 0, + 0 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1500000001396984, + 0, + 0, + 100, + 0, + 0 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.15499999979510903, + 0, + 0, + 100, + 0, + 0 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1600000001490116, + 0, + 0, + 100, + 0, + 0 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.16499999980442226, + 0, + 0, + 100, + 0, + 0 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.17000000015832484, + 0, + 0, + 100, + 0, + 0 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.17499999981373549, + 0, + 0, + 100, + 0, + 0 + ] + } + } + }, + "140204": { + "Id": 140204, + "Name": "金玫之指", + "Desc": "忆灵衣匠初始拥有等同于阿格莱雅#4[i]%速度的速度以及等同于阿格莱雅#5[i]%生命上限+#6[i]的生命上限。衣匠在场时,阿格莱雅施放攻击时使目标陷入【间隙织线】状态,攻击处于【间隙织线】状态下的敌人后,额外造成等同于阿格莱雅攻击力#1[i]%的雷属性附加伤害。【间隙织线】仅对最新被施加的目标生效。", + "Type": null, + "Tag": "Enhance", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 0, + 0, + 0.3500000003259629, + 0.44000000040978193, + 180 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.13799999956972897, + 0, + 0, + 0.3500000003259629, + 0.4675000002607703, + 247.50000000046566 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.15599999972619116, + 0, + 0, + 0.3500000003259629, + 0.4950000001117587, + 315 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17399999988265336, + 0, + 0, + 0.3500000003259629, + 0.522500000661239, + 382.50000000046566 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.19200000003911555, + 0, + 0, + 0.3500000003259629, + 0.5500000005122274, + 450 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.21000000019557774, + 0, + 0, + 0.3500000003259629, + 0.5720000003930181, + 504 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.23250000039115548, + 0, + 0, + 0.3500000003259629, + 0.5940000002738088, + 558 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2549999998882413, + 0, + 0, + 0.3500000003259629, + 0.6160000001545995, + 612 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.27750000008381903, + 0, + 0, + 0.3500000003259629, + 0.6380000000353903, + 666 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0, + 0, + 0.3500000003259629, + 0.6600000006146729, + 720 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31799999973736703, + 0, + 0, + 0.3500000003259629, + 0.6820000004954636, + 774 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3359999998938292, + 0, + 0, + 0.3500000003259629, + 0.7040000003762543, + 828 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3540000000502914, + 0, + 0, + 0.3500000003259629, + 0.726000000257045, + 882 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3720000002067536, + 0, + 0, + 0.3500000003259629, + 0.7480000001378357, + 936 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3900000003632158, + 0, + 0, + 0.3500000003259629, + 0.7700000007171184, + 990 + ] + } + } + }, + "140206": { + "Id": 140206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140207": { + "Id": 140207, + "Name": "披星百裂", + "Desc": "召唤忆灵衣匠并一同向前发起攻击,进入战斗后,恢复#2[i]点能量,并对敌方全体目标造成等同于阿格莱雅#1[i]%攻击力的雷属性伤害,随后使敌方随机目标陷入【间隙织线】状态。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 30 + ] + } + } + }, + "140208": { + "Id": 140208, + "Name": "孤锋千吻", + "Desc": "阿格莱雅与衣匠向目标发起连携攻击,对目标分别造成等同于阿格莱雅#1[f1]%攻击力以及衣匠#3[f1]%攻击力的雷属性伤害,并对相邻目标分别造成等同于阿格莱雅#2[i]%攻击力以及衣匠#4[i]%攻击力的雷属性伤害。\\n【孤锋千吻】无法恢复战技点。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.45000000041909516, + 1, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2000000001862645, + 0.5400000005029142, + 1.2000000001862645, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.400000000372529, + 0.6300000005867332, + 1.400000000372529, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6000000005587935, + 0.7200000006705523, + 1.6000000005587935, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.800000000745058, + 0.8100000007543713, + 1.800000000745058, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.9000000008381903, + 2, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2000000001862645, + 0.9900000009220093, + 2.2000000001862645, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.400000000372529, + 1.0800000000745058, + 2.400000000372529, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6000000005587935, + 1.1700000001583248, + 2.6000000005587935, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.2600000002421439, + 2.800000000745058, + 1.2600000002421439 + ] + } + } + }, + "140209": { + "Id": 140209, + "Name": "高举吧,升华的名讳", + "Desc": "", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Maze.png", + "LevelUpSkillID": [ + 140207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 7.2000000001862645, + 3.6000000005587935 + ], + "PointID": 1402101, + "PointName": "短视之惩", + "PointDesc": "处于【至高之姿】状态时,阿格莱雅与衣匠的攻击力提高,提高数值等同于阿格莱雅速度的#1[i]%+衣匠速度的#2[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1402102, + "PointName": "织运之竭", + "PointDesc": "衣匠消失时,忆灵天赋的速度提高层数最多保留#1[i]层,衣匠再次被召唤时获得对应层数的速度提高效果。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1402103, + "PointName": "飞驰之阳", + "PointDesc": "战斗开始时,若自身能量不足#1[i]%,恢复自身能量至#2[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402201, + "PointName": "伤害强化•雷", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "雷属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1402201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402203, + "PointName": "伤害强化•雷", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1402201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "雷属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1402101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402205, + "PointName": "伤害强化•雷", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1402101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "雷属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1402102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402207, + "PointName": "伤害强化•雷", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1402102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "雷属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1402103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1402208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402210, + "PointName": "伤害强化•雷", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1402209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.06399999978020787, + "Name": "雷属性伤害提高" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "刺纹之陷", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "刺纹之陷", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "刺纹之陷", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "刺纹之陷", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "刺纹之陷", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "刺纹之陷", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "泪水锻造的匠躯", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "泪水锻造的匠躯", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "泪水锻造的匠躯", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "泪水锻造的匠躯", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "泪水锻造的匠躯", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "泪水锻造的匠躯", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "衣匠", + "Icon": "SpriteOutput/ServantIconTeam/11402B.png", + "HPBase": "#6", + "HPInherit": "#5", + "HPSkill": 140204, + "SpeedBase": "0", + "SpeedInherit": "#4", + "SpeedSkill": 140204, + "Aggro": 125, + "Skills": { + "1140201": { + "Name": "刺纹之陷", + "Desc": "对敌方单体造成#1[i]%攻击力的雷属性伤害,对其相邻目标造成#2[i]%攻击力的雷属性伤害。", + "Type": "Servant", + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 0.33000000030733645, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.3959999999497086, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7700000007171184, + 0.46200000029057264, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8800000008195639, + 0.5279999999329448, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9900000009220093, + 0.5940000002738088, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1000000000931323, + 0.6600000006146729, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2100000001955777, + 0.726000000257045, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3200000002980232, + 0.7920000005979091, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4300000004004687, + 0.8580000002402812, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5400000005029142, + 0.9240000005811453, + 1 + ] + } + } + }, + "1140203": { + "Name": "泪水锻造的匠躯", + "Desc": "攻击处于【间隙织线】状态的敌人后,使自身的速度提高#1[i]点,该效果最多叠加#3[i]层。衣匠行动时自动施放【刺纹之陷】,优先攻击处于【间隙织线】状态下的敌人。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 44, + 3, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 46.200000000186265, + 3, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 48.40000000037253, + 3, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 50.60000000055879, + 3, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 52.80000000074506, + 3, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 55, + 3, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 57.200000000186265, + 3, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 59.40000000037253, + 3, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 61.60000000055879, + 3, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 63.80000000074506, + 3, + 6 + ] + } + } + }, + "1140205": { + "Name": "飞驰之夏", + "Desc": "衣匠被召唤时,使自身行动提前#1[i]%。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1 + ] + } + } + }, + "1140206": { + "Name": "枯草之盈", + "Desc": "衣匠消失时,使阿格莱雅恢复#1[i]点能量。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 20 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 20 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 20 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 20 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 20 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 20 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 20 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 20 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1402, + "Set4IDList": [ + 123, + 102, + 109 + ], + "Set2IDList": [ + 318, + 302, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1403": { + "Name": "缇宝", + "Desc": "自那三相神谕垂怜的圣地,信使分作千身,启程远行。\\n雅努萨波利斯的圣女,缇里西庇俄丝,窃夺「门径」火种的黄金裔,为众生奔走,令救世的讯息晓喻大地\\n——找寻那流淌黄金神血的人子,冲破世间至暗,去往星月满天的明日。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "tribbie", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140301, + "Name": "拾起砂糖的祭典", + "Desc": "结界持续期间,我方目标攻击敌人后,对结界造成附加伤害的目标额外造成等同于本次攻击总伤害值#1[i]%真实伤害。", + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "Id": 140302, + "Name": "探访佳梦的向导", + "Desc": "结界造成的附加伤害提高至原伤害的#1[i]%。结界造成附加伤害时,会额外造成#2[i]次附加伤害。", + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "3": { + "Id": 140303, + "Name": "盛满晨曦的宝藏", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 140304, + "Name": "心意相契的安宁", + "Desc": "【神启】持续期间,我方全体造成伤害时无视目标#1[i]%的防御力。", + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "Id": 140305, + "Name": "开启奇迹的时钟", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 140306, + "Name": "星月满天的明日", + "Desc": "缇宝施放终结技后,对敌方全体发动天赋的追加攻击。天赋的追加攻击造成的伤害提高#1[i]%。", + "ParamList": [ + 7.2900000002700835 + ] + } + }, + "Skills": { + "140301": { + "Id": 140301, + "Name": "一百层的小火箭", + "Desc": "对指定敌方单体造成等同于缇宝#1[i]%生命上限的量子属性伤害,对相邻目标造成等同于缇宝#2[i]%生命上限的量子属性伤害。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.07499999972060323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.21000000019557774, + 0.1049999997485429 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2700000002514571, + 0.13499999977648258 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.33000000030733645, + 0.16499999980442226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3900000003632158, + 0.19499999983236194 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774 + ] + } + } + }, + "140302": { + "Id": 140302, + "Name": "礼物都去哪儿了", + "Desc": "获得【神启】,持续#2[i]回合,自身每回合开始时持续回合数减1。当缇宝拥有【神启】时,我方全体目标全属性抗性穿透提高#1[f1]%。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1319999999832362, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14399999985471368, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.15599999972619116, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.16799999959766865, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19499999983236194, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2249999998603016, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2520000000949949, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2639999999664724, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.27599999983794987, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.28799999970942736, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3 + ] + } + } + }, + "140303": { + "Id": 140303, + "Name": "猜猜这里住着谁", + "Desc": "开启结界,并对敌方全体造成等同于缇宝#1[i]%生命上限的量子属性伤害。\\n结界持续期间,敌方目标受到的伤害提高#2[f1]%。受到我方目标攻击后,每有1名目标受到攻击,会对被攻击目标中当前生命值最高的目标造成1次等同于缇宝#3[f1]%生命上限的量子属性附加伤害。\\n结界持续#4[i]回合,自身每回合开始时结界持续回合数减1。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 0.060000000055879354, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 0.16499999980442226, + 0.06599999964237213, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 0.18000000016763806, + 0.07199999992735684, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 0.19499999983236194, + 0.07799999951384962, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 0.21000000019557774, + 0.08399999979883432, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 0.2249999998603016, + 0.09000000008381903, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 0.24375000083819032, + 0.09749999991618097, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 0.26250000041909516, + 0.1049999997485429, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 0.28125000069849193, + 0.11250000027939677, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.12000000011175871, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 0.31499999994412065, + 0.12599999969825149, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 0.33000000030733645, + 0.1319999999832362, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 0.3449999999720603, + 0.13799999956972897, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761, + 0.14399999985471368, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 0.375, + 0.1500000001396984, + 2 + ] + } + } + }, + "140304": { + "Id": 140304, + "Name": "好忙好忙的缇宝", + "Desc": "我方其他角色施放终结技后,缇宝发动追加攻击,对敌方全体造成等同于缇宝#1[f1]%生命上限的量子属性伤害。该效果每个角色最多触发1次,缇宝施放终结技时重置我方其他角色可触发次数。若追加攻击施放前目标被消灭则对新入场的敌方目标发动追加攻击。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.0989999994635582 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1079999995417893 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.11699999962002039 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.12599999969825149 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.13499999977648258 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.14625000022351742 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.15749999997206032 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.16875000041909516 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.18000000016763806 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.18899999954737723 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.19799999962560833 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20699999970383942 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.21599999978207052 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016 + ] + } + } + }, + "140306": { + "Id": 140306, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140307": { + "Id": 140307, + "Name": "开心你就拍拍手", + "Desc": "使用秘技后,进入战斗时获得【神启】,持续#1[i]回合。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Maze.png", + "LevelUpSkillID": [ + 140307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7200000006705523, + 3, + 3 + ], + "PointID": 1403101, + "PointName": "城墙外的羊羔儿…", + "PointDesc": "施放天赋的追加攻击后,缇宝造成的伤害提高#1[i]%,该效果最多叠加#2[i]层,持续#3[i]回合。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.09000000008381903 + ], + "PointID": 1403102, + "PointName": "长翅膀的玻璃球!", + "PointDesc": "结界持续期间,缇宝的生命上限提高,提高数值等同于我方全体角色生命上限之和的#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 30, + 1.5000000004656613 + ], + "PointID": 1403103, + "PointName": "岔路旁的小石子?", + "PointDesc": "战斗开始时,缇宝恢复#1[i]点能量。我方其他目标攻击后,每击中1个目标使缇宝恢复#2[f1]点能量。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403201, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1403101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403203, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1403202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1403201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403205, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1403102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1403205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403207, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1403201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1403103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1403208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403210, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1403208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 99, + "DefenceAdd": 4.9500000008847564, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 4.9500000008847564, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 4.9500000008847564, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.9500000008847564, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 297, + "DefenceAdd": 4.9500000008847564, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 336.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1403, + "Set4IDList": [ + 124, + 108, + 102 + ], + "Set2IDList": [ + 319, + 302, + 317 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "HPAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio" + ], + "ScoreRankList": [ + 324, + 268 + ] + } + }, + "1404": { + "Name": "万敌", + "Desc": "那沉入迷雾的悬锋,纷乱与战争之城!它的王室流着弑亲的血脉,它的神明以灾厄为名。\\n不死的迈德漠斯,离群的狮子,逐猎「纷争」火种的黄金裔。忍受万死,浴血还乡,孤身背负疯狂的宿命\\n——弑王成王,弑神登神。征战的铁蹄踏遍荒野,终归要沾上故乡的血。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "mydei", + "SPNeed": 160, + "BaseType": "Warrior", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 140401, + "Name": "寒风雕琢不屈的脊梁", + "Desc": "【弑神登神】对主目标造成的伤害倍率提高#1[i]%,且变成对敌方全体造成等同于主目标伤害倍率的虚数属性伤害。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Id": 140402, + "Name": "纷争见证尸骸的喉鸣", + "Desc": "【血仇】状态期间,万敌造成的伤害无视敌方目标#1[i]%的防御力,且接受治疗后会将#2[i]%的治疗数值转化为充能,累计转化的充能不超过#3[i]点。任意单位行动后重置可累计的充能。", + "ParamList": [ + 0.1500000001396984, + 0.40000000037252903, + 40 + ] + }, + "3": { + "Id": 140403, + "Name": "荣耀辉映不渝的筵宴", + "Desc": "战技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 140404, + "Name": "号角惊觉缄默的狂狮", + "Desc": "【血仇】状态期间暴击伤害提高#2[i]%,且受到来自敌方目标的攻击后回复等同于自身#1[i]%生命上限的生命值。", + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "5": { + "Id": 140405, + "Name": "兵戈雕刻躯身的烈焰", + "Desc": "终结技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 140406, + "Name": "往日攀陟沉积的血山", + "Desc": "进入战斗时立刻进入【血仇】状态且【弑神登神】所需的充能值降低至#1[i]点。", + "ParamList": [ + 100 + ] + } + }, + "Skills": { + "140401": { + "Id": 140401, + "Name": "踏破征途的誓言", + "Desc": "对指定敌方单体造成等同于万敌#1[i]%生命上限的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140402": { + "Id": 140402, + "Name": "万死无悔", + "Desc": "消耗等同于万敌当前生命值#3[i]%的生命值,对指定敌方单体造成等同于万敌#1[i]%生命上限的虚数属性伤害,同时对其相邻目标造成等同于万敌#2[i]%生命上限的虚数属性伤害。\\n若当前生命值不足,施放战技时万敌的当前生命值降低至1点。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.4950000001117587, + 0.27499999990686774, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5400000005029142, + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5850000001955777, + 0.32499999995343387, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6300000005867332, + 0.3500000003259629, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6750000002793968, + 0.375, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.7312500011175871, + 0.4062500004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7875000005587935, + 0.43750000023283064, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.8437500013969839, + 0.46875000069849193, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.9000000008381903, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.9450000005308539, + 0.5250000001396984, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.9900000009220093, + 0.5500000005122274, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.0349999996833503, + 0.5750000001862645, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.0800000000745058, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.1249999997671694, + 0.6250000002328306, + 0.5000000004656613 + ] + } + } + }, + "140403": { + "Id": 140403, + "Name": "诛天焚骨的王座", + "Desc": "回复等同于万敌#3[f1]%生命上限的生命值并积攒#5[i]点天赋充能。对指定敌方单体造成等同于万敌#1[i]%生命上限的虚数属性伤害,同时对其相邻目标造成等同于万敌#2[i]%生命上限的虚数属性伤害,并使目标与相邻目标陷入嘲讽状态,持续#4[i]回合。下一次【弑神登神】优先攻击指定敌方单体,该效果仅对最新目标生效。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.6000000005587935, + 0.1500000001396984, + 2, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 0.6400000005960464, + 0.15499999979510903, + 2, + 20 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 0.6800000006332994, + 0.1600000001490116, + 2, + 20 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 0.7200000006705523, + 0.16499999980442226, + 2, + 20 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 0.7600000007078052, + 0.17000000015832484, + 2, + 20 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 0.8000000007450581, + 0.17499999981373549, + 2, + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 0.8500000007916242, + 0.18125000060535967, + 2, + 20 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 0.9000000008381903, + 0.1875, + 2, + 20 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 0.9500000008847564, + 0.1937500007916242, + 2, + 20 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 0.20000000018626451, + 2, + 20 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1.040000000037253, + 0.20499999984167516, + 2, + 20 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1.0800000000745058, + 0.21000000019557774, + 2, + 20 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1.1200000001117587, + 0.2149999998509884, + 2, + 20 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1.1600000001490116, + 0.22000000020489097, + 2, + 20 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1.2000000001862645, + 0.2249999998603016, + 2, + 20 + ] + } + } + }, + "140404": { + "Id": 140404, + "Name": "以血还血", + "Desc": "每损失1%生命值积攒1点充能,最多积攒200点。充能达到100时消耗100点充能进入【血仇】状态并回复等同于万敌#1[i]%生命上限的生命值,同时行动提前100%。【血仇】状态下生命上限提高,数值等同于当前生命上限的#5[i]%,防御力保持为0。自身回合开始时自动施放【弑王成王】。\\n【血仇】状态期间充能达到#3[i]点时,万敌立即获得1个额外回合并自动施放【弑神登神】。\\n【血仇】状态期间,万敌受到致命攻击时不会陷入无法战斗状态,但会清空充能退出【血仇】状态并回复等同于自身#4[i]%生命上限的生命值。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1600000001490116, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.17000000015832484, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.18000000016763806, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1900000001769513, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21250000037252903, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2249999998603016, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23750000004656613, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.26000000024214387, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2700000002514571, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2800000002607703, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.29000000027008355, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + } + } + }, + "140406": { + "Id": 140406, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140407": { + "Id": 140407, + "Name": "折戟臣服的监牢", + "Desc": "使用秘技后牵引一定区域内的敌人并使其陷入#1[i]秒的晕眩状态,晕眩状态下敌人不会主动攻击我方目标。\\n若主动攻击陷入晕眩状态的敌人,进入战斗时,对敌方全体造成等同于万敌#2[i]%生命上限的虚数属性伤害,并使目标陷入嘲讽状态,持续#4[i]回合。自身积攒#5[i]点天赋充能。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.8000000007450581, + 1, + 1, + 50 + ] + } + } + }, + "140409": { + "Id": 140409, + "Name": "弑王成王", + "Desc": "消耗等同于万敌当前生命值#3[i]%的生命值,对敌方单体造成等同于万敌#1[i]%生命上限的虚数属性伤害,同时对其相邻目标造成等同于万敌#2[i]%生命上限的虚数属性伤害。\\n若当前生命值不足,施放战技时万敌的当前生命值降低至1点。\\n该技能会自动施放。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 0.33000000030733645, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6050000002142042, + 0.3630000001285225, + 0.3500000003259629 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6600000006146729, + 0.3959999999497086, + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7150000003166497, + 0.42899999977089465, + 0.3500000003259629 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7700000007171184, + 0.46200000029057264, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8250000004190952, + 0.4950000001117587, + 0.3500000003259629 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.89375000144355, + 0.5362500005867332, + 0.3500000003259629 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.962500001071021, + 0.5775000003632158, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.0312500004656613, + 0.6187500008381903, + 0.3500000003259629 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1000000000931323, + 0.6600000006146729, + 0.3500000003259629 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.154999999795109, + 0.693000000435859, + 0.3500000003259629 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2100000001955777, + 0.726000000257045, + 0.3500000003259629 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.2649999998975545, + 0.7590000000782311, + 0.3500000003259629 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.3200000002980232, + 0.7920000005979091, + 0.3500000003259629 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.375, + 0.8250000004190952, + 0.3500000003259629 + ] + } + } + }, + "140411": { + "Id": 140411, + "Name": "弑神登神", + "Desc": "消耗#3[i]点充能,对敌方单体造成等同于万敌#1[i]%生命上限的虚数属性伤害,同时对其相邻目标造成等同于万敌#2[i]%生命上限的虚数属性伤害。\\n该技能会自动施放。此技能期间无法积攒充能。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 0.840000000782311, + 150 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 0.9240000005811453, + 150 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 1.007999999448657, + 150 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 1.0919999999459833, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 1.1759999997448176, + 150 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 1.2600000002421439, + 150 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 1.3649999999906868, + 150 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 1.4700000004377216, + 150 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1.5750000001862645, + 150 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.6800000006332994, + 150 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1.7640000004321337, + 150 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1.848000000230968, + 150 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1.9320000007282943, + 150 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 2.015999999595806, + 150 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 2.1000000000931323, + 150 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Maze.png", + "LevelUpSkillID": [ + 140407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1404101, + "PointName": "水与泥土", + "PointDesc": "【血仇】状态下万敌受到致命攻击时不会退出【血仇】状态。该效果单场战斗中可以触发#1[i]次。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404102, + "PointName": "三十僭主", + "PointDesc": "【血仇】状态下万敌免疫控制类负面状态。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 4000, + 4000, + 0.011999999871477485, + 0.0249999996740371, + 0.007499999832361937 + ], + "PointID": 1404103, + "PointName": "血祥罩衫", + "PointDesc": "战斗开始时,若万敌的生命上限高于#1[i]点,每超过100点生命值可使自身暴击率提高#3[f1]%,万敌受到来自敌方目标伤害造成的充能比例提高#4[f1]%,受到治疗时的回复量提高#5[f2]%,超出部分最多计入#2[i]点生命值。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404201, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1404101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404203, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1404202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404204, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1404203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404205, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1404102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1404205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404207, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1404206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404208, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1404103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1404208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404210, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1404208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 58.080000000074506, + "AttackAdd": 2.904000000562519, + "DefenceBase": 26.40000000037253, + "DefenceAdd": 1.3200000002980232, + "HPBase": 211.20000000018626, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 81.31200000015087, + "AttackAdd": 2.904000000562519, + "DefenceBase": 36.96000000089407, + "DefenceAdd": 1.3200000002980232, + "HPBase": 295.6800000006333, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 104.54400000022724, + "AttackAdd": 2.904000000562519, + "DefenceBase": 47.52000000048429, + "DefenceAdd": 1.3200000002980232, + "HPBase": 380.160000000149, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 127.77600000030361, + "AttackAdd": 2.904000000562519, + "DefenceBase": 58.080000000074506, + "DefenceAdd": 1.3200000002980232, + "HPBase": 464.64000000059605, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 151.00799999944866, + "AttackAdd": 2.904000000562519, + "DefenceBase": 68.64000000059605, + "DefenceAdd": 1.3200000002980232, + "HPBase": 549.1200000001118, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 174.24000000022352, + "AttackAdd": 2.904000000562519, + "DefenceBase": 79.20000000018626, + "DefenceAdd": 1.3200000002980232, + "HPBase": 633.6000000005588, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 197.4720000002999, + "AttackAdd": 2.904000000562519, + "DefenceBase": 89.7600000007078, + "DefenceAdd": 1.3200000002980232, + "HPBase": 718.0800000000745, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1404, + "Set4IDList": [ + 122, + 113, + 112 + ], + "Set2IDList": [ + 319, + 309, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "ImaginaryAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 333, + 275 + ], + "LocalCriticalChance": 0.45000000041909516 + } + }, + "1405": { + "Name": "那刻夏", + "Desc": "神悟树庭,滋养知识的学府,诞育哲人的摇床。\\n但渎神的阿那克萨戈拉斯,诘问「理性」火种的黄金裔,试问:你甘愿身负恶名,也要违逆预言,将怀疑的枝杈刺入智慧的圣树?\\n——「可笑。这世界遍地虚假,唯有我才是真实。」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "anaxa", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 140501, + "Name": "月掩星夜的魔术师", + "Desc": "首次施放战技后,恢复#3[i]个战技点。施放战技击中敌方目标时,使目标防御力降低#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.1600000001490116, + 2, + 1 + ] + }, + "2": { + "Id": 140502, + "Name": "真实历史的自然人", + "Desc": "敌方目标入场时,触发1次天赋的弱点添加效果,并使其全属性抗性降低#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 140503, + "Name": "镌刻进深空的瞳孔", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 140504, + "Name": "坠落在山谷的炽热", + "Desc": "施放战技时,攻击力提高#1[i]%,持续#2[i]回合。该效果最多叠加#3[i]层。", + "ParamList": [ + 0.3000000002793968, + 2, + 2 + ] + }, + "5": { + "Id": 140505, + "Name": "离心漩涡外的胚种", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 140506, + "Name": "万物皆在万物之中", + "Desc": "那刻夏造成的伤害为原伤害的#1[i]%。行迹【必要的留白】的2种效果都会直接触发,不再依赖我方队伍中「智识」命途角色的数量。", + "ParamList": [ + 1.3000000002793968 + ] + } + }, + "Skills": { + "140501": { + "Id": 140501, + "Name": "楚痛,酿造实识", + "Desc": "对指定敌方单体造成等同于那刻夏#1[i]%攻击力的风属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140502": { + "Id": 140502, + "Name": "分形,驱逐虚知", + "Desc": "对指定敌方单体造成等同于那刻夏#1[i]%攻击力的风属性伤害,并额外造成#2[i]次伤害。每次伤害对敌方随机单体造成等同于那刻夏#1[i]%攻击力的风属性伤害,优先弹射本次战技尚未击中过的敌方目标。\\n施放时场上每有1个可攻击的敌方目标,本次战技造成的伤害提高#3[i]%。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 4, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 4, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 4, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 4, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 4, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 4, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 4, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 4, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 4, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 4, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 4, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 4, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 4, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 4, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 4, + 0.20000000018626451 + ] + } + } + }, + "140503": { + "Id": 140503, + "Name": "生息破土,世界塑造", + "Desc": "使敌方全体陷入【升华】状态,随后对敌方全体造成等同于那刻夏#1[i]%攻击力的风属性伤害。\\n【升华】状态下,目标同时被添加物理、火、冰、雷、风、量子、虚数属性弱点,持续至目标回合开始时。若目标不具有控制抵抗,则【升华】状态下无法行动。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2 + ] + } + } + }, + "140504": { + "Id": 140504, + "Name": "四分明哲,三重至高", + "Desc": "每当那刻夏击中1次敌方目标后,为目标添加1个随机属性弱点,持续#2[i]回合,优先添加目标尚未拥有的弱点。\\n那刻夏在场时,使拥有至少#3[i]个不同属性弱点的敌方目标陷入【质性揭露】状态。那刻夏对处于【质性揭露】状态的目标造成的伤害提高#1[i]%,此外对其施放普攻或战技后,对该目标额外施放1次战技。额外战技不消耗战技点且不会再次触发此效果。若额外战技施放前目标被消灭则对敌方随机单体施放。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.19200000003911555, + 3, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.20399999991059303, + 3, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.21599999978207052, + 3, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.227999999653548, + 3, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.24000000022351742, + 3, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.2549999998882413, + 3, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2700000002514571, + 3, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28499999991618097, + 3, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31200000015087426, + 3, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.32400000002235174, + 3, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3359999998938292, + 3, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3479999997653067, + 3, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3600000003352761, + 3, + 5 + ] + } + } + }, + "140506": { + "Id": 140506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140507": { + "Id": 140507, + "Name": "瞳扉之彩", + "Desc": "使用秘技后使一定区域内的敌人陷入恐惧状态。恐惧状态下的敌人会向远离那刻夏的方向逃跑,持续#1[i]秒。我方主动攻击陷入恐惧状态的敌人总会视为利用弱点进入战斗,进入战斗后那刻夏为敌方每个单体目标添加1个攻击者属性的弱点,持续#2[i]回合。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Maze.png", + "LevelUpSkillID": [ + 140507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 30 + ], + "PointID": 1405101, + "PointName": "流浪的能指", + "PointDesc": "施放普攻时,额外恢复#1[i]点能量。\\n回合开始时,若场上不存在处于【质性揭露】状态的敌方目标,立即恢复#2[i]点能量。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.400000000372529, + 0.5000000004656613 + ], + "PointID": 1405102, + "PointName": "必要的留白", + "PointDesc": "根据我方队伍中「智识」命途角色的数量,在本场战斗中触发其中1个效果:\\n1名:那刻夏的暴击伤害提高#1[i]%。\\n至少2名:我方全体造成的伤害提高#2[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0400000000372529 + ], + "PointID": 1405103, + "PointName": "质性的嬗变", + "PointDesc": "敌方目标每拥有1个不同属性的弱点,那刻夏对其造成的伤害无视#1[i]%的防御力,最多计入7个。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405201, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405202, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1405101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405203, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1405202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1405202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405205, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1405102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405206, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1405205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405207, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1405205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "风属性伤害提高" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1405103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405209, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1405103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405210, + "PointName": "伤害强化•风", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "风属性伤害提高" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 75.90000000083819, + "DefenceAdd": 3.7950000003911555, + "HPBase": 132, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 106.26000000024214, + "DefenceAdd": 3.7950000003911555, + "HPBase": 184.80000000074506, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 136.62000000057742, + "DefenceAdd": 3.7950000003911555, + "HPBase": 237.6000000005588, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 166.9800000009127, + "DefenceAdd": 3.7950000003911555, + "HPBase": 290.40000000037253, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 197.34000000031665, + "DefenceAdd": 3.7950000003911555, + "HPBase": 343.20000000018626, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 227.70000000065193, + "DefenceAdd": 3.7950000003911555, + "HPBase": 396, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 258.0600000000559, + "DefenceAdd": 3.7950000003911555, + "HPBase": 448.80000000074506, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1405, + "Set4IDList": [ + 110, + 117, + 122 + ], + "Set2IDList": [ + 309, + 314, + 308 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1406": { + "Name": "赛飞儿", + "Desc": "失落的盗寇之都多洛斯,三百侠盗纵情游戏,横行无忌。\\n捷足的贼星赛法利娅,戏弄「诡计」火种的黄金裔,奔走吧。愿你的谎言随风同行,吹遍此世大地——\\n「呵,还想诓我?没门!」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "cipher", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140601, + "Name": "察言观色看笑脸", + "Desc": "赛飞儿记录的伤害值为原记录值的#3[i]%。施放天赋的追加攻击时,赛飞儿的攻击力提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.8000000007450581, + 2, + 1.5000000004656613 + ] + }, + "2": { + "Id": 140602, + "Name": "焦头烂额顺手牵", + "Desc": "赛飞儿击中敌方目标时,有#2[i]%基础概率使其受到的伤害提高#3[i]%,持续#1[i]回合。", + "ParamList": [ + 2, + 1.2000000001862645, + 0.3000000002793968 + ] + }, + "3": { + "Id": 140603, + "Name": "无中生有难分辨", + "Desc": "终结技等级+2,最多不超过15级,普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 140604, + "Name": "东窗事发一溜烟", + "Desc": "【老主顾】受到我方目标攻击后,赛飞儿对其造成等同于赛飞儿#1[i]%攻击力的量子属性附加伤害。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 140605, + "Name": "狡兔三窟轻如燕", + "Desc": "战技等级+2,最多不超过15级,天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 140606, + "Name": "大盗无名天地间", + "Desc": "赛飞儿天赋的追加攻击造成的伤害提高#2[i]%,记录时额外记录该攻击造成的非溢出伤害的#3[i]%。施放终结技清空记录值后,返还本次清除记录值的#1[i]%。", + "ParamList": [ + 0.20000000018626451, + 3.5000000004656613, + 0.1600000001490116 + ] + } + }, + "Skills": { + "140601": { + "Id": 140601, + "Name": "呀,漏网之鱼", + "Desc": "对指定敌方单体造成等同于赛飞儿#1[i]%攻击力的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140602": { + "Id": 140602, + "Name": "嘿,空手套白银", + "Desc": "有#6[i]%基础概率使指定敌方单体及其相邻目标陷入虚弱状态,造成的伤害降低#3[i]%,使赛飞儿的攻击力提高#5[i]%,持续#4[i]回合,并对指定敌方单体造成等同于赛飞儿#1[i]%攻击力的量子属性伤害,对相邻目标造成等同于赛飞儿#2[i]%攻击力的量子属性伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.8125000009313226, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1.0500000000465661, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1.1000000000931323, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1.1500000001396984, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1.2000000001862645, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1.2500000002328306, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + } + } + }, + "140603": { + "Id": 140603, + "Name": "猫咪怪盗,敬上!", + "Desc": "对指定敌方单体造成等同于赛飞儿#1[i]%攻击力的量子属性伤害。之后,对指定敌方单体造成等同于当前天赋记录值#2[i]%真实伤害,并对指定敌方单体及其相邻目标造成等同于赛飞儿#4[i]%攻击力的量子属性伤害和总计等同于当前天赋记录值#3[i]%真实伤害,该真实伤害由所有技能目标均分。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.25000000023283064, + 0.7500000006984919, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.25000000023283064, + 0.7500000006984919, + 0.22000000020489097 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.25000000023283064, + 0.7500000006984919, + 0.24000000022351742 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.25000000023283064, + 0.7500000006984919, + 0.26000000024214387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.25000000023283064, + 0.7500000006984919, + 0.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.25000000023283064, + 0.7500000006984919, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.25000000023283064, + 0.7500000006984919, + 0.32499999995343387 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.25000000023283064, + 0.7500000006984919, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.25000000023283064, + 0.7500000006984919, + 0.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.25000000023283064, + 0.7500000006984919, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.25000000023283064, + 0.7500000006984919, + 0.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.25000000023283064, + 0.7500000006984919, + 0.44000000040978193 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.25000000023283064, + 0.7500000006984919, + 0.4600000004284084 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.25000000023283064, + 0.7500000006984919, + 0.48000000044703484 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.25000000023283064, + 0.7500000006984919, + 0.5000000004656613 + ] + } + } + }, + "140604": { + "Id": 140604, + "Name": "热情好客的多洛斯人", + "Desc": "场上不存在陷入【老主顾】状态的敌方目标时,赛飞儿立即使当前场上生命上限最高的敌方单体目标成为【老主顾】。施放战技和终结技时,使主目标成为【老主顾】。【老主顾】状态仅对最新被施加的目标生效。\\n【老主顾】受到我方其他目标攻击后,赛飞儿立即对【老主顾】发动追加攻击,造成等同于赛飞儿#1[i]%攻击力的量子属性伤害。该效果每回合最多触发#3[i]次,赛飞儿回合开始时重置可触发次数。\\n赛飞儿会记录我方目标对【老主顾】造成的非真实伤害#2[i]%,不记录溢出伤害,施放终结技后清空记录值。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.12000000011175871, + 1, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.12000000011175871, + 1, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.12000000011175871, + 1, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.12000000011175871, + 1, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.12000000011175871, + 1, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.12000000011175871, + 1, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.12000000011175871, + 1, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.12000000011175871, + 1, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.12000000011175871, + 1, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.12000000011175871, + 1, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.12000000011175871, + 1, + 5 + ] + } + } + }, + "140606": { + "Id": 140606, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140607": { + "Id": 140607, + "Name": "穿靴子的猫", + "Desc": "获得【扎格列斯的祝福】,持续#1[i]秒,期间赛飞儿不会被敌人发现,移动速度提高50%,靠近大地图/模拟宇宙/差分宇宙中的敌人时,可以立即获取随机消耗品,每个地球日内最多获取#4[i]次。\\n持有【扎格列斯的祝福】期间进入战斗时,对敌方全体造成等同于赛飞儿#3[i]%攻击力的量子属性伤害,赛飞儿因该次伤害获得的记录值提高#2[i]%。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 2, + 1, + 50 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Maze.png", + "LevelUpSkillID": [ + 140607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 0.5000000004656613, + 1 + ], + "PointID": 1406101, + "PointName": "神行宝鞋", + "PointDesc": "赛飞儿的速度大于等于140/170时,暴击率提高#1[i]%/#2[i]%,获得的记录值提高#3[i]%/#4[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0800000000745058 + ], + "PointID": 1406102, + "PointName": "三百侠盗", + "PointDesc": "赛飞儿会记录我方目标对【老主顾】以外的敌方目标造成的非真实伤害#1[i]%,不记录溢出伤害。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903, + 1 + ], + "PointID": 1406103, + "PointName": "偷天换日", + "PointDesc": "天赋的追加攻击造成的暴击伤害提高#2[i]%。赛飞儿在场时,敌方全体目标受到的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406201, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406202, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1406101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406203, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1406202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406204, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1406203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "效果命中" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406205, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1406102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406206, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1406205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406207, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1406206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406208, + "PointName": "效果命中强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1406103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "效果命中" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406209, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1406103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406210, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1406201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1406, + "Set4IDList": [ + 117, + 108, + 114 + ], + "Set2IDList": [ + 317, + 302, + 308 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalDamageBase", + "CriticalChanceBase" + ], + "ScoreRankList": [ + 273, + 236 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1407": { + "Name": "遐蝶", + "Desc": "那敬爱死亡的国度,终日飘雪的哀地里亚,今日已沉入甘甜的酣眠。\\n冥河的女儿遐蝶,寻索「死亡」火种的黄金裔,启程吧。呵护世间魂灵的恸哭,拥抱命运的孤独\\n——生死皆为旅途,当蝴蝶停落枝头,那凋零的又将新生。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "castorice", + "SPNeed": null, + "BaseType": "Memory", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140701, + "Name": "雪地的圣女,付记忆入殓", + "Desc": "敌方目标当前生命值小于等于自身生命上限#1[i]%/#2[i]%时,【骸爪,冥龙之环拥】、【擘裂冥茫的爪痕】、【燎尽黯泽的焰息】、【灼掠幽墟的晦翼】对其造成的伤害为原伤害的#3[i]%/#4[i]%。", + "ParamList": [ + 0.8000000007450581, + 0.5000000004656613, + 1.2000000001862645, + 1.400000000372529 + ] + }, + "2": { + "Id": 140702, + "Name": "以扑翼繁花加冕", + "Desc": "召唤忆灵死龙后,遐蝶获得#1[i]层【炽意】,【炽意】最多持有#2[i]层,可用来抵扣死龙忆灵技【燎尽黯泽的焰息】的生命值消耗,并使遐蝶行动提前100%,下一次施放强化战技遐蝶获得等同于【新蕊】上限#3[i]%点数的【新蕊】。", + "ParamList": [ + 2, + 2, + 0.3000000002793968 + ] + }, + "3": { + "Id": 140703, + "Name": "虔敬的旅人,于死境翩跹", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级;忆灵天赋等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 140704, + "Name": "拥悲怜哀歌安眠", + "Desc": "遐蝶在场时,我方全体受到治疗时的回复量提高#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 140705, + "Name": "素白的新篇,以预言装点", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级;忆灵技等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 140706, + "Name": "待流年奔涌破茧", + "Desc": "遐蝶与死龙造成伤害时,量子属性抗性穿透提高#1[i]%。死龙攻击期间可以无视弱点属性削减敌方韧性,击破弱点时,触发量子属性的弱点击破效果,触发天赋【灼掠幽墟的晦翼】的弹射次数额外增加#2[i]次。", + "ParamList": [ + 0.20000000018626451, + 3 + ] + } + }, + "Skills": { + "140701": { + "Id": 140701, + "Name": "哀悼,死海之涟漪", + "Desc": "对指定敌方单体造成等同于遐蝶#1[i]%生命上限的量子属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140702": { + "Id": 140702, + "Name": "缄默,幽蝶之轻抚", + "Desc": "消耗我方全体当前#1[i]%的生命值,对指定敌方单体造成等同于遐蝶#2[i]%生命上限的量子属性伤害,并对其相邻目标造成等同于遐蝶#3[i]%生命上限的量子属性伤害。\\n若当前生命值不足,最多使当前生命值降至1点。\\n若死龙在场,战技替换为【骸爪,冥龙之环拥】。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.25000000023283064, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.27499999990686774, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.32499999995343387, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.3500000003259629, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.4062500004656613, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.43750000023283064, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.46875000069849193, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.5250000001396984, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.5500000005122274, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.5750000001862645, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.6000000005587935, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.6250000002328306, + 0.375 + ] + } + } + }, + "140703": { + "Id": 140703, + "Name": "亡喉怒哮,苏生之颂铃", + "Desc": "召唤忆灵死龙使其行动提前100%,同时展开境界【遗世冥域】,使敌方全体全属性抗性降低#4[i]%,若遐蝶持有天赋的造成伤害提高效果,使该效果扩散至死龙。死龙初始拥有#1[i]点速度以及等同于【新蕊】上限#3[i]%的固定生命上限。\\n死龙#2[i]个回合后或生命值为0时消失,同时解除境界【遗世冥域】。", + "Type": "Ultra", + "Tag": "Summon", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 165, + 3, + 1, + 0.10000000009313226, + 0 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 165, + 3, + 1, + 0.11000000010244548, + 0 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 165, + 3, + 1, + 0.12000000011175871, + 0 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 165, + 3, + 1, + 0.13000000012107193, + 0 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 165, + 3, + 1, + 0.14000000013038516, + 0 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 165, + 3, + 1, + 0.1500000001396984, + 0 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 165, + 3, + 1, + 0.1625000003259629, + 0 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 165, + 3, + 1, + 0.17499999981373549, + 0 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 165, + 3, + 1, + 0.1875, + 0 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 165, + 3, + 1, + 0.20000000018626451, + 0 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 165, + 3, + 1, + 0.21000000019557774, + 0 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 165, + 3, + 1, + 0.22000000020489097, + 0 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 165, + 3, + 1, + 0.2300000002142042, + 0 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 165, + 3, + 1, + 0.24000000022351742, + 0 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 165, + 3, + 1, + 0.25000000023283064, + 0 + ] + } + } + }, + "140704": { + "Id": 140704, + "Name": "掌心淌过的荒芜", + "Desc": "【新蕊】上限与场上全体角色等级有关,我方全体每损失1点生命值遐蝶获得1点【新蕊】,当【新蕊】达到上限时可激活终结技。我方损失生命值时,遐蝶与死龙造成的伤害提高#2[i]%,该效果最多叠加#3[i]层,持续#4[i]回合。\\n死龙在场时无法通过天赋获得【新蕊】,除死龙以外我方全体每损失1点生命值会转化为死龙同等的生命值。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0, + 0.10000000009313226, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0, + 0.11000000010244548, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0, + 0.12000000011175871, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0, + 0.13000000012107193, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0, + 0.14000000013038516, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0, + 0.1500000001396984, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0, + 0.1625000003259629, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0, + 0.17499999981373549, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0, + 0.1875, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0, + 0.20000000018626451, + 3, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0, + 0.21000000019557774, + 3, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0, + 0.22000000020489097, + 3, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0, + 0.2300000002142042, + 3, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0, + 0.24000000022351742, + 3, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0, + 0.25000000023283064, + 3, + 3 + ] + } + } + }, + "140706": { + "Id": 140706, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140707": { + "Id": 140707, + "Name": "悲鸣,赐死之先声", + "Desc": "使用秘技后进入持续#3[i]秒的【冥茫】状态。【冥茫】状态下敌人无法主动靠近遐蝶。\\n【冥茫】状态下主动攻击会使所有范围内的敌人进入战斗,同时召唤忆灵死龙使其行动提前100%并展开境界【遗世冥域】,死龙拥有等同于【新蕊】上限#2[i]%的当前生命值。进入战斗后,消耗除死龙以外的我方全体#1[i]%当前生命值。\\n进入战斗后未召唤死龙则遐蝶获得等同于【新蕊】上限#4[i]%点数的【新蕊】。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 20, + 0.3000000002793968 + ] + } + } + }, + "140709": { + "Id": 140709, + "Name": "骸爪,冥龙之环拥", + "Desc": "消耗除死龙以外的我方全体当前#1[i]%的生命值,遐蝶与死龙向目标发起连携攻击,对敌方全体造成等同于遐蝶#2[f1]%#3[f1]%生命上限的量子属性伤害。\\n若当前生命值不足,最多使当前生命值降至1点。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.1500000001396984, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.40000000037252903, + 0.16499999980442226, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40000000037252903, + 0.18000000016763806, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903, + 0.19499999983236194, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.40000000037252903, + 0.21000000019557774, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 0.2249999998603016, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.40000000037252903, + 0.24375000083819032, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.40000000037252903, + 0.26250000041909516, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.40000000037252903, + 0.28125000069849193, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.40000000037252903, + 0.31499999994412065, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.40000000037252903, + 0.33000000030733645, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.40000000037252903, + 0.3449999999720603, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.40000000037252903, + 0.3600000003352761, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.40000000037252903, + 0.375, + 0.6250000002328306 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Maze.png", + "LevelUpSkillID": [ + 140707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.12000000011175871 + ], + "PointID": 1407101, + "PointName": "收容的暗潮", + "PointDesc": "除死龙以外的我方目标接受治疗后会将#1[i]%的治疗数值转化为【新蕊】,死龙在场时则转化为死龙生命值,我方每个目标累计转化值不超过【新蕊】上限的#2[i]%。任意单位行动后重置所有单位累计的转化值。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903, + 1 + ], + "PointID": 1407102, + "PointName": "倒置的火炬", + "PointDesc": "遐蝶当前生命值大于等于自身生命上限的#1[i]%时,遐蝶速度提高#2[i]%。死龙施放【燎尽黯泽的焰息】对场上所有敌方造成致命伤害或敌方无法被继续削减生命值时,死龙速度提高#3[i]%,持续1回合。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 6 + ], + "PointID": 1407103, + "PointName": "西风的驻足", + "PointDesc": "死龙每次施放【燎尽黯泽的焰息】时,造成的伤害提高#1[i]%,该效果最多叠加#2[i]层,持续至本回合结束。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407201, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407202, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1407201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407203, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1407201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407204, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1407101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407205, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1407101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407206, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1407102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407207, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1407102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407208, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1407103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407209, + "PointName": "伤害强化•量子", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1407208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "量子属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407210, + "PointName": "暴击率强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1407209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "擘裂冥茫的爪痕", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "擘裂冥茫的爪痕", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "擘裂冥茫的爪痕", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "擘裂冥茫的爪痕", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "擘裂冥茫的爪痕", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "擘裂冥茫的爪痕", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "燎尽黯泽的焰息", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "燎尽黯泽的焰息", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "燎尽黯泽的焰息", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "燎尽黯泽的焰息", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "燎尽黯泽的焰息", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "燎尽黯泽的焰息", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "死龙•玻吕刻斯", + "Icon": "SpriteOutput/ServantIconTeam/11407B.png", + "HPBase": "0", + "HPInherit": "0", + "HPSkill": null, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 140703, + "Aggro": 100, + "Skills": { + "1140701": { + "Name": "擘裂冥茫的爪痕", + "Desc": "对敌方全体造成等同于遐蝶#1[f1]%生命上限的量子属性伤害。", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406 + ] + } + } + }, + "1140702": { + "Name": "燎尽黯泽的焰息", + "Desc": "发动【燎尽黯泽的焰息】会消耗等同于死龙生命上限#1[i]%的生命值,对敌方全体造成等同于遐蝶#2[f1]%生命上限的量子属性伤害。\\n一次攻击中可重复发动【燎尽黯泽的焰息】,重复发动时,伤害倍率依次提高至#3[f1]%/#4[f1]%,达到#4[f1]%后不再提高,伤害倍率提高效果在死龙消失前不会降低。\\n死龙当前生命值小于等于自身生命上限#5[i]%时,发动该技能会主动将生命值降至1点后触发等同于天赋【灼掠幽墟的晦翼】的技能效果。", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 0.12000000011175871, + 0.14000000013038516, + 0.17000000015832484, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064, + 0.14399999985471368, + 0.16799999959766865, + 0.20399999991059303, + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064, + 0.16799999959766865, + 0.19599999976344407, + 0.23799999966286123, + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064, + 0.19200000003911555, + 0.22399999992921948, + 0.27200000011362135, + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064, + 0.21599999978207052, + 0.2520000000949949, + 0.30599999986588955, + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064, + 0.24000000022351742, + 0.2800000002607703, + 0.3400000003166497, + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064, + 0.2639999999664724, + 0.3079999997280538, + 0.37400000006891787, + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064, + 0.28799999970942736, + 0.3359999998938292, + 0.40799999982118607, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064, + 0.31200000015087426, + 0.36400000005960464, + 0.4420000002719462, + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 0.3359999998938292, + 0.39200000022538006, + 0.4760000000242144, + 0.25000000023283064 + ] + } + } + }, + "1140703": { + "Name": "月茧荫蔽的身躯", + "Desc": "死龙在场时为我方后援,我方受到伤害或消耗生命值时,当前生命值最多降至1点,此后由死龙承担,但死龙会消耗等同于原数值#1[i]%的生命值,持续至死龙消失。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5 + ] + } + } + }, + "1140705": { + "Name": "震彻寂壤的怒啸", + "Desc": "死龙被召唤时,我方全体造成的伤害提高#1[i]%,持续#2[i]回合。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + } + }, + "1140706": { + "Name": "灼掠幽墟的晦翼", + "Desc": "死龙消失时,造成#2[i]次伤害,每次伤害对敌方随机单体造成等同于遐蝶#1[f1]%生命上限的量子属性伤害,同时为我方全体回复等同于遐蝶#3[i]%生命上限+#4[i]点的生命值。", + "Type": null, + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 6, + 0.030000000027939677, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742, + 6, + 0.035999999614432454, + 480 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703, + 6, + 0.04199999989941716, + 560 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232, + 6, + 0.04799999948590994, + 640 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761, + 6, + 0.05399999977089465, + 720 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 6, + 0.060000000055879354, + 800 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193, + 6, + 0.06599999964237213, + 880 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484, + 6, + 0.07199999992735684, + 960 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877, + 6, + 0.07799999951384962, + 1040 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406, + 6, + 0.08399999979883432, + 1120 + ] + } + } + }, + "1140710": { + "Name": "燎尽黯泽的焰息", + "Desc": null, + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1140711": { + "Name": "燎尽黯泽的焰息", + "Desc": null, + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1140712": { + "Name": "灼掠幽墟的晦翼", + "Desc": "消耗全部生命,造成#2[i]次伤害,每次伤害对敌方随机单体造成等同于遐蝶#1[f1]%生命上限的量子属性伤害,同时为我方全体回复等同于遐蝶#3[i]%生命上限+#4[i]点的生命值。", + "Type": "Servant", + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 6, + 0.030000000027939677, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742, + 6, + 0.035999999614432454, + 480 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703, + 6, + 0.04199999989941716, + 560 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232, + 6, + 0.04799999948590994, + 640 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761, + 6, + 0.05399999977089465, + 720 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 6, + 0.060000000055879354, + 800 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193, + 6, + 0.06599999964237213, + 880 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484, + 6, + 0.07199999992735684, + 960 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877, + 6, + 0.07799999951384962, + 1040 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406, + 6, + 0.08399999979883432, + 1120 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": { + "140704": { + "Tag": "辅助", + "Name": "月茧之庇", + "Desc": "获取遐蝶后或当前队伍存在遐蝶时获得效果:战斗中,若我方角色受到致命攻击,则本次行动中所有受到致命攻击的我方角色获得【月茧】状态。【月茧】状态下的角色会暂时延后陷入无法战斗状态,且可以正常行动。若行动后,下一次回合开始前当前生命值提高或获得护盾,则解除【月茧】状态,否则将立即陷入无法战斗状态。该效果单场战斗中最多触发1次。", + "Param": [ + 0.10000000009313226 + ] + } + }, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 310.46400000015274, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 399.16799999959767, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 487.8720000006724, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 576.5760000001173, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 665.2800000002608, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 753.984000000637, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1407, + "Set4IDList": [ + 124, + 108, + 113 + ], + "Set2IDList": [ + 319, + 302, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "HPAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio" + ], + "ScoreRankList": [ + 319, + 261 + ] + } + }, + "1408": { + "Name": "白厄", + "Desc": "哀丽秘榭,遗世独立的边陲村落,如今只余晦涩的传说。\\n无名的英雄█████,容纳「负世」火种的黄金裔,铭记全世的理想,背负万众的命运,为新世界带来第一缕曙光\\n——「但倘若黎明从不存在,就让怒火燃尽此身,化作明日的烈阳!」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "phainon", + "SPNeed": 12, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 140801, + "Name": "白厄星魂1", + "Desc": "█████的额外回合的速度提高至█████基础速度的#1[i]%。当【火种】达到上限时,使自身的物理属性抗性穿透提高#2[i]%,持续#3[i]回合。", + "ParamList": [ + 0.7200000006705523, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Id": 140802, + "Name": "白厄星魂2", + "Desc": "█████施放攻击造成的伤害为原伤害的#2[i]%。消耗#1[i]【毁伤】施放【支柱•死星天裁】时,获得1个额外回合。", + "ParamList": [ + 4, + 1.2000000001862645 + ] + }, + "3": { + "Id": 140803, + "Name": "白厄星魂3", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 140804, + "Name": "白厄星魂4", + "Desc": "施放【灾厄•弑魂焚诏】时,额外获得#1[i]层【弑魂之炽】。", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 140805, + "Name": "白厄星魂5", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "6": { + "Id": 140806, + "Name": "白厄星魂6", + "Desc": "【毁伤】上限提高2点。施放【创生•血棘渡亡】或【灾厄•弑魂焚诏】时,额外获得#2[i]【毁伤】。施放【支柱•死星天裁】的攻击后,对生命值最高的敌方目标额外造成等同于本次攻击总伤害值#1[i]%真实伤害。", + "ParamList": [ + 0.20000000018626451, + 2 + ] + } + }, + "Skills": { + "140801": { + "Id": 140801, + "Name": "逐火救世,行则将至", + "Desc": "对指定敌方单体造成等同于白厄#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140802": { + "Id": 140802, + "Name": "黎明创世,地辟天开", + "Desc": "获得#3[i]点【火种】,对指定敌方单体造成等同于白厄#1[i]%攻击力的物理属性伤害,对相邻目标造成等同于白厄#2[i]%攻击力的物理属性伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.6500000006053597, + 0.6600000006146729, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9500000008847564, + 0.7800000007264316, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 0.9000000008381903, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.4375000002328306, + 0.9750000005587935, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.6250000002328306, + 1.0500000000465661, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.8125000009313226, + 1.1249999997671694, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.2000000001862645, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1500000001396984, + 1.2600000002421439, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.3000000002793968, + 1.3200000002980232, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.450000000419095, + 1.3800000003539026, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.6000000005587935, + 1.440000000409782, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.750000000698492, + 1.5000000004656613, + 2 + ] + } + } + }, + "140803": { + "Id": 140803, + "Name": "永劫燔世,其将背负", + "Desc": "变身为█████,变身期间展开境界境界内的其他队友离场且无法行动,敌方全体始终拥有物理属性弱点。\\n█████不会进入自己的回合,但拥有#4[i]█████的额外回合,速度固定为█████基础速度的#3[i]%。最后的█████的额外回合开始时立即发动最后一击,造成等同于█████#1[i]%攻击力的物理属性终结技伤害,由敌方全体均分。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4.800000000745058, + 12, + 0.6000000005587935, + 8 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.28000000026077, + 12, + 0.6000000005587935, + 8 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5.760000000707805, + 12, + 0.6000000005587935, + 8 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.240000000223517, + 12, + 0.6000000005587935, + 8 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 6.720000000670552, + 12, + 0.6000000005587935, + 8 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.2000000001862645, + 12, + 0.6000000005587935, + 8 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7.800000000745058, + 12, + 0.6000000005587935, + 8 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.400000000372529, + 12, + 0.6000000005587935, + 8 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9, + 12, + 0.6000000005587935, + 8 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 9.600000000558794, + 12, + 0.6000000005587935, + 8 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.080000000074506, + 12, + 0.6000000005587935, + 8 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 10.56000000052154, + 12, + 0.6000000005587935, + 8 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.040000000037253, + 12, + 0.6000000005587935, + 8 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 11.520000000484288, + 12, + 0.6000000005587935, + 8 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12, + 12, + 0.6000000005587935, + 8 + ] + } + } + }, + "140804": { + "Id": 140804, + "Name": "此身为炬", + "Desc": "白厄的天赋。【火种】达到#4[i]点时可激活终结技,达到上限后还可最多溢出#3[i]点。\\n当白厄成为我方队友或敌方任意单体的技能目标时,获得1点【火种】。成为我方队友的技能目标时,暴击伤害提高#1[i]%,持续#2[i]回合。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 3, + 3, + 12 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 3, + 3, + 12 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 3, + 3, + 12 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 3, + 3, + 12 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 3, + 3, + 12 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 3, + 3, + 12 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 3, + 3, + 12 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 3, + 3, + 12 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 3, + 3, + 12 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 3, + 12 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 3, + 3, + 12 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 3, + 3, + 12 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 3, + 3, + 12 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 3, + 3, + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 3, + 3, + 12 + ] + } + } + }, + "140805": { + "Id": 140805, + "Name": "命运•此躯即神", + "Desc": "█████的天赋。变身时获得#1[i]【毁伤】。若此时处于我方目标的回合,则使该目标的所有增益效果延长1回合并结束本回合。\\n█████免疫控制类负面状态,拥有1个强化普攻和2个强化战技,无法施放终结技。变身期间攻击力提高#4[i]%,生命上限提高#5[i]%,施放攻击后回复等同于自身生命上限#7[i]%的生命值。█████受到致命攻击时不会陷入无法战斗状态,而是回复等同于自身生命上限#2[i]%的生命值并立即发动最后一击。每剩余1个█████的额外回合,最后一击的伤害倍率减少原倍率的#3[f1]%。\\n变身结束时,使我方全体速度提高#6[i]%,持续1回合。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.40000000037252903, + 1.2000000001862645, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.44000000040978193, + 1.3200000002980232, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.48000000044703484, + 1.440000000409782, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.5200000004842877, + 1.5600000005215406, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.5600000005215406, + 1.6800000006332994, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.6000000005587935, + 1.800000000745058, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.6500000006053597, + 1.9500000008847564, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.7000000006519258, + 2.1000000000931323, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.7500000006984919, + 2.2500000002328306, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.8000000007450581, + 2.400000000372529, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.840000000782311, + 2.5200000004842877, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.8800000008195639, + 2.6400000005960464, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.9200000008568168, + 2.760000000707805, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.9600000008940697, + 2.880000000819564, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 1, + 3, + 0.1500000001396984, + 0.20000000018626451 + ] + } + } + }, + "140806": { + "Id": 140806, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140807": { + "Id": 140807, + "Name": "终结之始", + "Desc": "白厄在队伍中时,使秘技点上限提高3点。\\n主动施放秘技消耗2点秘技点,立即攻击一定范围内的所有敌人。进入战斗后,为我方队友恢复#3[i]点能量,获得#2[i]【毁伤】#4[i]个战技点,并且每个波次开始时对敌方全体造成等同于白厄#1[i]%攻击力的物理属性伤害。\\n若攻击普通敌人则立即将其消灭,不会进入战斗。未击中敌人时不消耗秘技点。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 2, + 25, + 1 + ] + } + } + }, + "140808": { + "Id": 140808, + "Name": "创生•血棘渡亡", + "Desc": "获得#3[i]【毁伤】,对指定敌方单体造成等同于█████#1[i]%攻击力的物理属性伤害,对相邻目标造成等同于█████#2[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 0.375, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5000000004656613, + 0.45000000041909516, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.750000000698492, + 0.5250000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.6000000005587935, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2500000002328306, + 0.6750000002793968, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5000000004656613, + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.750000000698492, + 0.8250000004190952, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.9000000008381903, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.2500000002328306, + 0.9750000005587935, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.5000000004656613, + 1.0500000000465661, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.7800000007264316, + 0.9450000005308539, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.9600000008940697, + 0.9900000009220093, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.140000000130385, + 1.0349999996833503, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.320000000298023, + 1.0800000000745058, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.500000000465661, + 1.1249999997671694, + 2 + ] + } + } + }, + "140809": { + "Id": 140809, + "Name": "灾厄•弑魂焚诏", + "Desc": "获得等同于敌方全体数量的【毁伤】,随后使敌方全体立即行动并获得1层【弑魂之炽】。\\n【弑魂之炽】状态下,█████受到的伤害降低#2[i]%,并且在敌方目标攻击或行动后叠加1层【弑魂之炽】。当立即行动的敌方全体行动完毕后发动反击,对敌方全体造成等同于█████#1[i]%攻击力的物理属性伤害,并额外造成#3[i]次伤害,每次对敌方随机单体造成等同于█████#4[i]%攻击力的物理属性伤害,随后解除【弑魂之炽】。每层【弑魂之炽】使本次反击的伤害倍率提高原倍率的#5[i]%。\\n通过此技能造成伤害时,被视为造成了战技伤害。若█████的额外回合开始时仍持有【弑魂之炽】,立即发动反击。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.7500000006984919, + 4, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.7500000006984919, + 4, + 0.16499999980442226, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.7500000006984919, + 4, + 0.18000000016763806, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.7500000006984919, + 4, + 0.19499999983236194, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.7500000006984919, + 4, + 0.21000000019557774, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.7500000006984919, + 4, + 0.2249999998603016, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.7500000006984919, + 4, + 0.24375000083819032, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.7500000006984919, + 4, + 0.26250000041909516, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.7500000006984919, + 4, + 0.28125000069849193, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.7500000006984919, + 4, + 0.3000000002793968, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.7500000006984919, + 4, + 0.31499999994412065, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.7500000006984919, + 4, + 0.33000000030733645, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.7500000006984919, + 4, + 0.3449999999720603, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.7500000006984919, + 4, + 0.3600000003352761, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919, + 4, + 0.375, + 0.20000000018626451 + ] + } + } + }, + "140811": { + "Id": 140811, + "Name": "支柱•死星天裁", + "Desc": "解除自身所有负面效果,随后造成最多等同于█████#5[i]%攻击力的物理属性伤害。\\n其中,每消耗1点【毁伤】造成#3[i]次伤害,每次对敌方随机单体造成等同于█████#2[i]%攻击力的物理属性伤害。消耗#4[i]【毁伤】时,额外造成等同于█████#1[i]%攻击力的物理属性伤害,由敌方全体均分。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 10, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2500000002328306, + 0.2249999998603016, + 4, + 4, + 5.850000000791624 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.4750000000931323, + 0.24750000005587935, + 4, + 4, + 6.435000000055879 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.700000000651926, + 0.2700000002514571, + 4, + 4, + 7.0200000000186265 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.9250000005122274, + 0.29250000044703484, + 4, + 4, + 7.605000000214204 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.1500000001396984, + 0.31499999994412065, + 4, + 4, + 8.190000000176951 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.375, + 0.3375000001396984, + 4, + 4, + 8.775000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.656250000698492, + 0.36562500055879354, + 4, + 4, + 9.506250000558794 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.937500000698492, + 0.3937500009778887, + 4, + 4, + 10.237500000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.218750000465661, + 0.42187500139698386, + 4, + 4, + 10.968750001164153 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 0.45000000041909516, + 4, + 4, + 11.700000000651926 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.725000000325963, + 0.4725000006146729, + 4, + 4, + 12.284999999916181 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.9500000008847564, + 0.4950000001117587, + 4, + 4, + 12.87000000081025 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 5.1749999998137355, + 0.5175000003073364, + 4, + 4, + 13.455000000074506 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.400000000372529, + 0.5400000005029142, + 4, + 4, + 14.040000000037253 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.625000000232831, + 0.5625000006984919, + 4, + 4, + 14.62500000023283 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Maze.png", + "LevelUpSkillID": [ + 140807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1408101, + "PointName": "行向世界终点", + "PointDesc": "变身结束时,获得#1[i]点【火种】。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903, + 4, + 1 + ], + "PointID": 1408102, + "PointName": "身承炎炬万千", + "PointDesc": "受到队友提供的治疗效果或护盾时,造成的伤害提高#1[i]%,持续#2[i]回合。该效果单个回合内不可重复触发。\\n受到队友提供的能量恢复的技能效果时,获得#3[i]点【火种】。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ], + "PointID": 1408103, + "PointName": "照见英雄本色", + "PointDesc": "进入战斗或变身结束时,攻击力提高#1[i]%。该效果最多叠加#2[i]层。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408201, + "PointName": "", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408202, + "PointName": "", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1408101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "暴击率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408203, + "PointName": "", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1408202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408204, + "PointName": "", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1408203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408205, + "PointName": "", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1408102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408206, + "PointName": "", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1408205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "暴击率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408207, + "PointName": "", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1408206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408208, + "PointName": "", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1408103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408209, + "PointName": "", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1408208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "暴击率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408210, + "PointName": "", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1408208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 99, + "DefenceAdd": 4.9500000008847564, + "HPBase": 195.36000000033528, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 273.50400000019, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 4.9500000008847564, + "HPBase": 351.6480000000447, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 4.9500000008847564, + "HPBase": 429.7920000005979, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.9500000008847564, + "HPBase": 507.9360000004526, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 297, + "DefenceAdd": 4.9500000008847564, + "HPBase": 586.0800000000745, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 336.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 664.2239999999292, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1408, + "Set4IDList": [ + 126, + 105, + 122 + ], + "Set2IDList": [ + 321, + 309, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 324, + 266 + ] + } + }, + "1409": { + "Name": "风堇", + "Desc": "云间城邦随岁月离析,昏光庭院再度敞开门扉,为永夜捎来微光。\\n医师雅辛忒丝,守望「天空」火种的黄金裔。继承先祖的意志,缝补破裂的晨昏\\n——愿虹光洒落,仇怨消融,黎明重回大地。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "hyacine", + "SPNeed": 140, + "BaseType": "Memory", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 140901, + "Name": "呵护黑夜中的烛火", + "Desc": "风堇处于【雨过天晴】状态时,我方全体目标生命上限额外提高#1[i]%,并且施放攻击后立即回复等同于风堇#2[i]%生命上限的生命值。", + "ParamList": [ + 0.5000000004656613, + 0.0800000000745058 + ] + }, + "2": { + "Id": 140902, + "Name": "请来我的庭院坐坐", + "Desc": "我方目标生命值降低时,速度提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 140903, + "Name": "出发!向阳的历险", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级;忆灵技等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 140904, + "Name": "送你一颗橙晖琥珀", + "Desc": "行迹【暴风停歇】获得强化,每超过#1[i]点速度,风堇和小伊卡的暴击伤害额外提高#2[i]%。", + "ParamList": [ + 1, + 0.02000000001862645 + ] + }, + "5": { + "Id": 140905, + "Name": "红霞映入海的背面", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级;忆灵天赋等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 140906, + "Name": "天空…应我的祈愿", + "Desc": "小伊卡施放忆灵技清空累计治疗数值改为#1[i]%,小伊卡在场时,我方全体目标的全属性抗性穿透提高#2[i]%。", + "ParamList": [ + 0.12000000011175871, + 0.20000000018626451 + ] + } + }, + "Skills": { + "140901": { + "Id": 140901, + "Name": "当微风轻吻云沫", + "Desc": "对指定敌方单体造成等同于风堇#1[i]%生命上限的风属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140902": { + "Id": 140902, + "Name": "爱在虹光洒落时", + "Desc": "召唤忆灵小伊卡,为除小伊卡以外的我方全体目标回复等同于风堇#1[f1]%生命上限+#2[i]的生命值。为小伊卡回复等同于风堇#3[f1]%生命上限+#4[i]的生命值。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 40, + 0.05000000004656613, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04499999969266355, + 64, + 0.056250000139698386, + 80 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.05000000004656613, + 82, + 0.06250000023283064, + 102.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.054999999701976776, + 100, + 0.0687500003259629, + 125 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.060000000055879354, + 112, + 0.07499999972060323, + 140 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.06399999978020787, + 124, + 0.0800000000745058, + 155 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06799999950453639, + 133, + 0.08499999972991645, + 166.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.07199999992735684, + 142, + 0.09000000008381903, + 177.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07599999965168536, + 151, + 0.09499999973922968, + 188.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0800000000745058, + 160, + 0.10000000009313226, + 200 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.08399999979883432, + 169, + 0.1049999997485429, + 211.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.08799999952316284, + 178, + 0.11000000010244548, + 222.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.09199999994598329, + 187, + 0.11499999975785613, + 233.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.09599999967031181, + 196, + 0.12000000011175871, + 245 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.10000000009313226, + 205, + 0.12499999976716936, + 256.25000000023283 + ] + } + } + }, + "140903": { + "Id": 140903, + "Name": "飞入晨昏的我们", + "Desc": "召唤忆灵小伊卡,为除小伊卡以外的我方全体目标回复等同于风堇#1[f1]%生命上限+#2[i]的生命值,为小伊卡回复等同于风堇#6[f1]%生命上限+#7[i]的生命值。风堇进入【雨过天晴】状态,持续#5[i]回合,风堇每回合开始时持续回合数减1。处于【雨过天晴】状态时,我方全体目标生命上限提高#3[f1]%+#4[i]点。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 50, + 0.1500000001396984, + 150, + 3, + 0.060000000055879354, + 60 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.056250000139698386, + 80, + 0.16499999980442226, + 240, + 3, + 0.06749999988824129, + 96 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.06250000023283064, + 102.50000000046566, + 0.18000000016763806, + 307.50000000046566, + 3, + 0.07499999972060323, + 123 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.0687500003259629, + 125, + 0.19499999983236194, + 375, + 3, + 0.0825000002514571, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07499999972060323, + 140, + 0.21000000019557774, + 420, + 3, + 0.09000000008381903, + 168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0800000000745058, + 155, + 0.2249999998603016, + 465, + 3, + 0.09599999967031181, + 186 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08499999972991645, + 166.25000000023283, + 0.24375000083819032, + 498.7500000006985, + 3, + 0.10199999995529652, + 199.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09000000008381903, + 177.50000000046566, + 0.26250000041909516, + 532.5000000004657, + 3, + 0.1079999995417893, + 213 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09499999973922968, + 188.7500000006985, + 0.28125000069849193, + 566.2500000002328, + 3, + 0.113999999826774, + 226.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 200, + 0.3000000002793968, + 600, + 3, + 0.12000000011175871, + 240 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 211.25000000023283, + 0.31499999994412065, + 633.7500000006985, + 3, + 0.12599999969825149, + 253.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 222.50000000046566, + 0.33000000030733645, + 667.5000000004657, + 3, + 0.1319999999832362, + 267 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 233.7500000006985, + 0.3449999999720603, + 701.2500000002328, + 3, + 0.13799999956972897, + 280.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 245, + 0.3600000003352761, + 735, + 3, + 0.14399999985471368, + 294 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 256.25000000023283, + 0.375, + 768.7500000006985, + 3, + 0.1500000001396984, + 307.50000000046566 + ] + } + } + }, + "140904": { + "Id": 140904, + "Name": "疗愈世间的晨曦", + "Desc": "忆灵小伊卡初始拥有等同于风堇#1[i]%生命上限的生命上限。风堇或小伊卡提供治疗时,小伊卡造成的伤害提高#3[i]%,持续#4[i]回合,最多可叠加#5[i]层。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1, + 0.40000000037252903, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 1, + 0.44000000040978193, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 1, + 0.48000000044703484, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 1, + 0.5200000004842877, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 1, + 0.5600000005215406, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 1, + 0.6000000005587935, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 1, + 0.6500000006053597, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 1, + 0.7000000006519258, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 1, + 0.7500000006984919, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 0.8000000007450581, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 1, + 0.840000000782311, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 1, + 0.8800000008195639, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 1, + 0.9200000008568168, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 1, + 0.9600000008940697, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 1, + 1, + 2, + 3 + ] + } + } + }, + "140906": { + "Id": 140906, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140907": { + "Id": 140907, + "Name": "天气正好,万物可爱!", + "Desc": "下一次战斗开始时,为我方全体回复等同于风堇#1[i]%生命上限+#2[i]的生命值并使生命上限提高#3[i]%,持续#4[i]回合。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 600, + 0.20000000018626451, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "乌云乌云快走开!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "乌云乌云快走开!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "乌云乌云快走开!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "乌云乌云快走开!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "乌云乌云快走开!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "乌云乌云快走开!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "牵起晴空的手", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "牵起晴空的手", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "牵起晴空的手", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "牵起晴空的手", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "牵起晴空的手", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "牵起晴空的手", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Maze.png", + "LevelUpSkillID": [ + 140907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.25000000023283064 + ], + "PointID": 1409101, + "PointName": "阴云莞尔", + "PointDesc": "风堇和小伊卡的暴击率提高#1[i]%,为当前生命值小于等于自身生命上限的#2[i]%的我方目标提供治疗时,风堇和小伊卡的治疗量提高#3[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ], + "PointID": 1409102, + "PointName": "雷雨轻柔", + "PointDesc": "风堇的效果抵抗提高#1[i]%。施放战技和终结技时,解除我方全体目标的#2[i]负面效果。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 200, + 0.20000000018626451, + 1, + 0.010000000009313226, + 200 + ], + "PointID": 1409103, + "PointName": "暴风停歇", + "PointDesc": "风堇的速度大于#1[i]时,她与小伊卡的生命上限提高#2[i]%,之后每超出#3[i]点速度,风堇与小伊卡提供的治疗量提高#4[i]%,最多计入#5[i]点超出的速度。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409201, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409202, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1409201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409203, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1409201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1409101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409205, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1409101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409206, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1409102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409207, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1409102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1409103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409209, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1409208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "效果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409210, + "PointName": "速度强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1409209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "小伊卡", + "Icon": "SpriteOutput/ServantIconTeam/11409B.png", + "HPBase": "0", + "HPInherit": "#1", + "HPSkill": 140904, + "SpeedBase": "0", + "SpeedInherit": "0", + "SpeedSkill": 140904, + "Aggro": 100, + "Skills": { + "1140901": { + "Name": "乌云乌云快走开!", + "Desc": "对敌方全体造成等同于本场战斗风堇与小伊卡累计治疗数值#1[i]%的风属性伤害并清空累计治疗数值的#2[i]%。", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613 + ] + } + } + }, + "1140903": { + "Name": "牵起晴空的手", + "Desc": "小伊卡的速度保持为0,免疫负面效果,并且不会出现在行动序列上。\\n若除小伊卡外的我方目标生命值降低,小伊卡会在任意目标回合开始时或行动后,消耗自身#1[i]%生命上限的生命值,并为我方生命值降低的目标回复等同于风堇#2[f1]%生命上限+#3[i]的生命值。\\n风堇处于【雨过天晴】状态时,小伊卡会在风堇施放技能后立即获得1个额外回合并自动施放【乌云乌云快走开!】,并且小伊卡触发天赋的治疗效果时,额外为我方全体目标回复等同于风堇#4[f1]%生命上限+#5[i]的生命值,小伊卡施放技能后使自身所有持续效果持续回合数减1。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 0.010000000009313226, + 10, + 0.010000000009313226, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.0400000000372529, + 0.011999999871477485, + 12, + 0.011999999871477485, + 12 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.0400000000372529, + 0.013999999733641744, + 14, + 0.013999999733641744, + 14 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.0400000000372529, + 0.015999999595806003, + 16, + 0.015999999595806003, + 16 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.0400000000372529, + 0.01799999945797026, + 18, + 0.01799999945797026, + 18 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0400000000372529, + 0.02000000001862645, + 20, + 0.02000000001862645, + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.0400000000372529, + 0.02199999988079071, + 22, + 0.02199999988079071, + 22 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.0400000000372529, + 0.02399999974295497, + 24, + 0.02399999974295497, + 24 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.0400000000372529, + 0.02599999960511923, + 26, + 0.02599999960511923, + 26 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0400000000372529, + 0.027999999467283487, + 28, + 0.027999999467283487, + 28 + ] + } + } + }, + "1140905": { + "Name": "展翼,奔向日辉", + "Desc": "被召唤时,为风堇恢复#1[i]点能量,首次被召唤时,额外恢复#2[i]点能量。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 30 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 15, + 30 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 15, + 30 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 15, + 30 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 15, + 30 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 15, + 30 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 15, + 30 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 15, + 30 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 15, + 30 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 15, + 30 + ] + } + } + }, + "1140906": { + "Name": "坠落,然后飞翔", + "Desc": "消失时,使风堇行动提前#1[i]%。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 52.80000000074506, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 73.92000000085682, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 95.04000000003725, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 116.16000000014901, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 137.28000000026077, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 158.40000000037253, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 179.5200000004843, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1409, + "Set4IDList": [ + 125, + 101, + 114 + ], + "Set2IDList": [ + 320, + 302, + 308 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "WindAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 304, + 253 + ] + } + }, + "8001": { + "Name": "{NICKNAME}", + "Desc": "登上星穹列车的{F#少女}{M#少年}。\\n为了消除星核带来的危机,选择与星穹列车同行。", + "CharaInfo": { + "Camp": "星穹列车", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 101, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 102, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 103, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 104, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 105, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 106, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 107, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 108, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 109, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 110, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 111, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 112, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 113, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 114, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 115, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 116, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 117, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 118, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 119, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 120, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 121, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 122, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 123, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 124, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 125, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 126, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 127, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 128, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 129, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 130, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 131, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 132, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 133, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 134, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 995, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 996, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 992, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 993, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 997, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 994, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 998, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 999, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 800101, + "Name": "坠临万界的星芒", + "Desc": "施放终结技消灭敌方目标时,开拓者额外恢复#1[i]点能量,该效果每次攻击只能触发1次。", + "ParamList": [ + 10 + ] + }, + "2": { + "Id": 800102, + "Name": "因缘假合的人身", + "Desc": "施放攻击后,若击中的敌方目标弱点为物理属性,则回复等同于开拓者#1[i]%攻击力的生命值。", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 800103, + "Name": "揭示前路的言灵", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 800104, + "Name": "凝眸毁灭的瞬间", + "Desc": "击中处于弱点击破状态的敌方目标时,暴击率提高#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Id": 800105, + "Name": "劫余重生的希望", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 800106, + "Name": "拓宇行天的意志", + "Desc": "开拓者消灭敌方目标时,也会触发天赋。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800101": { + "Id": 800101, + "Name": "再见安打", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800102": { + "Id": 800102, + "Name": "安息全垒打", + "Desc": "对指定敌方单体及其相邻目标造成等同于开拓者#1[i]%攻击力的物理属性伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.562500000698492 + ] + } + } + }, + "800103": { + "Id": 800103, + "Name": "星尘王牌", + "Desc": "在两种攻击模式中选择其一挥出全力一击。\\n【全胜•再见安打】:对指定敌方单体造成等同于开拓者#1[i]%攻击力的物理属性伤害。\\n【全胜•安息全垒打】:对指定敌方单体造成等同于开拓者#2[i]%攻击力的物理属性伤害,并对其相邻目标造成等同于开拓者#3[i]%攻击力的物理属性伤害。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968, + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095, + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935, + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492, + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492, + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169, + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661, + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536, + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058, + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564, + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132, + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831, + 3.1500000001396984, + 1.890000000828877 + ] + } + } + }, + "800104": { + "Id": 800104, + "Name": "牵制盗垒", + "Desc": "每次击破敌方目标的弱点后,攻击力提高#1[i]%,该效果最多叠加#2[i]层。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "800106": { + "Id": 800106, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800107": { + "Id": 800107, + "Name": "不灭三振", + "Desc": "使用秘技后立即为我方全体回复等同于各自生命上限#1[i]%的生命值。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + } + } + }, + "800108": { + "Id": 800108, + "Name": "全胜•再见安打", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的物理属性伤害。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831 + ] + } + } + }, + "800109": { + "Id": 800109, + "Name": "全胜•安息全垒打", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的物理属性伤害,同时对其相邻目标造成等同于开拓者#2[i]%攻击力的物理属性伤害。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Maze.png", + "LevelUpSkillID": [ + 800107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 8001101, + "PointName": "蓄势", + "PointDesc": "战斗开始时,立即恢复#1[i]点能量。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 8001102, + "PointName": "坚韧", + "PointDesc": "天赋的效果每层同时使开拓者的防御力提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 8001103, + "PointName": "斗志", + "PointDesc": "施放战技或终结技【全胜•安息全垒打】时,对指定敌方目标造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8001101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8001202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8001203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8001102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8001205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8001206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8001103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8001, + "Set4IDList": [ + 105, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "8002": { + "Name": "{NICKNAME}", + "Desc": "登上星穹列车的{F#少女}{M#少年}。\\n为了消除星核带来的危机,选择与星穹列车同行。", + "CharaInfo": { + "Camp": "星穹列车", + "VA": { + "Chinese": "…", + "Japanese": "…", + "Korean": "…", + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 101, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 102, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 103, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 104, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 105, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 106, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 107, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 108, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 109, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 110, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 111, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 112, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 113, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 114, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 115, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 116, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 117, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 118, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 119, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 120, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 121, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 122, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 123, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 124, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 125, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 126, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 127, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 128, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 129, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 130, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 131, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 132, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 133, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 134, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 995, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 996, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 992, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 993, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 997, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 994, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 998, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 999, + "VoiceTitle": "…", + "VoiceM": "…", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 800201, + "Name": "坠临万界的星芒", + "Desc": "施放终结技消灭敌方目标时,开拓者额外恢复#1[i]点能量,该效果每次攻击只能触发1次。", + "ParamList": [ + 10 + ] + }, + "2": { + "Id": 800202, + "Name": "因缘假合的人身", + "Desc": "施放攻击后,若击中的敌方目标弱点为物理属性,则回复等同于开拓者#1[i]%攻击力的生命值。", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 800203, + "Name": "揭示前路的言灵", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 800204, + "Name": "凝眸毁灭的瞬间", + "Desc": "击中处于弱点击破状态的敌方目标时,暴击率提高#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Id": 800205, + "Name": "劫余重生的希望", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 800206, + "Name": "拓宇行天的意志", + "Desc": "开拓者消灭敌方目标时,也会触发天赋。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800201": { + "Id": 800201, + "Name": "再见安打", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的物理属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800202": { + "Id": 800202, + "Name": "安息全垒打", + "Desc": "对指定敌方单体及其相邻目标造成等同于开拓者#1[i]%攻击力的物理属性伤害。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.562500000698492 + ] + } + } + }, + "800203": { + "Id": 800203, + "Name": "星尘王牌", + "Desc": "在两种攻击模式中选择其一挥出全力一击。\\n【全胜•再见安打】:对指定敌方单体造成等同于开拓者#1[i]%攻击力的物理属性伤害。\\n【全胜•安息全垒打】:对指定敌方单体造成等同于开拓者#2[i]%攻击力的物理属性伤害,并对其相邻目标造成等同于开拓者#3[i]%攻击力的物理属性伤害。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968, + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095, + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935, + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492, + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492, + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169, + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661, + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536, + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058, + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564, + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132, + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831, + 3.1500000001396984, + 1.890000000828877 + ] + } + } + }, + "800204": { + "Id": 800204, + "Name": "牵制盗垒", + "Desc": "每次击破敌方目标的弱点后,攻击力提高#1[i]%,该效果最多叠加#2[i]层。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "800206": { + "Id": 800206, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800207": { + "Id": 800207, + "Name": "不灭三振", + "Desc": "使用秘技后立即为我方全体回复等同于各自生命上限#1[i]%的生命值。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + } + } + }, + "800208": { + "Id": 800208, + "Name": "全胜•再见安打", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的物理属性伤害。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831 + ] + } + } + }, + "800209": { + "Id": 800209, + "Name": "全胜•安息全垒打", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的物理属性伤害,同时对其相邻目标造成等同于开拓者#2[i]%攻击力的物理属性伤害。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Maze.png", + "LevelUpSkillID": [ + 800207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 8002101, + "PointName": "蓄势", + "PointDesc": "战斗开始时,立刻恢复#1[i]点能量。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 8002102, + "PointName": "坚韧", + "PointDesc": "天赋的效果每层同时使开拓者的防御力提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 8002103, + "PointName": "斗志", + "PointDesc": "施放战技或终结技【全胜•安息全垒打】时,对指定敌方目标造成的伤害提高#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002201, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002202, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8002101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002203, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8002202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002204, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8002203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002205, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8002102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8002205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002207, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8002206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002208, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8002103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002210, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8002, + "Set4IDList": [ + 105, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "8003": { + "Name": "{NICKNAME}", + "Desc": "登上星穹列车的{F#少女}{M#少年}。\\n为了消除星核带来的危机,选择与星穹列车同行。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy2", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 800301, + "Name": "大地芯髓的鸣动", + "Desc": "施放普攻时,额外造成等同于开拓者#1[i]%防御力的火属性伤害;施放强化普攻时,额外造成等同于开拓者#2[i]%防御力的火属性伤害。", + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Id": 800302, + "Name": "古老寒铁的坚守", + "Desc": "触发天赋时,为我方全体提供的护盾能够额外抵消等同于开拓者防御力#1[i]%+#2[i]的伤害。", + "ParamList": [ + 0.02000000001862645, + 27 + ] + }, + "3": { + "Id": 800303, + "Name": "砌造未来的蓝图", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 800304, + "Name": "驻留文明的誓言", + "Desc": "战斗开始时,立即获得#1[i]层【灼热意志】。", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 800305, + "Name": "点燃光焰的勇气", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 800306, + "Name": "永屹城垣的壁垒", + "Desc": "施放强化普攻或终结技后,开拓者的防御力提高#1[i]%,最多叠加#2[i]层。", + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + }, + "Skills": { + "800301": { + "Id": 800301, + "Name": "穿彻坚冰的烈芒", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的火属性伤害并叠加1层【灼热意志】。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800302": { + "Id": 800302, + "Name": "炽燃不灭的琥珀", + "Desc": "施放战技后,开拓者受到的伤害降低#1[i]%并叠加1层【灼热意志】,此外有#2[i]%基础概率使敌方全体陷入嘲讽状态,持续#3[i]回合。", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.41000000038184226, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4300000004004687, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4625000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.47500000009313226, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4875000002793968, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5100000004749745, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.530000000493601, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5400000005029142, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5500000005122274, + 1, + 1 + ] + } + } + }, + "800303": { + "Id": 800303, + "Name": "陷阵无回的炎枪", + "Desc": "对敌方全体造成等同于开拓者#1[i]%攻击力+#2[i]%防御力的火属性伤害。下一次施放普攻时,自动获得强化且不消耗【灼热意志】。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 1.8750000004656613 + ] + } + } + }, + "800304": { + "Id": 800304, + "Name": "筑城者遗宝", + "Desc": "每受到1次攻击,叠加1层【灼热意志】,最多可叠加#3[i]层。\\n【灼热意志】层数不低于4时,普攻将获得强化,对指定敌方单体及其相邻目标同时造成伤害。\\n开拓者施放普攻、战技、终结技后,为我方全体提供能够抵消等同于开拓者#1[f1]%防御力+#4[i]伤害的护盾,持续#2[i]回合。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 2, + 8, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04250000021420419, + 2, + 8, + 32 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04499999969266355, + 2, + 8, + 41 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04749999986961484, + 2, + 8, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.05000000004656613, + 2, + 8, + 56 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.05199999990873039, + 2, + 8, + 62 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.05399999977089465, + 2, + 8, + 66.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.055999999633058906, + 2, + 8, + 71 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.057999999495223165, + 2, + 8, + 75.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.060000000055879354, + 2, + 8, + 80 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.06199999991804361, + 2, + 8, + 84.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.06399999978020787, + 2, + 8, + 89 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.06599999964237213, + 2, + 8, + 93.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.06799999950453639, + 2, + 8, + 98 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.07000000006519258, + 2, + 8, + 102.50000000046566 + ] + } + } + }, + "800306": { + "Id": 800306, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800307": { + "Id": 800307, + "Name": "守护者召令", + "Desc": "使用秘技后,下一次战斗开始时给自身提供能够抵消等同于开拓者#1[i]%防御力+#2[i]伤害的护盾,持续#3[i]回合。", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 384, + 1 + ] + } + } + }, + "800308": { + "Id": 800308, + "Name": "穿彻坚冰的烈芒", + "Desc": "消耗4层【灼热意志】,强化普攻。对指定敌方单体造成等同于开拓者#1[i]%攻击力的火属性伤害,同时对其相邻目标造成等同于开拓者#2[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Maze.png", + "LevelUpSkillID": [ + 800307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 0.1500000001396984, + 1 + ], + "PointID": 8003101, + "PointName": "强援弱", + "PointDesc": "施放战技后,我方全体受到的伤害降低#2[i]%,持续#3[i]回合。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 8003201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8003102, + "PointName": "生先死", + "PointDesc": "开拓者施放强化普攻后,回复等同于自身生命上限#1[i]%的生命值。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 8003201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.1500000001396984 + ], + "PointID": 8003103, + "PointName": "行胜思", + "PointDesc": "回合开始时,若开拓者持有护盾保护,则攻击力提高#2[i]%并恢复#1[i]点能量,持续到行动结束。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003201, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8003101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003203, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003205, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8003102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003206, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003207, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003209, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8003208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003210, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8003208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8003, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 302 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 278, + 215 + ] + } + }, + "8004": { + "Name": "{NICKNAME}", + "Desc": "登上星穹列车的{F#少女}{M#少年}。\\n为了消除星核带来的危机,选择与星穹列车同行。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl2", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 800401, + "Name": "大地芯髓的鸣动", + "Desc": "施放普攻时,额外造成等同于开拓者#1[i]%防御力的火属性伤害;施放强化普攻时,额外造成等同于开拓者#2[i]%防御力的火属性伤害。", + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Id": 800402, + "Name": "古老寒铁的坚守", + "Desc": "触发天赋时,为我方全体提供的护盾能够额外抵消等同于开拓者防御力#1[i]%+#2[i]的伤害。", + "ParamList": [ + 0.02000000001862645, + 27 + ] + }, + "3": { + "Id": 800403, + "Name": "砌造未来的蓝图", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 800404, + "Name": "驻留文明的誓言", + "Desc": "战斗开始时,立即获得#1[i]层【灼热意志】。", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 800405, + "Name": "点燃光焰的勇气", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 800406, + "Name": "永屹城垣的壁垒", + "Desc": "施放强化普攻或终结技后,开拓者的防御力提高#1[i]%,最多叠加#2[i]层。", + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + }, + "Skills": { + "800401": { + "Id": 800401, + "Name": "穿彻坚冰的烈芒", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的火属性伤害并叠加1层【灼热意志】。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800402": { + "Id": 800402, + "Name": "炽燃不灭的琥珀", + "Desc": "施放战技后,开拓者受到的伤害降低#1[i]%并叠加1层【灼热意志】,此外有#2[i]%基础概率使敌方全体陷入嘲讽状态,持续#3[i]回合。", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.41000000038184226, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4300000004004687, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4625000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.47500000009313226, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4875000002793968, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5100000004749745, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.530000000493601, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5400000005029142, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5500000005122274, + 1, + 1 + ] + } + } + }, + "800403": { + "Id": 800403, + "Name": "陷阵无回的炎枪", + "Desc": "对敌方全体造成等同于开拓者#1[i]%攻击力+#2[i]%防御力的火属性伤害。下一次施放普攻时,自动获得强化且不消耗【灼热意志】。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 1.8750000004656613 + ] + } + } + }, + "800404": { + "Id": 800404, + "Name": "筑城者遗宝", + "Desc": "每受到1次攻击,叠加1层【灼热意志】,最多可叠加#3[i]层。\\n【灼热意志】层数不低于4时,普攻将获得强化,对指定敌方单体及其相邻目标同时造成伤害。\\n开拓者施放普攻、战技、终结技后,为我方全体提供能够抵消等同于开拓者#1[f1]%防御力+#4[i]伤害的护盾,持续#2[i]回合。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 2, + 8, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04250000021420419, + 2, + 8, + 32 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04499999969266355, + 2, + 8, + 41 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04749999986961484, + 2, + 8, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.05000000004656613, + 2, + 8, + 56 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.05199999990873039, + 2, + 8, + 62 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.05399999977089465, + 2, + 8, + 66.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.055999999633058906, + 2, + 8, + 71 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.057999999495223165, + 2, + 8, + 75.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.060000000055879354, + 2, + 8, + 80 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.06199999991804361, + 2, + 8, + 84.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.06399999978020787, + 2, + 8, + 89 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.06599999964237213, + 2, + 8, + 93.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.06799999950453639, + 2, + 8, + 98 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.07000000006519258, + 2, + 8, + 102.50000000046566 + ] + } + } + }, + "800406": { + "Id": 800406, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800407": { + "Id": 800407, + "Name": "守护者召令", + "Desc": "使用秘技后,下一次战斗开始时给自身提供能够抵消等同于开拓者#1[i]%防御力+#2[i]伤害的护盾,持续#3[i]回合。", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 384, + 1 + ] + } + } + }, + "800408": { + "Id": 800408, + "Name": "穿彻坚冰的烈芒", + "Desc": "消耗4层【灼热意志】,强化普攻。对指定敌方单体造成等同于开拓者#1[i]%攻击力的火属性伤害,同时对其相邻目标造成等同于开拓者#2[i]%攻击力的火属性伤害。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Maze.png", + "LevelUpSkillID": [ + 800407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 0.1500000001396984, + 1 + ], + "PointID": 8004101, + "PointName": "强援弱", + "PointDesc": "施放战技后,我方全体受到的伤害降低#2[i]%,持续#3[i]回合。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 8004201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8004102, + "PointName": "生先死", + "PointDesc": "开拓者施放强化普攻后,回复等同于自身生命上限#1[i]%的生命值。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 8004201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.1500000001396984 + ], + "PointID": 8004103, + "PointName": "行胜思", + "PointDesc": "回合开始时,若开拓者持有护盾保护,则攻击力提高#2[i]%并恢复#1[i]点能量,持续到行动结束。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004201, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8004101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004203, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8004202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004204, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "生命值" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004205, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8004102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004206, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8004205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004207, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004208, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004209, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8004208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻击力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004210, + "PointName": "防御强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8004208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8004, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 302 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 278, + 215 + ] + } + }, + "8005": { + "Name": "{NICKNAME}", + "Desc": "登上星穹列车的{F#少女}{M#少年}。\\n为了消除星核带来的危机,选择与星穹列车同行。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy3", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 800501, + "Name": "您的最佳观众席", + "Desc": "施放首次战技后立即回复#1[i]点战技点。", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 800502, + "Name": "越狱的跨洋彩虹", + "Desc": "战斗开始时,开拓者的能量恢复效率提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "Id": 800503, + "Name": "休止符的疗养院", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 800504, + "Name": "袒护白鸽的冠冕", + "Desc": "开拓者在场时,使除自身以外的队友击破特攻提高,提高数值等同于开拓者#1[i]%的击破特攻。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 800505, + "Name": "包庇旧节拍的诗", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 800506, + "Name": "明天,栖息聚光之下", + "Desc": "战技的额外伤害次数增加#1[i]次。", + "ParamList": [ + 2 + ] + } + }, + "Skills": { + "800501": { + "Id": 800501, + "Name": "摇摆的礼仪", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800502": { + "Id": 800502, + "Name": "中场馈赠的雨", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的虚数属性伤害,并额外造成4次伤害。每次伤害对随机敌方单体造成等同于开拓者#1[i]%攻击力的虚数属性伤害。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 2 + ] + } + } + }, + "800503": { + "Id": 800503, + "Name": "喧嚣的舞灯巡游", + "Desc": "为我方全体附上【伴舞】效果,持续#1[i]回合,开拓者每回合开始时持续回合数减1。持有【伴舞】的我方目标击破特攻提高#3[i]%,并且攻击处于弱点击破状态下的敌方目标后,会将本次攻击的削韧值转化为1次超击破伤害。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 1, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 1, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 1, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 1, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 0.375 + ] + } + } + }, + "800504": { + "Id": 800504, + "Name": "全屏段的高空踏歌", + "Desc": "当有敌方目标的弱点被击破时,开拓者立即恢复#1[f1]点能量。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "800506": { + "Id": 800506, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800507": { + "Id": 800507, + "Name": "即刻!独奏团", + "Desc": "使用秘技后,下一次战斗开始时使我方全体的击破特攻提高#1[i]%,持续#2[i]回合。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Maze.png", + "LevelUpSkillID": [ + 800507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.40000000037252903, + 0.5000000004656613, + 0.6000000005587935 + ], + "PointID": 8005101, + "PointName": "卫我起舞", + "PointDesc": "当场上敌方目标数量等于5或以上/4/3/2/1名时,【伴舞】效果触发的超击破伤害提高#1[i]%/#2[i]%/#3[i]%/#4[i]%/#5[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 8005102, + "PointName": "随波逐流", + "PointDesc": "施放战技时,第一次伤害的削韧值额外提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 8005103, + "PointName": "剧院之帽", + "PointDesc": "我方目标造成弱点击破后额外使敌方目标行动延后#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005201, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005202, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005203, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005205, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005206, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005207, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005209, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8005208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005210, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8005208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "击破特攻" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 4.62000000057742, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 129.36000000033528, + "DefenceAdd": 4.62000000057742, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 166.32000000029802, + "DefenceAdd": 4.62000000057742, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 203.28000000026077, + "DefenceAdd": 4.62000000057742, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 240.24000000022352, + "DefenceAdd": 4.62000000057742, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 277.20000000018626, + "DefenceAdd": 4.62000000057742, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 314.160000000149, + "DefenceAdd": 4.62000000057742, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8005, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 316, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 243, + 191 + ] + } + }, + "8006": { + "Name": "{NICKNAME}", + "Desc": "登上星穹列车的{F#少女}{M#少年}。\\n为了消除星核带来的危机,选择与星穹列车同行。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl3", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 800601, + "Name": "您的最佳观众席", + "Desc": "施放首次战技后立即回复#1[i]点战技点。", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 800602, + "Name": "越狱的跨洋彩虹", + "Desc": "战斗开始时,开拓者的能量恢复效率提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "Id": 800603, + "Name": "休止符的疗养院", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级。", + "ParamList": [] + }, + "4": { + "Id": 800604, + "Name": "袒护白鸽的冠冕", + "Desc": "开拓者在场时,使除自身以外的队友击破特攻提高,提高数值等同于开拓者#1[i]%的击破特攻。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 800605, + "Name": "包庇旧节拍的诗", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 800606, + "Name": "明天,栖息聚光之下", + "Desc": "战技的额外伤害次数增加#1[i]次。", + "ParamList": [ + 2 + ] + } + }, + "Skills": { + "800601": { + "Id": 800601, + "Name": "摇摆的礼仪", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的虚数属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800602": { + "Id": 800602, + "Name": "中场馈赠的雨", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的虚数属性伤害,并额外造成4次伤害。每次伤害对随机敌方单体造成等同于开拓者#1[i]%攻击力的虚数属性伤害。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 2 + ] + } + } + }, + "800603": { + "Id": 800603, + "Name": "喧嚣的舞灯巡游", + "Desc": "为我方全体附上【伴舞】效果,持续#1[i]回合,开拓者每回合开始时持续回合数减1。持有【伴舞】的我方目标击破特攻提高#3[i]%,并且攻击处于弱点击破状态下的敌方目标后,会将本次攻击的削韧值转化为1次超击破伤害。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 1, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 1, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 1, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 1, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 0.375 + ] + } + } + }, + "800604": { + "Id": 800604, + "Name": "全屏段的高空踏歌", + "Desc": "当有敌方目标的弱点被击破时,开拓者立即恢复#1[f1]点能量。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "800606": { + "Id": 800606, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800607": { + "Id": 800607, + "Name": "即刻!独奏团", + "Desc": "使用秘技后,下一次战斗开始时使我方全体的击破特攻提高#1[i]%,持续#2[i]回合。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Maze.png", + "LevelUpSkillID": [ + 800607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.40000000037252903, + 0.5000000004656613, + 0.6000000005587935 + ], + "PointID": 8006101, + "PointName": "卫我起舞", + "PointDesc": "当场上敌方目标数量等于5或以上/4/3/2/1名时,【伴舞】效果触发的超击破伤害提高#1[i]%/#2[i]%/#3[i]%/#4[i]%/#5[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 8006102, + "PointName": "随波逐流", + "PointDesc": "施放战技时,第一次伤害的削韧值额外提高#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 8006103, + "PointName": "剧院之帽", + "PointDesc": "我方目标造成弱点击破后额外使敌方目标行动延后#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006201, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006202, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006203, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "击破特攻" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006204, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "效果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006205, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006206, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006207, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "击破特攻" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006208, + "PointName": "效果抵抗强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "效果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006209, + "PointName": "伤害强化•虚数", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8006208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性伤害提高" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006210, + "PointName": "击破强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8006208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "击破特攻" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 4.62000000057742, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 129.36000000033528, + "DefenceAdd": 4.62000000057742, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 166.32000000029802, + "DefenceAdd": 4.62000000057742, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 203.28000000026077, + "DefenceAdd": 4.62000000057742, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 240.24000000022352, + "DefenceAdd": 4.62000000057742, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 277.20000000018626, + "DefenceAdd": 4.62000000057742, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 314.160000000149, + "DefenceAdd": 4.62000000057742, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8006, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 316, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 243, + 191 + ] + } + }, + "8007": { + "Name": "{NICKNAME}", + "Desc": "登上星穹列车的{F#少女}{M#少年}。\\n为了消除星核带来的危机,选择与星穹列车同行。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy4", + "SPNeed": 160, + "BaseType": "Memory", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 800701, + "Name": "现在的记叙者", + "Desc": "持有【迷迷的声援】的我方目标暴击率提高#1[i]%。当我方目标持有【迷迷的声援】时,【迷迷的声援】的效果对该目标的忆灵/忆师也生效,该效果不可叠加。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 800702, + "Name": "过往的拾遗者", + "Desc": "除迷迷以外的我方忆灵行动时,开拓者恢复#1[i]点能量。该效果每回合最多触发#2[i]次,开拓者回合开始时重置可触发次数。", + "ParamList": [ + 8, + 1 + ] + }, + "3": { + "Id": 800703, + "Name": "未来的咏唱者", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级;忆灵天赋等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 800704, + "Name": "缪斯的新舞伴", + "Desc": "使能量上限为0的我方目标主动施放技能时,迷迷也能够获得#1[i]%充能,并且该目标通过【迷迷的声援】造成的真实伤害倍率额外提高#2[i]%。", + "ParamList": [ + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "5": { + "Id": 800705, + "Name": "诗篇的裁缝匠", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级;忆灵技等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 800706, + "Name": "神启的转呈者", + "Desc": "终结技的暴击率固定为100%。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800701": { + "Id": 800701, + "Name": "包在我身上!", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800702": { + "Id": 800702, + "Name": "就决定是你了!", + "Desc": "召唤忆灵迷迷。若迷迷已在场,为迷迷回复等同于迷迷生命上限#1[i]%的生命值,并且使迷迷获得#2[i]%充能。", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919, + 0.10000000009313226 + ] + } + } + }, + "800703": { + "Id": 800703, + "Name": "一起上吧,迷迷!", + "Desc": "召唤忆灵迷迷。使迷迷获得#2[i]%充能,随后使迷迷对敌方全体造成等同于迷迷#1[i]%攻击力的冰属性伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.40000000037252903 + ] + } + } + }, + "800704": { + "Id": 800704, + "Name": "无所不能的伙伴", + "Desc": "忆灵迷迷初始拥有#1[i]点速度和等同于开拓者#2[i]%生命上限+#4[i]的生命上限。我方全体每累计恢复#3[i]点能量,迷迷都会获得1%充能。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 130, + 0.5000000004656613, + 10, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 130, + 0.530000000493601, + 10, + 424 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 130, + 0.5600000005215406, + 10, + 448 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 130, + 0.5900000005494803, + 10, + 472 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 130, + 0.62000000057742, + 10, + 496 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 130, + 0.6500000006053597, + 10, + 520 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 130, + 0.6875000004656613, + 10, + 550 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 130, + 0.7250000003259629, + 10, + 580 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 130, + 0.7625000008847564, + 10, + 610 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 130, + 0.8000000007450581, + 10, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 130, + 0.8300000007729977, + 10, + 664 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 130, + 0.8600000008009374, + 10, + 688 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 130, + 0.8900000008288771, + 10, + 712 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 130, + 0.9200000008568168, + 10, + 736 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 130, + 0.9500000008847564, + 10, + 760 + ] + } + } + }, + "800706": { + "Id": 800706, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800707": { + "Id": 800707, + "Name": "记忆如往日重现", + "Desc": "使用秘技后,制造1片持续#1[i]秒的特殊领域。处于特殊领域内的敌人陷入时停状态。时停状态下的敌人会停止所有行动。\\n与处于时停状态下的敌人进入战斗后,使敌方全体行动延后#2[i]%,随后对敌方全体造成等同于开拓者#3[i]%攻击力的冰属性伤害。\\n我方制造的领域效果最多存在1个。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 1 + ] + } + } + }, + "800709": { + "Id": 800709, + "Name": "就决定是你了!", + "Desc": "", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + }, + "2": { + "Level": 2, + "ParamList": [] + }, + "3": { + "Level": 3, + "ParamList": [] + }, + "4": { + "Level": 4, + "ParamList": [] + }, + "5": { + "Level": 5, + "ParamList": [] + }, + "6": { + "Level": 6, + "ParamList": [] + }, + "7": { + "Level": 7, + "ParamList": [] + }, + "8": { + "Level": 8, + "ParamList": [] + }, + "9": { + "Level": 9, + "ParamList": [] + }, + "10": { + "Level": 10, + "ParamList": [] + }, + "11": { + "Level": 11, + "ParamList": [] + }, + "12": { + "Level": 12, + "ParamList": [] + }, + "13": { + "Level": 13, + "ParamList": [] + }, + "14": { + "Level": 14, + "ParamList": [] + }, + "15": { + "Level": 15, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Maze.png", + "LevelUpSkillID": [ + 800707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.40000000037252903 + ], + "PointID": 8007101, + "PointName": "追念之权杖", + "PointDesc": "战斗开始时,开拓者的行动提前#1[i]%。首次召唤迷迷时,使迷迷获得#2[i]%充能。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8007102, + "PointName": "袖珍的事诗", + "PointDesc": "迷迷施放【坏人!麻烦!】时,立即获得#1[i]%充能。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 100, + 10, + 0.02000000001862645, + 0.20000000018626451 + ], + "PointID": 8007103, + "PointName": "磁石与长链", + "PointDesc": "持有【迷迷的声援】的我方目标能量上限大于#1[i]点时,每超过#2[i]点,通过【迷迷的声援】造成的真实伤害倍率额外提高#3[f1]%,最多提高#4[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007201, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8007201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007203, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8007201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007204, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8007101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 15200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007205, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8007101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8007102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007207, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8007102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007208, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8007103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8007208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007210, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8007209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "迷迷", + "Icon": "SpriteOutput/ServantIconTeam/18007B.png", + "HPBase": "#4", + "HPInherit": "#2", + "HPSkill": 800704, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 800704, + "Aggro": 100, + "Skills": { + "1800701": { + "Name": "坏人!麻烦!", + "Desc": "造成#2[i]次伤害,每次对敌方随机单体造成等同于迷迷#1[f1]%攻击力的冰属性伤害。最后对敌方全体造成等同于迷迷#3[i]%攻击力的冰属性伤害。", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 4, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.21599999978207052, + 4, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2520000000949949, + 4, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 4, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.32400000002235174, + 4, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3600000003352761, + 4, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3959999999497086, + 4, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43200000026263297, + 4, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4679999998770654, + 4, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5040000001899898, + 4, + 1.2600000002421439 + ] + } + } + }, + "1800703": { + "Name": "伙伴!一起!", + "Desc": "使我方全体的暴击伤害提高,提高数值等同于迷迷#1[f1]%暴击伤害+#2[f1]%。\\n若充能未达到100%,迷迷行动时自动施放【坏人!麻烦!】。充能达到100%时迷迷立即行动,下一次行动时能够选择我方单体并施放【我会!帮你!】。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.16799999959766865 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09599999967031181, + 0.19200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1079999995417893, + 0.21599999978207052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1319999999832362, + 0.2639999999664724 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.14399999985471368, + 0.28799999970942736 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.15599999972619116, + 0.31200000015087426 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.16799999959766865, + 0.3359999998938292 + ] + } + } + }, + "1800705": { + "Name": "迷迷,加油!", + "Desc": "迷迷被召唤时,立即获得#1[i]%充能。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + } + } + }, + "1800706": { + "Name": "遗憾…不留", + "Desc": "迷迷消失时,使开拓者行动提前#1[i]%。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1800707": { + "Name": "我会!帮你!", + "Desc": "使指定我方单体行动提前#3[i]%并附上【迷迷的声援】,持续#2[i]回合。\\n持有【迷迷的声援】的目标每造成1次伤害,都会再额外造成1次等同于原伤害#1[i]%真实伤害。\\n当对自身施放该技能时,无法触发行动提前效果。", + "Type": "Servant", + "Tag": "Support", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 3, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.22000000020489097, + 3, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 3, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.26000000024214387, + 3, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2800000002607703, + 3, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3200000002980232, + 3, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3400000003166497, + 3, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 3, + 1 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8007, + "Set4IDList": [ + 123, + 104, + 110 + ], + "Set2IDList": [ + 317, + 312, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 294, + 237 + ], + "LocalCriticalChance": 1 + } + }, + "8008": { + "Name": "{NICKNAME}", + "Desc": "登上星穹列车的{F#少女}{M#少年}。\\n为了消除星核带来的危机,选择与星穹列车同行。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl4", + "SPNeed": 160, + "BaseType": "Memory", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 800801, + "Name": "现在的记叙者", + "Desc": "持有【迷迷的声援】的我方目标暴击率提高#1[i]%。当我方目标持有【迷迷的声援】时,【迷迷的声援】的效果对该目标的忆灵/忆师也生效,该效果不可叠加。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 800802, + "Name": "过往的拾遗者", + "Desc": "除迷迷以外的我方忆灵行动时,开拓者恢复#1[i]点能量。该效果每回合最多触发#2[i]次,开拓者回合开始时重置可触发次数。", + "ParamList": [ + 8, + 1 + ] + }, + "3": { + "Id": 800803, + "Name": "未来的咏唱者", + "Desc": "战技等级+2,最多不超过15级;天赋等级+2,最多不超过15级;忆灵天赋等级+1,最多不超过10级。", + "ParamList": [] + }, + "4": { + "Id": 800804, + "Name": "缪斯的新舞伴", + "Desc": "使能量上限为0的我方目标主动施放技能时,迷迷也能够获得#1[i]%充能,并且该目标通过【迷迷的声援】造成的真实伤害倍率额外提高#2[i]%。", + "ParamList": [ + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "5": { + "Id": 800805, + "Name": "诗篇的裁缝匠", + "Desc": "终结技等级+2,最多不超过15级;普攻等级+1,最多不超过10级;忆灵技等级+1,最多不超过10级。", + "ParamList": [] + }, + "6": { + "Id": 800806, + "Name": "神启的转呈者", + "Desc": "终结技的暴击率固定为100%。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800801": { + "Id": 800801, + "Name": "包在我身上!", + "Desc": "对指定敌方单体造成等同于开拓者#1[i]%攻击力的冰属性伤害。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800802": { + "Id": 800802, + "Name": "就决定是你了!", + "Desc": "召唤忆灵迷迷。若迷迷已在场,为迷迷回复等同于迷迷生命上限#1[i]%的生命值,并且使迷迷获得#2[i]%充能。", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919, + 0.10000000009313226 + ] + } + } + }, + "800803": { + "Id": 800803, + "Name": "一起上吧,迷迷!", + "Desc": "召唤忆灵迷迷。使迷迷获得#2[i]%充能,随后使迷迷对敌方全体造成等同于迷迷#1[i]%攻击力的冰属性伤害。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.40000000037252903 + ] + } + } + }, + "800804": { + "Id": 800804, + "Name": "无所不能的伙伴", + "Desc": "忆灵迷迷初始拥有#1[i]点速度和等同于开拓者#2[i]%生命上限+#4[i]的生命上限。我方全体每累计恢复#3[i]点能量,迷迷都会获得1%充能。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 130, + 0.5000000004656613, + 10, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 130, + 0.530000000493601, + 10, + 424 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 130, + 0.5600000005215406, + 10, + 448 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 130, + 0.5900000005494803, + 10, + 472 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 130, + 0.62000000057742, + 10, + 496 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 130, + 0.6500000006053597, + 10, + 520 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 130, + 0.6875000004656613, + 10, + 550 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 130, + 0.7250000003259629, + 10, + 580 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 130, + 0.7625000008847564, + 10, + 610 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 130, + 0.8000000007450581, + 10, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 130, + 0.8300000007729977, + 10, + 664 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 130, + 0.8600000008009374, + 10, + 688 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 130, + 0.8900000008288771, + 10, + 712 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 130, + 0.9200000008568168, + 10, + 736 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 130, + 0.9500000008847564, + 10, + 760 + ] + } + } + }, + "800806": { + "Id": 800806, + "Name": "攻击", + "Desc": "攻击敌人,进入战斗后削弱敌方目标对应属性韧性。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800807": { + "Id": 800807, + "Name": "记忆如往日重现", + "Desc": "使用秘技后,制造1片持续#1[i]秒的特殊领域。处于特殊领域内的敌人陷入时停状态。时停状态下的敌人会停止所有行动。\\n与处于时停状态下的敌人进入战斗后,使敌方全体行动延后#2[i]%,随后对敌方全体造成等同于开拓者#3[i]%攻击力的冰属性伤害。\\n我方制造的领域效果最多存在1个。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 1 + ] + } + } + }, + "800809": { + "Id": 800809, + "Name": "就决定是你了!", + "Desc": "", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + }, + "2": { + "Level": 2, + "ParamList": [] + }, + "3": { + "Level": 3, + "ParamList": [] + }, + "4": { + "Level": 4, + "ParamList": [] + }, + "5": { + "Level": 5, + "ParamList": [] + }, + "6": { + "Level": 6, + "ParamList": [] + }, + "7": { + "Level": 7, + "ParamList": [] + }, + "8": { + "Level": 8, + "ParamList": [] + }, + "9": { + "Level": 9, + "ParamList": [] + }, + "10": { + "Level": 10, + "ParamList": [] + }, + "11": { + "Level": 11, + "ParamList": [] + }, + "12": { + "Level": 12, + "ParamList": [] + }, + "13": { + "Level": 13, + "ParamList": [] + }, + "14": { + "Level": 14, + "ParamList": [] + }, + "15": { + "Level": 15, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Maze.png", + "LevelUpSkillID": [ + 800807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.40000000037252903 + ], + "PointID": 8008101, + "PointName": "追念之权杖", + "PointDesc": "战斗开始时,开拓者的行动提前#1[i]%。首次召唤迷迷时,使迷迷获得#2[i]%充能。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8008102, + "PointName": "袖珍的事诗", + "PointDesc": "迷迷施放【坏人!麻烦!】时,立即获得#1[i]%充能。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 100, + 10, + 0.02000000001862645, + 0.20000000018626451 + ], + "PointID": 8008103, + "PointName": "磁石与长链", + "PointDesc": "持有【迷迷的声援】的我方目标能量上限大于#1[i]点时,每超过#2[i]点,通过【迷迷的声援】造成的真实伤害倍率额外提高#3[f1]%,最多提高#4[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008201, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008202, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8008201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008203, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8008201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "暴击伤害" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008204, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻击力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 15200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008205, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008206, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "生命值" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008207, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "暴击伤害" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008208, + "PointName": "攻击强化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8008103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻击力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008209, + "PointName": "生命强化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "生命值" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008210, + "PointName": "暴击伤害强化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8008209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "暴击伤害" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "坏人!麻烦!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "伙伴!一起!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "迷迷", + "Icon": "SpriteOutput/ServantIconTeam/18007B.png", + "HPBase": "#4", + "HPInherit": "#2", + "HPSkill": 800704, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 800704, + "Aggro": 100, + "Skills": { + "1800701": { + "Name": "坏人!麻烦!", + "Desc": "造成#2[i]次伤害,每次对敌方随机单体造成等同于迷迷#1[f1]%攻击力的冰属性伤害。最后对敌方全体造成等同于迷迷#3[i]%攻击力的冰属性伤害。", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 4, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.21599999978207052, + 4, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2520000000949949, + 4, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 4, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.32400000002235174, + 4, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3600000003352761, + 4, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3959999999497086, + 4, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43200000026263297, + 4, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4679999998770654, + 4, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5040000001899898, + 4, + 1.2600000002421439 + ] + } + } + }, + "1800703": { + "Name": "伙伴!一起!", + "Desc": "使我方全体的暴击伤害提高,提高数值等同于迷迷#1[f1]%暴击伤害+#2[f1]%。\\n若充能未达到100%,迷迷行动时自动施放【坏人!麻烦!】。充能达到100%时迷迷立即行动,下一次行动时能够选择我方单体并施放【我会!帮你!】。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.16799999959766865 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09599999967031181, + 0.19200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1079999995417893, + 0.21599999978207052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1319999999832362, + 0.2639999999664724 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.14399999985471368, + 0.28799999970942736 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.15599999972619116, + 0.31200000015087426 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.16799999959766865, + 0.3359999998938292 + ] + } + } + }, + "1800705": { + "Name": "迷迷,加油!", + "Desc": "迷迷被召唤时,立即获得#1[i]%充能。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + } + } + }, + "1800706": { + "Name": "遗憾…不留", + "Desc": "迷迷消失时,使开拓者行动提前#1[i]%。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1800707": { + "Name": "我会!帮你!", + "Desc": "使指定我方单体行动提前#3[i]%并附上【迷迷的声援】,持续#2[i]回合。\\n持有【迷迷的声援】的目标每造成1次伤害,都会再额外造成1次等同于原伤害#1[i]%真实伤害。\\n当对自身施放该技能时,无法触发行动提前效果。", + "Type": "Servant", + "Tag": "Support", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 3, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.22000000020489097, + 3, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 3, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.26000000024214387, + 3, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2800000002607703, + 3, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3200000002980232, + 3, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3400000003166497, + 3, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 3, + 1 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8008, + "Set4IDList": [ + 123, + 104, + 110 + ], + "Set2IDList": [ + 317, + 312, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 294, + 237 + ], + "LocalCriticalChance": 1 + } + } +} \ No newline at end of file diff --git a/data/characters.en.json b/data/characters.en.json new file mode 100644 index 0000000..5990f11 --- /dev/null +++ b/data/characters.en.json @@ -0,0 +1,261882 @@ +{ + "1001": { + "Name": "March 7th", + "Desc": "A girl who once slumbered in eternal ice and knows nothing about her past.\\nTo find out the truth about her origins, she decided to travel with the Astral Express.\\nAs of right now, she has prepared about 67 different versions of her life story for herself.", + "CharaInfo": { + "Camp": "Astral Express", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "mar7th", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 100101, + "Name": "Memory of You", + "Desc": "Every time March 7th's Ultimate Freezes a target, she regenerates #1[i] Energy.", + "ParamList": [ + 6 + ] + }, + "2": { + "Id": 100102, + "Name": "Memory of It", + "Desc": "Upon entering battle, grants a Shield equal to #1[i]% of March 7th's DEF plus #3[i] to the ally with the lowest HP percentage, lasting for #2[i] turn(s).", + "ParamList": [ + 0.24000000022351742, + 3, + 320 + ] + }, + "3": { + "Id": 100103, + "Name": "Memory of Everything", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 100104, + "Name": "Never Forfeit Again", + "Desc": "The Talent's Counter effect can be triggered 1 more time in each turn. The DMG dealt by Counter increases by an amount that is equal to #1[i]% of March 7th's DEF.", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 100105, + "Name": "Never Forget Again", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 100106, + "Name": "Just Like This, Always...", + "Desc": "Allies under the protection of the Shield granted by the Skill restore HP equal to #1[i]% of their Max HP plus #2[i] at the beginning of each turn.", + "ParamList": [ + 0.0400000000372529, + 106 + ] + } + }, + "Skills": { + "100101": { + "Id": 100101, + "Name": "Frigid Cold Arrow", + "Desc": "Deals Ice DMG equal to #1[i]% of March 7th's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100102": { + "Id": 100102, + "Name": "The Power of Cuteness", + "Desc": "Provides a single ally with a Shield that can absorb DMG equal to #1[i]% of March 7th's DEF plus #4[i] for #2[i] turn(s).\\nIf the ally's current HP percentage is #3[i]% or higher, greatly increases the chance of enemies attacking that ally.", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3800000003539026, + 3, + 0.3000000002793968, + 190, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.40375000098720193, + 3, + 0.3000000002793968, + 304, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4275000002235174, + 3, + 0.3000000002793968, + 389.50000000046566, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.45125000085681677, + 3, + 0.3000000002793968, + 475, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.47500000009313226, + 3, + 0.3000000002793968, + 532, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.4940000001806766, + 3, + 0.3000000002793968, + 589, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5130000002682209, + 3, + 0.3000000002793968, + 631.7500000006985, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5320000003557652, + 3, + 0.3000000002793968, + 674.5000000004657, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5510000004433095, + 3, + 0.3000000002793968, + 717.2500000002328, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5700000005308539, + 3, + 0.3000000002793968, + 760, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5889999999199063, + 3, + 0.3000000002793968, + 802.7500000006985, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6080000000074506, + 3, + 0.3000000002793968, + 845.5000000004657, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6270000000949949, + 3, + 0.3000000002793968, + 888.2500000002328, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6460000001825392, + 3, + 0.3000000002793968, + 931, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6650000002700835, + 3, + 0.3000000002793968, + 973.7500000006985, + 5 + ] + } + } + }, + "100103": { + "Id": 100103, + "Name": "Glacial Cascade", + "Desc": "Deals Ice DMG equal to #1[i]% of March 7th's ATK to all enemies. Hit enemies have a #2[i]% base chance to be Frozen for #3[i] turn(s).\\nWhile Frozen, enemies cannot take action and will receive Ice Additional DMG equal to #4[i]% of March 7th's ATK at the beginning of each turn.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.5000000004656613, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.5000000004656613, + 1, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.5000000004656613, + 1, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.5000000004656613, + 1, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.5000000004656613, + 1, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.5000000004656613, + 1, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.5000000004656613, + 1, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.5000000004656613, + 1, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613, + 1, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.5000000004656613, + 1, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.5000000004656613, + 1, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.5000000004656613, + 1, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.5000000004656613, + 1, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.5000000004656613, + 1, + 0.7500000006984919 + ] + } + } + }, + "100104": { + "Id": 100104, + "Name": "Girl Power", + "Desc": "After a Shielded ally is attacked by an enemy, March 7th immediately Counters, dealing Ice DMG equal to #1[i]% of her ATK. This effect can be triggered #2[i] time(s) each turn.", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 2 + ] + } + } + }, + "100106": { + "Id": 100106, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100107": { + "Id": 100107, + "Name": "Freezing Beauty", + "Desc": "Immediately attacks the enemy. After entering battle, there is a #1[i]% base chance to Freeze a random enemy for #2[i] turn(s).\\nWhile Frozen, the enemy cannot take action and will take Ice Additional DMG equal to #3[i]% of March 7th's ATK at the beginning of each turn.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Maze.png", + "LevelUpSkillID": [ + 100107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001201, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001202, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1001101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001203, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1001202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001205, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1001102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001206, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1001205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001207, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001208, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1001103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001209, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001210, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001101, + "PointName": "Purify", + "PointDesc": "When using Skill, dispels 1 debuff from one designated ally.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1001201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1001102, + "PointName": "Reinforce", + "PointDesc": "The duration of the Shield generated from Skill is extended for #1[i] turn(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1001201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1001103, + "PointName": "Ice Spell", + "PointDesc": "When using Ultimate, increases the base chance to Freeze enemies by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 69.6000000005588, + "AttackAdd": 3.480000000447035, + "DefenceBase": 78, + "DefenceAdd": 3.9000000008381903, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 97.44000000040978, + "AttackAdd": 3.480000000447035, + "DefenceBase": 109.20000000018626, + "DefenceAdd": 3.9000000008381903, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 125.28000000026077, + "AttackAdd": 3.480000000447035, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 3.9000000008381903, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 153.12000000011176, + "AttackAdd": 3.480000000447035, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.9000000008381903, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 180.96000000089407, + "AttackAdd": 3.480000000447035, + "DefenceBase": 202.80000000074506, + "DefenceAdd": 3.9000000008381903, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 208.80000000074506, + "AttackAdd": 3.480000000447035, + "DefenceBase": 234, + "DefenceAdd": 3.9000000008381903, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 236.64000000059605, + "AttackAdd": 3.480000000447035, + "DefenceBase": 265.20000000018626, + "DefenceAdd": 3.9000000008381903, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1001, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 317 + ], + "PropertyList3": [ + "DefenceAddedRatio", + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta", + "DefenceAddedRatio" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusProbabilityBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 279, + 216 + ] + } + }, + "1002": { + "Name": "Dan Heng", + "Desc": "A cold and reserved young man who is reticent about his past.\\nTo avoid his kin, he decided to travel with the Astral Express.", + "CharaInfo": { + "Camp": "Astral Express", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "danheng", + "SPNeed": 100, + "BaseType": "Rogue", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 100201, + "Name": "The Higher You Fly, the Harder You Fall", + "Desc": "When the target enemy's current HP percentage is greater than or equal to #1[i]%, CRIT Rate increases by #2[i]%.", + "ParamList": [ + 0.5000000004656613, + 0.12000000011175871 + ] + }, + "2": { + "Id": 100202, + "Name": "Quell the Venom Octet, Quench the Vice O'Flame", + "Desc": "Reduces Talent cooldown by 1 turn.", + "ParamList": [] + }, + "3": { + "Id": 100203, + "Name": "Seen and Unseen", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 100204, + "Name": "Roaring Dragon and Soaring Sun", + "Desc": "When Dan Heng uses his Ultimate to defeat an enemy, he will immediately take action again.", + "ParamList": [] + }, + "5": { + "Id": 100205, + "Name": "A Drop of Rain Feeds a Torrent", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 100206, + "Name": "The Troubled Soul Lies in Wait", + "Desc": "The Slow state triggered by Skill reduces the enemy's SPD by an extra #1[i]%.", + "ParamList": [ + 0.0800000000745058 + ] + } + }, + "Skills": { + "100201": { + "Id": 100201, + "Name": "Cloudlancer Art: North Wind", + "Desc": "Deals Wind DMG equal to #1[i]% of Dan Heng's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100202": { + "Id": 100202, + "Name": "Cloudlancer Art: Torrent", + "Desc": "Deals Wind DMG equal to #1[i]% of Dan Heng's ATK to a single enemy.\\nWhen DMG dealt by Skill triggers CRIT Hit, there is a #4[i]% base chance to reduce the target's SPD by #2[i]%, lasting for #3[i] turn(s).", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3000000002793968, + 0.12000000011175871, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4300000004004687, + 0.12000000011175871, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5600000005215406, + 0.12000000011175871, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6900000006426126, + 0.12000000011175871, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.8200000007636845, + 0.12000000011175871, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9500000008847564, + 0.12000000011175871, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.1125000002793968, + 0.12000000011175871, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.2749999999068677, + 0.12000000011175871, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.4375000002328306, + 0.12000000011175871, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.6000000005587935, + 0.12000000011175871, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.7300000006798655, + 0.12000000011175871, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.8600000008009374, + 0.12000000011175871, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.9900000009220093, + 0.12000000011175871, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.1200000001117587, + 0.12000000011175871, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.2500000002328306, + 0.12000000011175871, + 2, + 1 + ] + } + } + }, + "100203": { + "Id": 100203, + "Name": "Ethereal Dream", + "Desc": "Deals Wind DMG equal to #1[i]% of Dan Heng's ATK to a single target enemy. If the attacked enemy is Slowed, the multiplier for the DMG dealt by Ultimate increases by #2[i]%.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058, + 1.440000000409782 + ] + } + } + }, + "100204": { + "Id": 100204, + "Name": "Superiority of Reach", + "Desc": "When Dan Heng becomes the target of an ally's ability, his next attack's Wind RES PEN increases by #1[i]%. This effect can be triggered again after #2[i] turn(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.19799999962560833, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.21599999978207052, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.2339999999385327, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2520000000949949, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2700000002514571, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.29250000044703484, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.31499999994412065, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3375000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3779999997932464, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3959999999497086, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4140000001061708, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.43200000026263297, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.45000000041909516, + 2 + ] + } + } + }, + "100206": { + "Id": 100206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100207": { + "Id": 100207, + "Name": "Splitting Spearhead", + "Desc": "After Dan Heng uses his Technique, his ATK increases by #1[i]% at the start of the next battle for #2[i] turn(s).", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Maze.png", + "LevelUpSkillID": [ + 100207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1002101, + "PointName": "Hidden Dragon", + "PointDesc": "When current HP percentage is #1[i]% or lower, reduces the chance of being attacked by enemies.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451, + 2 + ], + "PointID": 1002102, + "PointName": "Faster Than Light", + "PointDesc": "After launching an attack, there is a #1[i]% fixed chance to increase this unit's SPD by #2[i]% for #3[i] turn(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903 + ], + "PointID": 1002103, + "PointName": "High Gale", + "PointDesc": "Basic ATK deals #1[i]% more DMG to Slowed enemies.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002201, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1002101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002203, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1002202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002205, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1002102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002206, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1002205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002207, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1002103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002209, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002210, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "Wind DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 74.40000000037253, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 120, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 104.16000000014901, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 168, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.92000000085682, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 216, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 163.6800000006333, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 264, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 193.44000000040978, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 312, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 223.20000000018626, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 360, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 252.96000000089407, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 408, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1002, + "Set4IDList": [ + 110, + 122, + 102 + ], + "Set2IDList": [ + 311, + 301, + 309 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1003": { + "Name": "Himeko", + "Desc": "The one who repaired the Astral Express.\\nTo witness the vast starry sky, she decided to travel with the Astral Express.\\nHer hobby is brewing hand-made coffee.", + "CharaInfo": { + "Camp": "Astral Express", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "himeko", + "SPNeed": 120, + "BaseType": "Mage", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 100301, + "Name": "Childhood", + "Desc": "After \"Victory Rush\" is triggered, Himeko's SPD increases by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "2": { + "Id": 100302, + "Name": "Convergence", + "Desc": "Deals #2[i]% more DMG to enemies whose HP percentage is #1[i]% or less.", + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ] + }, + "3": { + "Id": 100303, + "Name": "Poised", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 100304, + "Name": "Dedication", + "Desc": "When Himeko's Skill inflicts Weakness Break on an enemy, she gains #1[i] extra point(s) of Charge.", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 100305, + "Name": "Aspiration", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 100306, + "Name": "Trailblaze!", + "Desc": "Ultimate deals 2 extra instances of Fire DMG equal to #1[i]% of the original DMG to one random enemy.", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "100301": { + "Id": 100301, + "Name": "Sawblade Tuning", + "Desc": "Deals Fire DMG equal to #1[i]% of Himeko's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100302": { + "Id": 100302, + "Name": "Molten Detonation", + "Desc": "Deals Fire DMG equal to #1[i]% of Himeko's ATK to a single enemy and Fire DMG equal to #2[i]% of Himeko's ATK to enemies adjacent to it.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 13, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "100303": { + "Id": 100303, + "Name": "Heavenly Flare", + "Desc": "Deals Fire DMG equal to #1[i]% of Himeko's ATK to all enemies. Himeko regenerates #2[i] extra Energy for each enemy defeated.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 27, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3800000003539026, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4720000002998859, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5640000002458692, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6560000001918525, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.7480000001378357, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.840000000782311, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.955000000540167, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.0700000000651926, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.1849999998230487, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.3000000002793968, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.39200000022538, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4840000001713634, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.5760000001173466, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.66800000006333, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.760000000707805, + 5 + ] + } + } + }, + "100304": { + "Id": 100304, + "Name": "Victory Rush", + "Desc": "When an enemy is inflicted with Weakness Break, Himeko gains 1 point of Charge (max #2[i] points).\\nIf Himeko is fully Charged when an ally performs an attack, Himeko immediately performs 1 Follow-up ATK and deals Fire DMG equal to #1[i]% of her ATK to all enemies, consuming all Charge points.\\nAt the start of the battle, Himeko gains 1 point of Charge.", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 3 + ] + } + } + }, + "100306": { + "Id": 100306, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100307": { + "Id": 100307, + "Name": "Incomplete Combustion", + "Desc": "After using Technique, creates a Special Dimension that lasts for #4[i] second(s). After entering battle with enemies in the Special Dimension, there is a #1[i]% base chance to increase Fire DMG taken by enemies by #2[i]% for #3[i] turn(s). Only 1 Dimension Effect created by allies can exist at the same time.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.10000000009313226, + 2, + 15 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Maze.png", + "LevelUpSkillID": [ + 100307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2, + 0.3000000002793968 + ], + "PointID": 1003101, + "PointName": "Starfire", + "PointDesc": "After using an attack, there is a #1[i]% base chance to inflict Burn on enemies, lasting for #2[i] turn(s).\\nWhen afflicted with Burn, enemies take Fire DoT equal to #3[i]% of Himeko's ATK at the start of each turn.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1003102, + "PointName": "Magma", + "PointDesc": "Skill deals #1[i]% more DMG to enemies currently afflicted with Burn.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ], + "PointID": 1003103, + "PointName": "Benchmark", + "PointDesc": "When current HP percentage is #1[i]% or higher, CRIT Rate increases by #2[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003201, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1003101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003203, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003205, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1003102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003206, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003207, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003209, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003210, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "Fire DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1003, + "Set4IDList": [ + 115, + 107, + 119 + ], + "Set2IDList": [ + 306, + 313, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 343, + 289 + ], + "LocalCriticalChance": 0.1500000001396984 + } + }, + "1004": { + "Name": "Welt", + "Desc": "A seasoned member of the Express Crew.\\nThe passion buried in his heart burns anew as he enjoys this fresh adventure.\\nOccasionally, he would sketch the experiences in a notebook.", + "CharaInfo": { + "Camp": "Astral Express", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "welt", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 100401, + "Name": "Legacy of Honor", + "Desc": "After using Ultimate, Welt gets enhanced. Then, the next #3[i] time(s) he uses Basic ATK or Skill, deals 1 extra instance of Additional DMG to the enemy target. The Additional DMG dealt when using Basic ATK is equal to #1[i]% of Basic ATK DMG multiplier. The Additional DMG dealt when using Skill is equal to #2[i]% of Skill DMG multiplier.", + "ParamList": [ + 0.5000000004656613, + 0.8000000007450581, + 2 + ] + }, + "2": { + "Id": 100402, + "Name": "Conflux of Stars", + "Desc": "When his Talent is triggered, Welt regenerates #1[i] Energy.", + "ParamList": [ + 3 + ] + }, + "3": { + "Id": 100403, + "Name": "Prayer of Peace", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 100404, + "Name": "Appellation of Justice", + "Desc": "When using Skill, increases the base chance of reducing the attacked enemy target's SPD by #1[i]%.", + "ParamList": [ + 0.3500000003259629 + ] + }, + "5": { + "Id": 100405, + "Name": "Power of Kindness", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 100406, + "Name": "Prospect of Glory", + "Desc": "When using Skill, deals DMG for 1 extra time to a random enemy.", + "ParamList": [] + } + }, + "Skills": { + "100401": { + "Id": 100401, + "Name": "Gravity Suppression", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Welt's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100402": { + "Id": 100402, + "Name": "Edge of the Void", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Welt's ATK to a single enemy and further deals DMG 2 extra times, with each time dealing Imaginary DMG equal to #1[i]% of Welt's ATK to a random enemy. On hit, there is a #2[i]% base chance to reduce the enemy's SPD by #3[i]% for #4[i] turn(s).", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 10, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.6500000006053597, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086, + 0.6600000006146729, + 0.10000000009313226, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297, + 0.6700000006239861, + 0.10000000009313226, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654, + 0.6800000006332994, + 0.10000000009313226, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898, + 0.6900000006426126, + 0.10000000009313226, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142, + 0.7000000006519258, + 0.10000000009313226, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777, + 0.7125000008381903, + 0.10000000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332, + 0.7250000003259629, + 0.10000000009313226, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968, + 0.7375000005122274, + 0.10000000009313226, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523, + 0.7500000006984919, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847, + 0.7600000007078052, + 0.10000000009313226, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091, + 0.7700000007171184, + 0.10000000009313226, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415, + 0.7800000007264316, + 0.10000000009313226, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659, + 0.7900000007357448, + 0.10000000009313226, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903, + 0.8000000007450581, + 0.10000000009313226, + 2 + ] + } + } + }, + "100403": { + "Id": 100403, + "Name": "Synthetic Black Hole", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Welt's ATK to all enemies, with a #3[i]% base chance for enemies hit by this ability to be Imprisoned for 1 turn.\\nImprisoned enemies have their actions delayed by #2[f1]% and SPD reduced by #4[i]%.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3200000002980232, + 1, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.32799999974668026, + 1, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.3359999998938292, + 1, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.3440000000409782, + 1, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.35200000018812716, + 1, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.3600000003352761, + 1, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.37000000034458935, + 1, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.3800000003539026, + 1, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.3900000003632158, + 1, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.40000000037252903, + 1, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.40799999982118607, + 1, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.41599999996833503, + 1, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.424000000115484, + 1, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.43200000026263297, + 1, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.44000000040978193, + 1, + 0.10000000009313226 + ] + } + } + }, + "100404": { + "Id": 100404, + "Name": "Time Distortion", + "Desc": "When hitting an enemy that is already Slowed, Welt deals Imaginary Additional DMG equal to #1[i]% of his ATK to the enemy.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919 + ] + } + } + }, + "100406": { + "Id": 100406, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100407": { + "Id": 100407, + "Name": "Gravitational Imprisonment", + "Desc": "After using Welt's Technique, create a Special Dimension that lasts for #4[i] second(s). Enemies in this Special Dimension have their movement speed reduced by #5[i]%. After entering battle with enemies in the Special Dimension, there is a #1[i]% base chance to Imprison the enemies for 1 turn.\\nImprisoned enemies have their actions delayed by #2[i]% and SPD reduced by #3[i]%. Only 1 Dimension Effect created by allies can exist at the same time.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451, + 0.10000000009313226, + 15, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Maze.png", + "LevelUpSkillID": [ + 100407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.12000000011175871, + 2 + ], + "PointID": 1004101, + "PointName": "Retribution", + "PointDesc": "When using Ultimate, there is a #1[i]% base chance to increase the DMG taken by the targets by #2[i]% for #3[i] turn(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1004102, + "PointName": "Judgment", + "PointDesc": "Using Ultimate additionally regenerates #1[i] Energy.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1004103, + "PointName": "Punishment", + "PointDesc": "Deals #1[i]% more DMG to enemies inflicted with Weakness Break.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004202, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1004101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1004202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1004203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1004102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004206, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1004205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1004206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004209, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1004201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1004, + "Set4IDList": [ + 112, + 122, + 111 + ], + "Set2IDList": [ + 309, + 301, + 303 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 358, + 302 + ] + } + }, + "1005": { + "Name": "Kafka", + "Desc": "A member of the Stellaron Hunters. A dashing, collected, and professional beauty.\\nUsed the enchantment of Spirit Whisper to set up {NICKNAME} to absorb the Stellaron.\\nHer hobby is shopping for and organizing her collection of coats.", + "CharaInfo": { + "Camp": "Stellaron Hunters", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "kafka", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 100501, + "Name": "Da Capo", + "Desc": "When the Talent triggers a Follow-up ATK, there is a #1[i]% base chance to increase the DoT received by the target by #2[i]% for #3[i] turn(s).", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Id": 100502, + "Name": "Fortississimo", + "Desc": "While Kafka is on the field, DoT dealt by all allies increases by #1[i]%.", + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Id": 100503, + "Name": "Capriccio", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 100504, + "Name": "Recitativo", + "Desc": "When an enemy target takes DMG from the Shock status inflicted by Kafka, Kafka additionally regenerates #1[i] Energy.", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 100505, + "Name": "Doloroso", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 100506, + "Name": "Leggiero", + "Desc": "The Shock inflicted on the enemy target by the Ultimate, the Technique, or the Talent-triggered Follow-up ATK has a DMG multiplier increase of #1[i]% and lasts #2[i] turn(s) longer.", + "ParamList": [ + 1.5600000005215406, + 1 + ] + } + }, + "Skills": { + "100501": { + "Id": 100501, + "Name": "Midnight Tumult", + "Desc": "Deals Lightning DMG equal to #1[i]% of Kafka's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100502": { + "Id": 100502, + "Name": "Caressing Moonlight", + "Desc": "Deals Lightning DMG equal to #1[i]% of Kafka's ATK to a target enemy and Lightning DMG equal to #3[i]% of Kafka's ATK to enemies adjacent to it.\\nIf the target enemy is currently receiving DoT, all DoTs currently placed on that enemy immediately produce DMG equal to #2[i]% of their original DMG.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.6150000002235174, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.6300000005867332, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.6450000002514571, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.6600000006146729, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.6750000002793968, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.6937500012572855, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.7125000008381903, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.7312500011175871, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.7500000006984919, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.7650000003632158, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.7800000007264316, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.7950000003911555, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.8100000007543713, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.8250000004190952, + 0.7500000006984919 + ] + } + } + }, + "100503": { + "Id": 100503, + "Name": "Twilight Trill", + "Desc": "Deals Lightning DMG equal to #1[i]% of Kafka's ATK to all enemies, with a #2[i]% base chance for enemies hit to become Shocked and immediately take DMG from their current Shock state, equal to #5[i]% of its original DMG. Shock lasts for #3[i] turn(s).\\nWhile Shocked, enemies receive Lightning DoT equal to #4[i]% of Kafka's ATK at the beginning of each turn.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.48000000044703484, + 1, + 2, + 1.1600000001490116, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5120000003371388, + 1, + 2, + 1.2687500005122274, + 0.8200000007636845 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5440000002272427, + 1, + 2, + 1.3775000001769513, + 0.840000000782311 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5760000001173466, + 1, + 2, + 1.486250000540167, + 0.8600000008009374 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6080000000074506, + 1, + 2, + 1.595000000204891, + 0.8800000008195639 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6400000005960464, + 1, + 2, + 1.7581250004004687, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6800000006332994, + 1, + 2, + 1.9756250011269003, + 0.9250000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 1, + 2, + 2.2475000000558794, + 0.9500000008847564 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7600000007078052, + 1, + 2, + 2.5737500011455268, + 0.9750000005587935 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 2, + 2.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.832000000635162, + 1, + 2, + 3.0413750007282943, + 1.0200000000186265 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8640000005252659, + 1, + 2, + 3.182750000851229, + 1.040000000037253 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8960000004153699, + 1, + 2, + 3.3241250002756715, + 1.0600000000558794 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9280000003054738, + 1, + 2, + 3.465500000398606, + 1.0800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9600000008940697, + 1, + 2, + 3.6068750012200326, + 1.1000000000931323 + ] + } + } + }, + "100504": { + "Id": 100504, + "Name": "Gentle but Cruel", + "Desc": "After Kafka's teammate uses Basic ATK on an enemy target, Kafka immediately launches Follow-up ATK and deals Lightning DMG equal to #1[i]% of her ATK to that target, with a #2[i]% base chance to inflict Shock equivalent to that applied by her Ultimate to the attacked enemy target, lasting for #3[i] turns. This effect can only be triggered 1 time per turn.", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.4200000003911555, + 1, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5179999999236315, + 1, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6160000001545995, + 1, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7140000003855675, + 1, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8120000006165355, + 1, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9100000008475035, + 1, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.032500000204891, + 1, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.154999999795109, + 1, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.277500000083819, + 1, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.497999999905005, + 1, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.596000000135973, + 1, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.694000000366941, + 1, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.792000000597909, + 1, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.890000000828877, + 1, + 2 + ] + } + } + }, + "100506": { + "Id": 100506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100507": { + "Id": 100507, + "Name": "Mercy Is Not Forgiveness", + "Desc": "Immediately attacks all enemies within a set range. After entering battle, deals Lightning DMG equal to #3[i]% of Kafka's ATK to all enemies, with a #1[i]% base chance to inflict Shock equivalent to that applied by her Ultimate on every enemy target for #2[i] turn(s).", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Maze.png", + "LevelUpSkillID": [ + 100507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005101, + "PointName": "Torture", + "PointDesc": "When the Ultimate is used, enemy targets will now receive DMG immediately from all currently applied DoT sources instead of just receiving DMG immediately from the currently applied Shock state.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1005102, + "PointName": "Plunder", + "PointDesc": "If an enemy is defeated while Shocked, Kafka additionally regenerates #1[i] Energy.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1005103, + "PointName": "Thorns", + "PointDesc": "The base chance for target enemies to be Shocked by the Ultimate, the Technique, and the Talent-triggered Follow-up ATK increases by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005202, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1005203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005206, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1005206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005209, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1100501, + "Name": "Da Capo", + "Desc": "When using an attack, there is a #1[i]% base chance to cause the target to take #2[i]% more DoT for #3[i] turn(s).", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Id": 1100502, + "Name": "Fortississimo", + "Desc": "When Talent triggers Follow-up ATK, Kafka's ATK increases by #1[i]%. This effect can stack up to #2[i] times, lasting for #3[i] turn(s).", + "ParamList": [ + 0.25000000023283064, + 2, + 3 + ] + }, + "3": { + "Id": 1100503, + "Name": "Capriccio", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 1100504, + "Name": "Recitativo", + "Desc": "When an enemy target takes DMG from the Shock status inflicted by Kafka, Kafka additionally regenerates #1[i] Energy.", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 1100505, + "Name": "Doloroso", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 1100506, + "Name": "Leggiero", + "Desc": "The Shock state inflicted on the enemy target by the Ultimate, Technique, or the Talent-triggered Follow-up ATK has a DMG multiplier increase of #1[i]% and lasts #2[i] turn(s) longer.", + "ParamList": [ + 1.5600000005215406, + 1 + ] + } + }, + "Skills": { + "1100501": { + "Id": 1100501, + "Name": "Midnight Tumult", + "Desc": "Deals Lightning DMG equal to #1[i]% of Kafka's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "1100502": { + "Id": 1100502, + "Name": "Caressing Moonlight", + "Desc": "Deals Lightning DMG equal to #1[i]% of Kafka's ATK to one designated enemy and Lightning DMG equal to #3[i]% of Kafka's ATK to their adjacent units.\\nIf the designated enemy or their adjacent target(s) is currently receiving DoT, all DoTs currently placed on that enemy immediately produce DMG equal to #2[i]% or #4[i]% of their original DMG.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.3000000002793968, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.6150000002235174, + 0.33000000030733645, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.6300000005867332, + 0.3600000003352761, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.6450000002514571, + 0.3900000003632158, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.6600000006146729, + 0.4200000003911555, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.6750000002793968, + 0.45000000041909516, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.6937500012572855, + 0.4875000002793968, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.7125000008381903, + 0.5250000001396984, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.7312500011175871, + 0.5625000006984919, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.7500000006984919, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.7650000003632158, + 0.6300000005867332, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.7800000007264316, + 0.6600000006146729, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.7950000003911555, + 0.6900000006426126, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.8100000007543713, + 0.7200000006705523, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.8250000004190952, + 0.7500000006984919, + 0.5500000005122274 + ] + } + } + }, + "1100503": { + "Id": 1100503, + "Name": "Twilight Trill", + "Desc": "Deals Lightning DMG equal to #1[i]% of Kafka's ATK to all enemies, with a #2[i]% base chance for attacked enemy targets to become Shocked and immediately take DMG from their current DoT debuff(s), equal to #5[i]% of its original DMG. Shock lasts for #3[i] turn(s).\\nWhile Shocked, enemy targets receive Lightning DoT equal to #4[i]% of Kafka's ATK at the beginning of each turn.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.48000000044703484, + 1, + 2, + 1.1600000001490116, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5120000003371388, + 1, + 2, + 1.2687500005122274, + 1.0200000000186265 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5440000002272427, + 1, + 2, + 1.3775000001769513, + 1.040000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5760000001173466, + 1, + 2, + 1.486250000540167, + 1.0600000000558794 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6080000000074506, + 1, + 2, + 1.595000000204891, + 1.0800000000745058 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6400000005960464, + 1, + 2, + 1.7581250004004687, + 1.1000000000931323 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6800000006332994, + 1, + 2, + 1.9756250011269003, + 1.1249999997671694 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 1, + 2, + 2.2475000000558794, + 1.1500000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7600000007078052, + 1, + 2, + 2.5737500011455268, + 1.1749999998137355 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 2, + 2.9000000008381903, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.832000000635162, + 1, + 2, + 3.0413750007282943, + 1.220000000204891 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8640000005252659, + 1, + 2, + 3.182750000851229, + 1.2400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8960000004153699, + 1, + 2, + 3.3241250002756715, + 1.2600000002421439 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9280000003054738, + 1, + 2, + 3.465500000398606, + 1.2800000002607703 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9600000008940697, + 1, + 2, + 3.6068750012200326, + 1.3000000002793968 + ] + } + } + }, + "1100504": { + "Id": 1100504, + "Name": "Gentle but Cruel", + "Desc": "After Kafka's teammate uses attacks on an enemy target, Kafka immediately launches Follow-up ATK and deals Lightning DMG equal to #1[i]% of Kafka's ATK to that target, with a #2[i]% base chance to inflict Shock equivalent to that applied by her Ultimate to the attacked enemy target, lasting for #3[i] turns. This effect can be triggered up to #5[i] time(s), with #4[i] use(s) recovered at the end of Kafka's turn.", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.4200000003911555, + 1, + 2, + 1, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5179999999236315, + 1, + 2, + 1, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6160000001545995, + 1, + 2, + 1, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7140000003855675, + 1, + 2, + 1, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8120000006165355, + 1, + 2, + 1, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9100000008475035, + 1, + 2, + 1, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.032500000204891, + 1, + 2, + 1, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.154999999795109, + 1, + 2, + 1, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.277500000083819, + 1, + 2, + 1, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1, + 2, + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.497999999905005, + 1, + 2, + 1, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.596000000135973, + 1, + 2, + 1, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.694000000366941, + 1, + 2, + 1, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.792000000597909, + 1, + 2, + 1, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.890000000828877, + 1, + 2, + 1, + 2 + ] + } + } + }, + "1100506": { + "Id": 1100506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1100507": { + "Id": 1100507, + "Name": "Mercy Is Not Forgiveness", + "Desc": "Immediately attacks all enemies within a set range. After entering battle, deals Lightning DMG equal to #3[i]% of Kafka's ATK to all enemies, with a #1[i]% base chance to inflict Shock equivalent to that applied by her Ultimate on every enemy target for #2[i] turn(s).", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Maze.png", + "LevelUpSkillID": [ + 1100507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7500000006984919, + 0.7500000006984919 + ], + "PointID": 11005101, + "PointName": "Torture", + "PointDesc": "When ally targets' Effect Hit Rate is over #1[i]%, Kafka increases their DoT dealt by #2[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 11005102, + "PointName": "Plunder", + "PointDesc": "If an enemy target is defeated while Shocked, Kafka additionally regenerates #1[i] Energy.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 11005103, + "PointName": "Thorns", + "PointDesc": "After using Ultimate, Talent's Follow-up ATK regains 1 trigger count and can cause all DoT debuffs the target is currently under to immediately produce DMG equal to #1[i]% of the original DMG.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005202, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11005203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005206, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11005206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005209, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1005, + "Set4IDList": [ + 116, + 109, + 102 + ], + "Set2IDList": [ + 322, + 311, + 301 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 310, + 256 + ] + } + }, + "1006": { + "Name": "Silver Wolf", + "Desc": "A member of the Stellaron Hunters and a genius hacker.\\nShe sees the universe as a massive immersive simulation game and has fun with it.\\nShe's mastered the skill known as \"aether editing,\" which can be used to tamper with the data of reality.", + "CharaInfo": { + "Camp": "Stellaron Hunters", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "silverwolf", + "SPNeed": 110, + "BaseType": "Warlock", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 100601, + "Name": "Social Engineering", + "Desc": "After using her Ultimate to attack enemies, Silver Wolf regenerates #1[i] Energy for every debuff that the target enemy currently has. This effect can be triggered up to #2[i] time(s) in each use of her Ultimate.", + "ParamList": [ + 7, + 5 + ] + }, + "2": { + "Id": 100602, + "Name": "Zombie Network", + "Desc": "When an enemy enters battle, reduces their Effect RES by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 100603, + "Name": "Payload", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 100604, + "Name": "Bounce Attack", + "Desc": "After using her Ultimate to attack enemies, deals Quantum Additional DMG equal to #1[i]% of Silver Wolf's ATK for every debuff currently on the enemy target. This effect can be triggered for a maximum of #2[i] time(s) during each use of her Ultimate.", + "ParamList": [ + 0.20000000018626451, + 5 + ] + }, + "5": { + "Id": 100605, + "Name": "Brute Force Attack", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 100606, + "Name": "Overlay Network", + "Desc": "For every debuff the enemy target has, the DMG dealt by Silver Wolf increases by #1[i]%, up to a limit of #2[i]%.", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + }, + "Skills": { + "100601": { + "Id": 100601, + "Name": "System Warning", + "Desc": "Deals Quantum DMG equal to #1[i]% of Silver Wolf's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100602": { + "Id": 100602, + "Name": "Allow Changes?", + "Desc": "There is a #2[i]% base chance to add 1 Weakness of an on-field character's Type to the target enemy. This also reduces the enemy's DMG RES to that Weakness Type by #4[i]% for #3[i] turn(s). If the enemy already has that Type Weakness, the effect of DMG RES reduction to that Weakness Type will not be triggered.\\nEach enemy can only have 1 Weakness implanted by Silver Wolf. When Silver Wolf implants another Weakness to the target, only the most recent implanted Weakness will be kept.\\nIn addition, there is a #5[i]% base chance to further reduce the All-Type RES of the enemy by #6[f1]% for #7[i] turn(s).\\nDeals Quantum DMG equal to #1[i]% of Silver Wolf's ATK to this enemy.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9800000009126961, + 0.7500000006984919, + 2, + 0.20000000018626451, + 1, + 0.07499999972060323, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.0779999995138496, + 0.7600000007078052, + 2, + 0.20000000018626451, + 1, + 0.07749999989755452, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.1759999997448176, + 0.7700000007171184, + 2, + 0.20000000018626451, + 1, + 0.0800000000745058, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2739999999757856, + 0.7800000007264316, + 2, + 0.20000000018626451, + 1, + 0.0825000002514571, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3720000002067536, + 0.7900000007357448, + 2, + 0.20000000018626451, + 1, + 0.08499999972991645, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.4700000004377216, + 0.8000000007450581, + 2, + 0.20000000018626451, + 1, + 0.08749999990686774, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.5925000007264316, + 0.8125000009313226, + 2, + 0.20000000018626451, + 1, + 0.0906250006519258, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.7150000003166497, + 0.8250000004190952, + 2, + 0.20000000018626451, + 1, + 0.09375000069849193, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8375000006053597, + 0.8375000006053597, + 2, + 0.20000000018626451, + 1, + 0.09687500074505806, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.9600000008940697, + 0.8500000007916242, + 2, + 0.20000000018626451, + 1, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.057999999495223, + 0.8600000008009374, + 2, + 0.20000000018626451, + 1, + 0.10250000027008355, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.155999999726191, + 0.8700000008102506, + 2, + 0.20000000018626451, + 1, + 0.1049999997485429, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.253999999957159, + 0.8800000008195639, + 2, + 0.20000000018626451, + 1, + 0.1074999999254942, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.352000000188127, + 0.8900000008288771, + 2, + 0.20000000018626451, + 1, + 0.11000000010244548, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.450000000419095, + 0.9000000008381903, + 2, + 0.20000000018626451, + 1, + 0.11250000027939677, + 2 + ] + } + } + }, + "100603": { + "Id": 100603, + "Name": "User Banned", + "Desc": "There's a #2[i]% base chance to decrease the target enemy's DEF by #3[f1]% for #4[i] turn(s). And at the same time, deals Quantum DMG equal to #1[i]% of Silver Wolf's ATK to the target enemy.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.8500000007916242, + 0.3600000003352761, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.8650000004563481, + 0.3689999997150153, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.8800000008195639, + 0.3779999997932464, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.8950000004842877, + 0.3869999998714775, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.9100000008475035, + 0.3959999999497086, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 0.9250000005122274, + 0.4050000000279397, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 0.9437500014901161, + 0.4162500004749745, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 0.962500001071021, + 0.4275000002235174, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 0.9812500013504177, + 0.43875000067055225, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 1, + 0.45000000041909516, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 1.0149999996647239, + 0.4589999997988343, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 1.0300000000279397, + 0.4679999998770654, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 1.0449999996926636, + 0.4769999999552965, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 1.0600000000558794, + 0.4860000000335276, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 1.0749999997206032, + 0.4950000001117587, + 3 + ] + } + } + }, + "100604": { + "Id": 100604, + "Name": "Awaiting System Response...", + "Desc": "Silver Wolf can create three types of Bugs: Reduce ATK by #1[f1]%, reduce DEF by #2[f1]%, and reduce SPD by #3[f1]%.\\nEvery time Silver Wolf attacks, she has a #4[i]% base chance to implant a random Bug that lasts for #5[i] turn(s) in an enemy target.", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 0.0400000000372529, + 0.030000000027939677, + 0.6000000005587935, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 0.04399999976158142, + 0.032999999821186066, + 0.612000000430271, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 0.04799999948590994, + 0.035999999614432454, + 0.6240000003017485, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 0.05199999990873039, + 0.03899999940767884, + 0.636000000173226, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 0.055999999633058906, + 0.04199999989941716, + 0.6480000000447035, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 0.060000000055879354, + 0.04499999969266355, + 0.6600000006146729, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 0.06499999971129, + 0.04875000030733645, + 0.6750000002793968, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 0.07000000006519258, + 0.05250000022351742, + 0.6900000006426126, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 0.07499999972060323, + 0.056250000139698386, + 0.7050000003073364, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.0800000000745058, + 0.060000000055879354, + 0.7200000006705523, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 0.08399999979883432, + 0.06299999984912574, + 0.7320000005420297, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 0.08799999952316284, + 0.06599999964237213, + 0.7440000004135072, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 0.09199999994598329, + 0.06899999943561852, + 0.7560000002849847, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 0.09599999967031181, + 0.07199999992735684, + 0.7680000001564622, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 0.10000000009313226, + 0.07499999972060323, + 0.7800000007264316, + 3 + ] + } + } + }, + "100606": { + "Id": 100606, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100607": { + "Id": 100607, + "Name": "Force Quit Program", + "Desc": "Immediately attacks the enemy. After entering battle, deals Quantum DMG equal to #1[i]% of Silver Wolf's ATK to all enemies, and ignores Weakness Types and reduces Toughness from all enemies. Enemies with their Weakness Broken in this way will trigger the Quantum Weakness Break effect.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Maze.png", + "LevelUpSkillID": [ + 100607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006202, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006204, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1006203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006206, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1006206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006208, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006209, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.6500000006053597 + ], + "PointID": 1006101, + "PointName": "Generate", + "PointDesc": "\"Bug\"'s duration is extended for #1[i] turn(s). Every time an enemy is inflicted with Weakness Break, Silver Wolf has a #2[i]% base chance of implanting a random \"Bug\" in the enemy.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1006102, + "PointName": "Inject", + "PointDesc": "The duration of the Weakness implanted by Silver Wolf's Skill increases by #1[i] turn(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.030000000027939677 + ], + "PointID": 1006103, + "PointName": "Side Note", + "PointDesc": "If there are #1[i] or more debuff(s) affecting the enemy when the Skill is used, then the Skill decreases the enemy's All-Type RES by an additional #2[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1100601, + "Name": "Social Engineering", + "Desc": "After using her Ultimate to attack any enemy target, Silver Wolf regenerates #1[i] Energy for every debuff that the target currently has. This effect can be triggered up to #2[i] time(s) in each use of her Ultimate.", + "ParamList": [ + 7, + 5 + ] + }, + "2": { + "Id": 1100602, + "Name": "Zombie Network", + "Desc": "When enemy target enters battle, increases DMG received by #1[i]%. When the enemy target receives an attack from ally targets, Silver Wolf has a #2[i]% base chance of implanting the attacked enemy target with 1 random \"Bug.\"", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 1100603, + "Name": "Payload", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 1100604, + "Name": "Bounce Attack", + "Desc": "After using her Ultimate to attack any enemy target, deals Quantum Additional DMG equal to #1[i]% of Silver Wolf's ATK for every debuff currently on the enemy target. This effect can be triggered for a maximum of #2[i] time(s) during each use of her Ultimate.", + "ParamList": [ + 0.20000000018626451, + 5 + ] + }, + "5": { + "Id": 1100605, + "Name": "Brute Force Attack", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 1100606, + "Name": "Overlay Network", + "Desc": "For every debuff the enemy target has, the DMG dealt by Silver Wolf to it increases by #1[i]%, up to an increase of #2[i]%.", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + }, + "Skills": { + "1100601": { + "Id": 1100601, + "Name": "System Warning", + "Desc": "Deals Quantum DMG equal to #1[i]% of Silver Wolf's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "1100602": { + "Id": 1100602, + "Name": "Allow Changes?", + "Desc": "There is a #2[i]% base chance to add 1 Weakness of an on-field ally target's Type to one designated enemy target (prioritizes implanting the Weakness corresponding to the first ally target in the lineup), also reducing the enemy target's RES to that Weakness Type by #4[i]% for #3[i] turn(s). If the enemy target already has that Type Weakness, the RES reduction effect to that Type will not be triggered.\\nEach enemy target can only have 1 Weakness implanted by Silver Wolf. When Silver Wolf implants another Weakness to the target, only the most recent implanted Weakness will be kept.\\nIn addition, there is a #5[i]% base chance to further reduce the target's All-Type RES by #6[f1]% for #7[i] turn(s).\\nDeals Quantum DMG equal to #1[i]% of Silver Wolf's ATK to this target.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9800000009126961, + 0.8000000007450581, + 3, + 0.20000000018626451, + 1, + 0.1049999997485429, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.0779999995138496, + 0.840000000782311, + 3, + 0.20000000018626451, + 1, + 0.1074999999254942, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.1759999997448176, + 0.8800000008195639, + 3, + 0.20000000018626451, + 1, + 0.11000000010244548, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2739999999757856, + 0.9200000008568168, + 3, + 0.20000000018626451, + 1, + 0.11250000027939677, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3720000002067536, + 0.9600000008940697, + 3, + 0.20000000018626451, + 1, + 0.11499999975785613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.4700000004377216, + 1, + 3, + 0.20000000018626451, + 1, + 0.11749999993480742, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.5925000007264316, + 1.0500000000465661, + 3, + 0.20000000018626451, + 1, + 0.12062500067986548, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.7150000003166497, + 1.1000000000931323, + 3, + 0.20000000018626451, + 1, + 0.12375000072643161, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8375000006053597, + 1.1500000001396984, + 3, + 0.20000000018626451, + 1, + 0.12687500077299774, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.9600000008940697, + 1.2000000001862645, + 3, + 0.20000000018626451, + 1, + 0.13000000012107193, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.057999999495223, + 1.2400000002235174, + 3, + 0.20000000018626451, + 1, + 0.13250000029802322, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.155999999726191, + 1.2800000002607703, + 3, + 0.20000000018626451, + 1, + 0.13499999977648258, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.253999999957159, + 1.3200000002980232, + 3, + 0.20000000018626451, + 1, + 0.13749999995343387, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.352000000188127, + 1.3600000003352761, + 3, + 0.20000000018626451, + 1, + 0.14000000013038516, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.450000000419095, + 1.400000000372529, + 3, + 0.20000000018626451, + 1, + 0.14250000030733645, + 2 + ] + } + } + }, + "1100603": { + "Id": 1100603, + "Name": "User Banned", + "Desc": "There's a #2[i]% base chance to decrease all enemies' DEF by #3[f1]% for #4[i] turn(s). At the same time, deals Quantum DMG equal to #1[i]% of Silver Wolf's ATK to all enemies.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.8000000007450581, + 0.3600000003352761, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.840000000782311, + 0.3689999997150153, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.8800000008195639, + 0.3779999997932464, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.9200000008568168, + 0.3869999998714775, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.9600000008940697, + 0.3959999999497086, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 1, + 0.4050000000279397, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 1.0500000000465661, + 0.4162500004749745, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 1.1000000000931323, + 0.4275000002235174, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 1.1500000001396984, + 0.43875000067055225, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 1.2000000001862645, + 0.45000000041909516, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 1.2400000002235174, + 0.4589999997988343, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 1.2800000002607703, + 0.4679999998770654, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 1.3200000002980232, + 0.4769999999552965, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 1.3600000003352761, + 0.4860000000335276, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 1.400000000372529, + 0.4950000001117587, + 3 + ] + } + } + }, + "1100604": { + "Id": 1100604, + "Name": "Awaiting System Response...", + "Desc": "Silver Wolf can create three types of \"Bugs\": Reduce ATK by #1[f1]%, reduce DEF by #2[f1]%, and reduce SPD by #3[f1]%.\\nAfter every attack launched by Silver Wolf, there is a #4[i]% base chance to implant 1 random \"Bug\" to the attacked enemy target, lasting for #5[i] turn(s). When the enemy target is defeated, the Weakness Silver Wolf implanted on it will be transferred to another surviving enemy on the field.", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 0.060000000055879354, + 0.030000000027939677, + 0.6000000005587935, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 0.06599999964237213, + 0.032999999821186066, + 0.6400000005960464, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 0.07199999992735684, + 0.035999999614432454, + 0.6800000006332994, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 0.07799999951384962, + 0.03899999940767884, + 0.7200000006705523, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 0.08399999979883432, + 0.04199999989941716, + 0.7600000007078052, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 0.09000000008381903, + 0.04499999969266355, + 0.8000000007450581, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 0.09749999991618097, + 0.04875000030733645, + 0.8500000007916242, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 0.1049999997485429, + 0.05250000022351742, + 0.9000000008381903, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 0.11250000027939677, + 0.056250000139698386, + 0.9500000008847564, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.12000000011175871, + 0.060000000055879354, + 1, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 0.12599999969825149, + 0.06299999984912574, + 1.040000000037253, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 0.1319999999832362, + 0.06599999964237213, + 1.0800000000745058, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 0.13799999956972897, + 0.06899999943561852, + 1.1200000001117587, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 0.14399999985471368, + 0.07199999992735684, + 1.1600000001490116, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 0.1500000001396984, + 0.07499999972060323, + 1.2000000001862645, + 3 + ] + } + } + }, + "1100606": { + "Id": 1100606, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1100607": { + "Id": 1100607, + "Name": "Force Quit Program", + "Desc": "Immediately attacks the enemy. After entering battle, deals Quantum DMG equal to #1[i]% of Silver Wolf's ATK to all enemies, and reduces Toughness from all enemies regardless of Weakness Types. Enemies with their Weakness Broken in this way will trigger the Quantum Weakness Break effect.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Maze.png", + "LevelUpSkillID": [ + 1100607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006202, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006204, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11006203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006206, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11006206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006208, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006209, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 11006101, + "PointName": "Generate", + "PointDesc": "The duration of \"Bug\" is extended for #1[i] turn(s). Every time an enemy target's Weakness is Broken, Silver Wolf has a #2[i]% base chance of implanting 1 random \"Bug\" in that target.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 20, + 5 + ], + "PointID": 11006102, + "PointName": "Inject", + "PointDesc": "At the start of the battle, immediately regenerates #1[i] Energy. Silver Wolf regenerates #2[i] Energy at the start of her own turn.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 0.10000000009313226, + 0.5000000004656613 + ], + "PointID": 11006103, + "PointName": "Side Note", + "PointDesc": "For every #1[i]% Effect Hit Rate that Silver Wolf has, additionally increases her ATK by #2[i]% to a max of #3[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1006, + "Set4IDList": [ + 108, + 111, + 117 + ], + "Set2IDList": [ + 312, + 303, + 307 + ], + "PropertyList3": [ + "StatusProbabilityBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "StatusProbabilityBase", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 340, + 285 + ] + } + }, + "1008": { + "Name": "Arlan", + "Desc": "The head of Herta Space Station's Security Department.\\nThis quiet boy hopes to protect the researchers who value their pursuit of knowledge, and to help them to complete their work.", + "CharaInfo": { + "Camp": "Herta Space Station", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "arlan", + "SPNeed": 110, + "BaseType": "Warrior", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 100801, + "Name": "To the Bitter End", + "Desc": "When HP percentage is lower than or equal to 50% of Max HP, increases DMG dealt by Skill by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 100802, + "Name": "Breaking Free", + "Desc": "Using Skill or Ultimate removes 1 debuff from this unit.", + "ParamList": [] + }, + "3": { + "Id": 100803, + "Name": "Power Through", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 100804, + "Name": "Turn the Tables", + "Desc": "When struck by a killing blow after entering battle, instead of becoming knocked down, Arlan immediately restores his HP to #1[i]% of his Max HP. This effect is automatically removed after it is triggered once or after #2[i] turn(s) have elapsed.", + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "5": { + "Id": 100805, + "Name": "Hammer and Tongs", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 100806, + "Name": "Self-Sacrifice", + "Desc": "When the current HP percentage drops to 50% or below, Ultimate deals #1[i]% more DMG, and the DMG multiplier for adjacent targets is raised to the same level as that for the primary target.", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "100801": { + "Id": 100801, + "Name": "Lightning Rush", + "Desc": "Deals Lightning DMG equal to #1[i]% of Arlan's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100802": { + "Id": 100802, + "Name": "Shackle Breaker", + "Desc": "Consumes Arlan's HP equal to #1[i]% of his Max HP to deal Lightning DMG equal to #2[i]% of Arlan's ATK to a single enemy. If Arlan does not have sufficient HP, his HP will be reduced to 1 after using his Skill.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": null, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1500000001396984, + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1500000001396984, + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1500000001396984, + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1500000001396984, + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1500000001396984, + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1500000001396984, + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1500000001396984, + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1500000001396984, + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1500000001396984, + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1500000001396984, + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.1500000001396984, + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1500000001396984, + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 3 + ] + } + } + }, + "100803": { + "Id": 100803, + "Name": "Frenzied Punishment", + "Desc": "Deals Lightning DMG equal to #1[i]% of Arlan's ATK to a single enemy and Lightning DMG equal to #2[i]% of Arlan's ATK to enemies adjacent to it.", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9200000008568168, + 0.9600000008940697 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.04799999948591, + 1.023999999742955 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.1759999997448176, + 1.0879999995231628 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.3040000000037253, + 1.1520000000018626 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.432000000262633, + 1.2159999997820705 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5600000005215406, + 1.2800000002607703 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.7200000006705523, + 1.3600000003352761 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 1.440000000409782 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.040000000037253, + 1.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.2000000001862645, + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.3279999997466803, + 1.6640000003390014 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.456000000005588, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.5840000002644956, + 1.792000000597909 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.7120000005234033, + 1.856000000378117 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.840000000782311, + 1.9200000008568168 + ] + } + } + }, + "100804": { + "Id": 100804, + "Name": "Pain and Anger", + "Desc": "Based on Arlan's current missing HP percentage, gains DMG bonus, up to a maximum increase of #1[i]% DMG dealt by Arlan.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "100806": { + "Id": 100806, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100807": { + "Id": 100807, + "Name": "Swift Harvest", + "Desc": "Immediately attacks the enemy. After entering battle, deals Lightning DMG equal to #1[i]% of Arlan's ATK to all enemies.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Maze.png", + "LevelUpSkillID": [ + 100807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.20000000018626451 + ], + "PointID": 1008101, + "PointName": "Revival", + "PointDesc": "If the current HP percentage is #1[i]% or lower when defeating an enemy, immediately restores HP equal to #2[i]% of Max HP.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1008102, + "PointName": "Endurance", + "PointDesc": "The chance to resist DoT Debuffs increases by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1008103, + "PointName": "Repel", + "PointDesc": "Upon entering battle, if Arlan's HP percentage is less than or equal to #1[i]%, he can nullify all DMG received except for DoTs until he is attacked.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008202, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1008202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1008203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008206, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1008205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1008206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1008103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008209, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "Effect RES" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 45, + "DefenceAdd": 2.2500000002328306, + "HPBase": 163.20000000018626, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 63, + "DefenceAdd": 2.2500000002328306, + "HPBase": 228.48000000044703, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 81, + "DefenceAdd": 2.2500000002328306, + "HPBase": 293.7600000007078, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 99, + "DefenceAdd": 2.2500000002328306, + "HPBase": 359.04000000003725, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 117, + "DefenceAdd": 2.2500000002328306, + "HPBase": 424.320000000298, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 135, + "DefenceAdd": 2.2500000002328306, + "HPBase": 489.6000000005588, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 153, + "DefenceAdd": 2.2500000002328306, + "HPBase": 554.8800000008196, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1008, + "Set4IDList": [ + 109, + 122, + 117 + ], + "Set2IDList": [ + 309, + 301, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1009": { + "Name": "Asta", + "Desc": "The lead researcher of Herta Space Station and a lady from a renowned family.\\nShe's an astronomer overflowing with curiosity, and excels at managing the disparate staff of the space station.", + "CharaInfo": { + "Camp": "Herta Space Station", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "asta", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 100901, + "Name": "Star Sings Sans Verses or Vocals", + "Desc": "When using Skill, deals DMG for 1 extra time to a random enemy.", + "ParamList": [] + }, + "2": { + "Id": 100902, + "Name": "Moon Speaks in Wax and Wane", + "Desc": "After using her Ultimate, Asta's Charging stacks will not be reduced in the next turn.", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 100903, + "Name": "Meteor Showers for Wish and Want", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 100904, + "Name": "Aurora Basks in Beauty and Bliss", + "Desc": "Asta's Energy Regeneration Rate increases by #2[i]% when she has #1[i] or more Charging stacks.", + "ParamList": [ + 2, + 0.1500000001396984 + ] + }, + "5": { + "Id": 100905, + "Name": "Nebula Secludes in Runes and Riddles", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 100906, + "Name": "Cosmos Dreams in Calm and Comfort", + "Desc": "Charging stack(s) lost in each turn is reduced by #1[i].", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "100901": { + "Id": 100901, + "Name": "Spectrum Beam", + "Desc": "Deals Fire DMG equal to #1[i]% of Asta's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100902": { + "Id": 100902, + "Name": "Meteor Storm", + "Desc": "Deals Fire DMG equal to #1[i]% of Asta's ATK to a single enemy and further deals DMG for 4 extra times, with each time dealing Fire DMG equal to #1[i]% of Asta's ATK to a random enemy.", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + }, + "100903": { + "Id": 100903, + "Name": "Astral Blessing", + "Desc": "Increases SPD of all allies by #1[i] for #2[i] turn(s).", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 36, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 37.40000000037253, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 38.80000000074506, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 40.200000000186265, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 41.60000000055879, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 43, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 44.75000000069849, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 46.50000000046566, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 48.25000000023283, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 50, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 51.40000000037253, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 52.80000000074506, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 54.200000000186265, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 55.60000000055879, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 57, + 2 + ] + } + } + }, + "100904": { + "Id": 100904, + "Name": "Astrometry", + "Desc": "Gains 1 stack of Charging for every different enemy hit by Asta plus an extra stack if the enemy hit has Fire Weakness.\\nFor every stack of Charging Asta has, all allies' ATK increases by #1[f1]%, up to #2[i] time(s).\\nStarting from her second turn, Asta's Charging stack count is reduced by #3[i] at the beginning of every turn.", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07000000006519258, + 5, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07699999958276749, + 5, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 5, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09100000001490116, + 5, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.09799999953247607, + 5, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1049999997485429, + 5, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.11375000071711838, + 5, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.12250000028871, + 5, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13125000055879354, + 5, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.14000000013038516, + 5, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.14699999964796007, + 5, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1539999998640269, + 5, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.16100000008009374, + 5, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.16799999959766865, + 5, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.17499999981373549, + 5, + 3 + ] + } + } + }, + "100906": { + "Id": 100906, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100907": { + "Id": 100907, + "Name": "Miracle Flash", + "Desc": "Immediately attacks the enemy. After entering battle, deals Fire DMG equal to #1[i]% of Asta's ATK to all enemies.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Maze.png", + "LevelUpSkillID": [ + 100907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 3, + 0.5000000004656613 + ], + "PointID": 1009101, + "PointName": "Sparks", + "PointDesc": "Asta's Basic ATK has a #1[i]% base chance to Burn the enemy target for #2[i] turn(s).\\nBurned enemies take Fire DoT equal to #3[i]% of DMG dealt by Asta's Basic ATK at the start of each turn.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.18000000016763806 + ], + "PointID": 1009102, + "PointName": "Ignite", + "PointDesc": "When Asta is on the field, all allies' Fire DMG increases by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.060000000055879354 + ], + "PointID": 1009103, + "PointName": "Constellation", + "PointDesc": "Asta's DEF increases by #1[i]% for every current Charging stack she possesses.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009201, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009202, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1009101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009203, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1009202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009204, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1009201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009205, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1009102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009206, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1009205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009207, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1009201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009208, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1009103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009209, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1009208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009210, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1009208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "Fire DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 69.6000000005588, + "AttackAdd": 3.480000000447035, + "DefenceBase": 63, + "DefenceAdd": 3.1500000001396984, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 97.44000000040978, + "AttackAdd": 3.480000000447035, + "DefenceBase": 88.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 125.28000000026077, + "AttackAdd": 3.480000000447035, + "DefenceBase": 113.40000000037253, + "DefenceAdd": 3.1500000001396984, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 153.12000000011176, + "AttackAdd": 3.480000000447035, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 3.1500000001396984, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 180.96000000089407, + "AttackAdd": 3.480000000447035, + "DefenceBase": 163.80000000074506, + "DefenceAdd": 3.1500000001396984, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 208.80000000074506, + "AttackAdd": 3.480000000447035, + "DefenceBase": 189, + "DefenceAdd": 3.1500000001396984, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 236.64000000059605, + "AttackAdd": 3.480000000447035, + "DefenceBase": 214.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1009, + "Set4IDList": [ + 114, + 111, + 106 + ], + "Set2IDList": [ + 302, + 310, + 308 + ], + "PropertyList3": [ + "HPAddedRatio", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 321, + 278 + ] + } + }, + "1013": { + "Name": "Herta", + "Desc": "Member 83 of the Genius Society. The real master of the space station.\\nAn incredibly intelligent yet unsympathetic scientist.", + "CharaInfo": { + "Camp": "Herta Space Station", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "herta", + "SPNeed": 110, + "BaseType": "Mage", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 101301, + "Name": "Kick You When You're Down", + "Desc": "When using Basic ATK, if the designated enemy's HP percentage is at #1[i]% or less, additionally deals Ice Additional DMG equal to #2[i]% of Herta's ATK.", + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "2": { + "Id": 101302, + "Name": "Keep the Ball Rolling", + "Desc": "Every time Talent is triggered, this character's CRIT Rate increases by #1[i]%. This effect can stack up to #2[i] time(s).", + "ParamList": [ + 0.030000000027939677, + 5 + ] + }, + "3": { + "Id": 101303, + "Name": "That's the Kind of Girl I Am", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 101304, + "Name": "Hit Where It Hurts", + "Desc": "When Talent is triggered, DMG increases by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "5": { + "Id": 101305, + "Name": "Cuss Big or Cuss Nothing", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 101306, + "Name": "No One Can Betray Me", + "Desc": "After using Ultimate, this character's ATK increases by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.25000000023283064, + 1 + ] + } + }, + "Skills": { + "101301": { + "Id": 101301, + "Name": "What Are You Looking At?", + "Desc": "Deals Ice DMG equal to #1[i]% of Herta's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "101302": { + "Id": 101302, + "Name": "One-Time Offer", + "Desc": "Deals Ice DMG equal to #1[i]% of Herta's ATK to all enemies. If the enemy's HP percentage is #2[i]% or higher, DMG dealt to this target increases by #3[i]%.", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 0.5000000004656613, + 0.20000000018626451 + ] + } + } + }, + "101303": { + "Id": 101303, + "Name": "It's Magic, I Added Some Magic", + "Desc": "Deals Ice DMG equal to #1[i]% of Herta's ATK to all enemies.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529 + ] + } + } + }, + "101304": { + "Id": 101304, + "Name": "Fine, I'll Do It Myself", + "Desc": "When an ally's attack causes an enemy's HP percentage to fall to #1[i]% or lower, Herta will launch a Follow-up ATK, dealing Ice DMG equal to #2[i]% of Herta's ATK to all enemies.", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 0.2649999998975545 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 0.2949999999254942 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 0.31000000028871 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 0.32499999995343387 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 0.3437500009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 0.3625000005122274 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 0.3812500007916242 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 0.4150000000372529 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 0.4300000004004687 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 0.4450000000651926 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 0.4600000004284084 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.47500000009313226 + ] + } + } + }, + "101306": { + "Id": 101306, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101307": { + "Id": 101307, + "Name": "It Can Still Be Optimized", + "Desc": "After using her Technique, Herta's ATK increases by #1[i]% for #2[i] turn(s) at the beginning of the next battle.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Maze.png", + "LevelUpSkillID": [ + 101307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1013101, + "PointName": "Efficiency", + "PointDesc": "When Skill is used, the DMG Boost effect on target enemies increases by an extra #1[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1013102, + "PointName": "Puppet", + "PointDesc": "Increases the chance to resist Crowd Control debuffs by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1013103, + "PointName": "Icing", + "PointDesc": "When Ultimate is used, deals #1[i]% more DMG to Frozen enemies.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013201, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013202, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1013101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013203, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1013202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013204, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1013202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013205, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1013102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013206, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1013205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013207, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1013205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013208, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1013103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013209, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1013103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013210, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "Ice DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 129.6000000005588, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 181.44000000040978, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 233.28000000026077, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 285.12000000011176, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 336.96000000089407, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 388.80000000074506, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 440.64000000059605, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1013, + "Set4IDList": [ + 104, + 102, + 122 + ], + "Set2IDList": [ + 313, + 306, + 315 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "IceAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 338, + 284 + ], + "LocalCriticalChance": 0.1500000001396984 + } + }, + "1014": { + "Name": "Saber", + "Desc": "The solitary Heroic Spirit traverses the long night of fate. The banner of the round table remains unfurled in a dream. Alas, the knight-king of Camelot has yet to reach that ever-distant utopia.\\nThough still a young maiden, she has heeded the call for this most unique iteration of the Holy Grail War. With the Sword in the Stone offering its choice once more, how shall she shatter the illusions of the past?\\n\"The wishes I did not fulfil will end here.\"", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "saber", + "SPNeed": 360, + "BaseType": "Warrior", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 101401, + "Name": "The Lost White Walls", + "Desc": "Increases DMG dealt by Saber by #1[i]%. After Saber uses a Basic ATK or Skill, additionally gains #2[i] \"Core Resonance.\"", + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Id": 101402, + "Name": "The Sealed Round Table", + "Desc": "Increases CRIT DMG dealt with \"Release, the Golden Scepter\" and \"Strike Air: Hammer of the Wind King\" by #1[i]%. For every 1 \"Core Resonance\" gained, additionally increases CRIT DMG dealt by #2[i]%. This effect can be stacked up to #3[i] time(s).", + "ParamList": [ + 0.5000000004656613, + 0.05000000004656613, + 10 + ] + }, + "3": { + "Id": 101403, + "Name": "The Fabled Fifteen Centuries", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 101404, + "Name": "The Wondrous Fourteen Nights", + "Desc": "Increases Saber's Wind RES PEN by #1[i]%. After using Ultimate, increases Saber's Wind RES PEN by #2[i]%, stacking up to #3[i] time(s).", + "ParamList": [ + 0.0400000000372529, + 0.0400000000372529, + 4 + ] + }, + "5": { + "Id": 101405, + "Name": "The Dreamed Utopian Dawn", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 101406, + "Name": "The Long Fated Night", + "Desc": "Increases the RES PEN caused by Saber's Ultimate DMG by #1[i]%. Upon entering battle and using the Ultimate for the first time, regenerates a fixed #3[i] Energy for Saber. After an Ultimate is used #2[i] time(s), this effect can be triggered once more.", + "ParamList": [ + 0.20000000018626451, + 4, + 300 + ] + } + }, + "Skills": { + "101401": { + "Id": 101401, + "Name": "Invisible Air: Barrier of the Wind King", + "Desc": "Deals Wind DMG equal to #1[i]% of Saber's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "101402": { + "Id": 101402, + "Name": "Strike Air: Hammer of the Wind King", + "Desc": "Deals Wind DMG equal to #1[i]% of Saber's ATK to one designated enemy, and deals Wind DMG equal to #2[i]% of Saber's ATK to enemies adjacent to it. If currently holding \"Core Resonance,\" and consuming it after this Skill usage would fully regenerate Saber's Energy, then increases the DMG multiplier for this usage of Skill. Each \"Core Resonance\" increases the DMG multiplier for this usage of Skill by #4[i]%, then immediately consumes all \"Core Resonance\" to fully regenerate Energy for Saber. Otherwise, immediately gains #3[i] \"Core Resonance.\"", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.375, + 2, + 0.07000000006519258 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.41250000055879354, + 2, + 0.07699999958276749 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 2, + 0.08399999979883432 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 2, + 0.09100000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 2, + 0.09799999953247607 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 2, + 0.1049999997485429 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.6093750006984919, + 2, + 0.11375000071711838 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.6562500006984919, + 2, + 0.12250000028871 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.7031250006984919, + 2, + 0.13125000055879354 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 2, + 0.14000000013038516 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.7875000005587935, + 2, + 0.14699999964796007 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.8250000004190952, + 2, + 0.1539999998640269 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.8625000009778887, + 2, + 0.16100000008009374 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.9000000008381903, + 2, + 0.16799999959766865 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 2, + 0.17499999981373549 + ] + } + } + }, + "101403": { + "Id": 101403, + "Name": "Excalibur", + "Desc": "Deals Wind DMG equal to #1[i]% of Saber's ATK to all enemies. Then, deals Wind DMG equal to #2[i]% of Saber's ATK to one random enemy, occurring #3[i] time(s). After using Ultimate, the next Basic ATK switches to \"Release, the Golden Scepter,\" and only \"Release, the Golden Scepter\" can be used.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 120, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 0.5500000005122274, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 0.6050000002142042, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 0.6600000006146729, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 0.7150000003166497, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 0.7700000007171184, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 0.8250000004190952, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 0.89375000144355, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 0.962500001071021, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1.0312500004656613, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.1000000000931323, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1.154999999795109, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1.2100000001955777, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1.2649999998975545, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 1.3200000002980232, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 1.375, + 10 + ] + } + } + }, + "101404": { + "Id": 101404, + "Name": "Dragon Reactor Core", + "Desc": "Obtains #8[i] \"Core Resonance\" point(s) when entering battle. When any ally target uses an Ultimate, increases DMG dealt by Saber by #3[i]% for #4[i] turn(s) and obtains #1[i] \"Core Resonance\" point(s). Consuming 1 \"Core Resonance\" point will regenerate a fixed #5[i] Energy for Saber.", + "Type": null, + "Tag": "Enhance", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 25, + 0.20000000018626451, + 2, + 10, + 0.05000000004656613, + 99, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 25, + 0.22000000020489097, + 2, + 10, + 0.054999999701976776, + 99, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 25, + 0.24000000022351742, + 2, + 10, + 0.060000000055879354, + 99, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 25, + 0.26000000024214387, + 2, + 10, + 0.06499999971129, + 99, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 25, + 0.2800000002607703, + 2, + 10, + 0.07000000006519258, + 99, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 25, + 0.3000000002793968, + 2, + 10, + 0.07499999972060323, + 99, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 25, + 0.32499999995343387, + 2, + 10, + 0.08125000051222742, + 99, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 25, + 0.3500000003259629, + 2, + 10, + 0.08749999990686774, + 99, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 25, + 0.375, + 2, + 10, + 0.09375000069849193, + 99, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 25, + 0.40000000037252903, + 2, + 10, + 0.10000000009313226, + 99, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 25, + 0.4200000003911555, + 2, + 10, + 0.1049999997485429, + 99, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 25, + 0.44000000040978193, + 2, + 10, + 0.11000000010244548, + 99, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 25, + 0.4600000004284084, + 2, + 10, + 0.11499999975785613, + 99, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 25, + 0.48000000044703484, + 2, + 10, + 0.12000000011175871, + 99, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 25, + 0.5000000004656613, + 2, + 10, + 0.12499999976716936, + 99, + 1 + ] + } + } + }, + "101406": { + "Id": 101406, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101407": { + "Id": 101407, + "Name": "Behold, the King of Knights", + "Desc": "After using Technique, increases Saber's ATK by #1[i]% for #2[i] turn(s) and grants #3[i] \"Core Resonance\" at the start of the next battle.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 2, + 2 + ] + } + } + }, + "101408": { + "Id": 101408, + "Name": "Release, the Golden Scepter", + "Desc": "Gains #2[i] \"Core Resonance\" and deals Wind DMG equal to #1[i]% of Saber's ATK to all enemies. If there are 2/1 enemy(ies) on the field, additionally deals Wind DMG equal to #3[i]%/#4[i]% of Saber's ATK to all enemies.", + "Type": "Normal", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 2, + 0.7500000006984919, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9000000008381903, + 2, + 0.9000000008381903, + 0.4200000003911555 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0500000000465661, + 2, + 1.0500000000465661, + 0.49000000045634806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2000000001862645, + 2, + 1.2000000001862645, + 0.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.350000000325963, + 2, + 1.350000000325963, + 0.6300000005867332 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 2, + 1.5000000004656613, + 0.7000000006519258 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6500000006053597, + 2, + 1.6500000006053597, + 0.7700000007171184 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 2, + 1.800000000745058, + 0.840000000782311 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9500000008847564, + 2, + 1.9500000008847564, + 0.9100000008475035 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 2, + 2.1000000000931323, + 0.9800000009126961 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Maze.png", + "LevelUpSkillID": [ + 101407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903, + 0.20000000018626451 + ], + "PointID": 1014101, + "PointName": "Knight of the Dragon", + "PointDesc": "Increases Saber's CRIT Rate by #1[i]%. When entering battle and using an Enhanced Basic ATK, obtains \"Mana Burst.\" If Saber has \"Mana Burst\" and \"Core Resonance\" at the same time, then she can fully regenerate her Energy after using a Skill and consumes \"Mana Burst\" to allow allies to recover 1 Skill Point while letting her immediately take action.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 120, + 0.40000000037252903, + 0.40000000037252903 + ], + "PointID": 1014102, + "PointName": "Blessing of the Lake", + "PointDesc": "Saber can accumulate up to #1[i] excess Energy. After using Ultimate, the excess Energy is cleared and a corresponding amount is regenerated. When the battle starts, if Energy is below #3[i]%, it is regenerated to #2[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ], + "PointID": 1014103, + "PointName": "Crown of the Star", + "PointDesc": "When using Skill, increases Saber's CRIT DMG by #1[i]% for #2[i] turns.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014201, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1014101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014203, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1014202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1014203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014205, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1014102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1014205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1014206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1014103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1014208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014210, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1014208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "Wind DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1014, + "Set4IDList": [ + 126, + 122, + 102 + ], + "Set2IDList": [ + 306, + 301, + 309 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 336, + 281 + ] + } + }, + "1015": { + "Name": "Archer", + "Desc": null, + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "archer", + "SPNeed": 240, + "BaseType": "Rogue", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 101501, + "Name": "The Unreached Dream", + "Desc": "After using Skill #1[i] time(s) in a single turn, the next Skill use in the current turn will not consume Skill Points.", + "ParamList": [ + 3 + ] + }, + "2": { + "Id": 101502, + "Name": "The Unfulfilled Happiness", + "Desc": "Increases DMG dealt by Ultimate by #1[i]%.", + "ParamList": [ + 1.2000000001862645 + ] + }, + "3": { + "Id": 101503, + "Name": "The Untamed Will", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 101504, + "Name": "The Unsung Life", + "Desc": "If the target of the Ultimate does not possess Quantum Weakness, Quantum Weakness will be applied during the Ultimate and reduces the target's Quantum RES by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "5": { + "Id": 101505, + "Name": "The Nameless Watch", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 101506, + "Name": "The Endless Pilgrimage", + "Desc": "When the turn begins, immediately recovers 1 Skill Point for allies. Increases the maximum stacks for the DMG boost provided by his own Skill by #1[i] stacks. DMG dealt by his Skill ignores #2[i]% of DEF.", + "ParamList": [ + 1, + 0.20000000018626451 + ] + } + }, + "Skills": { + "101501": { + "Id": 101501, + "Name": "Kanshou and Bakuya", + "Desc": "Deals Quantum DMG equal to #1[i]% of Archer's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + } + } + }, + "101502": { + "Id": 101502, + "Name": "Caladbolg: Fake Spiral Sword", + "Desc": "Enters the \"Circuit Connection\" state. Deals Quantum DMG equal to #1[i]% of Archer's ATK to one designated enemy target. In the \"Circuit Connection\" state, the turn does not end after using Skill, and increases the DMG dealt by Archer's Skill by #2[i]%. This effect can be stacked up to #3[i] times, lasting until he exits the \"Circuit Connection\" state. After actively using Skill #5[i] times or when there are insufficient Skill Points, using Skill again causes him to exit the \"Circuit Connection\" state and ends the turn. Exits the \"Circuit Connection\" state after all enemies have been defeated in each wave.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 2, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.6000000005587935, + 2, + 1, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.2000000001862645, + 0.6400000005960464, + 2, + 1, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.400000000372529, + 0.6800000006332994, + 2, + 1, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.6000000005587935, + 0.7200000006705523, + 2, + 1, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.800000000745058, + 0.7600000007078052, + 2, + 1, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.8000000007450581, + 2, + 1, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.2500000002328306, + 0.8500000007916242, + 2, + 1, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.5000000004656613, + 0.9000000008381903, + 2, + 1, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.750000000698492, + 0.9500000008847564, + 2, + 1, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 1, + 2, + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.2000000001862645, + 1.040000000037253, + 2, + 1, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.400000000372529, + 1.0800000000745058, + 2, + 1, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.6000000005587935, + 1.1200000001117587, + 2, + 1, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.800000000745058, + 1.1600000001490116, + 2, + 1, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5, + 1.2000000001862645, + 2, + 1, + 5 + ] + } + } + }, + "101503": { + "Id": 101503, + "Name": "Unlimited Blade Works", + "Desc": "Deals Quantum DMG equal to #1[i]% of Archer's ATK to one designated enemy and gains #2[i] Charge, up to a maximum of #3[i] Charge.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7.2000000001862645, + 2, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7.680000000633299, + 2, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 8.160000000149012, + 2, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 8.640000000596046, + 2, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 9.120000000111759, + 2, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 9.600000000558794, + 2, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 10.200000000186265, + 2, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 10.800000000745058, + 2, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 11.400000000372529, + 2, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 12, + 2, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 12.480000000447035, + 2, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 12.96000000089407, + 2, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 13.440000000409782, + 2, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 13.920000000856817, + 2, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 14.400000000372529, + 2, + 4 + ] + } + } + }, + "101504": { + "Id": 101504, + "Name": "Mind's Eye (True)", + "Desc": "When Archer's teammate attacks an enemy target, Archer consumes 1 Charge and immediately launches Follow-up ATK on the primary target, dealing Quantum DMG equal to #1[i]% of Archer's ATK and recovering 1 Skill Point.", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3 + ] + } + } + }, + "101506": { + "Id": 101506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101507": { + "Id": 101507, + "Name": "Clairvoyance", + "Desc": "Immediately attacks the enemy. After entering combat, deals Quantum DMG equal to #1[i]% of Archer's ATK to all enemies and gains #2[i] Charge.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "101509": { + "Id": 101509, + "Name": "End", + "Desc": "Exits the \"Circuit Connection\" state and ends the turn.", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Maze.png", + "LevelUpSkillID": [ + 101507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1015101, + "PointName": "Projection Magecraft", + "PointDesc": "When Archer is on the field, increases the maximum Skill Point limit by #1[i].", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1015102, + "PointName": "Hero of Justice", + "PointDesc": "When Archer enters battle, gains #1[i] Charge.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 1, + 4 + ], + "PointID": 1015103, + "PointName": "Guardian", + "PointDesc": "After allies gain a Skill Point, if there are #3[i] Skill Points or more, increases Archer's CRIT DMG by #1[i]% for #2[i] turns.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015201, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1015101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015203, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1015202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015204, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015205, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1015102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1015205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015207, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015208, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1015103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1015208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015210, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1015208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "Quantum DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1015, + "Set4IDList": [ + 108, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 336, + 281 + ] + } + }, + "1101": { + "Name": "Bronya", + "Desc": "Heir apparent to the Supreme Guardian of Belobog.\\nShe possesses pride befitting of a princess, but also the determination and integrity of a soldier.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "bronya", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 110101, + "Name": "Hone Your Strength", + "Desc": "When using Skill, there is a #1[i]% fixed chance of recovering 1 Skill Point. This effect has a 1-turn cooldown.", + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Id": 110102, + "Name": "Quick March", + "Desc": "When using Skill, the target ally's SPD increases by #1[i]% after taking action, lasting for 1 turn.", + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Id": 110103, + "Name": "Bombardment", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 110104, + "Name": "Take by Surprise", + "Desc": "After any other ally character uses Basic ATK on an enemy target that has Wind Weakness, Bronya immediately launches 1 instance of Follow-up ATK, dealing Wind DMG to this target equal to #1[i]% of her Basic ATK DMG. This effect can only trigger once per turn.", + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Id": 110105, + "Name": "Unstoppable", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 110106, + "Name": "Piercing Rainbow", + "Desc": "The duration of the DMG Boost effect placed by the Skill on the target ally increases by #1[i] turn(s).", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "110101": { + "Id": 110101, + "Name": "Windrider Bullet", + "Desc": "Deals Wind DMG equal to #1[i]% of Bronya's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110102": { + "Id": 110102, + "Name": "Combat Redeployment", + "Desc": "Dispels a debuff from a single ally, allows them to immediately take action, and increases their DMG by #1[i]% for #3[i] turn(s).\\nWhen this Skill is used on Bronya herself, she cannot immediately take action again.", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.33000000030733645, + 0, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3630000001285225, + 0, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3959999999497086, + 0, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.42899999977089465, + 0, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.46200000029057264, + 0, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.4950000001117587, + 0, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5362500005867332, + 0, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5775000003632158, + 0, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6187500008381903, + 0, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6600000006146729, + 0, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.693000000435859, + 0, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.726000000257045, + 0, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.7590000000782311, + 0, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7920000005979091, + 0, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8250000004190952, + 0, + 1, + 1 + ] + } + } + }, + "110103": { + "Id": 110103, + "Name": "The Belobog March", + "Desc": "Increases the ATK of all allies by #1[i]%, and increases their CRIT DMG equal to #2[f1]% of Bronya's CRIT DMG plus #3[f1]% for #4[i] turn(s).", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.33000000030733645, + 0.12000000011175871, + 0.12000000011175871, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.35200000018812716, + 0.12399999983608723, + 0.12799999956041574, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.37400000006891787, + 0.12799999956041574, + 0.1359999997075647, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3959999999497086, + 0.1319999999832362, + 0.14399999985471368, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4179999998304993, + 0.1359999997075647, + 0.15200000000186265, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.44000000040978193, + 0.14000000013038516, + 0.1600000001490116, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4675000002607703, + 0.1449999997857958, + 0.17000000015832484, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.4950000001117587, + 0.1500000001396984, + 0.18000000016763806, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.522500000661239, + 0.15499999979510903, + 0.1900000001769513, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5500000005122274, + 0.1600000001490116, + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5720000003930181, + 0.16399999987334013, + 0.20799999963492155, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5940000002738088, + 0.16799999959766865, + 0.21599999978207052, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6160000001545995, + 0.1720000000204891, + 0.22399999992921948, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6380000000353903, + 0.17599999974481761, + 0.23200000007636845, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6600000006146729, + 0.18000000016763806, + 0.24000000022351742, + 2 + ] + } + } + }, + "110104": { + "Id": 110104, + "Name": "Leading the Way", + "Desc": "After using her Basic ATK, Bronya's next action will be Advanced Forward by #1[i]%.", + "Type": null, + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375 + ] + } + } + }, + "110106": { + "Id": 110106, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110107": { + "Id": 110107, + "Name": "Banner of Command", + "Desc": "After using Bronya's Technique, at the start of the next battle, all allies' ATK increases by #1[i]% for #2[i] turn(s).", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Maze.png", + "LevelUpSkillID": [ + 110107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101101, + "PointName": "Command", + "PointDesc": "The CRIT Rate for Basic ATK increases to 100%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2, + 0.20000000018626451 + ], + "PointID": 1101102, + "PointName": "Battlefield", + "PointDesc": "At the start of the battle, all allies' DEF increases by #2[i]% for #1[i] turn(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1101103, + "PointName": "Military Might", + "PointDesc": "When Bronya is on the field, all allies deal #1[i]% more DMG.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101201, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101202, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1101101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101203, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1101202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1101201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101205, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1101102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101206, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1101205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101207, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1101201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1101103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101209, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1101208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101210, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1101208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "Wind DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 72.6000000005588, + "DefenceAdd": 3.630000000586733, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 101.64000000059605, + "DefenceAdd": 3.630000000586733, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 3.630000000586733, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 159.72000000067055, + "DefenceAdd": 3.630000000586733, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 3.630000000586733, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 3.630000000586733, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 246.8400000007823, + "DefenceAdd": 3.630000000586733, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1101, + "Set4IDList": [ + 114, + 110, + 121 + ], + "Set2IDList": [ + 317, + 310, + 302 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 188 + ], + "LocalCriticalChance": 1 + } + }, + "1102": { + "Name": "Seele", + "Desc": "A resident of the Underworld and the backbone of Wildfire. She goes by the alias \"Babochka.\"\\nShe has a frank personality, but there is a delicate and sensitive hidden side to her deep in her heart.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "seele", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 110201, + "Name": "Extirpating Slash", + "Desc": "When dealing DMG to an enemy whose HP percentage is #1[i]% or lower, CRIT Rate increases by #2[i]%.", + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ] + }, + "2": { + "Id": 110202, + "Name": "Dancing Butterfly", + "Desc": "The SPD Boost effect of Seele's Skill can stack up to #1[i] time(s).", + "ParamList": [ + 2 + ] + }, + "3": { + "Id": 110203, + "Name": "Dazzling Tumult", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 110204, + "Name": "Flitting Phantasm", + "Desc": "Seele regenerates #1[i] Energy when she defeats an enemy.", + "ParamList": [ + 15 + ] + }, + "5": { + "Id": 110205, + "Name": "Piercing Shards", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 110206, + "Name": "Shattering Shambles", + "Desc": "After Seele uses Ultimate, inflict the attacked enemy with \"Butterfly Flurry\" for #2[i] turn(s). Enemies in \"Butterfly Flurry\" will additionally take 1 instance of Quantum Additional DMG equal to #1[i]% of Seele's Ultimate DMG every time they are attacked. If the target is defeated by the \"Butterfly Flurry\" state's Additional DMG triggered by other allies' attacks, Seele's Talent will not be triggered.\\nWhen Seele is knocked down, the \"Butterfly Flurry\" inflicted on the enemies will be removed.", + "ParamList": [ + 0.1500000001396984, + 1 + ] + } + }, + "Skills": { + "110201": { + "Id": 110201, + "Name": "Thwack", + "Desc": "Deals Quantum DMG equal to #1[i]% of Seele's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110202": { + "Id": 110202, + "Name": "Sheathed Blade", + "Desc": "Increases Seele's SPD by #2[i]% for #3[i] turn(s) and deals Quantum DMG equal to #1[i]% of Seele's ATK to a single enemy.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323, + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2100000001955777, + 0.25000000023283064, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3200000002980232, + 0.25000000023283064, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4300000004004687, + 0.25000000023283064, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5400000005029142, + 0.25000000023283064, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6500000006053597, + 0.25000000023283064, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7875000005587935, + 0.25000000023283064, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9250000005122274, + 0.25000000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.0625000002328306, + 0.25000000023283064, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645, + 0.25000000023283064, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.31000000028871, + 0.25000000023283064, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4200000003911555, + 0.25000000023283064, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.530000000493601, + 0.25000000023283064, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.6400000005960464, + 0.25000000023283064, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.750000000698492, + 0.25000000023283064, + 2 + ] + } + } + }, + "110203": { + "Id": 110203, + "Name": "Butterfly Flurry", + "Desc": "Seele enters the Amplification state and deals Quantum DMG equal to #1[i]% of her ATK to a single enemy.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.5500000005122274 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.7200000006705523 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.890000000828877 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.0600000000558794 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.230000000214204 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.400000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.612500000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.825000000419095 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.037499999860302 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.250000000232831 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.59000000054948 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.93000000086613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.100000000093132 + ] + } + } + }, + "110204": { + "Id": 110204, + "Name": "Resurgence", + "Desc": "Enters the Amplification state upon defeating an enemy with Basic ATK, Skill, or Ultimate, and receives an extra turn. While in the Amplification state, the DMG of Seele's attacks increases by #1[i]% for #2[i] turn(s).\\nEnemies defeated in the extra turn provided by \"Resurgence\" will not trigger another \"Resurgence.\"", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1 + ] + } + } + }, + "110206": { + "Id": 110206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110207": { + "Id": 110207, + "Name": "Phantom Illusion", + "Desc": "After using her Technique, Seele gains Stealth for #1[i] second(s). While Stealth is active, Seele cannot be detected by enemies. And when entering battle by attacking enemies, Seele will immediately enter the Amplification state.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Maze.png", + "LevelUpSkillID": [ + 110207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1102101, + "PointName": "Nightshade", + "PointDesc": "When current HP percentage is #1[i]% or lower, reduces the chance of being attacked by enemies.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1102102, + "PointName": "Lacerate", + "PointDesc": "While Seele is in the Amplification state, her Quantum RES PEN increases by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1102103, + "PointName": "Rippling Waves", + "PointDesc": "After using a Basic ATK, Seele's next action advances by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102202, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1102101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1102202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1102102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102206, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1102205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1102103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102209, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1102208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1102208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1102, + "Set4IDList": [ + 108, + 122, + 102 + ], + "Set2IDList": [ + 311, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1103": { + "Name": "Serval", + "Desc": "A Belobog mechanic who used to be a researcher for the Technology Division of the Architects.\\nAs Gepard Landau's elder sister, her personality stands in stark contrast to her brother's.\\nShe loves an ancient form of music known as \"rock 'n' roll\" that was popular before the Eternal Freeze.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "serval", + "SPNeed": 100, + "BaseType": "Mage", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 110301, + "Name": "Echo Chamber", + "Desc": "Basic ATK deals Lightning DMG equal to #1[i]% of Basic ATK DMG to a random target adjacent to the target enemy.", + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Id": 110302, + "Name": "Encore!", + "Desc": "Every time Serval's Talent is triggered to deal Additional DMG, she regenerates #1[i] Energy.", + "ParamList": [ + 4 + ] + }, + "3": { + "Id": 110303, + "Name": "Listen, the Heartbeat of the Gears", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 110304, + "Name": "Make Some Noise!", + "Desc": "Ultimate has a #1[i]% base chance to apply Shock to any enemies not currently Shocked. This Shock has the same effects as the one applied by Skill.", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 110305, + "Name": "Belobog's Loudest Roar!", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 110306, + "Name": "This Song Rocks to Heaven!", + "Desc": "Serval deals #1[i]% more DMG to Shocked enemies.", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "110301": { + "Id": 110301, + "Name": "Roaring Thunderclap", + "Desc": "Deals Lightning DMG equal to #1[i]% of Serval's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110302": { + "Id": 110302, + "Name": "Lightning Flash", + "Desc": "Deals Lightning DMG equal to #1[i]% of Serval's ATK to a single enemy and Lightning DMG equal to #2[i]% of Serval's ATK to enemies adjacent to it, with a #3[i]% base chance for enemies hit to become Shocked for #4[i] turn(s).\\nWhile Shocked, enemies take Lightning DoT equal to #5[i]% of Serval's ATK at the beginning of each turn.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 0.3000000002793968, + 0.8000000007450581, + 2, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 0.33000000030733645, + 0.8000000007450581, + 2, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 0.3600000003352761, + 0.8000000007450581, + 2, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 0.3900000003632158, + 0.8000000007450581, + 2, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 0.4200000003911555, + 0.8000000007450581, + 2, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 0.45000000041909516, + 0.8000000007450581, + 2, + 0.62000000057742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 0.4875000002793968, + 0.8000000007450581, + 2, + 0.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 0.5250000001396984, + 0.8000000007450581, + 2, + 0.8000000007450581 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 0.5625000006984919, + 0.8000000007450581, + 2, + 0.9200000008568168 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.6000000005587935, + 0.8000000007450581, + 2, + 1.040000000037253 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 0.6300000005867332, + 0.8000000007450581, + 2, + 1.0919999999459833 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 0.6600000006146729, + 0.8000000007450581, + 2, + 1.1439999998547137 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 0.6900000006426126, + 0.8000000007450581, + 2, + 1.195999999763444 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 0.7200000006705523, + 0.8000000007450581, + 2, + 1.2479999996721745 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 0.7500000006984919, + 0.8000000007450581, + 2, + 1.3000000002793968 + ] + } + } + }, + "110303": { + "Id": 110303, + "Name": "Here Comes the Mechanical Fever", + "Desc": "Deals Lightning DMG equal to #1[i]% of Serval's ATK to all enemies. Enemies already Shocked will extend the duration of their Shock state by #2[i] turn(s).", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 28, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0800000000745058, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1520000000018626, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2239999999292195, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2959999998565763, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3679999997839332, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.530000000493601, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.62000000057742, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.710000000661239, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.872000000672415, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.9440000005997717, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.015999999595806, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.087999999523163, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.1600000001490116, + 2 + ] + } + } + }, + "110304": { + "Id": 110304, + "Name": "Galvanic Chords", + "Desc": "After Serval attacks, deals Lightning Additional DMG equal to #1[i]% of Serval's ATK to all Shocked enemies.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "110306": { + "Id": 110306, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110307": { + "Id": 110307, + "Name": "Good Night, Belobog", + "Desc": "Immediately attacks the enemy. After entering battle, deals Lightning DMG equal to #4[i]% of Serval's ATK to a random enemy, with a #1[i]% base chance for all enemies to become Shocked for #3[i] turn(s).\\nWhile Shocked, enemies will take Lightning DoT equal to #2[i]% of Serval's ATK at the beginning of each turn.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 3, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Maze.png", + "LevelUpSkillID": [ + 110307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1103101, + "PointName": "Rock 'n' Roll", + "PointDesc": "When using skill, increases the base chance for the attacked enemy target to become Shocked by #1[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1103102, + "PointName": "String Vibration", + "PointDesc": "At the start of the battle, immediately regenerates #1[i] Energy.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 2 + ], + "PointID": 1103103, + "PointName": "Mania", + "PointDesc": "Upon defeating an enemy, ATK is increased by #1[i]% for #2[i] turn(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103201, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103202, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1103101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103203, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1103202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1103202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103205, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1103102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103206, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1103205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103207, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1103205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1103103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103209, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1103103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103210, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 88.80000000074506, + "AttackAdd": 4.440000000409782, + "DefenceBase": 51, + "DefenceAdd": 2.5500000005122274, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 124.32000000029802, + "AttackAdd": 4.440000000409782, + "DefenceBase": 71.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 159.8400000007823, + "AttackAdd": 4.440000000409782, + "DefenceBase": 91.80000000074506, + "DefenceAdd": 2.5500000005122274, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 195.36000000033528, + "AttackAdd": 4.440000000409782, + "DefenceBase": 112.20000000018626, + "DefenceAdd": 2.5500000005122274, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 230.88000000081956, + "AttackAdd": 4.440000000409782, + "DefenceBase": 132.6000000005588, + "DefenceAdd": 2.5500000005122274, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 266.40000000037253, + "AttackAdd": 4.440000000409782, + "DefenceBase": 153, + "DefenceAdd": 2.5500000005122274, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 301.9200000008568, + "AttackAdd": 4.440000000409782, + "DefenceBase": 173.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1103, + "Set4IDList": [ + 109, + 117, + 122 + ], + "Set2IDList": [ + 301, + 306, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 351, + 296 + ] + } + }, + "1104": { + "Name": "Gepard", + "Desc": "A captain in the Silvermane Guards and an outstanding warrior of Belobog.\\nHe is meticulous and vigilant to the core and is always true to himself.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "gepard", + "SPNeed": 100, + "BaseType": "Knight", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 110401, + "Name": "Due Diligence", + "Desc": "When using Skill, increases the base chance to Freeze the attacked target enemy by #1[i]%.", + "ParamList": [ + 0.3500000003259629 + ] + }, + "2": { + "Id": 110402, + "Name": "Lingering Cold", + "Desc": "After an enemy Frozen by Skill is unfrozen, their SPD is reduced by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 110403, + "Name": "Never Surrender", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 110404, + "Name": "Faith Moves Mountains", + "Desc": "When Gepard is in battle, all allies' Effect RES increases by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 110405, + "Name": "Cold Iron Fist", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 110406, + "Name": "Unyielding Resolve", + "Desc": "When his Talent is triggered, Gepard immediately takes action and restores extra HP equal to #1[i]% of his Max HP.", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "110401": { + "Id": 110401, + "Name": "Fist of Conviction", + "Desc": "Deals Ice DMG equal to #1[i]% of Gepard's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110402": { + "Id": 110402, + "Name": "Daunting Smite", + "Desc": "Deals Ice DMG equal to #1[i]% of Gepard's ATK to a single enemy, with a #2[i]% base chance to Freeze the enemy for #3[i] turn(s).\\nWhile Frozen, the enemy cannot take action and will take Ice Additional DMG equal to #4[i]% of Gepard's ATK at the beginning of each turn.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.6500000006053597, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.6500000006053597, + 1, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6500000006053597, + 1, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 1, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.6500000006053597, + 1, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6500000006053597, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597, + 1, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.6500000006053597, + 1, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.6500000006053597, + 1, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.6500000006053597, + 1, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.6500000006053597, + 1, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.6500000006053597, + 1, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.6500000006053597, + 1, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.6500000006053597, + 1, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 0.6500000006053597, + 1, + 0.7500000006984919 + ] + } + } + }, + "110403": { + "Id": 110403, + "Name": "Enduring Bulwark", + "Desc": "Applies a Shield to all allies, absorbing DMG equal to #1[i]% of Gepard's DEF plus #3[i] for #2[i] turn(s).", + "Type": "Ultra", + "Tag": "Defence", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 150 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.31875000055879354, + 3, + 240 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3375000001396984, + 3, + 307.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.35625000041909516, + 3, + 375 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.375, + 3, + 420 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3900000003632158, + 3, + 465 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4050000000279397, + 3, + 498.7500000006985 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.4200000003911555, + 3, + 532.5000000004657 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.43500000005587935, + 3, + 566.2500000002328 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.45000000041909516, + 3, + 600 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.46500000008381903, + 3, + 633.7500000006985 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.48000000044703484, + 3, + 667.5000000004657 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4950000001117587, + 3, + 701.2500000002328 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5100000004749745, + 3, + 735 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5250000001396984, + 3, + 768.7500000006985 + ] + } + } + }, + "110404": { + "Id": 110404, + "Name": "Unyielding Will", + "Desc": "When struck with a killing blow, instead of becoming knocked down, Gepard's HP immediately restores to #1[i]% of his Max HP. This effect can only trigger once per battle.", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + }, + "110406": { + "Id": 110406, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110407": { + "Id": 110407, + "Name": "Comradery", + "Desc": "After Gepard uses his Technique, when the next battle begins, a Shield will be applied to all allies, absorbing DMG equal to #1[i]% of Gepard's DEF plus #3[i] for #2[i] turn(s).", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 2, + 150 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Maze.png", + "LevelUpSkillID": [ + 110407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1104101, + "PointName": "Integrity", + "PointDesc": "Gepard has a higher chance to be attacked by enemies.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1104201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104102, + "PointName": "Commander", + "PointDesc": "When \"Unyielding Will\" is triggered, Gepard's Energy will be restored to 100%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1104201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1104103, + "PointName": "Grit", + "PointDesc": "Gepard's ATK increases by #1[i]% of his current DEF. This effect will refresh at the start of each turn.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104201, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104202, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1104101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104203, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1104202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104205, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1104102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104206, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1104205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104207, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1104103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104209, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1104208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "Effect RES" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104210, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1104208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "Ice DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 4.455000000074506, + "HPBase": 190.0800000000745, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 4.455000000074506, + "HPBase": 266.1119999999646, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 160.3800000003539, + "DefenceAdd": 4.455000000074506, + "HPBase": 342.1439999998547, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 196.02000000001863, + "DefenceAdd": 4.455000000074506, + "HPBase": 418.1759999997448, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 231.66000000061467, + "DefenceAdd": 4.455000000074506, + "HPBase": 494.2079999996349, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 267.3000000002794, + "DefenceAdd": 4.455000000074506, + "HPBase": 570.2400000002235, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 302.94000000087544, + "DefenceAdd": 4.455000000074506, + "HPBase": 646.2720000001136, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1104, + "Set4IDList": [ + 103, + 106, + 114 + ], + "Set2IDList": [ + 304, + 310, + 317 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusProbabilityBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 285, + 221 + ] + } + }, + "1105": { + "Name": "Natasha", + "Desc": "A doctor from the Underworld and a caregiver of children.\\nAlongside her kindness and caring, she also has a hidden dangerous side.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "natasha", + "SPNeed": 90, + "BaseType": "Priest", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 110501, + "Name": "Pharmacology Expertise", + "Desc": "After being attacked, if the current HP percentage is #1[i]% or lower, heals self for 1 time to restore HP by an amount equal to #2[i]% of Max HP plus #3[i]. This effect can only be triggered 1 time per battle.", + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984, + 400 + ] + }, + "2": { + "Id": 110502, + "Name": "Clinical Research", + "Desc": "When Natasha uses her Ultimate, grant continuous healing for #2[i] turn(s) to allies whose HP percentage is at #1[i]% or lower. And at the beginning of their turn, their HP is restored by an amount equal to #3[i]% of Natasha's Max HP plus #4[i].", + "ParamList": [ + 0.3000000002793968, + 1, + 0.060000000055879354, + 160 + ] + }, + "3": { + "Id": 110503, + "Name": "The Right Cure", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 110504, + "Name": "Miracle Cure", + "Desc": "After being attacked, regenerates #1[i] extra Energy.", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 110505, + "Name": "Preventive Treatment", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 110506, + "Name": "Doctor's Grace", + "Desc": "Natasha's Basic ATK additionally deals Physical DMG equal to #1[i]% of her Max HP.", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "110501": { + "Id": 110501, + "Name": "Behind the Kindness", + "Desc": "Deals Physical DMG equal to #1[i]% of Natasha's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110502": { + "Id": 110502, + "Name": "Love, Heal, and Choose", + "Desc": "Restores a single ally for #1[f1]% of Natasha's Max HP plus #4[i]. Restores the ally for another #2[f1]% of Natasha's Max HP plus #5[i] at the beginning of each turn for #3[i] turn(s).", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07000000006519258, + 0.04799999948590994, + 2, + 70, + 48 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07437500054948032, + 0.05099999997764826, + 2, + 112, + 76.80000000074506 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07875000033527613, + 0.05399999977089465, + 2, + 143.50000000046566, + 98.40000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.08312500012107193, + 0.056999999564141035, + 2, + 175, + 120 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08749999990686774, + 0.060000000055879354, + 2, + 196, + 134.40000000037253 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09100000001490116, + 0.06240000016987324, + 2, + 217, + 148.80000000074506 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09450000012293458, + 0.06480000028386712, + 2, + 232.7500000006985, + 159.6000000005588 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09799999953247607, + 0.06719999969936907, + 2, + 248.50000000046566, + 170.40000000037253 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10150000033900142, + 0.06959999981336296, + 2, + 264.25000000023283, + 181.20000000018626 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1049999997485429, + 0.07199999992735684, + 2, + 280, + 192 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10849999985657632, + 0.07440000004135072, + 2, + 295.7500000006985, + 202.80000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11199999996460974, + 0.0768000001553446, + 2, + 311.50000000046566, + 213.6000000005588 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11550000007264316, + 0.07919999957084656, + 2, + 327.25000000023283, + 224.40000000037253 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.11899999948218465, + 0.08160000038333237, + 2, + 343, + 235.20000000018626 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12250000028871, + 0.08399999979883432, + 2, + 358.7500000006985, + 246 + ] + } + } + }, + "110503": { + "Id": 110503, + "Name": "Gift of Rebirth", + "Desc": "Heals all allies for #1[f1]% of Natasha's Max HP plus #2[i].", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09199999994598329, + 92 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.09775000042282045, + 147.20000000018626 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10350000020116568, + 188.6000000005588 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1092499999795109, + 230 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11499999975785613, + 257.6000000005588 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.11959999985992908, + 285.20000000018626 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.12419999996200204, + 305.9000000008382 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.128800000064075, + 326.6000000005588 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13340000016614795, + 347.3000000002794 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.13799999956972897, + 368 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.14260000037029386, + 388.7000000006519 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.14719999977387488, + 409.40000000037253 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.15180000057443976, + 430.10000000009313 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1563999999780208, + 450.80000000074506 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.16100000008009374, + 471.50000000046566 + ] + } + } + }, + "110504": { + "Id": 110504, + "Name": "Innervation", + "Desc": "When healing allies with HP percentage at #1[i]% or lower, increases Natasha's Outgoing Healing by #2[i]%. This effect also works on continuous healing.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.6250000002328306 + ] + } + } + }, + "110506": { + "Id": 110506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110507": { + "Id": 110507, + "Name": "Hypnosis Research", + "Desc": "Immediately attacks the enemy. After entering battle, deals Physical DMG equal to #4[i]% of Natasha's ATK to a random enemy, with a #1[i]% base chance to Weaken all enemies.\\nWhile Weakened, enemies deal #2[i]% less DMG to allies for #3[i] turn(s).", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.3000000002793968, + 1, + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Maze.png", + "LevelUpSkillID": [ + 110507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1105101, + "PointName": "Soothe", + "PointDesc": "When using Skill, dispels #1[i] debuff(s) from one designated ally.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1105102, + "PointName": "Healer", + "PointDesc": "Natasha's Outgoing Healing increases by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1105103, + "PointName": "Recuperation", + "PointDesc": "Increases the duration of Skill's continuous healing effect for #1[i] turn(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105201, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105202, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1105101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105203, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1105202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1105203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105205, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1105102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105206, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1105205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105207, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1105206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1105103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105209, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1105103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "Effect RES" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105210, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 64.80000000074506, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 69, + "DefenceAdd": 3.450000000419095, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 90.72000000067055, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 96.6000000005588, + "DefenceAdd": 3.450000000419095, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 116.64000000059605, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 124.20000000018626, + "DefenceAdd": 3.450000000419095, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 151.80000000074506, + "DefenceAdd": 3.450000000419095, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 168.48000000044703, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 179.40000000037253, + "DefenceAdd": 3.450000000419095, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 194.40000000037253, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 207, + "DefenceAdd": 3.450000000419095, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 220.32000000029802, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 234.6000000005588, + "DefenceAdd": 3.450000000419095, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1105, + "Set4IDList": [ + 101, + 114, + 121 + ], + "Set2IDList": [ + 302, + 317, + 310 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1106": { + "Name": "Pela", + "Desc": "An intelligence officer for the Silvermane Guards.\\nShe has a serious personality and is revered by other members of the Silvermane Guards.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "pela", + "SPNeed": 110, + "BaseType": "Warlock", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 110601, + "Name": "Victory Report", + "Desc": "When an enemy is defeated, Pela regenerates #1[i] Energy.", + "ParamList": [ + 5 + ] + }, + "2": { + "Id": 110602, + "Name": "Adamant Charge", + "Desc": "Using Skill to dispel buff(s) increases SPD by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.10000000009313226, + 2, + 1 + ] + }, + "3": { + "Id": 110603, + "Name": "Suppressive Force", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 110604, + "Name": "Full Analysis", + "Desc": "When using Skill, there is a #1[i]% base chance to reduce the target enemy's Ice RES by #2[i]% for #3[i] turn(s).", + "ParamList": [ + 1, + 0.12000000011175871, + 2 + ] + }, + "5": { + "Id": 110605, + "Name": "Absolute Jeopardy", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 110606, + "Name": "Feeble Pursuit", + "Desc": "After Pela attacks, if the enemy target is debuffed, deals Ice Additional DMG equal to #1[i]% of Pela's ATK to the enemy.", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "110601": { + "Id": 110601, + "Name": "Frost Shot", + "Desc": "Deals Ice DMG equal to #1[i]% of Pela's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110602": { + "Id": 110602, + "Name": "Frostbite", + "Desc": "Removes #2[i] buff(s) and deals Ice DMG equal to #1[i]% of Pela's ATK to one designated target enemy.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0500000000465661, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.154999999795109, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2600000002421439, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3649999999906868, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.4700000004377216, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5750000001862645, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.706250000745058, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.8375000006053597, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9687500011641532, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.204999999841675, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.31000000028871, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.415000000037253, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5200000004842877, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6250000002328306, + 1 + ] + } + } + }, + "110603": { + "Id": 110603, + "Name": "Zone Suppression", + "Desc": "Deals Ice DMG equal to #4[i]% of Pela's ATK to all enemies, with a #1[i]% base chance to inflict Exposed on all enemies.\\nWhen Exposed, enemies' DEF is reduced by #2[i]% for #3[i] turn(s).", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.3000000002793968, + 2, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.31000000028871, + 2, + 0.6400000005960464 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.3200000002980232, + 2, + 0.6800000006332994 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.33000000030733645, + 2, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.3400000003166497, + 2, + 0.7600000007078052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.3500000003259629, + 2, + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.3625000005122274, + 2, + 0.8500000007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.375, + 2, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.3875000001862645, + 2, + 0.9500000008847564 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.40000000037252903, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.41000000038184226, + 2, + 1.040000000037253 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.4200000003911555, + 2, + 1.0800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.4300000004004687, + 2, + 1.1200000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.44000000040978193, + 2, + 1.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.45000000041909516, + 2, + 1.2000000001862645 + ] + } + } + }, + "110604": { + "Id": 110604, + "Name": "Data Collecting", + "Desc": "If the enemy is debuffed after Pela's attack, Pela will restore #1[f1] additional Energy. This effect can only be triggered 1 time per attack.", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "110606": { + "Id": 110606, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110607": { + "Id": 110607, + "Name": "Preemptive Strike", + "Desc": "Immediately attacks the enemy. Upon entering battle, Pela deals Ice DMG equal to #4[i]% of her ATK to a random enemy, with a #1[i]% base chance of lowering the DEF of all enemies by #2[i]% for #3[i] turn(s).", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451, + 2, + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Maze.png", + "LevelUpSkillID": [ + 110607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1106101, + "PointName": "Bash", + "PointDesc": "Deals #1[i]% more DMG to debuffed enemy targets.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1106102, + "PointName": "The Secret Strategy", + "PointDesc": "When Pela is on the battlefield, all allies' Effect Hit Rate increases by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1106103, + "PointName": "Wipe Out", + "PointDesc": "When using Skill to dispel buff(s), increases the DMG dealt by the next attack by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106201, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1106101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106203, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1106202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106204, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1106203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106205, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1106102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106206, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1106205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106207, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1106206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106208, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1106103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106209, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1106103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106210, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1106201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "Ice DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 74.40000000037253, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 63, + "DefenceAdd": 3.1500000001396984, + "HPBase": 134.40000000037253, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 104.16000000014901, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 88.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 188.160000000149, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.92000000085682, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 113.40000000037253, + "DefenceAdd": 3.1500000001396984, + "HPBase": 241.92000000085682, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 163.6800000006333, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 3.1500000001396984, + "HPBase": 295.6800000006333, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 193.44000000040978, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 163.80000000074506, + "DefenceAdd": 3.1500000001396984, + "HPBase": 349.4400000004098, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 223.20000000018626, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 189, + "DefenceAdd": 3.1500000001396984, + "HPBase": 403.20000000018626, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 252.96000000089407, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 214.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 456.96000000089407, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1106, + "Set4IDList": [ + 104, + 106, + 110 + ], + "Set2IDList": [ + 312, + 310, + 308 + ], + "PropertyList3": [ + "StatusProbabilityBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "StatusProbabilityBase", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 318, + 267 + ] + } + }, + "1107": { + "Name": "Clara", + "Desc": "A vagrant girl who lives with robots.\\nShe is introverted, gentle, and has a pure heart.\\nShe wishes for all Underworlders to become a family.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "clara", + "SPNeed": 110, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 110701, + "Name": "A Tall Figure", + "Desc": "Using Skill will not remove Marks of Counter on the enemy.", + "ParamList": [] + }, + "2": { + "Id": 110702, + "Name": "A Tight Embrace", + "Desc": "After using the Ultimate, ATK increases by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 110703, + "Name": "Cold Steel Armor", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 110704, + "Name": "Family's Warmth", + "Desc": "After Clara is hit, the DMG taken by Clara is reduced by #1[i]%. This effect lasts until the start of her next turn.", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 110705, + "Name": "A Small Promise", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 110706, + "Name": "Long Company", + "Desc": "After other allies are attacked, Svarog also has a #1[i]% fixed chance to trigger a Counter on the attacker and mark them with a \"Mark of Counter.\" When using Ultimate, the number of Enhanced Counters increases by #2[i].", + "ParamList": [ + 0.5000000004656613, + 1 + ] + } + }, + "Skills": { + "110701": { + "Id": 110701, + "Name": "I Want to Help", + "Desc": "Deals Physical DMG equal to #1[i]% of Clara's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110702": { + "Id": 110702, + "Name": "Svarog Watches Over You", + "Desc": "Deals Physical DMG equal to #1[i]% of Clara's ATK to all enemies, and additionally deals Physical DMG equal to #2[i]% of Clara's ATK to enemies marked by Svarog with a Mark of Counter.\\nAll Marks of Counter will be removed after this Skill is used.", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 1.5000000004656613 + ] + } + } + }, + "110703": { + "Id": 110703, + "Name": "Promise, Not Command", + "Desc": "After Clara uses Ultimate, DMG dealt to her is reduced by an extra #4[i]%, and she has greatly increased chances of being attacked by enemies for #3[i] turn(s).\\nIn addition, Svarog's Counter is enhanced. When an ally is attacked, Svarog immediately launches a Counter, and its DMG multiplier against the enemy increases by #2[i]%. Enemies adjacent to it take 50% of the DMG dealt to the primary target enemy. Enhanced Counter(s) can take effect #5[i] time(s).", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5, + 0.9600000008940697, + 2, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5, + 1.023999999742955, + 2, + 0.1600000001490116, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5, + 1.0879999995231628, + 2, + 0.17000000015832484, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 5, + 1.1520000000018626, + 2, + 0.18000000016763806, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 5, + 1.2159999997820705, + 2, + 0.1900000001769513, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5, + 1.2800000002607703, + 2, + 0.20000000018626451, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5, + 1.3600000003352761, + 2, + 0.21250000037252903, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 5, + 1.440000000409782, + 2, + 0.2249999998603016, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 5, + 1.5200000004842877, + 2, + 0.23750000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5, + 1.6000000005587935, + 2, + 0.25000000023283064, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 5, + 1.6640000003390014, + 2, + 0.26000000024214387, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 5, + 1.7280000001192093, + 2, + 0.2700000002514571, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 5, + 1.792000000597909, + 2, + 0.2800000002607703, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5, + 1.856000000378117, + 2, + 0.29000000027008355, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5, + 1.9200000008568168, + 2, + 0.3000000002793968, + 2 + ] + } + } + }, + "110704": { + "Id": 110704, + "Name": "Because We're Family", + "Desc": "Under the protection of Svarog, DMG taken by Clara when hit by enemy attacks is reduced by #3[i]%. Svarog will mark enemies who attack Clara with his Mark of Counter and retaliate with a Counter, dealing Physical DMG equal to #2[i]% of Clara's ATK.", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": 25, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.8000000007450581, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.8800000008195639, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.9600000008940697, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 1.040000000037253, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 1.1200000001117587, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1.2000000001862645, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 1.3000000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 1.400000000372529, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 1.5000000004656613, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 1.6800000006332994, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 1.7600000007078052, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 1.840000000782311, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 1.9200000008568168, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 2, + 0.10000000009313226 + ] + } + } + }, + "110706": { + "Id": 110706, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110707": { + "Id": 110707, + "Name": "A Small Price for Victory", + "Desc": "Immediately attacks the enemy. Upon entering battle, the chance Clara will be attacked by enemies increases for #1[i] turn(s).", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 5 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Maze.png", + "LevelUpSkillID": [ + 110707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1107101, + "PointName": "Kinship", + "PointDesc": "When attacked, this unit has a #1[i]% fixed chance to dispel 1 debuff placed on them.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1107102, + "PointName": "Under Protection", + "PointDesc": "Increases the chance to resist Crowd Control debuffs by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1107103, + "PointName": "Revenge", + "PointDesc": "Increases DMG dealt by Svarog's Counter by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107202, + "PointName": "DMG Boost: Physical", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1107101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.031999999890103936, + "Name": "Physical DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1107202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1107203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1107102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107206, + "PointName": "DMG Boost: Physical", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1107205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.04799999948590994, + "Name": "Physical DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1107206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1107103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107209, + "PointName": "DMG Boost: Physical", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1107208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.06399999978020787, + "Name": "Physical DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1107208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 100.32000000029802, + "AttackAdd": 5.015999999595806, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 140.44799999985844, + "AttackAdd": 5.015999999595806, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 180.57600000011735, + "AttackAdd": 5.015999999595806, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 220.70400000037625, + "AttackAdd": 5.015999999595806, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 260.83200000063516, + "AttackAdd": 5.015999999595806, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 300.96000000089407, + "AttackAdd": 5.015999999595806, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 341.08799999952316, + "AttackAdd": 5.015999999595806, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1107, + "Set4IDList": [ + 105, + 113, + 115 + ], + "Set2IDList": [ + 306, + 315, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 331, + 277 + ] + } + }, + "1108": { + "Name": "Sampo", + "Desc": "A merchant who freely travels between the Overworld and the Underworld.\\nHe acts like he is everyone's friend, is enthusiastically humorous, and is good at bantering.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "sampo", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 110801, + "Name": "Rising Love", + "Desc": "When using Skill, deals DMG for #1[i] extra time(s) to a random enemy.", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 110802, + "Name": "Infectious Enthusiasm", + "Desc": "Defeating an enemy afflicted with Wind Shear has a #1[i]% base chance to inflict all enemies with #2[i] stack(s) of Wind Shear, equivalent to that of Skill.", + "ParamList": [ + 1, + 1 + ] + }, + "3": { + "Id": 110803, + "Name": "Big Money!", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 110804, + "Name": "The Deeper the Love, the Stronger the Hate", + "Desc": "When Skill hits an enemy with #1[i] or more stack(s) of Wind Shear, the enemy immediately takes #2[i]% of current Wind Shear DMG.", + "ParamList": [ + 5, + 0.0800000000745058 + ] + }, + "5": { + "Id": 110805, + "Name": "Huuuuge Money!", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 110806, + "Name": "Increased Spending", + "Desc": "Talent's Wind Shear DMG multiplier increases by #1[i]%.", + "ParamList": [ + 0.1500000001396984 + ] + } + }, + "Skills": { + "110801": { + "Id": 110801, + "Name": "Dazzling Blades", + "Desc": "Deals Wind DMG equal to #1[i]% of Sampo's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110802": { + "Id": 110802, + "Name": "Ricochet Love", + "Desc": "Deals Wind DMG equal to #2[i]% of Sampo's ATK to a single enemy, and further deals DMG for #1[i] extra time(s), with each time dealing Wind DMG equal to #2[i]% of Sampo's ATK to a random enemy.", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4, + 0.2800000002607703 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 4, + 0.3079999997280538 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 4, + 0.3359999998938292 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 0.36400000005960464 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4, + 0.39200000022538006 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 4, + 0.4200000003911555 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4, + 0.4550000000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4, + 0.49000000045634806 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4, + 0.5250000001396984 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.5600000005215406 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4, + 0.5879999999888241 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4, + 0.6160000001545995 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4, + 0.644000000320375 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4, + 0.6720000004861504 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4, + 0.7000000006519258 + ] + } + } + }, + "110803": { + "Id": 110803, + "Name": "Surprise Present", + "Desc": "Deals Wind DMG equal to #1[i]% of Sampo's ATK to all enemies, with a #4[i]% base chance to increase the targets' DoT taken by #2[i]% for #3[i] turn(s).", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.20000000018626451, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 0.21000000019557774, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 0.22000000020489097, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 0.2300000002142042, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 0.24000000022351742, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 0.25000000023283064, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 0.26250000041909516, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 0.27499999990686774, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 0.28750000009313226, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.3000000002793968, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 0.31000000028871, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 0.3200000002980232, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 0.33000000030733645, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 0.3400000003166497, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 0.3500000003259629, + 2, + 1 + ] + } + } + }, + "110804": { + "Id": 110804, + "Name": "Windtorn Dagger", + "Desc": "Sampo's attacks have a #1[i]% base chance to inflict Wind Shear for #3[i] turn(s).\\nEnemies inflicted with Wind Shear will take Wind DoT equal to #2[i]% of Sampo's ATK at the beginning of each turn. Wind Shear can stack up to #4[i] time(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6500000006053597, + 0.20000000018626451, + 3, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6500000006053597, + 0.22000000020489097, + 3, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6500000006053597, + 0.24000000022351742, + 3, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.26000000024214387, + 3, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6500000006053597, + 0.2800000002607703, + 3, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6500000006053597, + 0.31000000028871, + 3, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0.3500000003259629, + 3, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6500000006053597, + 0.40000000037252903, + 3, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597, + 0.4600000004284084, + 3, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6500000006053597, + 0.5200000004842877, + 3, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6500000006053597, + 0.546000000089407, + 3, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6500000006053597, + 0.5720000003930181, + 3, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6500000006053597, + 0.5979999999981374, + 3, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6500000006053597, + 0.6240000003017485, + 3, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6500000006053597, + 0.6500000006053597, + 3, + 5 + ] + } + } + }, + "110806": { + "Id": 110806, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110807": { + "Id": 110807, + "Name": "Shining Bright", + "Desc": "After Sampo uses his Technique, enemies in a set area are afflicted with Blind for #1[i] second(s). Blinded enemies cannot detect ally targets.\\nWhen initiating combat against a Blinded enemy, there is a #2[i]% fixed chance to delay all enemies' action by #3[i]%.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 0.25000000023283064 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Maze.png", + "LevelUpSkillID": [ + 110807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1108102, + "PointName": "Defensive Position", + "PointDesc": "Using Ultimate additionally regenerates #1[i] Energy.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1108103, + "PointName": "Spice Up", + "PointDesc": "Enemies with Wind Shear effect deal #1[i]% less DMG to Sampo.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108202, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1108101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1108202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1108203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1108102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108206, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1108205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1108206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1108103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108209, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1108103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1108201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1108101, + "PointName": "Trap", + "PointDesc": "Extends the duration of Wind Shear caused by Talent by #1[i] turn(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 117.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 151.20000000018626, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 184.80000000074506, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 218.40000000037253, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 252, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 285.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1108, + "Set4IDList": [ + 110, + 116, + 102 + ], + "Set2IDList": [ + 301, + 303, + 311 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 316, + 263 + ] + } + }, + "1109": { + "Name": "Hook", + "Desc": "Boss (self-proclaimed) of an Underworld adventure squad, The Moles.\\nShe loves freedom and sees life as a series of adventures.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "hook", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 110901, + "Name": "Early to Bed, Early to Rise", + "Desc": "Enhanced Skill deals #1[i]% increased DMG.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 110902, + "Name": "Happy Tummy, Happy Body", + "Desc": "Extends the duration of Burn caused by Skill by #1[i] turn(s).", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 110903, + "Name": "Don't Be Picky, Nothing's Icky", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 110904, + "Name": "It's Okay to Not Know", + "Desc": "When Talent is triggered, there is a #1[i]% base chance to Burn enemies adjacent to the designated enemy target, equivalent to that of Skill.", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 110905, + "Name": "Let the Moles' Deeds Be Known", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 110906, + "Name": "Always Ready to Punch and Kick", + "Desc": "Hook deals #1[i]% more DMG to enemies afflicted with Burn.", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "110901": { + "Id": 110901, + "Name": "Hehe! Don't Get Burned!", + "Desc": "Deals Fire DMG equal to #1[i]% of Hook's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110902": { + "Id": 110902, + "Name": "Hey! Remember Hook?", + "Desc": "Deals Fire DMG equal to #1[i]% of Hook's ATK to a single enemy. In addition, there is a #2[i]% base chance to inflict Burn for #3[i] turn(s).\\nWhen afflicted with Burn, enemies will take Fire DoT equal to #4[i]% of Hook's ATK at the beginning of each turn.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 1, + 2, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 1, + 2, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 1, + 2, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 1, + 2, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 1, + 2, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 1, + 2, + 0.3875000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 1, + 2, + 0.43750000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 1, + 2, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 1, + 2, + 0.5750000001862645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 1, + 2, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 1, + 2, + 0.6825000008102506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 1, + 2, + 0.7150000003166497 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 1, + 2, + 0.7475000005215406 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 1, + 2, + 0.7800000007264316 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 2, + 0.8125000009313226 + ] + } + } + }, + "110903": { + "Id": 110903, + "Name": "Boom! Here Comes the Fire!", + "Desc": "Deals Fire DMG equal to #1[i]% of Hook's ATK to a single enemy.\\nAfter using Ultimate, the next Skill to be used is Enhanced, which deals DMG to a single enemy and enemies adjacent to it.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058 + ] + } + } + }, + "110904": { + "Id": 110904, + "Name": "Ha! Oil to the Flames!", + "Desc": "When attacking a target afflicted with Burn, deals Fire Additional DMG equal to #1[i]% of Hook's ATK and regenerates #2[i] extra Energy.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 5 + ] + } + } + }, + "110906": { + "Id": 110906, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110907": { + "Id": 110907, + "Name": "Ack! Look at This Mess!", + "Desc": "Immediately attacks the enemy. Upon entering battle, Hook deals Fire DMG equal to #4[i]% of her ATK to a random enemy. In addition, there is a #1[i]% base chance to inflict Burn on every enemy for #3[i] turn(s).\\nWhen afflicted with Burn, enemies will take Fire DoT equal to #2[i]% of Hook's ATK at the beginning of each turn.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 3, + 0.5000000004656613 + ] + } + } + }, + "110909": { + "Id": 110909, + "Name": "Hey! Remember Hook?", + "Desc": "Deals Fire DMG equal to #1[i]% of Hook's ATK to a single enemy, with a #2[i]% base chance to Burn them for #3[i] turn(s). Additionally, deals Fire DMG equal to #5[i]% of Hook's ATK to enemies adjacent to it.\\nWhen afflicted with Burn, enemies will take Fire DoT equal to #4[i]% of Hook's ATK at the beginning of each turn.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 1, + 2, + 0.25000000023283064, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 1, + 2, + 0.27499999990686774, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 1, + 2, + 0.3000000002793968, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 1, + 2, + 0.32499999995343387, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 1, + 2, + 0.3500000003259629, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 1, + 2, + 0.3875000001862645, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 1, + 2, + 0.43750000023283064, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 1, + 2, + 0.5000000004656613, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1, + 2, + 0.5750000001862645, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1, + 2, + 0.6500000006053597, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1, + 2, + 0.6825000008102506, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1, + 2, + 0.7150000003166497, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1, + 2, + 0.7475000005215406, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 1, + 2, + 0.7800000007264316, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 1, + 2, + 0.8125000009313226, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Maze.png", + "LevelUpSkillID": [ + 110907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 1109101, + "PointName": "Innocence", + "PointDesc": "Hook restores HP equal to #1[i]% of her Max HP whenever her Talent is triggered.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1109102, + "PointName": "Naivete", + "PointDesc": "Increases the chance to resist Crowd Control debuffs by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.20000000018626451 + ], + "PointID": 1109103, + "PointName": "Playing With Fire", + "PointDesc": "After using her Ultimate, Hook has her action advanced by #2[i]% and additionally regenerates #1[i] Energy.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1109101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1109202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109204, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1109203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1109102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1109205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1109206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109208, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1109103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1109208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1109208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 182.40000000037253, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 117.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 255.36000000033528, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 151.20000000018626, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 328.320000000298, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 184.80000000074506, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 401.28000000026077, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 218.40000000037253, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 474.2400000002235, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 252, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 547.2000000001863, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 285.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 620.160000000149, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1109, + "Set4IDList": [ + 117, + 122, + 107 + ], + "Set2IDList": [ + 301, + 309, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1110": { + "Name": "Lynx", + "Desc": "A Belobogian Snow Plains Explorer, and the youngest of the Landau siblings.\\nCalm and collected, with a strong drive for action. Often embarks on solo adventures to explore the snowy wilderness.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "lynx", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 111001, + "Name": "Morning of Snow Hike", + "Desc": "When healing allies with HP percentage equal to or lower than #1[i]%, Lynx's Outgoing Healing increases by #2[i]%. This effect also works on continuous healing.", + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Id": 111002, + "Name": "Noon of Portable Furnace", + "Desc": "A target with \"Survival Response\" can resist debuff application for #1[i] time(s).", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 111003, + "Name": "Afternoon of Avalanche Beacon", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 111004, + "Name": "Dusk of Warm Campfire", + "Desc": "When \"Survival Response\" is gained, increases the target's ATK by an amount equal to #1[f1]% of Lynx's Max HP for #2[i] turn(s).", + "ParamList": [ + 0.030000000027939677, + 1 + ] + }, + "5": { + "Id": 111005, + "Name": "Night of Aurora Tea", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 111006, + "Name": "Dawn of Explorers' Chart", + "Desc": "Additionally boosts the Max HP increasing effect of \"Survival Response\" by an amount equal to #1[f1]% of Lynx's Max HP and increases Effect RES by #2[i]%.", + "ParamList": [ + 0.060000000055879354, + 0.3000000002793968 + ] + } + }, + "Skills": { + "111001": { + "Id": 111001, + "Name": "Ice Crampon Technique", + "Desc": "Deals Quantum DMG equal to #1[i]% of this character's Max HP to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "111002": { + "Id": 111002, + "Name": "Salted Camping Cans", + "Desc": "Applies \"Survival Response\" to a single target ally and increases their Max HP by #1[f1]% of Lynx's Max HP plus #2[i]. If the target ally is a character on the Path of Destruction or Preservation, the chance of them being attacked by enemies will greatly increase. \"Survival Response\" lasts for #3[i] turn(s).\\nRestores the target's HP by #4[f1]% of Lynx's Max HP plus #5[i].", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 50, + 2, + 0.0800000000745058, + 80, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.05250000022351742, + 80, + 2, + 0.08499999972991645, + 128, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.054999999701976776, + 102.50000000046566, + 2, + 0.09000000008381903, + 164, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.057499999878928065, + 125, + 2, + 0.09499999973922968, + 200, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.060000000055879354, + 140, + 2, + 0.10000000009313226, + 224, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.06250000023283064, + 155, + 2, + 0.10399999981746078, + 248, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06562500027939677, + 166.25000000023283, + 2, + 0.1079999995417893, + 266, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.0687500003259629, + 177.50000000046566, + 2, + 0.11199999996460974, + 284, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07187500107102096, + 188.7500000006985, + 2, + 0.11599999968893826, + 302, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.07499999972060323, + 200, + 2, + 0.12000000011175871, + 320, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.07749999989755452, + 211.25000000023283, + 2, + 0.12399999983608723, + 338, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.0800000000745058, + 222.50000000046566, + 2, + 0.12799999956041574, + 356, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.0825000002514571, + 233.7500000006985, + 2, + 0.1319999999832362, + 374, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.08499999972991645, + 245, + 2, + 0.1359999997075647, + 392, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.08749999990686774, + 256.25000000023283, + 2, + 0.14000000013038516, + 410, + 5 + ] + } + } + }, + "111003": { + "Id": 111003, + "Name": "Snowfield First Aid", + "Desc": "Dispels #1[i] debuff(s) from all allies and immediately restores their respective HP by an amount equal to #2[f1]% of Lynx's Max HP plus #3[i].", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.09000000008381903, + 90 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.09562500030733645, + 144 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.10125000053085387, + 184.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.10687500075437129, + 225 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.11250000027939677, + 252 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.11699999962002039, + 279 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.12150000035762787, + 299.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.12599999969825149, + 319.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.13050000043585896, + 339.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.13499999977648258, + 360 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.13949999981559813, + 380.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.14399999985471368, + 400.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.14849999989382923, + 420.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.15299999993294477, + 441 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.15749999997206032, + 461.25000000023283 + ] + } + } + }, + "111004": { + "Id": 111004, + "Name": "Outdoor Survival Experience", + "Desc": "When using Lynx's Skill or Ultimate, applies continuous healing to the target ally for #1[i] turn(s), restoring the target ally's HP by an amount equal to #2[f1]% of Lynx's Max HP plus #3[i] at the start of each turn. If the target has \"Survival Response,\" the continuous healing effect additionally restores HP by an amount equal to #4[f1]% of Lynx's Max HP plus #5[i].", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.02399999974295497, + 24, + 0.030000000027939677, + 30 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.02549999998882413, + 38.40000000037253, + 0.03187500103376806, + 48 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.026999999536201358, + 49.200000000186265, + 0.033750000642612576, + 61.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.028499999782070518, + 60, + 0.035625000251457095, + 75 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.030000000027939677, + 67.20000000018626, + 0.037499999860301614, + 84 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.03120000008493662, + 74.40000000037253, + 0.03899999940767884, + 93 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.03240000014193356, + 79.80000000074506, + 0.04050000035203993, + 99.75000000069849 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.0336000001989305, + 85.20000000018626, + 0.04199999989941716, + 106.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.034800000255927444, + 90.6000000005588, + 0.04350000014528632, + 113.25000000023283 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.035999999614432454, + 96, + 0.04499999969266355, + 120 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.037199999671429396, + 101.40000000037253, + 0.04649999993853271, + 126.75000000069849 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.03839999972842634, + 106.80000000074506, + 0.04799999948590994, + 133.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.03959999978542328, + 112.20000000018626, + 0.0494999997317791, + 140.25000000023283 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.04080000054091215, + 117.6000000005588, + 0.05099999997764826, + 147 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.04199999989941716, + 123, + 0.05250000022351742, + 153.7500000006985 + ] + } + } + }, + "111006": { + "Id": 111006, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111007": { + "Id": 111007, + "Name": "Chocolate Energy Bar", + "Desc": "After Lynx uses her Technique, at the start of the next battle, all allies are granted her Talent's continuous healing effect, lasting for #1[i] turn(s).", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Maze.png", + "LevelUpSkillID": [ + 111007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1110101, + "PointName": "Advance Surveying", + "PointDesc": "After a target with \"Survival Response\" is hit, Lynx regenerates #1[i] Energy immediately.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1110102, + "PointName": "Exploration Techniques", + "PointDesc": "Increases the chance to resist Crowd Control debuffs by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1110103, + "PointName": "Survival in the Extreme", + "PointDesc": "Extends the duration of the continuous healing effect granted by Talent for #1[i] turn(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110201, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110202, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1110101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110203, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1110202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1110203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110205, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1110102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110206, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1110205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110207, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1110206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1110103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110209, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1110103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110210, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 67.20000000018626, + "AttackAdd": 3.360000000335276, + "DefenceBase": 75, + "DefenceAdd": 3.750000000698492, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 94.0800000000745, + "AttackAdd": 3.360000000335276, + "DefenceBase": 105, + "DefenceAdd": 3.750000000698492, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 120.96000000089407, + "AttackAdd": 3.360000000335276, + "DefenceBase": 135, + "DefenceAdd": 3.750000000698492, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 147.8400000007823, + "AttackAdd": 3.360000000335276, + "DefenceBase": 165, + "DefenceAdd": 3.750000000698492, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 174.72000000067055, + "AttackAdd": 3.360000000335276, + "DefenceBase": 195, + "DefenceAdd": 3.750000000698492, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 201.6000000005588, + "AttackAdd": 3.360000000335276, + "DefenceBase": 225, + "DefenceAdd": 3.750000000698492, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 228.48000000044703, + "AttackAdd": 3.360000000335276, + "DefenceBase": 255, + "DefenceAdd": 3.750000000698492, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1110, + "Set4IDList": [ + 101, + 114, + 106 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1111": { + "Name": "Luka", + "Desc": "The boxing champion in Belobog's Underworld, and one of Wildfire's most capable fighters.\\nThe consecutive reigning champion of the Fight Club, whose enthusiasm inspires children of the Underworld to dream big.", + "CharaInfo": { + "Camp": "Belobog", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "luka", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 111101, + "Name": "Fighting Endlessly", + "Desc": "When Luka takes action, if the target enemy is Bleeding, increases DMG dealt by Luka by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Id": 111102, + "Name": "The Enemy is Weak, I am Strong", + "Desc": "If the Skill hits an enemy target with Physical Weakness, gain #1[i] stack(s) of Fighting Will.", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 111103, + "Name": "Born for the Ring", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 111104, + "Name": "Never Turning Back", + "Desc": "For every stack of Fighting Will obtained, increases ATK by #1[i]%, stacking up to #2[i] time(s).", + "ParamList": [ + 0.05000000004656613, + 4 + ] + }, + "5": { + "Id": 111105, + "Name": "The Spirit of Wildfire", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 111106, + "Name": "A Champion's Applause", + "Desc": "After the Enhanced Basic ATK's \"Rising Uppercut\" hits a Bleeding enemy target, the Bleed status will immediately deal DMG 1 time equal to #1[i]% of the original DMG for every hit of Direct Punch already unleashed during the current Enhanced Basic ATK.", + "ParamList": [ + 0.0800000000745058 + ] + } + }, + "Skills": { + "111101": { + "Id": 111101, + "Name": "Direct Punch", + "Desc": "Deals Physical DMG equal to #1[i]% of Luka's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "111102": { + "Id": 111102, + "Name": "Lacerating Fist", + "Desc": "Deals Physical DMG equal to #1[i]% of Luka's ATK to a single enemy target. In addition, there is a #2[i]% base chance to inflict Bleed on them, lasting for #5[i] turn(s).\\nWhile Bleeding, the enemy will take #3[f1]% of their Max HP as Physical DoT at the start of each turn. This DMG will not exceed more than #4[i]% of Luka's ATK.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 1, + 0.24000000022351742, + 1.3000000002793968, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 1, + 0.24000000022351742, + 1.4300000004004687, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 1, + 0.24000000022351742, + 1.5600000005215406, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 1, + 0.24000000022351742, + 1.6900000006426126, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 1, + 0.24000000022351742, + 1.8200000007636845, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 1, + 0.24000000022351742, + 2.014999999664724, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 1, + 0.24000000022351742, + 2.2749999999068677, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 1, + 0.24000000022351742, + 2.6000000005587935, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 1, + 0.24000000022351742, + 2.9900000009220093, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 1, + 0.24000000022351742, + 3.3800000003539026, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 1, + 0.24000000022351742, + 3.5489999998826534, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 1, + 0.24000000022351742, + 3.718000000109896, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 1, + 0.24000000022351742, + 3.8870000003371388, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 1, + 0.24000000022351742, + 4.055999999633059, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 1, + 0.24000000022351742, + 4.224999999860302, + 3 + ] + } + } + }, + "111103": { + "Id": 111103, + "Name": "Coup de Grâce", + "Desc": "Receives #5[i] stack(s) of Fighting Will, with a #2[i]% base chance to increase a single enemy target's DMG received by #3[f1]% for #4[i] turn(s). Then, deals Physical DMG equal to #1[i]% of Luka's ATK to the target.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9800000009126961, + 1, + 0.12000000011175871, + 3, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.1119999999646097, + 1, + 0.12799999956041574, + 3, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.243999999947846, + 1, + 0.1359999997075647, + 3, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.375999999931082, + 1, + 0.14399999985471368, + 3, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.5079999999143183, + 1, + 0.15200000000186265, + 3, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.6400000005960464, + 1, + 0.1600000001490116, + 3, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.8050000004004687, + 1, + 0.17000000015832484, + 3, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.970000000903383, + 1, + 0.18000000016763806, + 3, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.1349999997764826, + 1, + 0.1900000001769513, + 3, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.3000000002793968, + 1, + 0.20000000018626451, + 3, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.432000000262633, + 1, + 0.20799999963492155, + 3, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.564000000245869, + 1, + 0.21599999978207052, + 3, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.6960000002291054, + 1, + 0.22399999992921948, + 3, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.8280000002123415, + 1, + 0.23200000007636845, + 3, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.9600000008940697, + 1, + 0.24000000022351742, + 3, + 2 + ] + } + } + }, + "111104": { + "Id": 111104, + "Name": "Flying Sparks", + "Desc": "After Luka uses his Basic ATK \"Direct Punch\" or Skill \"Lacerating Fist,\" he receives #1[i] stack of Fighting Will, up to 4 stacks. When he has 2 or more stacks of Fighting Will, his Basic ATK \"Direct Punch\" is enhanced to \"Sky-Shatter Fist.\" After his Enhanced Basic ATK's \"Rising Uppercut\" hits a Bleeding enemy target, the Bleed status will immediately deal DMG for 1 time equal to #2[i]% of the original DMG to the target. At the start of battle, Luka will possess 1 stack of Fighting Will.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.6800000006332994 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.6970000001601875 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.7140000003855675 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.7310000006109476 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.7480000001378357 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.7650000003632158 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.7862500008195639 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.80750000057742 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.8287500010337681 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.8500000007916242 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.8670000003185123 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.8840000005438924 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.9010000007692724 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.9180000002961606 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.9350000005215406 + ] + } + } + }, + "111106": { + "Id": 111106, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111107": { + "Id": 111107, + "Name": "Anticipator", + "Desc": "Immediately attacks the enemy. Upon entering battle, Luka deals Physical DMG equal to #1[i]% of his ATK to a random single enemy with a #2[i]% base chance to inflict his Skill's Bleed effect on the target. Then, Luka gains 1 additional stack of Fighting Will.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + } + } + }, + "111108": { + "Id": 111108, + "Name": "Sky-Shatter Fist", + "Desc": "Consumes 2 stacks of Fighting Will. First, uses Direct Punch to deal 3 hits, with each hit dealing Physical DMG equal to #1[i]% of Luka's ATK to a single enemy target.\\nThen, uses Rising Uppercut to deal 1 hit, dealing Physical DMG equal to #2[i]% of Luka's ATK to the single enemy target.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.12000000011175871, + 0.48000000044703484 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14000000013038516, + 0.5600000005215406 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1600000001490116, + 0.6400000005960464 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18000000016763806, + 0.7200000006705523 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.22000000020489097, + 0.8800000008195639 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.24000000022351742, + 0.9600000008940697 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.26000000024214387, + 1.040000000037253 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.2800000002607703, + 1.1200000001117587 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Maze.png", + "LevelUpSkillID": [ + 111107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1111101, + "PointName": "Kinetic Overload", + "PointDesc": "When using Skill, immediately dispels #1[i] buff(s) from the enemy target.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1111102, + "PointName": "Cycle Braking", + "PointDesc": "For every stack of Fighting Will obtained, additionally regenerates #1[i] Energy.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1111103, + "PointName": "Crush Fighting Will", + "PointDesc": "When using Enhanced Basic ATK, every hit of \"Direct Punch\" has a #1[i]% fixed chance for Luka to use 1 additional hit. This effect does not apply to additional hits generated in this way.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111202, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1111101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1111202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1111203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1111102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111206, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1111205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1111206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1111103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111209, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1111103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1111201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1111, + "Set4IDList": [ + 105, + 116, + 102 + ], + "Set2IDList": [ + 301, + 307, + 309 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "BreakDamageAddedRatioBase" + ], + "ScoreRankList": [ + 322, + 284 + ] + } + }, + "1112": { + "Name": "Topaz & Numby", + "Desc": "Topaz is the Leader of the Special Debts Picket Team and high-level manager of the Strategic Investment Department under the Interastral Peace Corporation.\\nA member of the \"Ten Stonehearts\" at a young age, Topaz's foundational expertise is \"debt retrieval.\"\\nHer partner, the Warp Trotter \"Numby,\" is also capable of keenly perceiving where \"riches\" are located, ensuring that jobs based in security, debt collection, and actuarial varieties are of no great challenge.\\nAt presently they are traveling the cosmos together, seeking all manner of liability disputes that might be affecting the stable progression of the IPC's businesses.", + "CharaInfo": { + "Camp": "Interastral Peace Corporation", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "topaz", + "SPNeed": 130, + "BaseType": "Rogue", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 111201, + "Name": "Future Market", + "Desc": "When enemies afflicted with \"Proof of Debt\" receive Follow-up ATKs, they will enter the \"Debtor\" state. This can take effect only once within a single attack.\\nThe \"Debtor\" state increases the CRIT DMG of Follow-up ATKs inflicted on the target enemies by #1[i]%, stacking up to #2[i] time(s). When \"Proof of Debt\" is removed, the \"Debtor\" state is also removed.", + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Id": 111202, + "Name": "Bona Fide Acquisition", + "Desc": "After Numby takes action and launches an attack, Topaz regenerates #1[i] Energy.", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 111203, + "Name": "Seize the Big and Free the Small", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 111204, + "Name": "Agile Operation", + "Desc": "After Numby's turn begins, Topaz's action advances by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 111205, + "Name": "Inflationary Demand", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 111206, + "Name": "Incentive Mechanism", + "Desc": "Numby's attack count during the \"Windfall Bonanza!\" state increases by #1[i], and its Fire RES PEN increases by #2[i]% when it attacks.", + "ParamList": [ + 1, + 0.10000000009313226 + ] + } + }, + "Skills": { + "111201": { + "Id": 111201, + "Name": "Deficit...", + "Desc": "Deals Fire DMG equal to #1[i]% of Topaz's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "111202": { + "Id": 111202, + "Name": "Difficulty Paying?", + "Desc": "Inflicts a single target enemy with a Proof of Debt status, increasing the Follow-up ATK DMG it receives by #2[i]%. Proof of Debt only takes effect on the most recent target it is applied to. If there are no enemies inflicted with Proof of Debt on the field when an ally's turn starts or when an ally takes action, Topaz will inflict a random enemy with Proof of Debt.\\nNumby deals Fire DMG equal to #1[i]% of Topaz's ATK to this target. Using this Skill to deal DMG is considered as launching a Follow-up ATK.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.6250000002328306 + ] + } + } + }, + "111203": { + "Id": 111203, + "Name": "Turn a Profit!", + "Desc": "Numby enters the Windfall Bonanza! state and its DMG multiplier increases by #1[i]% and CRIT DMG increases by #2[i]%. Also, when enemies with Proof of Debt are hit by an ally's Basic ATK, Skill, or Ultimate, Numby's action is Advanced Forward by #3[i]%. Numby exits the Windfall Bonanza! state after using #4[i] attacks.", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.12499999976716936, + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.13749999995343387, + 0.5000000004656613, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.1500000001396984, + 0.5000000004656613, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.1625000003259629, + 0.5000000004656613, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.17499999981373549, + 0.5000000004656613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.1875, + 0.5000000004656613, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.20312500023283064, + 0.5000000004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.2187500004656613, + 0.5000000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.23437500069849193, + 0.5000000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.25000000023283064, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.26250000041909516, + 0.5000000004656613, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.27499999990686774, + 0.5000000004656613, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.28750000009313226, + 0.5000000004656613, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.3000000002793968, + 0.5000000004656613, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.3125000004656613, + 0.5000000004656613, + 2 + ] + } + } + }, + "111204": { + "Id": 111204, + "Name": "Trotter Market!?", + "Desc": "Summons Numby at the start of battle. Numby has #1[i] SPD by default. When taking action, Numby launches Follow-up ATKs on a single enemy target afflicted with Proof of Debt, dealing Fire DMG equal to #2[i]% of Topaz's ATK.\\nWhen enemies afflicted with Proof of Debt receive an ally's Follow-up ATKs, Numby's action is Advanced Forward by #3[i]%. The action Advance Forward effect cannot be triggered during Numby's own turn.\\nWhen Topaz is downed, Numby disappears.", + "Type": null, + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 80, + 0.7500000006984919, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 80, + 0.8250000004190952, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 80, + 0.9000000008381903, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 80, + 0.9750000005587935, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 80, + 1.0500000000465661, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 80, + 1.1249999997671694, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 80, + 1.2187500004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 80, + 1.3125000004656613, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 80, + 1.4062500004656613, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 80, + 1.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 80, + 1.5750000001862645, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 80, + 1.6500000006053597, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 80, + 1.725000000325963, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 80, + 1.800000000745058, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 80, + 1.8750000004656613, + 0.5000000004656613 + ] + } + } + }, + "111206": { + "Id": 111206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111207": { + "Id": 111207, + "Name": "Explicit Subsidy", + "Desc": "Summons Numby when Topaz enters the overworld. Numby will automatically search for Basic Treasures and Trotters within a set radius.\\nUsing her Technique will regenerate #1[i] Energy for Topaz after Numby's first attack in the next battle.\\nIf Topaz is still in the team after using her Technique and defeating overworld enemies, a small bonus amount of credits will be added to the earned credits. A maximum of #2[i] bonus credits can be received per calendar day.\\nAfter using her Technique and defeating enemies in Simulated Universe or Divergent Universe, additionally receive a small amount of Cosmic Fragments with a small chance to obtain 1 random Curio.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 60, + 10000 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Maze.png", + "LevelUpSkillID": [ + 111207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112101, + "PointName": "Overdraft", + "PointDesc": "When Topaz uses Basic ATK to deal DMG, it is considered as a Follow-up ATK.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1112102, + "PointName": "Financial Turmoil", + "PointDesc": "Increases Topaz & Numby's DMG dealt to enemy targets with Fire Weakness by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1112103, + "PointName": "Stonks Market", + "PointDesc": "After Numby uses an attack while in the Windfall Bonanza! state, Topaz additionally regenerates #1[i] Energy.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112201, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1112101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112203, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1112202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112205, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1112102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1112205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112207, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1112103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1112208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112210, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1112208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "Fire DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 56.10000000009313, + "DefenceAdd": 2.8050000004004687, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 78.54000000050291, + "DefenceAdd": 2.8050000004004687, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 100.9800000009127, + "DefenceAdd": 2.8050000004004687, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 123.42000000039116, + "DefenceAdd": 2.8050000004004687, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 145.86000000080094, + "DefenceAdd": 2.8050000004004687, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.8050000004004687, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 190.74000000068918, + "DefenceAdd": 2.8050000004004687, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1112, + "Set4IDList": [ + 115, + 107, + 117 + ], + "Set2IDList": [ + 318, + 306, + 315 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1201": { + "Name": "Qingque", + "Desc": "Diviner of the Divination Commission on the Xianzhou Luofu, and a librarian.\\nAlways slacks off and is about to be demoted to a \"door guardian.\"", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 79, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 80, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 81, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "qingque", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 120101, + "Name": "Rise Through the Tiles", + "Desc": "Ultimate deals #1[i]% more DMG.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 120102, + "Name": "Sleep on the Tiles", + "Desc": "Every time Draw Tile is triggered, Qingque immediately regenerates #1[i] Energy.", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 120103, + "Name": "Read Between the Tiles", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 120104, + "Name": "Right on the Tiles", + "Desc": "After using Skill, there is a #1[i]% fixed chance to gain \"Self-Sufficer,\" lasting until the end of the current turn. \\nWhile \"Self-Sufficer\" is active, using Basic ATK or Enhanced Basic ATK immediately launches 1 Follow-up ATK on the same target, dealing Quantum DMG equal to 100% of Basic ATK DMG or Enhanced Basic ATK DMG.", + "ParamList": [ + 0.24000000022351742 + ] + }, + "5": { + "Id": 120105, + "Name": "Gambit for the Tiles", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 120106, + "Name": "Prevail Beyond the Tiles", + "Desc": "Recovers 1 Skill Point after using Enhanced Basic ATK.", + "ParamList": [] + } + }, + "Skills": { + "120101": { + "Id": 120101, + "Name": "Flower Pick", + "Desc": "Tosses 1 jade tile from the suit with the fewest tiles in hand to deal Quantum DMG equal to #1[i]% of Qingque's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120102": { + "Id": 120102, + "Name": "A Scoop of Moon", + "Desc": "Immediately draws #1[i] jade tile(s) and increases DMG by #2[i]% until the end of the current turn. This effect can stack up to #3[i] time(s). The turn will not end after this Skill is used.", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.14000000013038516, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.1539999998640269, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.16799999959766865, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.18200000002980232, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.19599999976344407, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.21000000019557774, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.2275000000372529, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.24499999987892807, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.26250000041909516, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.2800000002607703, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.29399999999441206, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.3079999997280538, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.3220000001601875, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.3359999998938292, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.3500000003259629, + 4 + ] + } + } + }, + "120103": { + "Id": 120103, + "Name": "A Quartet? Woo-hoo!", + "Desc": "Deals Quantum DMG equal to #1[i]% of Qingque's ATK to all enemies, and obtains 4 jade tiles of the same suit.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529 + ] + } + } + }, + "120104": { + "Id": 120104, + "Name": "Celestial Jade", + "Desc": "When an ally's turn starts, Qingque randomly draws 1 tile from 3 different suits and can hold up to 4 tiles at one time.\\nIf Qingque starts her turn with 4 tiles of the same suit, she consumes all tiles to enter the \"Hidden Hand\" state.\\nWhile in this state, Qingque cannot use her Skill again. At the same time, Qingque's ATK increases by #1[i]%, and her Basic ATK \"Flower Pick\" is enhanced, becoming \"Cherry on Top!\" The \"Hidden Hand\" state ends after using \"Cherry on Top!\".", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "120106": { + "Id": 120106, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120107": { + "Id": 120107, + "Name": "Game Solitaire", + "Desc": "After using Technique, Qingque draws #1[i] jade tile(s) when the battle starts.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + }, + "120108": { + "Id": 120108, + "Name": "Cherry on Top!", + "Desc": "Deals Quantum DMG equal to #1[i]% of Qingque's ATK to a single enemy, and deals Quantum DMG equal to #2[i]% of Qingque's ATK to enemies adjacent to it.\\n\"Cherry on Top!\" cannot recover Skill Points.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.440000000409782, + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9200000008568168, + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.6400000005960464, + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.1200000001117587, + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.360000000335276, + 1.400000000372529 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Maze.png", + "LevelUpSkillID": [ + 120107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201101, + "PointName": "Tile Battle", + "PointDesc": "Restores 1 Skill Point when using the Skill. This effect can only be triggered 1 time per battle.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1201102, + "PointName": "Bide Time", + "PointDesc": "Using the Skill increases DMG Boost effect of attacks by an extra #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1201103, + "PointName": "Winning Hand", + "PointDesc": "Qingque's SPD increases by #1[i]% for 1 turn after using the Enhanced Basic ATK.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201202, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1201101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1201202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1201202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1201102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201206, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1201205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1201205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1201103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201209, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1201103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 88.80000000074506, + "AttackAdd": 4.440000000409782, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 124.32000000029802, + "AttackAdd": 4.440000000409782, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 159.8400000007823, + "AttackAdd": 4.440000000409782, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 195.36000000033528, + "AttackAdd": 4.440000000409782, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 230.88000000081956, + "AttackAdd": 4.440000000409782, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 266.40000000037253, + "AttackAdd": 4.440000000409782, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 301.9200000008568, + "AttackAdd": 4.440000000409782, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1201, + "Set4IDList": [ + 108, + 102, + 111 + ], + "Set2IDList": [ + 309, + 305, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1202": { + "Name": "Tingyun", + "Desc": "Amicassador of the Sky-Faring Commission of the Xianzhou Luofu.\\nShe travels with business delegates, forging trade relationships and alliances with many worlds.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "tingyun", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 120201, + "Name": "Windfall of Lucky Springs", + "Desc": "After using their Ultimate, the ally with Benediction gains a #1[i]% increase in SPD for 1 turn.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 120202, + "Name": "Gainfully Gives, Givingly Gains", + "Desc": "The ally with Benediction regenerates #1[i] Energy after defeating an enemy. This effect can only be triggered once per turn.", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 120203, + "Name": "Halcyon Bequest", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 120204, + "Name": "Jovial Versatility", + "Desc": "The DMG multiplier provided by Benediction increases by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 120205, + "Name": "Sauntering Coquette", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 120206, + "Name": "Peace Brings Wealth to All", + "Desc": "Ultimate regenerates #1[i] more Energy for the target ally.", + "ParamList": [ + 10 + ] + } + }, + "Skills": { + "120201": { + "Id": 120201, + "Name": "Dislodged", + "Desc": "Tingyun deals Lightning DMG equal to #1[i]% of her ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120202": { + "Id": 120202, + "Name": "Soothing Melody", + "Desc": "Grants a single ally with Benediction to increase their ATK by #2[i]%, up to #4[i]% of Tingyun's current ATK.\\nWhen the ally with Benediction attacks, they will deal Lightning Additional DMG equal to #1[i]% of that ally's ATK for 1 time.\\nBenediction lasts for #3[i] turn(s) and is only effective on the most recent receiver of Tingyun's Skill.", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064, + 3, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.27499999990686774, + 3, + 0.1600000001490116 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.3000000002793968, + 3, + 0.17000000015832484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.32499999995343387, + 3, + 0.18000000016763806 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.3500000003259629, + 3, + 0.1900000001769513 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375, + 3, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.4062500004656613, + 3, + 0.21250000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.43750000023283064, + 3, + 0.2249999998603016 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.46875000069849193, + 3, + 0.23750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 3, + 0.25000000023283064 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.5250000001396984, + 3, + 0.26000000024214387 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.5500000005122274, + 3, + 0.2700000002514571 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.5750000001862645, + 3, + 0.2800000002607703 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.6000000005587935, + 3, + 0.29000000027008355 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.6250000002328306, + 3, + 0.3000000002793968 + ] + } + } + }, + "120203": { + "Id": 120203, + "Name": "Amidst the Rejoicing Clouds", + "Desc": "Regenerates #1[i] Energy for a single ally and increases the target's DMG by #3[i]% for #2[i] turn(s).", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 50, + 2, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 50, + 2, + 0.2300000002142042 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 50, + 2, + 0.26000000024214387 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 50, + 2, + 0.29000000027008355 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 50, + 2, + 0.3200000002980232 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 50, + 2, + 0.3500000003259629 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 50, + 2, + 0.3875000001862645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 50, + 2, + 0.42500000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 50, + 2, + 0.4625000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 50, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 50, + 2, + 0.530000000493601 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 50, + 2, + 0.5600000005215406 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 50, + 2, + 0.5900000005494803 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 50, + 2, + 0.62000000057742 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 50, + 2, + 0.6500000006053597 + ] + } + } + }, + "120204": { + "Id": 120204, + "Name": "Violet Sparknado", + "Desc": "When an enemy is attacked by Tingyun, the ally with Benediction immediately deals Lightning Additional DMG equal to #1[i]% of that ally's ATK to the same enemy.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919 + ] + } + } + }, + "120206": { + "Id": 120206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120207": { + "Id": 120207, + "Name": "Gentle Breeze", + "Desc": "Tingyun immediately regenerates #1[i] Energy upon using her Technique.", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 50 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Maze.png", + "LevelUpSkillID": [ + 120207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1202101, + "PointName": "Nourished Joviality", + "PointDesc": "Tingyun's SPD increases by #1[i]% for 1 turn after using Skill.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1202103, + "PointName": "Jubilant Passage", + "PointDesc": "Tingyun immediately regenerates #1[i] Energy at the start of her turn.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202202, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1202101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1202202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202204, + "PointName": "DMG Boost: Lightning", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1202201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "Lightning DMG Boost" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1202102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202206, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1202205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1202201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202208, + "PointName": "DMG Boost: Lightning", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1202103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "Lightning DMG Boost" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202209, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1202208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1202208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903 + ], + "PointID": 1202102, + "PointName": "Knell Subdual", + "PointDesc": "DMG dealt by Basic ATK increases by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 72, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 115.20000000018626, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 100.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 161.28000000026077, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 129.6000000005588, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 207.36000000033528, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 158.40000000037253, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 253.44000000040978, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 187.20000000018626, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 299.5200000004843, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 216, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 345.6000000005588, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 244.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 391.6800000006333, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1202, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 308, + 312, + 302 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 318, + 263 + ] + } + }, + "1203": { + "Name": "Luocha", + "Desc": "Carrying a coffin wherever he goes, he is a foreign trader who came from beyond the stellar seas.\\nHas excellent medical skills.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "luocha", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 120301, + "Name": "Ablution of the Quick", + "Desc": "While the Zone is active, ATK of all allies increases by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 120302, + "Name": "Bestowal From the Pure", + "Desc": "When his Skill is triggered, if the target ally's HP percentage is lower than 50%, Luocha's Outgoing Healing increases by #1[i]%. If the target ally's HP percentage is at 50% or higher, the ally receives a Shield that can absorb DMG equal to #2[i]% of Luocha's ATK plus #3[i], lasting for #4[i] turns.", + "ParamList": [ + 0.3000000002793968, + 0.18000000016763806, + 240, + 2 + ] + }, + "3": { + "Id": 120303, + "Name": "Surveyal by the Fool", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 120304, + "Name": "Heavy Lies the Crown", + "Desc": "When Luocha's Zone is active, enemies become Weakened and deal #1[i]% less DMG.", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 120305, + "Name": "Cicatrix 'Neath the Pain", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 120306, + "Name": "Reunion With the Dust", + "Desc": "When Ultimate is used, there is a #1[i]% fixed chance to reduce all enemies' All-Type RES by #2[i]% for #3[i] turn(s).", + "ParamList": [ + 1, + 0.20000000018626451, + 2 + ] + } + }, + "Skills": { + "120301": { + "Id": 120301, + "Name": "Thorns of the Abyss", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Luocha's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120302": { + "Id": 120302, + "Name": "Prayer of Abyss Flower", + "Desc": "After using his Skill, Luocha immediately restores the target ally's HP equal to #1[i]% of Luocha's ATK plus #2[i]. Meanwhile, Luocha gains 1 stack of Abyss Flower.\\nWhen any ally's HP percentage drops to #3[i]% or lower, an effect equivalent to Luocha's Skill will immediately be triggered and applied to this ally for one time (without consuming Skill Points). This effect can be triggered again after #4[i] turn(s).", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 200, + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.42500000004656613, + 320, + 0.5000000004656613, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.45000000041909516, + 410, + 0.5000000004656613, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.47500000009313226, + 500, + 0.5000000004656613, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 560, + 0.5000000004656613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5200000004842877, + 620, + 0.5000000004656613, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5400000005029142, + 665, + 0.5000000004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5600000005215406, + 710, + 0.5000000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5800000005401671, + 755, + 0.5000000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 800, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.62000000057742, + 845, + 0.5000000004656613, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6400000005960464, + 890, + 0.5000000004656613, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6600000006146729, + 935, + 0.5000000004656613, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6800000006332994, + 980, + 0.5000000004656613, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7000000006519258, + 1025, + 0.5000000004656613, + 2 + ] + } + } + }, + "120303": { + "Id": 120303, + "Name": "Death Wish", + "Desc": "Removes #2[i] buff(s) from all enemies and deals all enemies Imaginary DMG equal to #1[i]% of Luocha's ATK. At the same time, Luocha gains 1 stack of Abyss Flower.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529, + 1 + ] + } + } + }, + "120304": { + "Id": 120304, + "Name": "Cycle of Life", + "Desc": "When Abyss Flower reaches #1[i] stacks, Luocha consumes all stacks of Abyss Flower to deploy a Zone against the enemy.\\nWhen any enemy in the Zone is attacked by an ally, the attacking ally's HP is immediately restored by an amount equal to #2[f1]% of Luocha's ATK plus #4[i].\\nThe Zone's effect lasts for #3[i] turns. When Luocha is knocked down, the Zone will be dispelled.", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.12000000011175871, + 2, + 60 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.12749999994412065, + 2, + 96 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.13499999977648258, + 2, + 123 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.14250000030733645, + 2, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.1500000001396984, + 2, + 168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.15599999972619116, + 2, + 186 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.16200000001117587, + 2, + 199.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.16799999959766865, + 2, + 213 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.17399999988265336, + 2, + 226.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.18000000016763806, + 2, + 240 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.18599999975413084, + 2, + 253.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.19200000003911555, + 2, + 267 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.19799999962560833, + 2, + 280.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.20399999991059303, + 2, + 294 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.21000000019557774, + 2, + 307.50000000046566 + ] + } + } + }, + "120306": { + "Id": 120306, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120307": { + "Id": 120307, + "Name": "Mercy of a Fool", + "Desc": "After the Technique is used, the Talent will be immediately triggered at the start of the next battle.", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Maze.png", + "LevelUpSkillID": [ + 120307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1203101, + "PointName": "Cleansing Revival", + "PointDesc": "When Skill's effect is triggered, dispel #1[i] debuff(s) from one designated ally.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1203101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1203202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1203203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1203102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1203205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1203206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1203103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1203103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.07000000006519258, + 93 + ], + "PointID": 1203102, + "PointName": "Sanctified", + "PointDesc": "When any enemy in the Zone is attacked by an ally, all allies (except the attacker) restore HP equal to #1[f1]% of Luocha's ATK plus #2[i].", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7000000006519258 + ], + "PointID": 1203103, + "PointName": "Through the Valley", + "PointDesc": "Increases the chance to resist Crowd Control debuffs by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 174.24000000022352, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 243.93600000045262, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 313.6320000004489, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 383.3279999997467, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 453.02399999974295, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 522.7200000006706, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 592.4159999999683, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1203, + "Set4IDList": [ + 101, + 121, + 102 + ], + "Set2IDList": [ + 301, + 317, + 308 + ], + "PropertyList3": [ + "HealRatioBase", + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 322, + 266 + ] + } + }, + "1204": { + "Name": "Jing Yuan", + "Desc": "The Divine Foresight, one of the Seven Arbiter-Generals of the Xianzhou Alliance, leads the Cloud Knights of the Xianzhou Luofu.\\nA student of the Luofu's previous Sword Champion, though not known for his martial prowess.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 31, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jingyuan", + "SPNeed": 130, + "BaseType": "Mage", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 120401, + "Name": "Slash, Seas Split", + "Desc": "When Lightning-Lord attacks, the DMG multiplier on enemies adjacent to the target enemy increases by an extra amount equal to #1[i]% of the DMG multiplier against the primary target enemy.", + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Id": 120402, + "Name": "Swing, Skies Squashed", + "Desc": "After Lightning-Lord takes action, DMG dealt by Jing Yuan's Basic ATK, Skill, and Ultimate increases by #1[i]%, lasting for #2[i] turn(s).", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "3": { + "Id": 120403, + "Name": "Strike, Suns Subdued", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 120404, + "Name": "Spin, Stars Sieged", + "Desc": "For each hit performed by the Lightning-Lord when it takes action, Jing Yuan regenerates #1[i] Energy.", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 120405, + "Name": "Stride, Spoils Seized", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 120406, + "Name": "Sweep, Souls Slain", + "Desc": "Each hit performed by the Lightning-Lord when it takes action will make the target enemy Vulnerable.\\nWhile Vulnerable, enemies receive #1[i]% more DMG until the end of the Lightning-Lord's current turn, stacking up to #2[i] time(s).", + "ParamList": [ + 0.12000000011175871, + 3 + ] + } + }, + "Skills": { + "120401": { + "Id": 120401, + "Name": "Glistening Light", + "Desc": "Jing Yuan deals Lightning DMG equal to #1[i]% of his ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120402": { + "Id": 120402, + "Name": "Rifting Zenith", + "Desc": "Deals Lightning DMG equal to #1[i]% of Jing Yuan's ATK to all enemies and increases Lightning-Lord's Hits Per Action by #2[i] for the next turn.", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 2 + ] + } + } + }, + "120403": { + "Id": 120403, + "Name": "Lightbringer", + "Desc": "Deals Lightning DMG equal to #1[i]% of Jing Yuan's ATK to all enemies and increases Lightning-Lord's Hits Per Action by #2[i] for the next turn.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529, + 3 + ] + } + } + }, + "120404": { + "Id": 120404, + "Name": "Prana Extirpated", + "Desc": "Summons Lightning-Lord at the start of the battle. Lightning-Lord has #1[i] base SPD and #4[i] base Hits Per Action. When the Lightning-Lord takes action, its hits are considered as Follow-up ATKs, with each hit dealing Lightning DMG equal to #2[i]% of Jing Yuan's ATK to a random single enemy, and enemies adjacent to it also receive Lightning DMG equal to #5[i]% of the DMG dealt to the primary target enemy.\\nThe Lightning-Lord's Hits Per Action can reach a max of #6[i]. Every time Lightning-Lord's Hits Per Action increases by 1, its SPD increases by #3[i]. After the Lightning-Lord's action ends, its SPD and Hits Per Action return to their base values.\\nWhen Jing Yuan is knocked down, the Lightning-Lord will disappear.\\nWhen Jing Yuan is affected by Crowd Control debuff, the Lightning-Lord is unable to take action.", + "Type": null, + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 60, + 0.33000000030733645, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 60, + 0.3630000001285225, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 60, + 0.3959999999497086, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 60, + 0.42899999977089465, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 60, + 0.46200000029057264, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 60, + 0.4950000001117587, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 60, + 0.5362500005867332, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 60, + 0.5775000003632158, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 60, + 0.6187500008381903, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 60, + 0.6600000006146729, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 60, + 0.693000000435859, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 60, + 0.726000000257045, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 60, + 0.7590000000782311, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 60, + 0.7920000005979091, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 60, + 0.8250000004190952, + 10, + 3, + 0.25000000023283064, + 10 + ] + } + } + }, + "120406": { + "Id": 120406, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120407": { + "Id": 120407, + "Name": "Spiritus Invocation", + "Desc": "After the Technique is used, the Lightning-Lord's Hits Per Action in the first turn increases by #1[i] at the start of the next battle.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Maze.png", + "LevelUpSkillID": [ + 120407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1204101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1204202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1204202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1204102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1204205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1204205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1204103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1204103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 6, + 0.25000000023283064 + ], + "PointID": 1204101, + "PointName": "Battalia Crush", + "PointDesc": "If the Lightning-Lord's Hits Per Action is greater or equal to #1[i] in the next turn, its CRIT DMG increases by #2[i]% for the next turn.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1204102, + "PointName": "Savant Providence", + "PointDesc": "At the start of the battle, immediately regenerates #1[i] Energy.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1204103, + "PointName": "War Marshal", + "PointDesc": "After the Skill is used, the CRIT Rate increases by #1[i]% for #2[i] turn(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1204, + "Set4IDList": [ + 115, + 109, + 122 + ], + "Set2IDList": [ + 318, + 306, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1205": { + "Name": "Blade", + "Desc": "A member of the Stellaron Hunters, and a swordsman who abandoned his body to become a blade.\\nPledges loyalty to \"Destiny's Slave,\" and possesses a terrifying self-healing ability.", + "CharaInfo": { + "Camp": "Stellaron Hunters", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "blade", + "SPNeed": 130, + "BaseType": "Warrior", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 120501, + "Name": "Blade Cuts the Deepest in Hell", + "Desc": "Blade's Ultimate deals additionally increased DMG to a single enemy target, with the increased amount equal to #1[i]% of the tally of Blade's HP loss in the current battle.\\nThe tally of Blade's HP loss in the current battle is capped at #2[i]% of his Max HP. The tally value will be reset and re-accumulated after his Ultimate has been used.", + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Id": 120502, + "Name": "Ten Thousand Sorrows From One Broken Dream", + "Desc": "When Blade is in the Hellscape state, his CRIT Rate increases by #1[i]%.", + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "Id": 120503, + "Name": "Hardened Blade Bleeds Coldest Shade", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 120504, + "Name": "Rejected by Death, Infected With Life", + "Desc": "When Blade's current HP percentage drops to 50% or lower of his Max HP, increases his Max HP by #1[i]%. Stacks up to #2[i] time(s).", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "5": { + "Id": 120505, + "Name": "Death By Ten Lords' Gaze", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 120506, + "Name": "Reborn Into an Empty Husk", + "Desc": "The maximum number of Charge stacks is reduced to 4. The Follow-up ATK triggered by Talent deals additionally increased DMG equal to #1[i]% of Blade's Max HP.", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "120501": { + "Id": 120501, + "Name": "Shard Sword", + "Desc": "Deals #1[i]% of Blade's ATK as Wind DMG to a target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120502": { + "Id": 120502, + "Name": "Hellscape", + "Desc": "Consumes HP equal to #1[i]% of Blade's Max HP to enter the Hellscape state.\\nWhen Hellscape is active, his Skill cannot be used, his DMG dealt increases by #4[i]%, and his Basic ATK Shard Sword is enhanced to Forest of Swords for #2[i] turn(s).\\nIf Blade's current HP is insufficient, his HP will be reduced to 1 when he uses his Skill.\\nThis Skill does not regenerate Energy. Using this Skill does not end the current turn.", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.1479999995790422 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.17599999974481761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.20399999991059303 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.23200000007636845 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.26000000024214387 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.2949999999254942 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.33000000030733645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.3649999999906868 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.4279999998398125 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.45600000000558794 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.48400000017136335 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5120000003371388 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5400000005029142 + ] + } + } + }, + "120503": { + "Id": 120503, + "Name": "Death Sentence", + "Desc": "Sets Blade's current HP to 50% of his Max HP and deals Wind DMG to a single enemy equal to the sum of #1[i]% of his ATK, #2[i]% of his Max HP, and #5[i]% of the tally of Blade's HP loss in the current battle. At the same time, deals Wind DMG to adjacent targets equal to the sum of #3[f1]% of his ATK, #4[i]% of his Max HP, and #6[i]% of the tally of his HP loss in the current battle.\\nThe tally of Blade's HP loss in the current battle is capped at #7[i]% of his Max HP. This value will be reset and re-accumulated after his Ultimate has been used.", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 0.6000000005587935, + 0.09599999967031181, + 0.24000000022351742, + 0.6000000005587935, + 0.24000000022351742, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.2559999998193234, + 0.6400000005960464, + 0.10240000020712614, + 0.2559999998193234, + 0.6400000005960464, + 0.2559999998193234, + 0.9000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.27200000011362135, + 0.6800000006332994, + 0.10880000004544854, + 0.27200000011362135, + 0.6800000006332994, + 0.27200000011362135, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 0.7200000006705523, + 0.11519999988377094, + 0.28799999970942736, + 0.7200000006705523, + 0.28799999970942736, + 0.9000000008381903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3040000000037253, + 0.7600000007078052, + 0.12160000042058527, + 0.3040000000037253, + 0.7600000007078052, + 0.3040000000037253, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3200000002980232, + 0.8000000007450581, + 0.12799999956041574, + 0.3200000002980232, + 0.8000000007450581, + 0.3200000002980232, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3400000003166497, + 0.8500000007916242, + 0.1359999997075647, + 0.3400000003166497, + 0.8500000007916242, + 0.3400000003166497, + 0.9000000008381903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3600000003352761, + 0.9000000008381903, + 0.14399999985471368, + 0.3600000003352761, + 0.9000000008381903, + 0.3600000003352761, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3800000003539026, + 0.9500000008847564, + 0.15200000000186265, + 0.3800000003539026, + 0.9500000008847564, + 0.3800000003539026, + 0.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 1, + 0.1600000001490116, + 0.40000000037252903, + 1, + 0.40000000037252903, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.41599999996833503, + 1.040000000037253, + 0.166399999987334, + 0.41599999996833503, + 1.040000000037253, + 0.41599999996833503, + 0.9000000008381903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.43200000026263297, + 1.0800000000745058, + 0.17280000052414834, + 0.43200000026263297, + 1.0800000000745058, + 0.43200000026263297, + 0.9000000008381903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.44799999985843897, + 1.1200000001117587, + 0.17919999966397882, + 0.44799999985843897, + 1.1200000001117587, + 0.44799999985843897, + 0.9000000008381903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.4640000001527369, + 1.1600000001490116, + 0.18560000020079315, + 0.4640000001527369, + 1.1600000001490116, + 0.4640000001527369, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.48000000044703484, + 1.2000000001862645, + 0.19200000003911555, + 0.48000000044703484, + 1.2000000001862645, + 0.48000000044703484, + 0.9000000008381903 + ] + } + } + }, + "120504": { + "Id": 120504, + "Name": "Shuhu's Gift", + "Desc": "When Blade sustains DMG or consumes his HP, he gains 1 stack of Charge, stacking up to 5 times. A max of 1 Charge stack can be gained every time he is attacked.\\nWhen Charge stack reaches maximum, immediately launches a Follow-up ATK on all enemies, dealing Wind DMG equal to #2[i]% of Blade's ATK plus #4[i]% of his Max HP. At the same time, restores Blade's HP by #3[i]% of his Max HP. After the Follow-up ATK, all Charges are consumed.", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.22000000020489097, + 0.25000000023283064, + 0.5500000005122274 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.24200000008568168, + 0.25000000023283064, + 0.6050000002142042 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.2639999999664724, + 0.25000000023283064, + 0.6600000006146729 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.2859999998472631, + 0.25000000023283064, + 0.7150000003166497 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.3079999997280538, + 0.25000000023283064, + 0.7700000007171184 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.33000000030733645, + 0.25000000023283064, + 0.8250000004190952 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.35750000015832484, + 0.25000000023283064, + 0.89375000144355 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.3850000000093132, + 0.25000000023283064, + 0.962500001071021 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.41250000055879354, + 0.25000000023283064, + 1.0312500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.44000000040978193, + 0.25000000023283064, + 1.1000000000931323 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.46200000029057264, + 0.25000000023283064, + 1.154999999795109 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.48400000017136335, + 0.25000000023283064, + 1.2100000001955777 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.5060000000521541, + 0.25000000023283064, + 1.2649999998975545 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.5279999999329448, + 0.25000000023283064, + 1.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.5500000005122274, + 0.25000000023283064, + 1.375 + ] + } + } + }, + "120506": { + "Id": 120506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120507": { + "Id": 120507, + "Name": "Karma Wind", + "Desc": "Immediately attacks the enemy. After entering combat, consumes #2[i]% of Blade's Max HP while dealing Wind DMG equal to #1[i]% of his Max HP to all enemies.\\nIf Blade's current HP is insufficient, his HP will be reduced to 1 when this Technique is used.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "120508": { + "Id": 120508, + "Name": "Forest of Swords", + "Desc": "Consumes HP equal to #1[i]% of Blade's Max HP and deals Wind DMG equal to the sum of #2[i]% of his ATK and #4[i]% of his Max HP to a single enemy. In addition, deals Wind DMG equal to the sum of #3[i]% of Blade's ATK and #5[i]% of his Max HP to adjacent targets.\\nIf Blade's current HP is insufficient, his HP will be reduced to 1 when using Forest of Swords.\\nForest of Swords cannot regenerate Skill Points.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 0.0800000000745058, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 0.24000000022351742, + 0.09599999967031181, + 0.6000000005587935, + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 0.2800000002607703, + 0.11199999996460974, + 0.7000000006519258, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 0.3200000002980232, + 0.12799999956041574, + 0.8000000007450581, + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 0.3600000003352761, + 0.14399999985471368, + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 0.40000000037252903, + 0.1600000001490116, + 1, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 0.44000000040978193, + 0.17599999974481761, + 1.1000000000931323, + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 0.48000000044703484, + 0.19200000003911555, + 1.2000000001862645, + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 0.5200000004842877, + 0.20799999963492155, + 1.3000000002793968, + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.5600000005215406, + 0.22399999992921948, + 1.400000000372529, + 0.5600000005215406 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Maze.png", + "LevelUpSkillID": [ + 120507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1205101, + "PointName": "Vita Infinita", + "PointDesc": "When Blade's current HP percentage is at 50% of Max HP or lower, the HP restored when receiving healing increases by #1[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 100 + ], + "PointID": 1205102, + "PointName": "Neverending Deaths", + "PointDesc": "If Blade hits a Weakness Broken enemy after using \"Forest of Swords,\" he will restore HP equal to #1[i]% of his Max HP plus #2[i].", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1205103, + "PointName": "Cyclone of Destruction", + "PointDesc": "Increases DMG dealt by the Talent's Follow-up ATK by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205201, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1205101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205203, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1205202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1205203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205205, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1205102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1205205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205207, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1205206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1205103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205210, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1120501, + "Name": "Blade Cuts the Deepest in Hell", + "Desc": "Blade's Enhanced Basic ATK and Ultimate deals additionally increased DMG to one designated enemy, with the increased amount equal to #1[i]% of the tally of Blade's HP loss in the current battle.\\nThe tally of Blade's HP loss in the current battle is capped at #2[i]% of his Max HP. The tally value will be reset and re-accumulated after his Ultimate has been used.", + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Id": 1120502, + "Name": "Ten Thousand Sorrows From One Broken Dream", + "Desc": "When Blade is in the \"Hellscape\" state, his CRIT Rate increases by #1[i]%.", + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "Id": 1120503, + "Name": "Hardened Blade Bleeds Coldest Shade", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 1120504, + "Name": "Rejected by Death, Infected With Life", + "Desc": "When Blade's current HP percentage drops from above 50% to 50% of his Max HP or lower, increases his Max HP by #1[i]%. Stacks up to #2[i] time(s).", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "5": { + "Id": 1120505, + "Name": "Death By Ten Lords' Gaze", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 1120506, + "Name": "Reborn Into an Empty Husk", + "Desc": "The maximum number of Charge stacks is reduced to 4. The Follow-up ATK triggered by Talent deals additionally increased DMG equal to #1[i]% of Blade's Max HP.", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "1120501": { + "Id": 1120501, + "Name": "Shard Sword", + "Desc": "Deals Wind DMG equal to #1[i]% of Blade's Max HP to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "1120502": { + "Id": 1120502, + "Name": "Hellscape", + "Desc": "Consumes HP equal to #1[i]% of Blade's Max HP to enter the \"Hellscape\" state.\\nWhile under the \"Hellscape\" state, his Skill cannot be used, his DMG dealt increases by #4[i]%, the chance of receiving attacks from enemy targets greatly increases, and his Basic ATK \"Shard Sword\" is enhanced to \"Forest of Swords\" for #2[i] turn(s).\\nIf Blade's current HP is insufficient, his HP will be reduced to 1 when he uses his Skill.\\nThis Skill does not regenerate Energy. Using this Skill does not end the current turn.", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.12000000011175871, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.1479999995790422, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.17599999974481761, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.20399999991059303, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.23200000007636845, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.26000000024214387, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.2949999999254942, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.33000000030733645, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.3649999999906868, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.40000000037252903, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.4279999998398125, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.45600000000558794, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.48400000017136335, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5120000003371388, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5400000005029142, + 5 + ] + } + } + }, + "1120503": { + "Id": 1120503, + "Name": "Death Sentence", + "Desc": "Sets Blade's current HP to 50% of his Max HP and deals Wind DMG to one designated enemy equal to the sum of #1[i]% of his Max HP and #5[i]% of the tally of Blade's HP loss in the current battle. At the same time, deals Wind DMG to adjacent targets equal to the sum of #3[f1]% of his Max HP and #6[i]% of the tally of his HP loss in the current battle.\\nThe tally of Blade's HP loss in the current battle is capped at #7[i]% of his Max HP. This value will be reset and re-accumulated after his Ultimate has been used.", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.6000000005587935, + 0.3600000003352761, + 0.3000000002793968, + 0.6000000005587935, + 0.3000000002793968, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.6400000005960464, + 0.3840000000782311, + 0.3200000002980232, + 0.6400000005960464, + 0.3200000002980232, + 0.9000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.6800000006332994, + 0.40799999982118607, + 0.3400000003166497, + 0.6800000006332994, + 0.3400000003166497, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.7200000006705523, + 0.43200000026263297, + 0.3600000003352761, + 0.7200000006705523, + 0.3600000003352761, + 0.9000000008381903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.7600000007078052, + 0.45600000000558794, + 0.3800000003539026, + 0.7600000007078052, + 0.3800000003539026, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.8000000007450581, + 0.48000000044703484, + 0.40000000037252903, + 0.8000000007450581, + 0.40000000037252903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.8500000007916242, + 0.5100000004749745, + 0.42500000004656613, + 0.8500000007916242, + 0.42500000004656613, + 0.9000000008381903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.9000000008381903, + 0.5400000005029142, + 0.45000000041909516, + 0.9000000008381903, + 0.45000000041909516, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.9500000008847564, + 0.5700000005308539, + 0.47500000009313226, + 0.9500000008847564, + 0.47500000009313226, + 0.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1, + 0.6000000005587935, + 0.5000000004656613, + 1, + 0.5000000004656613, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 1.040000000037253, + 0.6240000003017485, + 0.5200000004842877, + 1.040000000037253, + 0.5200000004842877, + 0.9000000008381903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 1.0800000000745058, + 0.6480000000447035, + 0.5400000005029142, + 1.0800000000745058, + 0.5400000005029142, + 0.9000000008381903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 1.1200000001117587, + 0.6720000004861504, + 0.5600000005215406, + 1.1200000001117587, + 0.5600000005215406, + 0.9000000008381903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 1.1600000001490116, + 0.6960000002291054, + 0.5800000005401671, + 1.1600000001490116, + 0.5800000005401671, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 1.2000000001862645, + 0.7200000006705523, + 0.6000000005587935, + 1.2000000001862645, + 0.6000000005587935, + 0.9000000008381903 + ] + } + } + }, + "1120504": { + "Id": 1120504, + "Name": "Shuhu's Gift", + "Desc": "When Blade sustains DMG or consumes his HP, he gains 1 stack of Charge, stacking up to 5 times. A max of 1 Charge stack can be gained every time he is attacked.\\nWhen Charge stack reaches maximum, immediately launches 1 Follow-up ATK on all enemies, dealing Wind DMG equal to #2[i]% of Blade's Max HP. At the same time, restores Blade's HP by #3[i]% of his Max HP. After the Follow-up ATK, all Charges are consumed.", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.6500000006053597, + 0.25000000023283064, + 0.6500000006053597 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.7150000003166497, + 0.25000000023283064, + 0.7150000003166497 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.7800000007264316, + 0.25000000023283064, + 0.7800000007264316 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.8450000004377216, + 0.25000000023283064, + 0.8450000004377216 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.9100000008475035, + 0.25000000023283064, + 0.9100000008475035 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.9750000005587935, + 0.25000000023283064, + 0.9750000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1.0562500001396984, + 0.25000000023283064, + 1.0562500001396984 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1.1374999999534339, + 0.25000000023283064, + 1.1374999999534339 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1.2187500004656613, + 0.25000000023283064, + 1.2187500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.3000000002793968, + 0.25000000023283064, + 1.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1.3649999999906868, + 0.25000000023283064, + 1.3649999999906868 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1.4300000004004687, + 0.25000000023283064, + 1.4300000004004687 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1.4950000001117587, + 0.25000000023283064, + 1.4950000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1.5600000005215406, + 0.25000000023283064, + 1.5600000005215406 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1.6250000002328306, + 0.25000000023283064, + 1.6250000002328306 + ] + } + } + }, + "1120506": { + "Id": 1120506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1120507": { + "Id": 1120507, + "Name": "Karma Wind", + "Desc": "Immediately attacks the enemy. After entering combat, consumes #2[i]% of Blade's Max HP while dealing Wind DMG equal to #1[i]% of his Max HP to all enemies.\\nIf Blade's current HP is insufficient, his HP will be reduced to 1 when this Technique is used.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "1120508": { + "Id": 1120508, + "Name": "Forest of Swords", + "Desc": "Consumes HP equal to #1[i]% of Blade's Max HP and deals Wind DMG equal to #2[i]% of his Max HP to one designated enemy. In addition, deals Wind DMG equal to #3[i]% of Blade's Max HP to adjacent targets.\\nIf Blade's current HP is insufficient, his HP will be reduced to 1 when using \"Forest of Swords.\"\\n\"Forest of Swords\" cannot regenerate Skill Points.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.6500000006053597, + 0.26000000024214387, + 0.6500000006053597, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 0.7800000007264316, + 0.31200000015087426, + 0.7800000007264316, + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 0.9100000008475035, + 0.36400000005960464, + 0.9100000008475035, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 1.040000000037253, + 0.41599999996833503, + 1.040000000037253, + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 1.1700000001583248, + 0.4679999998770654, + 1.1700000001583248, + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 1.3000000002793968, + 0.5200000004842877, + 1.3000000002793968, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 1.4300000004004687, + 0.5720000003930181, + 1.4300000004004687, + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 1.5600000005215406, + 0.6240000003017485, + 1.5600000005215406, + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 1.6900000006426126, + 0.6760000002104789, + 1.6900000006426126, + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 1.8200000007636845, + 0.7280000001192093, + 1.8200000007636845, + 0.5600000005215406 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Maze.png", + "LevelUpSkillID": [ + 1120507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 11205101, + "PointName": "Vita Infinita", + "PointDesc": "When Blade's current HP percentage is at 50% of Max HP or lower, the HP restored when receiving healing increases by #1[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 100 + ], + "PointID": 11205102, + "PointName": "Neverending Deaths", + "PointDesc": "If Blade hits a Weakness Broken enemy target after using \"Forest of Swords,\" he will restore HP equal to #1[i]% of his Max HP plus #2[i].", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 15 + ], + "PointID": 11205103, + "PointName": "Cyclone of Destruction", + "PointDesc": "Increases DMG dealt by the Talent's Follow-up ATK by #1[i]%. Additionally regenerates #2[i] Energy.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205201, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11205101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205203, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11205202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11205203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205205, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11205102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11205205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205207, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11205206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11205103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205210, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1205, + "Set4IDList": [ + 113, + 110, + 102 + ], + "Set2IDList": [ + 306, + 309, + 302 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1206": { + "Name": "Sushang", + "Desc": "Born on the Xianzhou Yaoqing, sent to the Cloud Knights of the Luofu for military training.\\nShe wields her family sword, a gift from her mother, and longs for the future she will go on to write.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 31, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 32, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "sushang", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 120601, + "Name": "Cut With Ease", + "Desc": "After using Skill against a Weakness Broken enemy, regenerates 1 Skill Point.", + "ParamList": [] + }, + "2": { + "Id": 120602, + "Name": "Refine in Toil", + "Desc": "After Sword Stance is triggered, the DMG taken by Sushang is reduced by #1[i]% for 1 turn.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 120603, + "Name": "Rise From Fame", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 120604, + "Name": "Cleave With Heart", + "Desc": "Sushang's Break Effect increases by #1[i]%.", + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Id": 120605, + "Name": "Prevail via Taixu", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 120606, + "Name": "Dwell Like Water", + "Desc": "Talent's SPD Boost is stackable and can stack up to 2 times. Additionally, after entering battle, Sushang immediately gains 1 stack of her Talent's SPD Boost.", + "ParamList": [] + } + }, + "Skills": { + "120601": { + "Id": 120601, + "Name": "Cloudfencer Art: Starshine", + "Desc": "Deals Physical DMG equal to #1[i]% of Sushang's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120602": { + "Id": 120602, + "Name": "Cloudfencer Art: Mountainfall", + "Desc": "Deals Physical DMG equal to #1[i]% of Sushang's ATK to a single enemy. In addition, there is a #3[i]% chance to trigger Sword Stance on the final hit, dealing Physical Additional DMG equal to #2[i]% of Sushang's ATK to the enemy.\\nIf the enemy is inflicted with Weakness Break, Sword Stance is guaranteed to trigger.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0500000000465661, + 0.5000000004656613, + 0.33000000030733645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.154999999795109, + 0.5500000005122274, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2600000002421439, + 0.6000000005587935, + 0.33000000030733645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3649999999906868, + 0.6500000006053597, + 0.33000000030733645 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.4700000004377216, + 0.7000000006519258, + 0.33000000030733645 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5750000001862645, + 0.7500000006984919, + 0.33000000030733645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.706250000745058, + 0.8125000009313226, + 0.33000000030733645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.8375000006053597, + 0.8750000004656613, + 0.33000000030733645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9687500011641532, + 0.9375000006984919, + 0.33000000030733645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 1, + 0.33000000030733645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.204999999841675, + 1.0500000000465661, + 0.33000000030733645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.31000000028871, + 1.1000000000931323, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.415000000037253, + 1.1500000001396984, + 0.33000000030733645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5200000004842877, + 1.2000000001862645, + 0.33000000030733645 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6250000002328306, + 1.2500000002328306, + 0.33000000030733645 + ] + } + } + }, + "120603": { + "Id": 120603, + "Name": "Shape of Taixu: Dawn Herald", + "Desc": "Deals Physical DMG equal to #1[i]% of Sushang's ATK to a single enemy target, and she immediately takes action. In addition, Sushang's ATK increases by #4[i]% and using her Skill has 2 extra chances to trigger Sword Stance for #2[i] turn(s).\\nSword Stance triggered from the extra chances deals #3[i]% of the original DMG.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9200000008568168, + 2, + 0.5000000004656613, + 0.18000000016763806 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.04799999948591, + 2, + 0.5000000004656613, + 0.19200000003911555 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.1759999997448176, + 2, + 0.5000000004656613, + 0.20399999991059303 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.3040000000037253, + 2, + 0.5000000004656613, + 0.21599999978207052 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.432000000262633, + 2, + 0.5000000004656613, + 0.227999999653548 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5600000005215406, + 2, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.7200000006705523, + 2, + 0.5000000004656613, + 0.2549999998882413 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 2, + 0.5000000004656613, + 0.2700000002514571 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.040000000037253, + 2, + 0.5000000004656613, + 0.28499999991618097 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.2000000001862645, + 2, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.3279999997466803, + 2, + 0.5000000004656613, + 0.31200000015087426 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.456000000005588, + 2, + 0.5000000004656613, + 0.32400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.5840000002644956, + 2, + 0.5000000004656613, + 0.3359999998938292 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.7120000005234033, + 2, + 0.5000000004656613, + 0.3479999997653067 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.840000000782311, + 2, + 0.5000000004656613, + 0.3600000003352761 + ] + } + } + }, + "120604": { + "Id": 120604, + "Name": "Dancing Blade", + "Desc": "When an enemy has their Weakness Broken on the field, Sushang's SPD increases by #1[f2]% for #2[i] turn(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 2 + ] + } + } + }, + "120606": { + "Id": 120606, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120607": { + "Id": 120607, + "Name": "Cloudfencer Art: Warcry", + "Desc": "Immediately attacks the enemy. Upon entering battle, Sushang deals Physical DMG equal to #1[i]% of her ATK to all enemies.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Maze.png", + "LevelUpSkillID": [ + 120607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1206101, + "PointName": "Guileless", + "PointDesc": "When current HP percentage is #1[i]% or lower, reduces the chance of being attacked by enemies.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0249999996740371, + 10 + ], + "PointID": 1206102, + "PointName": "Riposte", + "PointDesc": "For every Sword Stance triggered, the DMG dealt by Sword Stance increases by #1[i]%. Stacks up to #2[i] time(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1206103, + "PointName": "Vanquisher", + "PointDesc": "After using Basic ATK or Skill, if there are enemies on the field that are Weakness Broken, Sushang's action advances by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1206101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1206202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1206102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1206205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1206103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1206208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1206208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 57, + "DefenceAdd": 2.850000000791624, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 79.80000000074506, + "DefenceAdd": 2.850000000791624, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 102.6000000005588, + "DefenceAdd": 2.850000000791624, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 125.40000000037253, + "DefenceAdd": 2.850000000791624, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 148.20000000018626, + "DefenceAdd": 2.850000000791624, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 171, + "DefenceAdd": 2.850000000791624, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 193.80000000074506, + "DefenceAdd": 2.850000000791624, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1206, + "Set4IDList": [ + 105, + 111, + 119 + ], + "Set2IDList": [ + 311, + 307, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 353, + 298 + ] + } + }, + "1207": { + "Name": "Yukong", + "Desc": "Head of the Sky-Faring Commission on the Xianzhou Luofu. Yukong was a seasoned pilot and a deadshot.\\nSince heading up the commission, she's been buried under mountains of paperwork.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "yukong", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 120701, + "Name": "Aerial Marshal", + "Desc": "At the start of battle, increases the SPD of all allies by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Id": 120702, + "Name": "Skyward Command", + "Desc": "When any ally's current energy is equal to its energy limit, Yukong regenerates an additional #1[i] energy. This effect can only be triggered once for each ally. The trigger count is reset after Yukong uses her Ultimate.", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 120703, + "Name": "Torrential Fusillade", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 120704, + "Name": "Zephyrean Echoes", + "Desc": "When \"Roaring Bowstrings\" is active, Yukong deals #1[i]% more DMG to enemies.", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 120705, + "Name": "August Deadshot", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 120706, + "Name": "Bowstring Thunderclap", + "Desc": "When Yukong uses her Ultimate, she immediately gains #1[i] stack(s) of \"Roaring Bowstrings.\"", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "120701": { + "Id": 120701, + "Name": "Arrowslinger", + "Desc": "Deals #1[i]% of Yukong's ATK as Imaginary DMG to a target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120702": { + "Id": 120702, + "Name": "Emboldening Salvo", + "Desc": "Obtains #1[i] stack(s) of \"Roaring Bowstrings\" (to a maximum of 2 stacks). When \"Roaring Bowstrings\" is active, the ATK of all allies increases by #2[i]%, and every time an ally's turn (including Yukong's) ends, Yukong loses 1 stack of \"Roaring Bowstrings.\"\\nWhen it's the turn where Yukong gains \"Roaring Bowstrings\" by using Skill, \"Roaring Bowstrings\" will not be removed.", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "120703": { + "Id": 120703, + "Name": "Diving Kestrel", + "Desc": "If \"Roaring Bowstrings\" is active on Yukong when her Ultimate is used, additionally increases all allies' CRIT Rate by #2[f1]% and CRIT DMG by #3[i]%. At the same time, deals Imaginary DMG equal to #1[i]% of Yukong's ATK to a single enemy.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.21000000019557774, + 0.3900000003632158 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.21699999971315265, + 0.41599999996833503 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.22399999992921948, + 0.4420000002719462 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.23100000014528632, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.23799999966286123, + 0.4940000001806766 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 0.24499999987892807, + 0.5200000004842877 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 0.25375000084750354, + 0.5525000006891787 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 0.26250000041909516, + 0.5850000001955777 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 0.2712500006891787, + 0.6175000004004687 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 0.2800000002607703, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 0.2869999997783452, + 0.6760000002104789 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 0.29399999999441206, + 0.7020000005140901 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 0.3010000002104789, + 0.7280000001192093 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 0.3079999997280538, + 0.7540000004228204 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 0.31499999994412065, + 0.7800000007264316 + ] + } + } + }, + "120704": { + "Id": 120704, + "Name": "Seven Layers, One Arrow", + "Desc": "Basic ATK additionally deals Imaginary DMG equal to #1[i]% of Yukong's ATK, and increases the Toughness Reduction of this attack by #2[i]%. This effect can be triggered again after #3[i] turn(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1, + 1 + ] + } + } + }, + "120706": { + "Id": 120706, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120707": { + "Id": 120707, + "Name": "Windchaser", + "Desc": "After using her Technique, Yukong enters Sprint mode for #1[i] seconds. In Sprint mode, her movement speed increases by #2[i]%, and Yukong gains #3[i] stack(s) of \"Roaring Bowstrings\" when she enters battle by attacking enemies.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.3500000003259629, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Maze.png", + "LevelUpSkillID": [ + 120707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1207101, + "PointName": "Archerion", + "PointDesc": "Yukong can resist 1 debuff application for 1 time. This effect can be triggered again after #1[i] turn(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.12000000011175871 + ], + "PointID": 1207102, + "PointName": "Bowmaster", + "PointDesc": "When Yukong is on the field, Imaginary DMG dealt by all allies increases by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1207103, + "PointName": "Majestas", + "PointDesc": "When \"Roaring Bowstrings\" is active, Yukong regenerates #1[i] additional Energy every time an ally takes action.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207201, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1207101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207203, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1207202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207204, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1207201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207205, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1207102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1207205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207207, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1207201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207208, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1207103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1207208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207210, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1207208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "Imaginary DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 51, + "DefenceAdd": 2.5500000005122274, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 71.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 91.80000000074506, + "DefenceAdd": 2.5500000005122274, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 112.20000000018626, + "DefenceAdd": 2.5500000005122274, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 132.6000000005588, + "DefenceAdd": 2.5500000005122274, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 153, + "DefenceAdd": 2.5500000005122274, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 173.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1207, + "Set4IDList": [ + 102, + 112, + 111 + ], + "Set2IDList": [ + 302, + 312, + 308 + ], + "PropertyList3": [ + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 350, + 294 + ], + "LocalCriticalChance": 0.2800000002607703 + } + }, + "1208": { + "Name": "Fu Xuan", + "Desc": "Head of the Divination Commission on the Luofu.\\nThe person who uses the third eye and Matrix of Prescience to foretell the route of Xianzhou and the outcomes of events.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "fuxuan", + "SPNeed": 135, + "BaseType": "Knight", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 120801, + "Name": "Dominus Pacis", + "Desc": "The Knowledge effect increases CRIT DMG by #1[i]%.", + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Id": 120802, + "Name": "Optimus Felix", + "Desc": "If any ally target is struck by a killing blow while \"Matrix of Prescience\" is active, then all ally targets who were struck by a killing blow during this action will not be knocked down, and #1[i]% of their Max HP is immediately restored. This effect can trigger 1 time per battle.", + "ParamList": [ + 0.7000000006519258 + ] + }, + "3": { + "Id": 120803, + "Name": "Apex Nexus", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 120804, + "Name": "Fortuna Stellaris", + "Desc": "When other allies under Matrix of Prescience are attacked, Fu Xuan regenerates #1[i] Energy.", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 120805, + "Name": "Arbiter Primus", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 120806, + "Name": "Omnia Vita", + "Desc": "Once Matrix of Prescience is activated, it will keep a tally of the total HP lost by all team members in the current battle. The DMG dealt by Fu Xuan's Ultimate will increase by #1[i]% of this tally of HP loss.\\nThis tally is also capped at #2[i]% of Fu Xuan's Max HP and the tally value will reset and re-accumulate after Fu Xuan's Ultimate is used.", + "ParamList": [ + 2, + 1.2000000001862645 + ] + } + }, + "Skills": { + "120801": { + "Id": 120801, + "Name": "Novaburst", + "Desc": "Deals Quantum DMG equal to #1[i]% of Fu Xuan's Max HP to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "120802": { + "Id": 120802, + "Name": "Known by Stars, Shown by Hearts", + "Desc": "Activates Matrix of Prescience, via which Fu Xuan's teammates will Distribute #1[i]% of the DMG they receive (before this DMG is mitigated by any Shields) to Fu Xuan for #3[i] turn(s).\\nWhile affected by Matrix of Prescience, all ally targets gain the Knowledge effect, which increases their respective Max HP by #4[f1]% of Fu Xuan's Max HP, and increases CRIT Rate by #5[f1]%.\\nWhen Fu Xuan is knocked down, the Matrix of Prescience will be dispelled.", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.032999999821186066, + 0.06599999964237213 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.035999999614432454, + 0.07199999992735684 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.03899999940767884, + 0.07799999951384962 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04199999989941716, + 0.08399999979883432 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04499999969266355, + 0.09000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04875000030733645, + 0.09749999991618097 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.05250000022351742, + 0.1049999997485429 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.056250000139698386, + 0.11250000027939677 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06299999984912574, + 0.12599999969825149 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06599999964237213, + 0.1319999999832362 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06899999943561852, + 0.13799999956972897 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.07499999972060323, + 0.1500000001396984 + ] + } + } + }, + "120803": { + "Id": 120803, + "Name": "Woes of Many Morphed to One", + "Desc": "Deals Quantum DMG equal to #1[i]% of Fu Xuan's Max HP to all enemies and obtains 1 trigger count for the HP Restore effect granted by Fu Xuan's Talent.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6400000005960464 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6800000006332994 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7600000007078052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8500000007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9500000008847564 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.040000000037253 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.0800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1200000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2000000001862645 + ] + } + } + }, + "120804": { + "Id": 120804, + "Name": "Bleak Breeds Bliss", + "Desc": "While Fu Xuan is still active in battle, Misfortune Avoidance is applied to the entire team. With Misfortune Avoidance, allies take #1[f1]% less DMG.\\nWhen Fu Xuan's current HP percentage falls to #2[i]% of her Max HP or less, HP Restore will be triggered for Fu Xuan, restoring her HP by #3[i]% of the amount of HP she is currently missing. This effect cannot be triggered if she receives a killing blow. This effect has 1 trigger count by default and can hold up to a maximum of 2 trigger counts.", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1079999995417893, + 0.5000000004656613, + 0.8100000007543713 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.11599999968893826, + 0.5000000004656613, + 0.8200000007636845 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.12399999983608723, + 0.5000000004656613, + 0.8300000007729977 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1319999999832362, + 0.5000000004656613, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 0.8500000007916242 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.8625000009778887 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.8750000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.17000000015832484, + 0.5000000004656613, + 0.8875000006519258 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1879999996162951, + 0.5000000004656613, + 0.9100000008475035 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.19599999976344407, + 0.5000000004656613, + 0.9200000008568168 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20399999991059303, + 0.5000000004656613, + 0.93000000086613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.212000000057742, + 0.5000000004656613, + 0.9400000008754432 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 0.9500000008847564 + ] + } + } + }, + "120806": { + "Id": 120806, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120807": { + "Id": 120807, + "Name": "Of Fortune Comes Fate", + "Desc": "After the Technique is used, all team members receive a Barrier, lasting for #1[i] seconds. This Barrier can block all enemy attacks, and the team will not enter battle when attacked. Entering battle while the Barrier is active will have Fu Xuan automatically activate Matrix of Prescience at the start of the battle, lasting for #2[i] turn(s).", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Maze.png", + "LevelUpSkillID": [ + 120807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 20 + ], + "PointID": 1208101, + "PointName": "Taiyi, the Macrocosmic", + "PointDesc": "When Matrix of Prescience is active, Fu Xuan will regenerate #1[i] extra Energy when she uses her Skill.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1208201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 133 + ], + "PointID": 1208102, + "PointName": "Dunjia, the Metamystic", + "PointDesc": "When Fu Xuan's Ultimate is used, heals all other allies by an amount equal to #1[i]% of Fu Xuan's Max HP plus #2[i].", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1208201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208103, + "PointName": "Liuren, the Sexagenary", + "PointDesc": "If a target enemy applies Crowd Control debuffs to allies while the \"Matrix of Prescience\" is active, all allies will resist all Crowd Control debuffs applied by the enemy target during the current action. This effect can only be triggered once. When \"Matrix of Prescience\" is activated again, the number of times this effect can be triggered will reset.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208201, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1208101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208203, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1208202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208205, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1208102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1208205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208207, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1208103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1208208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208210, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1208208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 63.360000000335276, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 200.64000000059605, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 88.70400000037625, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 280.89600000041537, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 114.04799999948591, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 361.15200000000186, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 139.39200000022538, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 441.4079999998212, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 164.73600000026636, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 521.664000000339, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 190.0800000000745, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 601.9200000008568, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 215.42400000011548, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 682.1759999997448, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1208, + "Set4IDList": [ + 113, + 106, + 108 + ], + "Set2IDList": [ + 302, + 310, + 308 + ], + "PropertyList3": [ + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "DefenceAddedRatio", + "StatusResistanceBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 328, + 280 + ], + "LocalCriticalChance": 0.12000000011175871 + } + }, + "1209": { + "Name": "Yanqing", + "Desc": "General Jing Yuan's retainer. A gifted swordsman who hasn't even come of age.\\nNo one can best Yanqing when he holds a sword in hand.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "yanqing", + "SPNeed": 140, + "BaseType": "Rogue", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 120901, + "Name": "Svelte Saber", + "Desc": "When Yanqing attacks a Frozen enemy, he deals Ice Additional DMG equal to #1[i]% of his ATK.", + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Id": 120902, + "Name": "Supine Serenade", + "Desc": "When Soulsteel Sync is active, Energy Regeneration Rate increases by an extra #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "3": { + "Id": 120903, + "Name": "Sword Savant", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 120904, + "Name": "Searing Sting", + "Desc": "When the current HP percentage is #1[i]% or higher, this unit's Ice RES PEN increases by #2[i]%.", + "ParamList": [ + 0.8000000007450581, + 0.12000000011175871 + ] + }, + "5": { + "Id": 120905, + "Name": "Surging Strife", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 120906, + "Name": "Swift Swoop", + "Desc": "If the buffs from \"Soulsteel Sync\" or the Ultimate are in effect when an enemy is defeated, the duration of these buffs is extended by 1 turn.", + "ParamList": [] + } + }, + "Skills": { + "120901": { + "Id": 120901, + "Name": "Frost Thorn", + "Desc": "Deals Ice DMG equal to #1[i]% of Yanqing's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120902": { + "Id": 120902, + "Name": "Darting Ironthorn", + "Desc": "Deals Ice DMG equal to #1[i]% of Yanqing's ATK to a single enemy and activates Soulsteel Sync for 1 turn.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2100000001955777 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3200000002980232 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5400000005029142 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7875000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9250000005122274 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.0625000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.31000000028871 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4200000003911555 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.6400000005960464 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.750000000698492 + ] + } + } + }, + "120903": { + "Id": 120903, + "Name": "Amidst the Raining Bliss", + "Desc": "Increases Yanqing's CRIT Rate by #1[i]%. When Soulsteel Sync is active, increases Yanqing's CRIT DMG by an extra #2[i]%. This buff lasts for one turn. Afterwards, deals Ice DMG equal to #3[i]% of Yanqing's ATK to a single enemy.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 2.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 0.3200000002980232, + 2.2400000002235174 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.3400000003166497, + 2.3800000003539026 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6000000005587935, + 0.3600000003352761, + 2.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6000000005587935, + 0.3800000003539026, + 2.660000000614673 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903, + 2.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6000000005587935, + 0.42500000004656613, + 2.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935, + 0.45000000041909516, + 3.1500000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6000000005587935, + 0.47500000009313226, + 3.324999999953434 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 3.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6000000005587935, + 0.5200000004842877, + 3.6400000005960464 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6000000005587935, + 0.5400000005029142, + 3.7800000007264316 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6000000005587935, + 0.5600000005215406, + 3.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 0.5800000005401671, + 4.060000000055879 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935, + 4.2000000001862645 + ] + } + } + }, + "120904": { + "Id": 120904, + "Name": "One With the Sword", + "Desc": "When Soulsteel Sync is active, Yanqing is less likely to be attacked by enemies. Yanqing's CRIT Rate increases by #1[f1]% and his CRIT DMG increases by #2[i]%. After Yanqing attacks an enemy, there is a #3[i]% fixed chance to launch Follow-up ATK, dealing Ice DMG equal to #4[i]% of Yanqing's ATK to the enemy, which has a #6[i]% base chance to Freeze the enemy for 1 turn.\\nThe Frozen target cannot take action and receives Ice Additional DMG equal to #5[i]% of Yanqing's ATK at the beginning of each turn.\\nWhen Yanqing receives DMG, the Soulsteel Sync effect will disappear.", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 0.5000000004656613, + 0.25000000023283064, + 0.25000000023283064, + 0.6500000006053597 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 0.16499999980442226, + 0.5100000004749745, + 0.27499999990686774, + 0.27499999990686774, + 0.6500000006053597 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 0.18000000016763806, + 0.5200000004842877, + 0.3000000002793968, + 0.3000000002793968, + 0.6500000006053597 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 0.19499999983236194, + 0.530000000493601, + 0.32499999995343387, + 0.32499999995343387, + 0.6500000006053597 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 0.21000000019557774, + 0.5400000005029142, + 0.3500000003259629, + 0.3500000003259629, + 0.6500000006053597 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 0.2249999998603016, + 0.5500000005122274, + 0.375, + 0.375, + 0.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 0.24375000083819032, + 0.5625000006984919, + 0.4062500004656613, + 0.4062500004656613, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 0.26250000041909516, + 0.5750000001862645, + 0.43750000023283064, + 0.43750000023283064, + 0.6500000006053597 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 0.28125000069849193, + 0.587500000372529, + 0.46875000069849193, + 0.46875000069849193, + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613, + 0.5000000004656613, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 0.31499999994412065, + 0.6100000005681068, + 0.5250000001396984, + 0.5250000001396984, + 0.6500000006053597 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 0.33000000030733645, + 0.62000000057742, + 0.5500000005122274, + 0.5500000005122274, + 0.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 0.3449999999720603, + 0.6300000005867332, + 0.5750000001862645, + 0.5750000001862645, + 0.6500000006053597 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 0.3600000003352761, + 0.6400000005960464, + 0.6000000005587935, + 0.6000000005587935, + 0.6500000006053597 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 0.375, + 0.6500000006053597, + 0.6250000002328306, + 0.6250000002328306, + 0.6500000006053597 + ] + } + } + }, + "120906": { + "Id": 120906, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120907": { + "Id": 120907, + "Name": "The One True Sword", + "Desc": "After using his Technique, at the start of the next battle, Yanqing deals #2[i]% more DMG for #3[i] turn(s) to enemies whose current HP percentage is #1[i]% or higher.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Maze.png", + "LevelUpSkillID": [ + 120907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1209101, + "PointName": "Icing on the Kick", + "PointDesc": "After Yanqing attacks, deals Ice Additional DMG equal to #1[i]% of Yanqing's ATK to enemies with Ice Weakness.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1209102, + "PointName": "Frost Favors the Brave", + "PointDesc": "When Soulsteel Sync is active, Effect RES increases by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1209103, + "PointName": "Gentle Blade", + "PointDesc": "When a CRIT Hit is triggered, increases SPD by #1[i]% for #2[i] turn(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209202, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1209101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1209202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1209102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209206, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1209205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1209103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209209, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1209208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1209208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 56.10000000009313, + "DefenceAdd": 2.8050000004004687, + "HPBase": 121.44000000040978, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 78.54000000050291, + "DefenceAdd": 2.8050000004004687, + "HPBase": 170.0159999995958, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 100.9800000009127, + "DefenceAdd": 2.8050000004004687, + "HPBase": 218.59200000041164, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 123.42000000039116, + "DefenceAdd": 2.8050000004004687, + "HPBase": 267.16799999959767, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.86000000080094, + "DefenceAdd": 2.8050000004004687, + "HPBase": 315.7440000004135, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.8050000004004687, + "HPBase": 364.320000000298, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 190.74000000068918, + "DefenceAdd": 2.8050000004004687, + "HPBase": 412.89600000041537, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1209, + "Set4IDList": [ + 104, + 117, + 122 + ], + "Set2IDList": [ + 311, + 301, + 306 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1210": { + "Name": "Guinaifen", + "Desc": "A performance artist visiting the Xianzhou Luofu — in other words, a street performer.\\nShe's chasing a new life on the Luofu when not concerned with food and shelter.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "guinaifen", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 121001, + "Name": "Slurping Noodles During Handstand", + "Desc": "When Skill is used, there is a #1[i]% base chance to reduce the attacked target enemy's Effect RES by #2[i]% for #3[i] turn(s).", + "ParamList": [ + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Id": 121002, + "Name": "Brushing Teeth While Whistling", + "Desc": "When an enemy target is being Burned, the DMG multiplier of the Burn status applied by her Basic ATK or Skill increases by #1[i]%.", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 121003, + "Name": "Smashing Boulder on Chest", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 121004, + "Name": "Blocking Pike with Neck", + "Desc": "Every time the Burn status inflicted by Guinaifen causes DMG, Guinaifen regenerates #1[i] Energy.", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 121005, + "Name": "Swallowing Sword to Stomach", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 121006, + "Name": "Catching Bullet with Hands", + "Desc": "Increases the stackable Firekiss count by #1[i].", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "121001": { + "Id": 121001, + "Name": "Standing Ovation", + "Desc": "Deals Fire DMG equal to #1[i]% of Guinaifen's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121002": { + "Id": 121002, + "Name": "Blazing Welcome", + "Desc": "Deals Fire DMG equal to #1[i]% of Guinaifen's ATK to a single enemy and Fire DMG equal to #2[i]% of Guinaifen's ATK to any adjacent enemies, with a #3[i]% base chance to Burn the target and adjacent targets. When Burned, enemies will take a Fire DoT equal to #4[i]% of Guinaifen's ATK at the beginning of each turn, lasting for #5[i] turn(s).", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.20000000018626451, + 1, + 0.8390400004573166, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.22000000020489097, + 1, + 0.9229800018947572, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.24000000022351742, + 1, + 1.0069200003053993, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.26000000024214387, + 1, + 1.0908600010443479, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.2800000002607703, + 1, + 1.1748000003863126, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968, + 1, + 1.3007100007962435, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.32499999995343387, + 1, + 1.4685900008771569, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.3500000003259629, + 1, + 1.6784400006290525, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.375, + 1, + 1.9302600014489144, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903, + 1, + 2.182080000638962, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.4200000003911555, + 1, + 2.2912020003423095, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.44000000040978193, + 1, + 2.400324000744149, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.4600000004284084, + 1, + 2.5094460004474968, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.48000000044703484, + 1, + 2.6185680008493364, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613, + 1, + 2.727690001251176, + 2 + ] + } + } + }, + "121003": { + "Id": 121003, + "Name": "Watch This Showstopper", + "Desc": "Deals Fire DMG equal to #1[f1]% of Guinaifen's ATK to all enemies. If the target enemy is currently inflicted with Burn, then their Burn status immediately produces DMG equal to #2[i]% of their original DMG.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622, + 0.7400000006891787 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641, + 0.7600000007078052 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678, + 0.8000000007450581 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697, + 0.8200000007636845 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265, + 0.8450000004377216 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 0.8700000008102506 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852, + 0.8950000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.9200000008568168 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745, + 0.9400000008754432 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763, + 0.9600000008940697 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782, + 0.9800000009126961 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782, + 1.0200000000186265 + ] + } + } + }, + "121004": { + "Id": 121004, + "Name": "PatrAeon Benefits", + "Desc": "When Guinaifen is on the field, there is a #1[i]% base chance to apply Firekiss to an enemy after their Burn status causes DMG. While inflicted with Firekiss, the enemy receives #4[f1]% increased DMG, which lasts for #5[i] turn(s) and can stack up to #6[i] time(s).", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0, + 0, + 0.0400000000372529, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0, + 0, + 0.04299999983049929, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0, + 0, + 0.04599999962374568, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0, + 0, + 0.04899999941699207, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0, + 0, + 0.05199999990873039, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0, + 0, + 0.054999999701976776, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0, + 0, + 0.058750000316649675, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0, + 0, + 0.06250000023283064, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0, + 0, + 0.06625000014901161, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0, + 0, + 0.07000000006519258, + 3, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0, + 0, + 0.07299999985843897, + 3, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0, + 0, + 0.07599999965168536, + 3, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0, + 0, + 0.07899999944493175, + 3, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0, + 0, + 0.08199999993667006, + 3, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0, + 0, + 0.08499999972991645, + 3, + 3 + ] + } + } + }, + "121006": { + "Id": 121006, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121007": { + "Id": 121007, + "Name": "Skill Showcase", + "Desc": "Immediately attacks the enemy. After entering battle, deals DMG for #2[i] time(s), dealing Fire DMG equal to #1[i]% of Guinaifen's ATK to a random single enemy target each time, with a #3[i]% base chance of inflicting Firekiss on them.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 4, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Maze.png", + "LevelUpSkillID": [ + 121007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 1210101, + "PointName": "High Poles", + "PointDesc": "Basic ATK has a #1[i]% base chance of inflicting an enemy with a Burn equivalent to that of Skill.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1210102, + "PointName": "Bladed Hoop", + "PointDesc": "When the battle begins, Guinaifen's action advances by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1210103, + "PointName": "Walking on Knives", + "PointDesc": "Deals #1[i]% more DMG to Burned enemies.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210201, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210202, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1210101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210203, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1210202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210204, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1210203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210205, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1210102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210206, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1210205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210207, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1210206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210208, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1210103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210209, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1210103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "Break Effect" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210210, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1210201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "Fire DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 120, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 168, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 216, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 264, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 312, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 360, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 408, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1210, + "Set4IDList": [ + 116, + 102, + 107 + ], + "Set2IDList": [ + 301, + 303, + 307 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 321, + 270 + ] + } + }, + "1211": { + "Name": "Bailu", + "Desc": "The High Elder of the Vidyadhara, who is also known as the \"Healer Lady\" on the Luofu.\\nShe uses her unique medical science and the medical treatment that can only be provided by the Vidyadhara dragon race to save lives.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "bailu", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 121101, + "Name": "Ambrosial Aqua", + "Desc": "If the target ally's current HP is equal to their Max HP when Invigoration ends, regenerates #1[i] extra Energy for this target.", + "ParamList": [ + 8 + ] + }, + "2": { + "Id": 121102, + "Name": "Sylphic Slumber", + "Desc": "After using her Ultimate, Bailu's Outgoing Healing increases by an additional #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "3": { + "Id": 121103, + "Name": "Omniscient Opulence", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 121104, + "Name": "Evil Excision", + "Desc": "Every healing provided by the Skill makes the recipient deal #1[i]% more DMG for #3[i] turn(s). This effect can stack up to #2[i] time(s).", + "ParamList": [ + 0.10000000009313226, + 3, + 2 + ] + }, + "5": { + "Id": 121105, + "Name": "Waning Worries", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 121106, + "Name": "Drooling Drop of Draconic Divinity", + "Desc": "Bailu can heal allies who received a killing blow #1[i] more time(s) in a single battle.", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "121101": { + "Id": 121101, + "Name": "Diagnostic Kick", + "Desc": "Deals Lightning DMG equal to #1[i]% of Bailu's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121102": { + "Id": 121102, + "Name": "Singing Among Clouds", + "Desc": "Heals a single ally for #1[f1]% of Bailu's Max HP plus #2[i]. Bailu then heals random allies #4[i] time(s). After each healing, HP restored from the next healing is reduced by #3[i]%.", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07799999951384962, + 78, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.08287500101141632, + 124.80000000074506, + 0.1500000001396984, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08775000041350722, + 159.9000000008382, + 0.1500000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09262500051409006, + 195, + 0.1500000001396984, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.09749999991618097, + 218.40000000037253, + 0.1500000001396984, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10140000027604401, + 241.80000000074506, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10529999993741512, + 259.35000000032596, + 0.1500000001396984, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10919999959878623, + 276.9000000008382, + 0.1500000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11309999995864928, + 294.4500000004191, + 0.1500000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.11699999962002039, + 312, + 0.1500000001396984, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12090000067837536, + 329.5500000005122, + 0.1500000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.12480000033974648, + 347.10000000009313, + 0.1500000001396984, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.1287000000011176, + 364.65000000060536, + 0.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.13260000036098063, + 382.20000000018626, + 0.1500000001396984, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.13650000002235174, + 399.7500000006985, + 0.1500000001396984, + 2 + ] + } + } + }, + "121103": { + "Id": 121103, + "Name": "Felicitous Thunderleap", + "Desc": "Heals all allies for #1[f1]% of Bailu's Max HP plus #2[i].\\nBailu applies Invigoration to allies that are not already Invigorated. For those already Invigorated, Bailu extends the duration of their Invigoration by 1 turn.\\nThe effect of Invigoration can last for #3[i] turn(s). This effect cannot stack.", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09000000008381903, + 90, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.09562500030733645, + 144, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10125000053085387, + 184.50000000046566, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10687500075437129, + 225, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11250000027939677, + 252, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.11699999962002039, + 279, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.12150000035762787, + 299.25000000023283, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.12599999969825149, + 319.50000000046566, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13050000043585896, + 339.7500000006985, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.13499999977648258, + 360, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.13949999981559813, + 380.25000000023283, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.14399999985471368, + 400.50000000046566, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.14849999989382923, + 420.7500000006985, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.15299999993294477, + 441, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.15749999997206032, + 461.25000000023283, + 2 + ] + } + } + }, + "121104": { + "Id": 121104, + "Name": "Gourdful of Elixir", + "Desc": "After an ally target with Invigoration is hit, restores the ally's HP for #1[f1]% of Bailu's Max HP plus #2[i]. This effect can trigger #5[i] time(s).\\nWhen Bailu's teammate receives a killing blow, they will not be knocked down. Bailu immediately heals the ally for #3[f1]% of Bailu's Max HP plus #4[i] HP. This effect can be triggered 1 time per battle.", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.035999999614432454, + 36, + 0.12000000011175871, + 120, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.038249999983236194, + 57.60000000055879, + 0.12749999994412065, + 192, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04050000035203993, + 73.80000000074506, + 0.13499999977648258, + 246, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04275000072084367, + 90, + 0.14250000030733645, + 300, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.04499999969266355, + 100.80000000074506, + 0.1500000001396984, + 336, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.04680000012740493, + 111.6000000005588, + 0.15599999972619116, + 372, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.048599999863654375, + 119.70000000065193, + 0.16200000001117587, + 399, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.05040000029839575, + 127.80000000074506, + 0.16799999959766865, + 426, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.0522000000346452, + 135.9000000008382, + 0.17399999988265336, + 453, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.05399999977089465, + 144, + 0.18000000016763806, + 480, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.055800000205636024, + 152.10000000009313, + 0.18599999975413084, + 507, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.05759999994188547, + 160.20000000018626, + 0.19200000003911555, + 534, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.05939999967813492, + 168.3000000002794, + 0.19799999962560833, + 561, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.061200000112876296, + 176.40000000037253, + 0.20399999991059303, + 588, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.06299999984912574, + 184.50000000046566, + 0.21000000019557774, + 615, + 2 + ] + } + } + }, + "121106": { + "Id": 121106, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121107": { + "Id": 121107, + "Name": "Saunter in the Rain", + "Desc": "After Technique is used, at the start of the next battle, all allies are granted Invigoration for #1[i] turn(s).", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Maze.png", + "LevelUpSkillID": [ + 121107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1211101, + "PointName": "Qihuang Analects", + "PointDesc": "When Bailu heals a target ally above their normal Max HP, the target's Max HP increases by #1[i]% for #2[i] turns.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1211102, + "PointName": "Vidyadhara Ichor Lines", + "PointDesc": "Invigoration can trigger #1[i] more time(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1211103, + "PointName": "Aquatic Benediction", + "PointDesc": "Characters with Invigoration receive #1[i]% less DMG.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211201, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211202, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1211101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211203, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1211202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1211203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211205, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1211102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211206, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1211205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211207, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1211206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1211103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211209, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1211103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211210, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 179.5200000004843, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 251.32799999974668, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 323.13599999970756, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 394.9440000005998, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 466.75200000056066, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 610.3679999997839, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1211, + "Set4IDList": [ + 101, + 114, + 106 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1212": { + "Name": "Jingliu", + "Desc": "Former Sword Champion of the Luofu, and the creator of the Cloud Knights' legends of undefeated might.\\nNow, her name has been wiped from the records, and she is a traitor of the Xianzhou walking on the fine line between sanity and mara-struck.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 79, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jingliu", + "SPNeed": 140, + "BaseType": "Warrior", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 121201, + "Name": "Moon Crashes Tianguan Gate", + "Desc": "When using her Ultimate or Enhanced Skill, Jingliu's CRIT DMG increases by #1[i]% for #3[i] turn(s). If only one enemy target is attacked, the target will additionally be dealt Ice DMG equal to #2[i]% of Jingliu's ATK.", + "ParamList": [ + 0.24000000022351742, + 1, + 1 + ] + }, + "2": { + "Id": 121202, + "Name": "Crescent Shadows Qixing Dipper", + "Desc": "After using Ultimate, increases the DMG of the next Enhanced Skill by #1[i]%.", + "ParamList": [ + 0.8000000007450581 + ] + }, + "3": { + "Id": 121203, + "Name": "Halfmoon Gapes Mercurial Haze", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 121204, + "Name": "Lunarlance Shines Skyward Dome", + "Desc": "During the Spectral Transmigration state, the ATK gained from consuming teammates' HP is additionally increased by #1[i]% of the total HP consumed from the entire team. The cap for ATK gained this way also increases by #2[i]%.", + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "5": { + "Id": 121205, + "Name": "Night Shades Astral Radiance", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 121206, + "Name": "Eclipse Hollows Corporeal Husk", + "Desc": "When Jingliu enters the Spectral Transmigration state, the Syzygy stack limit increases by 1, and Jingliu obtains #1[i] stack(s) of Syzygy. While she is in the Spectral Transmigration state, her CRIT DMG increases by #2[i]%.", + "ParamList": [ + 1, + 0.5000000004656613 + ] + } + }, + "Skills": { + "121201": { + "Id": 121201, + "Name": "Lucent Moonglow", + "Desc": "Deals Ice DMG equal to #1[i]% of Jingliu's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121202": { + "Id": 121202, + "Name": "Transcendent Flash", + "Desc": "Deals Ice DMG equal to #1[i]% of Jingliu's ATK to a single enemy and obtains #2[i] stack(s) of Syzygy.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "121203": { + "Id": 121203, + "Name": "Florephemeral Dreamflux", + "Desc": "Deals Ice DMG equal to #1[i]% of Jingliu's ATK to a single enemy, and deals Ice DMG equal to #3[i]% of Jingliu's ATK to any adjacent enemies. Gains #2[i] stack(s) of Syzygy after attack ends.", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.9200000008568168, + 1, + 0.9600000008940697, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.040000000037253, + 1, + 1.0200000000186265, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.1600000001490116, + 1, + 1.0800000000745058, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2800000002607703, + 1, + 1.1400000001303852, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1, + 1.2000000001862645, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.5500000005122274, + 1, + 1.2749999999068677, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.700000000651926, + 1, + 1.350000000325963, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.850000000791624, + 1, + 1.4250000000465661, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 1.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1200000001117587, + 1, + 1.5600000005215406, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.2400000002235174, + 1, + 1.62000000057742, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.360000000335276, + 1, + 1.6800000006332994, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.480000000447035, + 1, + 1.7400000006891787, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.6000000005587935, + 1, + 1.800000000745058, + 1 + ] + } + } + }, + "121204": { + "Id": 121204, + "Name": "Crescent Transmigration", + "Desc": "When Jingliu has #5[i] stack(s) of Syzygy, she enters the Spectral Transmigration state with her action advanced by #6[i]% and her CRIT Rate increases by #7[i]%. Then, Jingliu's Skill \"Transcendent Flash\" is enhanced to \"Moon On Glacial River,\" and only this enhanced Skill is available for use in battle. When Jingliu uses an attack in the Spectral Transmigration state, she consumes HP from her teammates equal to #2[i]% of their respective Max HP (this cannot reduce teammates' HP to lower than 1). Jingliu's ATK increases by #3[i]% of the total HP consumed from all allies in this attack, capped at #4[i]% of her base ATK, lasting until the current attack ends. Jingliu cannot enter the Spectral Transmigration state again until the current Spectral Transmigration state ends. Syzygy can stack up to 3 times. When Syzygy stacks become 0, Jingliu will exit the Spectral Transmigration state.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 0.9000000008381903, + 2, + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 0.9900000009220093, + 2, + 1, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.0800000000745058, + 2, + 1, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.1700000001583248, + 2, + 1, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.2600000002421439, + 2, + 1, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.350000000325963, + 2, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.4625000006053597, + 2, + 1, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.5750000001862645, + 2, + 1, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.6875000004656613, + 2, + 1, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.800000000745058, + 2, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.890000000828877, + 2, + 1, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.9800000009126961, + 2, + 1, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.0700000000651926, + 2, + 1, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.1600000001490116, + 2, + 1, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.2500000002328306, + 2, + 1, + 0.5500000005122274 + ] + } + } + }, + "121206": { + "Id": 121206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121207": { + "Id": 121207, + "Name": "Shine of Truth", + "Desc": "After using this Technique, creates a Special Dimension around Jingliu that lasts for #3[i] seconds, and all enemies in this Special Dimension will become Frozen. After entering combat with enemies in the Special Dimension, Jingliu immediately regenerates #6[i] Energy and obtains #1[i] stack(s) of Syzygy, with a #2[i]% base chance of Freezing enemy targets for #4[i] turn(s). While Frozen, enemy targets cannot take action, and receive Ice Additional DMG equal to #5[i]% of Jingliu's ATK at the start of every turn. Only 1 Dimension Effect created by allies can exist at the same time.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 20, + 1, + 0.8000000007450581, + 15 + ] + } + } + }, + "121209": { + "Id": 121209, + "Name": "Moon On Glacial River", + "Desc": "Deals Ice DMG equal to #1[i]% of Jingliu's ATK to a single enemy, and deals Ice DMG equal to #3[i]% of Jingliu's ATK to adjacent enemies. Consumes #2[i] stack(s) of Syzygy. Using this ability does not consume Skill Points.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 1, + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.375, + 1, + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5000000004656613, + 1, + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6250000002328306, + 1, + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.750000000698492, + 1, + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.8750000004656613, + 1, + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.0312500004656613, + 1, + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1875, + 1, + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.3437500009313226, + 1, + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.5000000004656613, + 1, + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.6250000002328306, + 1, + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.750000000698492, + 1, + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.8750000004656613, + 1, + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1249999997671694, + 1, + 1.562500000698492 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Maze.png", + "LevelUpSkillID": [ + 121207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1212101, + "PointName": "Deathrealm", + "PointDesc": "While in the Spectral Transmigration state, increases Effect RES by #1[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1212102, + "PointName": "Sword Champion", + "PointDesc": "After using \"Transcendent Flash,\" the next action advances by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1212103, + "PointName": "Frost Wraith", + "PointDesc": "While in the Spectral Transmigration state, increases DMG dealt by Ultimate by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212201, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212202, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1212101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212203, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1212202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1212203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212205, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1212102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212206, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1212205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212207, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1212206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1212103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212209, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "SPD" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212210, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1121201, + "Name": "Moon Crashes Tianguan Gate", + "Desc": "When using her Ultimate or Enhanced Skill, Jingliu's CRIT DMG increases by #1[i]% for #3[i] turn(s). Moreover, additionally deals 1 instance of Ice DMG equal to #2[i]% of Jingliu's Max HP to the primary target.", + "ParamList": [ + 0.3600000003352761, + 0.8000000007450581, + 1 + ] + }, + "2": { + "Id": 1121202, + "Name": "Crescent Shadows Qixing Dipper", + "Desc": "After using Ultimate, increases the DMG of the next Enhanced Skill by #1[i]%.", + "ParamList": [ + 0.8000000007450581 + ] + }, + "3": { + "Id": 1121203, + "Name": "Halfmoon Gapes Mercurial Haze", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 1121204, + "Name": "Lunarlance Shines Skyward Dome", + "Desc": "While in the \"Spectral Transmigration\" state, each stack of \"Moonlight\" additionally increases CRIT DMG by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 1121205, + "Name": "Night Shades Astral Radiance", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 1121206, + "Name": "Eclipse Hollows Corporeal Husk", + "Desc": "When Jingliu enters the \"Spectral Transmigration\" state, the \"Syzygy\" stack limit increases by 1, and Jingliu obtains #1[i] stack(s) of \"Syzygy.\" While she is in the \"Spectral Transmigration\" state, her Ice RES PEN increases by #2[i]%.", + "ParamList": [ + 1, + 0.20000000018626451 + ] + } + }, + "Skills": { + "1121201": { + "Id": 1121201, + "Name": "Lucent Moonglow", + "Desc": "Deals Ice DMG equal to #1[i]% of Jingliu's Max HP to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "1121202": { + "Id": 1121202, + "Name": "Transcendent Flash", + "Desc": "Deals Ice DMG equal to #1[i]% of Jingliu's Max HP to one designated enemy and obtains #2[i] stack(s) of \"Syzygy.\"", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1 + ] + } + } + }, + "1121203": { + "Id": 1121203, + "Name": "Florephemeral Dreamflux", + "Desc": "Deals Ice DMG equal to #1[i]% of Jingliu's Max HP to one designated enemy, and deals Ice DMG equal to #3[i]% of Jingliu's Max HP to their adjacent enemies. Gains #2[i] stack(s) of \"Syzygy\" after attack ends.", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 1, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 1, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 1, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 1, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 1, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 1, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 1, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 1, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 1, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.890000000828877, + 1, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.9800000009126961, + 1, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.0700000000651926, + 1, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.1600000001490116, + 1, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.2500000002328306, + 1, + 1.1249999997671694, + 1 + ] + } + } + }, + "1121204": { + "Id": 1121204, + "Name": "Crescent Transmigration", + "Desc": "When Jingliu has #5[i] stack(s) of \"Syzygy,\" she enters the Spectral Transmigration state, gains 1 additional stack of \"Syzygy,\" action advances by #6[i]%, and her CRIT Rate increases by #7[i]%. Then, Jingliu's Skill \"Transcendent Flash\" is enhanced to \"Moon On Glacial River,\" and only this enhanced Skill is available for use in battle. When Jingliu uses an attack in the Spectral Transmigration state, she consumes HP from her teammates equal to #2[i]% of their respective Max HP (this cannot reduce teammates' HP to lower than 1). When in the \"Spectral Transmigration\" state, Jingliu gains 1 stack of \"Moonlight\" when consuming ally targets HP. Each stack of \"Moonlight\" increases Jingliu's CRIT DMG by #3[i]%, up to #4[i] stacks. Jingliu cannot enter the \"Spectral Transmigration\" state again until the current \"Spectral Transmigration\" state ends. \"Syzygy\" can stack up to 3 times. When \"Syzygy\" stacks become 0, Jingliu will exit the \"Spectral Transmigration\" state and remove all \"Moonlight.\"", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.22000000020489097, + 5, + 2, + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.24200000008568168, + 5, + 2, + 1, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.2639999999664724, + 5, + 2, + 1, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.2859999998472631, + 5, + 2, + 1, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.3079999997280538, + 5, + 2, + 1, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.33000000030733645, + 5, + 2, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.35750000015832484, + 5, + 2, + 1, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.3850000000093132, + 5, + 2, + 1, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.41250000055879354, + 5, + 2, + 1, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.44000000040978193, + 5, + 2, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.46200000029057264, + 5, + 2, + 1, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.48400000017136335, + 5, + 2, + 1, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5060000000521541, + 5, + 2, + 1, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5279999999329448, + 5, + 2, + 1, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5500000005122274, + 5, + 2, + 1, + 0.5500000005122274 + ] + } + } + }, + "1121206": { + "Id": 1121206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1121207": { + "Id": 1121207, + "Name": "Shine of Truth", + "Desc": "After using this Technique, creates a Special Dimension around Jingliu that lasts for #3[i] seconds, and all enemies in this Special Dimension will become Frozen. After entering combat with enemies in the Special Dimension, Jingliu immediately regenerates #6[i] Energy and obtains #1[i] stack(s) of \"Syzygy,\" with a #2[i]% base chance of Freezing enemy targets for #4[i] turn(s). While Frozen, enemy targets cannot take action, and receive Ice Additional DMG equal to #5[i]% of Jingliu's Max HP at the start of every turn. Only 1 Dimension Effect created by allies can exist at the same time.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 20, + 1, + 0.8000000007450581, + 15 + ] + } + } + }, + "1121209": { + "Id": 1121209, + "Name": "Moon On Glacial River", + "Desc": "Deals Ice DMG equal to #1[i]% of Jingliu's Max HP to one designated enemy, and deals Ice DMG equal to #3[i]% of Jingliu's Max HP to adjacent enemies. Consumes #2[i] stack(s) of \"Syzygy.\" Using this ability does not consume Skill Points.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 1, + 0.375 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 1, + 0.41250000055879354 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 1, + 0.45000000041909516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 1, + 0.4875000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 1, + 0.5250000001396984 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 1, + 0.5625000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 1, + 0.6093750006984919 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 1, + 0.6562500006984919 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 1, + 0.7031250006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1, + 0.7500000006984919 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 1, + 0.7875000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 1, + 0.8250000004190952 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1, + 0.8625000009778887 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1, + 0.9375000006984919 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Maze.png", + "LevelUpSkillID": [ + 1121207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 11212101, + "PointName": "Deathrealm", + "PointDesc": "While in the \"Spectral Transmigration\" state, increases Effect RES by #1[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 11212102, + "PointName": "Sword Champion", + "PointDesc": "After using \"Transcendent Flash,\" additionally regenerates #1[i] Energy.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 11212103, + "PointName": "Frost Wraith", + "PointDesc": "While in the \"Spectral Transmigration\" state, increases DMG dealt by Ultimate by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212201, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212202, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11212101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212203, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11212202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11212203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212205, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11212102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212206, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11212205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212207, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11212206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11212103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212209, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "SPD" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212210, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 195.36000000033528, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 273.50400000019, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 351.6480000000447, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 429.7920000005979, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 507.9360000004526, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 586.0800000000745, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 664.2239999999292, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1212, + "Set4IDList": [ + 122, + 104, + 108 + ], + "Set2IDList": [ + 319, + 309, + 306 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 338, + 280 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1213": { + "Name": "Dan Heng • Imbibitor Lunae", + "Desc": "Dan Heng's true form from his Vidyadhara lineage carries the residual power left behind by his past incarnation, the Imbibitor Lunae.\\nUpon accepting the majestic horns atop his crown, he must accept all the merits and faults attributed to that sinner.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "danhengil", + "SPNeed": 140, + "BaseType": "Warrior", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 121301, + "Name": "Tethered to Sky", + "Desc": "Increases the stackable Righteous Heart count by #1[i], and gains 1 extra stack of Righteous Heart for each hit during an attack.", + "ParamList": [ + 4 + ] + }, + "2": { + "Id": 121302, + "Name": "Imperium On Cloud Nine", + "Desc": "After using his Ultimate, Dan Heng • Imbibitor Lunae's action advances by 100% and gains 1 extra \"Squama Sacrosancta.\"", + "ParamList": [] + }, + "3": { + "Id": 121303, + "Name": "Clothed in Clouds", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 121304, + "Name": "Zephyr's Bliss", + "Desc": "The buff effect granted by \"Outroar\" lasts until the end of this unit's next turn.", + "ParamList": [] + }, + "5": { + "Id": 121305, + "Name": "Fall is the Pride", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 121306, + "Name": "Reign, Returned", + "Desc": "After another ally character uses their Ultimate, the Imaginary RES PEN of Dan Heng • Imbibitor Lunae's next \"Fulgurant Leap\" attack increases by #1[i]%. This effect can stack up to #2[i] time(s).", + "ParamList": [ + 0.20000000018626451, + 3 + ] + } + }, + "Skills": { + "121301": { + "Id": 121301, + "Name": "Beneficent Lotus", + "Desc": "Uses a 2-hit attack and deals Imaginary DMG equal to #1[i]% of Dan Heng • Imbibitor Lunae's ATK to a single enemy target.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121302": { + "Id": 121302, + "Name": "Dracore Libre", + "Desc": "Enhances Basic ATK. Enhancements may be applied up to 3 times consecutively. Using this ability does not consume Skill Points and is not considered as using a Skill.\\nEnhanced once, Beneficent Lotus becomes Transcendence.\\nEnhanced twice, Beneficent Lotus becomes Divine Spear.\\nEnhanced thrice, Beneficent Lotus becomes Fulgurant Leap.\\nWhen using Divine Spear or Fulgurant Leap, starting from the fourth hit, 1 stack of Outroar is gained before every hit. Each stack of Outroar increases Dan Heng • Imbibitor Lunae's CRIT DMG by #1[f1]%, for a max of #2[i] stacks. These stacks last until the end of his turn.", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06599999964237213, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07199999992735684, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07799999951384962, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08399999979883432, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09749999991618097, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1049999997485429, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11250000027939677, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.12000000011175871, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12599999969825149, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1319999999832362, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.13799999956972897, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.14399999985471368, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 4 + ] + } + } + }, + "121303": { + "Id": 121303, + "Name": "Azure's Aqua Ablutes All", + "Desc": "Uses a 3-hit attack and deals Imaginary DMG equal to #1[i]% of Dan Heng • Imbibitor Lunae's ATK to a single enemy target. At the same time, deals Imaginary DMG equal to #2[i]% of Dan Heng • Imbibitor Lunae's ATK to adjacent targets. Then, obtains #3[i] Squama Sacrosancta.\\nIt's possible to hold up to #4[i] Squama Sacrosancta, which can be used to offset Dan Heng • Imbibitor Lunae's consumption of skill points. Consuming Squama Sacrosancta is considered equivalent to consuming skill points.", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 0.840000000782311, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.9200000008568168, + 0.8960000004153699, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.040000000037253, + 0.9520000007469207, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.1600000001490116, + 1.007999999448657, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2800000002607703, + 1.0639999997802079, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1.1200000001117587, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.5500000005122274, + 1.1900000001769513, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.700000000651926, + 1.2600000002421439, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.850000000791624, + 1.3300000003073364, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.400000000372529, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1200000001117587, + 1.456000000005588, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.2400000002235174, + 1.5120000003371388, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.360000000335276, + 1.5679999999701977, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.480000000447035, + 1.6240000003017485, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.6000000005587935, + 1.6800000006332994, + 2, + 3 + ] + } + } + }, + "121304": { + "Id": 121304, + "Name": "Righteous Heart", + "Desc": "After each hit dealt during an attack, Dan Heng • Imbibitor Lunae gains 1 stack of Righteous Heart, increasing his DMG by #1[f1]%. This effect can stack up to #2[i] time(s), lasting until the end of his turn.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 6 + ] + } + } + }, + "121306": { + "Id": 121306, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121307": { + "Id": 121307, + "Name": "Heaven-Quelling Prismadrakon", + "Desc": "After using his Technique, Dan Heng • Imbibitor Lunae enters the Leaping Dragon state for #2[i] seconds. While in the Leaping Dragon state, using his attack enables him to move forward rapidly for a set distance, attacking all enemies he touches and blocking all incoming attacks. After entering combat via attacking enemies in the Leaping Dragon state, Dan Heng • Imbibitor Lunae deals Imaginary DMG equal to #3[i]% of his ATK to all enemies, and gains #1[i] Squama Sacrosancta.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 20, + 1.2000000001862645 + ] + } + } + }, + "121308": { + "Id": 121308, + "Name": "Transcendence", + "Desc": "Uses a 3-hit attack and deals Imaginary DMG equal to #1[i]% of Dan Heng • Imbibitor Lunae's ATK to a single enemy target.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5600000005215406 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.8200000007636845 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.080000000074506 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.3400000003166497 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.8600000008009374 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.1200000001117587 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.3800000003539026 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.6400000005960464 + ] + } + } + }, + "121309": { + "Id": 121309, + "Name": "Cancel", + "Desc": "Cancel Enhancement", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121310": { + "Id": 121310, + "Name": "Divine Spear", + "Desc": "Uses a 5-hit attack and deals Imaginary DMG equal to #1[i]% of Dan Heng • Imbibitor Lunae's ATK to a single enemy target. From the fourth hit onward, simultaneously deals Imaginary DMG equal to #2[i]% of Dan Heng • Imbibitor Lunae's ATK to adjacent targets.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 35, + "BPNeed": 2, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9000000008381903, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.2800000002607703, + 0.3600000003352761 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.660000000614673, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.040000000037253, + 0.48000000044703484 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.4200000003911555, + 0.5400000005029142 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.800000000745058, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4.180000000167638, + 0.6600000006146729 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.560000000521541, + 0.7200000006705523 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.940000000875443, + 0.7800000007264316 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5.320000000298023, + 0.840000000782311 + ] + } + } + }, + "121312": { + "Id": 121312, + "Name": "Fulgurant Leap", + "Desc": "Uses a 7-hit attack and deals Imaginary DMG equal to #1[i]% of Dan Heng • Imbibitor Lunae's ATK to a single enemy target. From the fourth hit onward, simultaneously deal Imaginary DMG equal to #2[i]% of Dan Heng • Imbibitor Lunae's ATK to adjacent targets.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 40, + "BPNeed": 3, + "BPAdd": null, + "ShowStanceList": [ + 120, + 0, + 60 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1.0800000000745058 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.5000000004656613, + 1.2600000002421439 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4.500000000465661, + 1.62000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5.500000000465661, + 1.9800000009126961 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 6, + 2.1600000001490116 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 6.500000000465661, + 2.3400000003166497 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 2.5200000004842877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Maze.png", + "LevelUpSkillID": [ + 121307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1213101, + "PointName": "Star Veil", + "PointDesc": "At the start of the battle, immediately regenerates #1[i] Energy.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1213102, + "PointName": "Aqua Reign", + "PointDesc": "Increases the chance to resist Crowd Control debuffs by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.24000000022351742 + ], + "PointID": 1213103, + "PointName": "Jolt Anew", + "PointDesc": "When dealing DMG to enemy targets with Imaginary Weakness, CRIT DMG increases by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213201, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1213101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213203, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1213202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1213203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213205, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1213102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1213205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213207, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1213206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1213103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1213208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213210, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1213208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "Imaginary DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1213, + "Set4IDList": [ + 102, + 112, + 117 + ], + "Set2IDList": [ + 309, + 305, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1214": { + "Name": "Xueyi", + "Desc": "Judge of the Ten-Lords Commission, which presides over the jurisdiction of life and death on the Luofu.\\nFor years after her death, she inhabited a puppet body and returned to the world to fulfill her mission.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "xueyi", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 121401, + "Name": "Dvesha, Inhibited", + "Desc": "Increases the DMG dealt by the Talent's Follow-up ATK by #1[i]%.", + "ParamList": [ + 0.40000000037252903 + ] + }, + "2": { + "Id": 121402, + "Name": "Klesha, Breached", + "Desc": "Talent's Follow-up ATK Reduces enemy Toughness regardless of Weakness types. At the same time, restores Xueyi's HP by an amount equal to #1[i]% of her Max HP. When breaking Weakness, triggers the Quantum Break Effect.", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 121403, + "Name": "Duḥkha, Ceased", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 121404, + "Name": "Karma, Severed", + "Desc": "When using Ultimate, increases Break Effect by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.40000000037252903, + 2 + ] + }, + "5": { + "Id": 121405, + "Name": "Deva, Enthralled", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 121406, + "Name": "Saṃsāra, Mastered", + "Desc": "The max stack limit for Karma decreases to #1[i].", + "ParamList": [ + 6 + ] + } + }, + "Skills": { + "121401": { + "Id": 121401, + "Name": "Mara-Sunder Awl", + "Desc": "Deals #1[i]% of Xueyi's ATK as Quantum DMG to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121402": { + "Id": 121402, + "Name": "Iniquity Obliteration", + "Desc": "Deals Quantum DMG equal to #1[i]% of Xueyi's ATK to a single enemy, and Quantum DMG equal to #2[i]% of Xueyi's ATK to any adjacent enemies.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 0.3850000000093132 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 0.4550000000745058 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 0.49000000045634806 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 0.5687500007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 0.6125000007450581 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 0.6562500006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 0.7350000003352761 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 0.7700000007171184 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 0.8050000004004687 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 0.840000000782311 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613 + ] + } + } + }, + "121403": { + "Id": 121403, + "Name": "Divine Castigation", + "Desc": "Deals Quantum DMG equal to #1[i]% of Xueyi's ATK to a single target enemy. This attack ignores Weakness Types and reduces the enemy's Toughness. When the enemy's Weakness is Broken, the Quantum Weakness Break effect is triggered.\\nIn this attack, the more Toughness is reduced, the higher the DMG will be dealt, up to a max of #3[f1]% increase.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 120, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.09000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.6000000005587935, + 0.09599999967031181, + 0.3840000000782311 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.7000000006519258, + 0.10199999995529652, + 0.40799999982118607 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.800000000745058, + 0.1079999995417893, + 0.43200000026263297 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9000000008381903, + 0.113999999826774, + 0.45600000000558794 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.12000000011175871, + 0.48000000044703484 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.1249999997671694, + 0.12749999994412065, + 0.5100000004749745 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.2500000002328306, + 0.13499999977648258, + 0.5400000005029142 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.375, + 0.14250000030733645, + 0.5700000005308539 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.5000000004656613, + 0.1500000001396984, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.6000000005587935, + 0.15599999972619116, + 0.6240000003017485 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.700000000651926, + 0.16200000001117587, + 0.6480000000447035 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.800000000745058, + 0.16799999959766865, + 0.6720000004861504 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.9000000008381903, + 0.17399999988265336, + 0.6960000002291054 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.18000000016763806, + 0.7200000006705523 + ] + } + } + }, + "121404": { + "Id": 121404, + "Name": "Karmic Perpetuation", + "Desc": "When Xueyi reduces enemy Toughness with attacks, Karma will be stacked. The more Toughness is reduced, the more stacks of Karma are added, up to #1[i] stacks.\\nWhen Xueyi's teammates reduce enemy Toughness with attacks, Xueyi gains #3[i] stack(s) of Karma.\\nWhen Karma reaches the max number of stacks, consumes all current Karma stacks and immediately launches Follow-up ATK against an enemy target, dealing DMG for 3 times, with each time dealing Quantum DMG equal to #2[i]% of Xueyi's ATK to a single random enemy. This Follow-up ATK will not add Karma stacks.", + "Type": null, + "Tag": "Bounce", + "SPBase": 2, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 8, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 8, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 8, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 8, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 8, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 8, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 8, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 8, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 8, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 8, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 8, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 8, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 8, + 1.1249999997671694, + 1 + ] + } + } + }, + "121406": { + "Id": 121406, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121407": { + "Id": 121407, + "Name": "Summary Execution", + "Desc": "Immediately attacks the enemy. After entering combat, deals #1[i]% of Xueyi's ATK as Quantum DMG to all enemies.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Maze.png", + "LevelUpSkillID": [ + 121407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 2.400000000372529 + ], + "PointID": 1214101, + "PointName": "Clairvoyant Loom", + "PointDesc": "Increases DMG dealt by this unit by an amount equal to #1[i]% of Break Effect, up to a maximum DMG increase of #2[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.10000000009313226 + ], + "PointID": 1214102, + "PointName": "Intrepid Rollerbearings", + "PointDesc": "If the enemy target's Toughness is equal to or higher than #1[i]% of their Max Toughness, deals #2[i]% more DMG when using Ultimate.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 6 + ], + "PointID": 1214103, + "PointName": "Perspicacious Mainframe", + "PointDesc": "Xueyi will keep a tally of the number of Karma stacks that exceed the max stack limit, up to #1[i] stacks in the tally. After Xueyi's Talent is triggered, she will gain a corresponding number of tallied Karma stacks.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214201, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1214101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214203, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1214202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214204, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1214203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214205, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1214102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1214205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214207, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1214206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214208, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1214103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1214208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214210, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1214208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "Break Effect" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1214, + "Set4IDList": [ + 108, + 111, + 119 + ], + "Set2IDList": [ + 307, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 348, + 293 + ] + } + }, + "1215": { + "Name": "Hanya", + "Desc": "One of the judges of the Xianzhou Luofu's Ten-Lords Commission.\\nOrdained by the Ten-Lords and wielding the authority of the Oracle Brush, she reads the multitudes of human sins and transgressions, then issues punishments and karmic retribution.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "hanya", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 121501, + "Name": "One Heart", + "Desc": "When an ally target with Hanya's Ultimate effect defeats an enemy, Hanya's action advances by #1[i]%. This effect can only be triggered #2[i] time(s) per turn.", + "ParamList": [ + 0.1500000001396984, + 1 + ] + }, + "2": { + "Id": 121502, + "Name": "Two Views", + "Desc": "After using the Skill, this character's SPD increases by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 121503, + "Name": "Three Temptations", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 121504, + "Name": "Four Truths", + "Desc": "The Ultimate's duration is additionally extended for #1[i] turn(s).", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 121505, + "Name": "Five Skandhas", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 121506, + "Name": "Six Reverences", + "Desc": "Increase the DMG Boost effect of the Talent by an additional #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + } + }, + "Skills": { + "121501": { + "Id": 121501, + "Name": "Oracle Brush", + "Desc": "Deals Physical DMG equal to #1[i]% of Hanya's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121502": { + "Id": 121502, + "Name": "Samsara, Locked", + "Desc": "Deals Physical DMG equal to #1[i]% of Hanya's ATK to a single target enemy, then applies Burden to them.\\nFor every 2 Basic ATKs, Skills, or Ultimates allies use on an enemy with Burden, allies will immediately recover 1 Skill Point. Burden is only active on the latest target it is applied to, and will be dispelled automatically after the Skill Point recovery effect has been triggered #2[i] times.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 17, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 2 + ] + } + } + }, + "121503": { + "Id": 121503, + "Name": "Ten-Lords' Decree, All Shall Obey", + "Desc": "Increases the SPD of a target ally by #3[f1]% of Hanya's SPD and increases the same target ally's ATK by #1[i]%, lasting for #2[i] turn(s).", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 28, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 2, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 2, + 0.15499999979510903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 2, + 0.1600000001490116 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 2, + 0.16499999980442226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 2, + 0.17000000015832484 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 2, + 0.17499999981373549 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 2, + 0.18125000060535967 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 2, + 0.1875 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 2, + 0.1937500007916242 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 2, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 2, + 0.20499999984167516 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 2, + 0.21000000019557774 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 2, + 0.2149999998509884 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 2, + 0.22000000020489097 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 2, + 0.2249999998603016 + ] + } + } + }, + "121504": { + "Id": 121504, + "Name": "Sanction", + "Desc": "When an ally uses a Basic ATK, Skill, or Ultimate on an enemy inflicted with Burden, the DMG dealt increases by #1[i]%, lasting for #2[i] turn(s).", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 2 + ] + } + } + }, + "121506": { + "Id": 121506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121507": { + "Id": 121507, + "Name": "Netherworld Judgment", + "Desc": "Immediately attacks the enemy. After entering battle, applies Burden equivalent to that applied by the Skill to a random enemy.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Maze.png", + "LevelUpSkillID": [ + 121507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 1 + ], + "PointID": 1215101, + "PointName": "Scrivener", + "PointDesc": "Allies triggering Burden's Skill Point recovery effect have their ATK increased by #1[i]% for #2[i] turn(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 1215102, + "PointName": "Netherworld", + "PointDesc": "If the trigger count for the Burden's Skill Point recovery effect is #1[i] or lower when an enemy with Burden is defeated, then additionally recovers #2[i] Skill Point(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1215103, + "PointName": "Reanimated", + "PointDesc": "When Burden's Skill Point recovery effect is triggered, this character regenerates #1[i] Energy.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215202, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1215101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1215202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1215201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1215102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215206, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1215205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1215201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1215103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215209, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1215208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "SPD" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1215208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1215, + "Set4IDList": [ + 114, + 102, + 121 + ], + "Set2IDList": [ + 317, + 308, + 310 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 254, + 208 + ] + } + }, + "1217": { + "Name": "Huohuo", + "Desc": "A trainee Ten-Lords Commission Judge of the Xianzhou Luofu, she is a young foxian girl possessed by a heliobus.\\nShe is a timid and weak girl who is afraid of all kinds of strange things, but is responsible for luring and subduing evil spirits.", + "CharaInfo": { + "Camp": "The Xianzhou Luofu", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "huohuo", + "SPNeed": 140, + "BaseType": "Priest", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 121701, + "Name": "Anchored to Vessel, Specters Nestled", + "Desc": "The duration of Divine Provision produced by the Talent is extended by #2[i] turn(s). When Huohuo possesses Divine Provision, all allies' SPD increases by #1[i]%.", + "ParamList": [ + 0.12000000011175871, + 1 + ] + }, + "2": { + "Id": 121702, + "Name": "Sealed in Tail, Wraith Subdued", + "Desc": "If Huohuo possesses \"Divine Provision\" when an ally target is struck by a killing blow, the ally will not be knocked down and their HP will immediately be restored by an amount equal to #1[i]% of their Max HP. This reduces the duration of \"Divine Provision\" by 1 turn. This effect can only be triggered #2[i] time(s) per battle.", + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "3": { + "Id": 121703, + "Name": "Cursed by Fate, Moths to Flame", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 121704, + "Name": "Tied in Life, Bound to Strife", + "Desc": "When healing a target ally via Skill or Talent, the less HP the target ally currently has, the higher the amount of healing they will receive. The maximum increase in healing provided by Huohuo is #1[i]%.", + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Id": 121705, + "Name": "Mandated by Edict, Evils Evicted", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 121706, + "Name": "Woven Together, Cohere Forever", + "Desc": "When healing a target ally, increases the target ally's DMG dealt by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.5000000004656613, + 2 + ] + } + }, + "Skills": { + "121701": { + "Id": 121701, + "Name": "Banner: Stormcaller", + "Desc": "Deals Wind DMG equal to #1[i]% of Huohuo's Max HP to a target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "121702": { + "Id": 121702, + "Name": "Talisman: Protection", + "Desc": "Dispels #5[i] debuff(s) from a single target ally and immediately restores this ally's HP by an amount equal to #1[f1]% of Huohuo's Max HP plus #2[i]. At the same time, restores HP for allies that are adjacent to this target ally by an amount equal to #3[f1]% of Huohuo's Max HP plus #4[i].", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14000000013038516, + 140, + 0.11199999996460974, + 112, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1487500004004687, + 224, + 0.11899999948218465, + 179.20000000018626, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.15749999997206032, + 287, + 0.12599999969825149, + 229.6000000005588, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16625000024214387, + 350, + 0.13299999991431832, + 280, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17499999981373549, + 392, + 0.14000000013038516, + 313.6000000005588, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18200000002980232, + 434, + 0.14560000016354024, + 347.20000000018626, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18899999954737723, + 465.50000000046566, + 0.15120000019669533, + 372.40000000037253, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.19599999976344407, + 497, + 0.1568000002298504, + 397.6000000005588, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2029999999795109, + 528.5000000004657, + 0.1624000002630055, + 422.80000000074506, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.21000000019557774, + 560, + 0.16799999959766865, + 448, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21699999971315265, + 591.5000000004657, + 0.17360000032931566, + 473.20000000018626, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22399999992921948, + 623, + 0.17919999966397882, + 498.40000000037253, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.23100000014528632, + 654.5000000004657, + 0.18480000039562583, + 523.6000000005588, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.23799999966286123, + 686, + 0.1904000004287809, + 548.8000000007451, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.24499999987892807, + 717.5000000004657, + 0.19599999976344407, + 574, + 1 + ] + } + } + }, + "121703": { + "Id": 121703, + "Name": "Tail: Spiritual Domination", + "Desc": "Regenerates Energy for all teammates (i.e., excluding this unit) by an amount equal to #1[f1]% of their respective Max Energy. At the same time, increases their ATK by #2[f1]% for #3[i] turn(s).", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.24000000022351742, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 0.2559999998193234, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 0.27200000011362135, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 0.28799999970942736, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 0.3040000000037253, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 0.3200000002980232, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 0.3400000003166497, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 0.3600000003352761, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 0.3800000003539026, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 0.41599999996833503, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 0.43200000026263297, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 0.44799999985843897, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 0.4640000001527369, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 0.48000000044703484, + 2 + ] + } + } + }, + "121704": { + "Id": 121704, + "Name": "Possession: Ethereal Metaflow", + "Desc": "After using her Skill, Huohuo gains Divine Provision, lasting for #1[i] turn(s). This duration decreases by 1 turn at the start of Huohuo's every turn. If Huohuo has Divine Provision when an ally's turn starts or when an ally uses their Ultimate, restores HP for that ally by an amount equal to #3[f1]% of Huohuo's Max HP plus #5[i]. At the same time, every ally with #6[i]% HP percentage or lower receives healing once.\\nWhen Divine Provision is triggered to heal an ally, dispel #2[i] debuff(s) from that ally. This effect can be triggered up to #7[i] time(s). Using the skill again resets the effect's trigger count.", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1, + 0.030000000027939677, + 0, + 30, + 0.5000000004656613, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 1, + 0.03187500103376806, + 0, + 48, + 0.5000000004656613, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 1, + 0.033750000642612576, + 0, + 61.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 1, + 0.035625000251457095, + 0, + 75, + 0.5000000004656613, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 1, + 0.037499999860301614, + 0, + 84, + 0.5000000004656613, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 1, + 0.03899999940767884, + 0, + 93, + 0.5000000004656613, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 1, + 0.04050000035203993, + 0, + 99.75000000069849, + 0.5000000004656613, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 1, + 0.04199999989941716, + 0, + 106.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 1, + 0.04350000014528632, + 0, + 113.25000000023283, + 0.5000000004656613, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.04499999969266355, + 0, + 120, + 0.5000000004656613, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 1, + 0.04649999993853271, + 0, + 126.75000000069849, + 0.5000000004656613, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 1, + 0.04799999948590994, + 0, + 133.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 1, + 0.0494999997317791, + 0, + 140.25000000023283, + 0.5000000004656613, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 1, + 0.05099999997764826, + 0, + 147, + 0.5000000004656613, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 1, + 0.05250000022351742, + 0, + 153.7500000006985, + 0.5000000004656613, + 6 + ] + } + } + }, + "121706": { + "Id": 121706, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121707": { + "Id": 121707, + "Name": "Fiend: Impeachment of Evil", + "Desc": "Huohuo terrorizes surrounding enemies, afflicting Horror-Struck on them. Enemies in Horror-Struck will flee away from Huohuo for #4[i] second(s). When entering battle with enemies in Horror-Struck, there is a #1[i]% base chance of reducing every single enemy's ATK by #2[i]% for #3[i] turn(s).", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.25000000023283064, + 2, + 10 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Maze.png", + "LevelUpSkillID": [ + 121707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1217101, + "PointName": "Fearful to Act", + "PointDesc": "When battle starts, Huohuo gains Divine Provision, lasting for #1[i] turn(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1217102, + "PointName": "The Cursed One", + "PointDesc": "Increases the chance to resist Crowd Control debuffs by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1217103, + "PointName": "Stress Reaction to Horror", + "PointDesc": "When her Talent is triggered to heal allies, Huohuo regenerates #1[i] Energy.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217201, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217202, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1217101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217203, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1217202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217204, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1217203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217205, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1217102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217206, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1217205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217207, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1217206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217208, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1217103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217209, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1217103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "Effect RES" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217210, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1217, + "Set4IDList": [ + 101, + 114, + 110 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1218": { + "Name": "Jiaoqiu", + "Desc": "A foxian healer and counselor from the Xianzhou Yaoqing. Often greets people with a smile on his face and a scheme in his heart.\\nBorn into a prestigious Alchemy Commission family, he once withdrew from practicing medicine due to a broken heart. However, he returned to the field to treat \"the Merlin's Claw,\" General Feixiao.\\nSkilled in the study of alchemical prescription that views food as medicine, especially those that induce a sensation of spiciness. They invented a cauldron-based medicinal formula known as the \"nine-squared grid.\"", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jiaoqiu", + "SPNeed": 100, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 121801, + "Name": "Pentapathic Transference", + "Desc": "Allies deal #1[i]% increased DMG to enemy targets afflicted with Ashen Roast. Whenever inflicting Ashen Roast on an enemy target via triggering the Talent's effect, additionally increases the number of \"Ashen Roast\" stacks applied this time by #2[i].", + "ParamList": [ + 0.40000000037252903, + 1 + ] + }, + "2": { + "Id": 121802, + "Name": "From Savor Comes Suffer", + "Desc": "When an enemy target is afflicted with Ashen Roast, increases the multiplier for the Fire DoT dealt by Ashen Roast to this target by #1[i]%.", + "ParamList": [ + 3 + ] + }, + "3": { + "Id": 121803, + "Name": "Flavored Euphony Reigns Supreme", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 121804, + "Name": "Leisure In, Luster Out", + "Desc": "When the Zone exists, reduces enemy target's ATK by #1[i]%.", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 121805, + "Name": "Duel in Dawn, Dash in Dusk", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 121806, + "Name": "Nonamorphic Pyrobind", + "Desc": "When an enemy target gets defeated, their accumulated \"Ashen Roast\" stacks will transfer to the enemy with the lowest number of \"Ashen Roast\" stacks on the battlefield. The maximum stack limit of Ashen Roast increases to #2[i], and each \"Ashen Roast\" stack reduces the target's All-Type RES by #3[i]%.", + "ParamList": [ + 1, + 9, + 0.030000000027939677 + ] + } + }, + "Skills": { + "121801": { + "Id": 121801, + "Name": "Heart Afire", + "Desc": "Deals Fire DMG equal to #1[i]% of Jiaoqiu's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121802": { + "Id": 121802, + "Name": "Scorch Onslaught", + "Desc": "Deals Fire DMG equal to #1[i]% of Jiaoqiu's ATK to a single target enemy and Fire DMG equal to #2[i]% of Jiaoqiu's ATK to adjacent targets, with a #3[i]% base chance to inflict 1 stack of Ashen Roast on the primary target.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1.1249999997671694, + 1 + ] + } + } + }, + "121803": { + "Id": 121803, + "Name": "Pyrograph Arcanum", + "Desc": "Sets the number of \"Ashen Roast\" stacks on enemy targets to the highest number of \"Ashen Roast\" stacks present on the battlefield. Then, activates a Zone and deals Fire DMG equal to #1[i]% of Jiaoqiu's ATK to all enemies.\\nWhile inside the Zone, enemy targets receive #3[f1]% increased Ultimate DMG, with a #2[i]% base chance of being inflicted with 1 stack of Ashen Roast when taking action. While the Zone exists, this effect can trigger up to #5[i] time(s). And for each enemy target, it can only trigger once per turn. This trigger count resets every time Jiaoqiu uses Ultimate.\\nThe Zone lasts for #4[i] turn(s), and its duration decreases by 1 at the start of this unit's every turn. If Jiaoqiu gets knocked down, the Zone will also be dispelled.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 0.09000000008381903, + 3, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6400000005960464, + 0.5100000004749745, + 0.09599999967031181, + 3, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6800000006332994, + 0.5200000004842877, + 0.10199999995529652, + 3, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523, + 0.530000000493601, + 0.1079999995417893, + 3, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7600000007078052, + 0.5400000005029142, + 0.113999999826774, + 3, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581, + 0.5500000005122274, + 0.12000000011175871, + 3, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8500000007916242, + 0.5625000006984919, + 0.12749999994412065, + 3, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9000000008381903, + 0.5750000001862645, + 0.13499999977648258, + 3, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9500000008847564, + 0.587500000372529, + 0.14250000030733645, + 3, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.6000000005587935, + 0.1500000001396984, + 3, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.040000000037253, + 0.6100000005681068, + 0.15599999972619116, + 3, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.0800000000745058, + 0.62000000057742, + 0.16200000001117587, + 3, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1200000001117587, + 0.6300000005867332, + 0.16799999959766865, + 3, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.1600000001490116, + 0.6400000005960464, + 0.17399999988265336, + 3, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2000000001862645, + 0.6500000006053597, + 0.18000000016763806, + 3, + 6 + ] + } + } + }, + "121804": { + "Id": 121804, + "Name": "Quartet Finesse, Octave Finery", + "Desc": "When Jiaoqiu hits an enemy with Basic ATK, Skill or Ultimate, there is a #1[i]% base chance to inflict 1 stack of Ashen Roast on them. At 1 stack, increases DMG received by the enemy by #2[f1]%. Then, each subsequent stack increases this by #3[f1]%.\\nAshen Roast is capped at #4[i] stack(s) and lasts for #5[i] turn(s).\\nWhen an enemy target is afflicted with Ashen Roast, they are also considered as being Burned at the same time, taking Fire DoT equal to #6[i]% of Jiaoqiu's ATK at the start of each turn.", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.07499999972060323, + 0.0249999996740371, + 5, + 2, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.0825000002514571, + 0.027499999850988388, + 5, + 2, + 0.9900000009220093 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.09000000008381903, + 0.030000000027939677, + 5, + 2, + 1.0800000000745058 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.09749999991618097, + 0.032500000204890966, + 5, + 2, + 1.1700000001583248 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.1049999997485429, + 0.034999999683350325, + 5, + 2, + 1.2600000002421439 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.11250000027939677, + 0.037499999860301614, + 5, + 2, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.12187500111758709, + 0.040625000605359674, + 5, + 2, + 1.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.13125000055879354, + 0.0437500006519258, + 5, + 2, + 1.5750000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.14062500069849193, + 0.04687500069849193, + 5, + 2, + 1.6875000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.1500000001396984, + 0.05000000004656613, + 5, + 2, + 1.800000000745058 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.15749999997206032, + 0.05250000022351742, + 5, + 2, + 1.890000000828877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.16499999980442226, + 0.054999999701976776, + 5, + 2, + 1.9800000009126961 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.17250000033527613, + 0.057499999878928065, + 5, + 2, + 2.0700000000651926 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.18000000016763806, + 0.060000000055879354, + 5, + 2, + 2.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.1875, + 0.06250000023283064, + 5, + 2, + 2.2500000002328306 + ] + } + } + }, + "121806": { + "Id": 121806, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121807": { + "Id": 121807, + "Name": "Fiery Queller", + "Desc": "After using Technique, creates a Special Dimension that lasts for #2[i] second(s). After entering combat with enemies in this Special Dimension, deals Fire DMG equal to #1[i]% of Jiaoqiu's ATK to all enemies, with a #3[i]% base chance of applying 1 \"Ashen Roast\" stack. Only 1 dimension created by allies can exist at the same time.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 15, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Maze.png", + "LevelUpSkillID": [ + 121807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1218101, + "PointName": "Pyre Cleanse", + "PointDesc": "When battle starts, immediately regenerates #1[i] Energy.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984, + 0.6000000005587935, + 2.400000000372529 + ], + "PointID": 1218102, + "PointName": "Hearth Kindle", + "PointDesc": "For every #2[i]% of Jiaoqiu's Effect Hit Rate that exceeds #1[i]%, additionally increases ATK by #3[i]%, up to #4[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1218103, + "PointName": "Seared Scent", + "PointDesc": "While the Zone exists, enemies entering combat will be inflicted with Ashen Roast. The number of stacks applied will match the highest number of \"Ashen Roast\" stacks possessed by any unit while the Zone is active, with a minimum of #1[i] stack(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218201, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218202, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1218101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218203, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1218202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218204, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1218203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218205, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1218102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218206, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1218205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218207, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1218206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218208, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1218103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218209, + "PointName": "DMG Boost: Fire", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1218103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "Fire DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218210, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1218201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "Effect Hit Rate" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1218, + "Set4IDList": [ + 116, + 110, + 106 + ], + "Set2IDList": [ + 303, + 302, + 308 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "StatusProbabilityBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 328, + 273 + ] + } + }, + "1220": { + "Name": "Feixiao", + "Desc": "The Xianzhou Yaoqing's Merlin's Claw and one of the Seven Arbiter-Generals. Unconventional and straightforward, she exudes effortless charm.\\nShe is skilled in all forms of martial arts and has honed herself into a supreme weapon. She is widely adored by Xianzhou soldiers and civilians alike as \"The Vanquishing General.\"\\nHowever, she bears the burden of the Moon Rage affliction. If she were to hunt down all the abominations in her limited lifetime — then the only enemy Feixiao has would be herself.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "feixiao", + "SPNeed": 12, + "BaseType": "Rogue", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 122001, + "Name": "Skyward I Quell", + "Desc": "After launching \"Boltsunder Blitz\" or \"Waraxe Skyward,\" additionally increases the Ultimate DMG dealt by Feixiao by an amount equal to #1[i]% of the original DMG, stacking up to #2[i] time(s) and lasting until the end of the Ultimate action.", + "ParamList": [ + 0.10000000009313226, + 5 + ] + }, + "2": { + "Id": 122002, + "Name": "Moonward I Wish", + "Desc": "In the Talent's effect, for every 1 instance of Follow-up ATK launched by ally targets, Feixiao gains 1 point of \"Flying Aureus.\" This effect can trigger up to #1[i] time(s) per turn.", + "ParamList": [ + 6 + ] + }, + "3": { + "Id": 122003, + "Name": "Starward I Bode", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 122004, + "Name": "Stormward I Hear", + "Desc": "The Toughness Reduction from the Talent's Follow-up ATK increases by #1[i]% and, when launched, increases this unit's SPD by #2[i]%, lasting for #3[i] turn(s).", + "ParamList": [ + 1, + 0.0800000000745058, + 2 + ] + }, + "5": { + "Id": 122005, + "Name": "Heavenward I Leap", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 122006, + "Name": "Homeward I Near", + "Desc": "Increases the All-Type RES PEN of Ultimate DMG dealt by Feixiao by #1[i]%. Talent's Follow-up ATK DMG is considered as Ultimate DMG at the same time, and its DMG multiplier increases by #2[i]%.", + "ParamList": [ + 0.20000000018626451, + 1.400000000372529 + ] + } + }, + "Skills": { + "122001": { + "Id": 122001, + "Name": "Boltsunder", + "Desc": "Deals Wind DMG equal to #1[i]% of Feixiao's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122002": { + "Id": 122002, + "Name": "Waraxe", + "Desc": "Deals Wind DMG equal to #1[i]% of Feixiao's ATK to a single target enemy. Then, immediately launches 1 extra instance of Talent's Follow-up ATK against the target.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613 + ] + } + } + }, + "122003": { + "Id": 122003, + "Name": "Terrasplit", + "Desc": "Deals Wind DMG to a single target enemy, up to #4[i]% of Feixiao's ATK. During this time, can ignore Weakness Type to reduce the target's Toughness. When the target is not Weakness Broken, Feixiao's Weakness Break Efficiency increases by #2[i]%.\\nDuring the attack, Feixiao first launches \"Boltsunder Blitz\" or \"Waraxe Skyward\" on the target, for a total of #3[i] time(s).\\nAt the end, deals Wind DMG equal to #1[i]% of Feixiao's ATK to the target.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 1, + 6, + 4.0200000000186265 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 1, + 6, + 4.317999999737367 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 1, + 6, + 4.6160000001545995 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 1, + 6, + 4.914000000571832 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 1, + 6, + 5.212000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 1, + 6, + 5.5100000004749745 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 1, + 6, + 5.882500000996515 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 1, + 6, + 6.254999999888241 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 1, + 6, + 6.627500000409782 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 6, + 7 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1, + 6, + 7.297999999718741 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1, + 6, + 7.596000000135973 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1, + 6, + 7.894000000553206 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1, + 6, + 8.192000000039116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1, + 6, + 8.490000000456348 + ] + } + } + }, + "122004": { + "Id": 122004, + "Name": "Thunderhunt", + "Desc": "Can activate Ultimate when \"Flying Aureus\" reaches #3[i] points, accumulating up to #4[i] points. Feixiao gains 1 point of \"Flying Aureus\" for every #2[i] attacks by ally targets. Feixiao's Ultimate attacks do not count towards this number.\\nAfter Feixiao's teammates attack an Enemy target, Feixiao immediately launches Follow-up ATK against the primary target, dealing Wind DMG equal to #1[i]% of Feixiao's ATK. If there is no primary target available to attack, Feixiao attacks a single random enemy instead. This effect can only trigger once per turn and the trigger count resets at the start of Feixiao's turn. When using this attack, increases DMG dealt by this unit by #5[i]%, lasting for #6[i] turn(s).", + "Type": null, + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 2, + 6, + 12, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6050000002142042, + 2, + 6, + 12, + 0.33000000030733645, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6600000006146729, + 2, + 6, + 12, + 0.3600000003352761, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7150000003166497, + 2, + 6, + 12, + 0.3900000003632158, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7700000007171184, + 2, + 6, + 12, + 0.4200000003911555, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8250000004190952, + 2, + 6, + 12, + 0.45000000041909516, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.89375000144355, + 2, + 6, + 12, + 0.4875000002793968, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.962500001071021, + 2, + 6, + 12, + 0.5250000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.0312500004656613, + 2, + 6, + 12, + 0.5625000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1000000000931323, + 2, + 6, + 12, + 0.6000000005587935, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.154999999795109, + 2, + 6, + 12, + 0.6300000005867332, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2100000001955777, + 2, + 6, + 12, + 0.6600000006146729, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.2649999998975545, + 2, + 6, + 12, + 0.6900000006426126, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.3200000002980232, + 2, + 6, + 12, + 0.7200000006705523, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.375, + 2, + 6, + 12, + 0.7500000006984919, + 2 + ] + } + } + }, + "122006": { + "Id": 122006, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122007": { + "Id": 122007, + "Name": "Stormborn", + "Desc": "After using Technique, enters the \"Onrush\" state, lasting for #1[i] seconds. While in \"Onrush,\" pulls in enemies within a certain range, and increases this unit's movement speed by #2[i]%. After entering battle, gains #4[i] point(s) of \"Flying Aureus.\"\\nWhile in \"Onrush,\" actively attacking will start battle with all pulled enemies. After entering battle, deals Wind DMG equal to #3[i]% of Feixiao's ATK to all enemies at the start of each wave. This DMG is guaranteed to CRIT. If more than 1 enemy is pulled in, increases the multiplier of this DMG by #5[i]% for each additional enemy pulled in, up to a maximum of #6[i]%.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.5000000004656613, + 2, + 1, + 1, + 10 + ] + } + } + }, + "122008": { + "Id": 122008, + "Name": "Boltsunder Blitz", + "Desc": "Deals Wind DMG equal to #1[i]% of Feixiao's ATK to the chosen target. If the target is Weakness Broken, the DMG multiplier increases by #2[i]%.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 0.375 + ] + } + } + }, + "122009": { + "Id": 122009, + "Name": "Waraxe Skyward", + "Desc": "Deals Wind DMG equal to #1[i]% of Feixiao's ATK to the chosen target. If the target is not Weakness Broken, the DMG multiplier increases by #2[i]%.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 0.375 + ] + } + } + }, + "122014": { + "Id": 122014, + "Name": "Terrasplit", + "Desc": null, + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 1, + 6, + 4.0200000000186265 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 1, + 6, + 4.317999999737367 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 1, + 6, + 4.6160000001545995 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 1, + 6, + 4.914000000571832 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 1, + 6, + 5.212000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 1, + 6, + 5.5100000004749745 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 1, + 6, + 5.882500000996515 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 1, + 6, + 6.254999999888241 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 1, + 6, + 6.627500000409782 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 6, + 7 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1, + 6, + 7.297999999718741 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1, + 6, + 7.596000000135973 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1, + 6, + 7.894000000553206 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1, + 6, + 8.192000000039116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1, + 6, + 8.490000000456348 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Maze.png", + "LevelUpSkillID": [ + 122007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1220101, + "PointName": "Heavenpath", + "PointDesc": "When the battle starts, gains #1[i] point(s) of \"Flying Aureus.\"\\nAt the start of a turn, if no Follow-up ATK was launched via Talent in the previous turn, then this counts as 1 toward the number of attacks required to gain \"Flying Aureus.\"", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3600000003352761 + ], + "PointID": 1220102, + "PointName": "Formshift", + "PointDesc": "When using Ultimate to deal DMG to an enemy target, it is considered as a Follow-up ATK. Follow-up ATKs' CRIT DMG increases by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.48000000044703484, + 3 + ], + "PointID": 1220103, + "PointName": "Boltcatch", + "PointDesc": "When using Skill, increases ATK by #1[i]%, lasting for #2[i] turn(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1220101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1220202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1220102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1220205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1220103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1220208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1220208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 52.80000000074506, + "DefenceAdd": 2.6400000005960464, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 73.92000000085682, + "DefenceAdd": 2.6400000005960464, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 95.04000000003725, + "DefenceAdd": 2.6400000005960464, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 116.16000000014901, + "DefenceAdd": 2.6400000005960464, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 137.28000000026077, + "DefenceAdd": 2.6400000005960464, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 158.40000000037253, + "DefenceAdd": 2.6400000005960464, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 179.5200000004843, + "DefenceAdd": 2.6400000005960464, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1220, + "Set4IDList": [ + 120, + 110, + 115 + ], + "Set2IDList": [ + 315, + 306, + 311 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1221": { + "Name": "Yunli", + "Desc": "A sword hunter from the Xianzhou Zhuming and \"the Flaming Heart\" General Huaiyan's darling granddaughter. Frank and straightforward.\\nShe has learned swordplay and forging from Huaiyan since she was young, and thus is the second-youngest prodigy swordmaster of the Flamewheel Octet.\\nFueled by an intense loathing for the cursed swords that emerged from the Zhuming, she vowed to \"hunt down and wipe out all cursed swords.\"", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "yunli", + "SPNeed": 240, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 122101, + "Name": "Weathered Blade Does Not Sully", + "Desc": "Increases DMG dealt by \"Intuit: Slash\" and \"Intuit: Cull\" by #1[i]%. Increases the number of additional DMG instances for \"Intuit: Cull\" by #2[i].", + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "2": { + "Id": 122102, + "Name": "First Luster Breaks Dawn", + "Desc": "When dealing DMG via Counter, ignores #1[i]% of the target's DEF.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 122103, + "Name": "Mastlength Twirls Mountweight", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 122104, + "Name": "Artisan's Ironsong", + "Desc": "After launching \"Intuit: Slash\" or \"Intuit: Cull,\" increases this unit's Effect RES by #1[i]%, lasting for #2[i] turn(s).", + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "5": { + "Id": 122105, + "Name": "Blade of Old Outlasts All", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 122106, + "Name": "Walk in Blade, Talk in Zither", + "Desc": "While \"Parry\" is active, if an enemy actively uses their abilities, regardless of whether it attacks Yunli or not, it will trigger \"Intuit: Cull\" and remove the \"Parry\" effect. When dealing DMG via \"Intuit: Slash\" or \"Intuit: Cull,\" increases CRIT Rate by #1[i]% and Physical RES PEN by #2[i]%.", + "ParamList": [ + 0.1500000001396984, + 0.20000000018626451 + ] + } + }, + "Skills": { + "122101": { + "Id": 122101, + "Name": "Galespin Summersault", + "Desc": "Deals Physical DMG equal to #1[i]% of Yunli's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122102": { + "Id": 122102, + "Name": "Bladeborne Quake", + "Desc": "Restores HP equal to #3[f1]% of Yunli's ATK plus #4[i]. Deals Physical DMG equal to #1[i]% of Yunli's ATK to a single target enemy and Physical DMG equal to #2[i]% of Yunli's ATK to adjacent targets.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.20000000018626451, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.33000000030733645, + 0.21250000037252903, + 80 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.3600000003352761, + 0.2249999998603016, + 102.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.3900000003632158, + 0.23750000004656613, + 125 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.25000000023283064, + 140 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 0.26000000024214387, + 155 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 0.2700000002514571, + 166.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 0.2800000002607703, + 177.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 0.29000000027008355, + 188.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.3000000002793968, + 200 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.6300000005867332, + 0.31000000028871, + 211.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 0.3200000002980232, + 222.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.6900000006426126, + 0.33000000030733645, + 233.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.7200000006705523, + 0.3400000003166497, + 245 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.3500000003259629, + 256.25000000023283 + ] + } + } + }, + "122103": { + "Id": 122103, + "Name": "Earthbind, Etherbreak", + "Desc": "Consumes #8[i] Energy. Yunli gains Parry and Taunts all enemies, lasting until the end of the next ally's or enemy's turn. Increases the CRIT DMG dealt by Yunli's next Counter by #2[i]%. When triggering the Counter effect from Talent, launches the Counter \"Intuit: Cull\" instead and removes the Parry effect. If no Counter is triggered while Parry is active, Yunli will immediately launch the Counter \"Intuit: Slash\" on a random enemy target.\\n\\n\"Intuit: Slash\": Deals Physical DMG equal to #1[i]% of Yunli's ATK to the target, and deals Physical DMG equal to #6[i]% of Yunli's ATK to adjacent targets.\\n\"Intuit: Cull\": Deals Physical DMG equal to #1[i]% of Yunli's ATK to the target, and deals Physical DMG equal to #6[i]% of Yunli's ATK to adjacent targets. Then, additionally deals #4[i] instances of DMG, each dealing Physical DMG equal to #7[i]% of Yunli's ATK to a random single enemy.\\n\\nWhen Yunli deals DMG via this ability, it's considered as dealing Ultimate DMG.", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3200000002980232, + 0.6000000005587935, + 0, + 6, + 0, + 0.6600000006146729, + 0.43200000026263297, + 120 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.407999999821186, + 0.6400000005960464, + 0, + 6, + 0, + 0.7040000003762543, + 0.46080000093206763, + 120 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.4960000000428408, + 0.6800000006332994, + 0, + 6, + 0, + 0.7480000001378357, + 0.48960000020451844, + 120 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5840000002644956, + 0.7200000006705523, + 0, + 6, + 0, + 0.7920000005979091, + 0.5184000001754612, + 120 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6720000004861504, + 0.7600000007078052, + 0, + 6, + 0, + 0.8360000003594905, + 0.5472000001464039, + 120 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.7600000007078052, + 0.8000000007450581, + 0, + 6, + 0, + 0.8800000008195639, + 0.5760000001173466, + 120 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.8700000008102506, + 0.8500000007916242, + 0, + 6, + 0, + 0.9350000005215406, + 0.612000000430271, + 120 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9800000009126961, + 0.9000000008381903, + 0, + 6, + 0, + 0.9900000009220093, + 0.6480000000447035, + 120 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.090000000083819, + 0.9500000008847564, + 0, + 6, + 0, + 1.0449999996926636, + 0.6840000003576279, + 120 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645, + 1, + 0, + 6, + 0, + 1.1000000000931323, + 0.7200000006705523, + 120 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.2879999997094274, + 1.040000000037253, + 0, + 6, + 0, + 1.1439999998547137, + 0.748800000641495, + 120 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.375999999931082, + 1.0800000000745058, + 0, + 6, + 0, + 1.187999999616295, + 0.7776000006124377, + 120 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.464000000152737, + 1.1200000001117587, + 0, + 6, + 0, + 1.2320000000763685, + 0.8064000005833805, + 120 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5520000003743917, + 1.1600000001490116, + 0, + 6, + 0, + 1.2759999998379499, + 0.8352000005543232, + 120 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6400000005960464, + 1.2000000001862645, + 0, + 6, + 0, + 1.3200000002980232, + 0.8640000005252659, + 120 + ] + } + } + }, + "122104": { + "Id": 122104, + "Name": "Flashforge", + "Desc": "When Yunli gets attacked by an enemy target, additionally regenerates #3[i] Energy and immediately launches a Counter on the attacker, dealing Physical DMG equal to #1[i]% of Yunli's ATK to the attacker and Physical DMG equal to #2[i]% of Yunli's ATK to adjacent targets.\\nIf there is no immediate target to Counter, then Counters a random enemy target instead.", + "Type": null, + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 15 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.33000000030733645, + 15 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.3600000003352761, + 15 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.3900000003632158, + 15 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 15 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 15 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 15 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 15 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 15 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 15 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.6300000005867332, + 15 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 15 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.6900000006426126, + 15 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.7200000006705523, + 15 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 15 + ] + } + } + }, + "122106": { + "Id": 122106, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122107": { + "Id": 122107, + "Name": "Posterior Precedence", + "Desc": "This unit gains the Ward effect, lasting for #2[i] seconds. During this time, upon entering combat by either attacking enemies or receiving an attack, immediately casts \"Intuit: Cull\" on a random enemy, and increases the DMG dealt by this attack by #1[i]%.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Maze.png", + "LevelUpSkillID": [ + 122107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221101, + "PointName": "Fiery Wheel", + "PointDesc": "After each use of \"Intuit: Slash,\" the next \"Intuit: Slash\" will be replaced by \"Intuit: Cull.\"", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1221102, + "PointName": "Demon Quell", + "PointDesc": "While in the \"Parry\" state, resists Crowd Control debuffs received and reduces DMG received by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1221103, + "PointName": "True Sunder", + "PointDesc": "When using a Counter, increases Yunli's ATK by #1[i]%, lasting for 1 turn.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1221101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1221202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221204, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1221203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1221102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1221205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1221206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221208, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1221103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1221208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1221208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1221, + "Set4IDList": [ + 120, + 117, + 105 + ], + "Set2IDList": [ + 315, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 337, + 283 + ] + } + }, + "1222": { + "Name": "Lingsha", + "Desc": "The new Cauldron Master of the Xianzhou Luofu's Alchemy Commission is one perceptive and intelligent Vidyadhara healer.\\nWith a keen sense of smell, she diagnoses ailments and calms minds with aromatic therapy.\\nAdept at navigating complex social relationships, she can remain impeccably composed even when turmoil rages within.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "lingsha", + "SPNeed": 110, + "BaseType": "Priest", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 122201, + "Name": "Bloom on Vileward Bouquet", + "Desc": "Lingsha's Weakness Break Efficiency increases by #2[i]%. When an enemy unit's Weakness is Broken, reduces their DEF by #1[i]%.", + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + }, + "2": { + "Id": 122202, + "Name": "Leisure in Carmine Smokeveil", + "Desc": "When using Ultimate, increases all allies' Break Effect by #1[i]%, lasting for #2[i] turn(s).", + "ParamList": [ + 0.40000000037252903, + 3 + ] + }, + "3": { + "Id": 122203, + "Name": "Shine of Floral Wick", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 122204, + "Name": "Redolence from Canopied Banquet", + "Desc": "When Fuyuan takes action, restores HP equal to #1[i]% of Lingsha's ATK for the ally target whose current HP is the lowest.", + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Id": 122205, + "Name": "Poise Atop Twists and Turns", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 122206, + "Name": "Arcadia Under Deep Seclusion", + "Desc": "While \"Fuyuan\" is on the field, reduces all enemies' All-Type RES by #1[i]%. When \"Fuyuan\" attacks, additionally deals #2[i] instance(s) of DMG, with each instance dealing Fire DMG equal to #3[i]% of Lingsha's ATK and #4[i] Toughness Reduction to one random enemy. This prioritizes targets with both Toughness greater than 0 and Fire Weakness.", + "ParamList": [ + 0.20000000018626451, + 4, + 0.5000000004656613, + 5 + ] + } + }, + "Skills": { + "122201": { + "Id": 122201, + "Name": "Votive Incense", + "Desc": "Deals Fire DMG equal to #1[i]% of Lingsha's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122202": { + "Id": 122202, + "Name": "Smoke and Splendor", + "Desc": "Deals Fire DMG equal to #1[i]% of Lingsha's ATK to all enemies and at the same time, restores HP equal to #2[f1]% of Lingsha's ATK plus #3[i] for all allies. Fuyuan's action advances by #4[i]%.", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.10000000009313226, + 105, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 0.1049999997485429, + 168, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 0.11000000010244548, + 215.25000000023283, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 0.11499999975785613, + 262.50000000046566, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 0.12000000011175871, + 294, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.12399999983608723, + 325.50000000046566, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0.12799999956041574, + 349.12499999976717, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 0.1319999999832362, + 372.7500000006985, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 0.1359999997075647, + 396.375, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 420, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 0.14399999985471368, + 443.62500000023283, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 0.1479999995790422, + 467.25000000023283, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 0.15200000000186265, + 490.87500000046566, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 0.15599999972619116, + 514.5000000004657, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.1600000001490116, + 538.1249999997672, + 0.20000000018626451 + ] + } + } + }, + "122203": { + "Id": 122203, + "Name": "Dripping Mistscape", + "Desc": "Inflicts \"Befog\" on all enemies. While in \"Befog,\" targets receive #4[i]% increased Break DMG, lasting for #5[i] turn(s).\\nDeals Fire DMG equal to #1[i]% of Lingsha's ATK to all enemies, and at the same time restores HP equal to #2[f1]% of Lingsha's ATK plus #3[i] for all allies. Fuyuan's action advances by #6[i]%.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.0800000000745058, + 90, + 0.1500000001396984, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.08499999972991645, + 144, + 0.1600000001490116, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.09000000008381903, + 184.50000000046566, + 0.17000000015832484, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.09499999973922968, + 225, + 0.18000000016763806, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.10000000009313226, + 252, + 0.1900000001769513, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.10399999981746078, + 279, + 0.20000000018626451, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.1079999995417893, + 299.25000000023283, + 0.21250000037252903, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.11199999996460974, + 319.50000000046566, + 0.2249999998603016, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.11599999968893826, + 339.7500000006985, + 0.23750000004656613, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.12000000011175871, + 360, + 0.25000000023283064, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.12399999983608723, + 380.25000000023283, + 0.26000000024214387, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.12799999956041574, + 400.50000000046566, + 0.2700000002514571, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.1319999999832362, + 420.7500000006985, + 0.2800000002607703, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.1359999997075647, + 441, + 0.29000000027008355, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.14000000013038516, + 461.25000000023283, + 0.3000000002793968, + 2, + 1 + ] + } + } + }, + "122204": { + "Id": 122204, + "Name": "Mistdance Manifest", + "Desc": "When using Skill, summons Fuyuan, with an initial SPD of #1[i] and an initial action count of #7[i].\\nWhen taking action, Fuyuan launches Follow-up ATK, dealing Fire DMG equal to #2[i]% of Lingsha's ATK to all enemies. Additionally deals Fire DMG equal to #8[i]% of Lingsha's ATK to a single random enemy, and this DMG prioritizes targets that have both Toughness greater than 0 and Fire Weakness. Dispels #6[i] debuff(s) from all allies and restores HP equal to #3[f1]% of Lingsha's ATK plus #4[i].\\nFuyuan's action count can accumulate up to #5[i]. When the action count reaches 0 or when Lingsha is knocked down, Fuyuan disappears.\\nWhile Fuyuan is on the field, using Skill can increase Fuyuan's action count by #7[i].", + "Type": null, + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 90, + 0.375, + 0.0800000000745058, + 90, + 5, + 1, + 3, + 0.375 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 90, + 0.41250000055879354, + 0.08499999972991645, + 144, + 5, + 1, + 3, + 0.41250000055879354 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 90, + 0.45000000041909516, + 0.09000000008381903, + 184.50000000046566, + 5, + 1, + 3, + 0.45000000041909516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 90, + 0.4875000002793968, + 0.09499999973922968, + 225, + 5, + 1, + 3, + 0.4875000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 90, + 0.5250000001396984, + 0.10000000009313226, + 252, + 5, + 1, + 3, + 0.5250000001396984 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 90, + 0.5625000006984919, + 0.10399999981746078, + 279, + 5, + 1, + 3, + 0.5625000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 90, + 0.6093750006984919, + 0.1079999995417893, + 299.25000000023283, + 5, + 1, + 3, + 0.6093750006984919 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 90, + 0.6562500006984919, + 0.11199999996460974, + 319.50000000046566, + 5, + 1, + 3, + 0.6562500006984919 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 90, + 0.7031250006984919, + 0.11599999968893826, + 339.7500000006985, + 5, + 1, + 3, + 0.7031250006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 90, + 0.7500000006984919, + 0.12000000011175871, + 360, + 5, + 1, + 3, + 0.7500000006984919 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 90, + 0.7875000005587935, + 0.12399999983608723, + 380.25000000023283, + 5, + 1, + 3, + 0.7875000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 90, + 0.8250000004190952, + 0.12799999956041574, + 400.50000000046566, + 5, + 1, + 3, + 0.8250000004190952 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 90, + 0.8625000009778887, + 0.1319999999832362, + 420.7500000006985, + 5, + 1, + 3, + 0.8625000009778887 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 90, + 0.9000000008381903, + 0.1359999997075647, + 441, + 5, + 1, + 3, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 90, + 0.9375000006984919, + 0.14000000013038516, + 461.25000000023283, + 5, + 1, + 3, + 0.9375000006984919 + ] + } + } + }, + "122206": { + "Id": 122206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122207": { + "Id": 122207, + "Name": "Wisps of Aurora", + "Desc": "After using Technique, immediately summons Fuyuan at the start of the next battle and inflicts \"Befog\" on all enemies, lasting for #1[i] turn(s).", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Maze.png", + "LevelUpSkillID": [ + 122207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064, + 0.10000000009313226, + 0.5000000004656613, + 0.20000000018626451 + ], + "PointID": 1222101, + "PointName": "Vermilion Waft", + "PointDesc": "Increases this unit's ATK or Outgoing Healing by an amount equal to #1[i]%/#2[i]% of Break Effect, up to a maximum increase of #3[i]%/#4[i]% respectively.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1222102, + "PointName": "Sylvan Smoke", + "PointDesc": "When using Basic ATK, additionally regenerates #1[i] Energy.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 2 + ], + "PointID": 1222103, + "PointName": "Ember's Echo", + "PointDesc": "While \"Fuyuan\" is on the field and any ally character takes DMG or consumes HP, if a character in the team has their current HP percentage lower than or equal to #1[i]%, \"Fuyuan\" will immediately launch the Talent's Follow-up ATK against enemies. This does not consume Fuyuan's action count. This effect can trigger again after #2[i] turn(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222201, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1222101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222203, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1222202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222204, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1222203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222205, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1222102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1222205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222207, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1222206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222208, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1222103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1222103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222210, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "Break Effect" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1222, + "Set4IDList": [ + 119, + 111, + 101 + ], + "Set2IDList": [ + 316, + 307, + 302 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 344, + 297 + ] + } + }, + "1223": { + "Name": "Moze", + "Desc": "A Shadow Guard of the Yaoqing, Moze is taciturn and solitary, always acting on his own.\\nAs an expert in intelligence services and other operations that must remain covert, Moze rarely shows himself before others. The moment he reveals his blade usually spells doom for his enemies.\\nHe commands a vast wealth of assassination techniques, coupled with an extraordinary obsession for orderliness and cleanliness.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "moze", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 122301, + "Name": "Oathkeeper", + "Desc": "After entering battle, Moze regenerates #2[i] Energy. Each time the Additional DMG from his Talent is triggered, Moze regenerates #1[i] Energy.", + "ParamList": [ + 2, + 20 + ] + }, + "2": { + "Id": 122302, + "Name": "Wrathbearer", + "Desc": "When all allies deal DMG to the enemy target marked as \"Prey,\" increases CRIT DMG by #1[i]%.", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 122303, + "Name": "Deathchaser", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 122304, + "Name": "Heathprowler", + "Desc": "When using Ultimate, increases the DMG dealt by Moze by #1[f1]%, lasting for #2[i] turn(s).", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "5": { + "Id": 122305, + "Name": "Truthbender", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 122306, + "Name": "Faithbinder", + "Desc": "Increases the DMG multiplier of the Talent's Follow-up ATK by #1[i]%.", + "ParamList": [ + 0.25000000023283064 + ] + } + }, + "Skills": { + "122301": { + "Id": 122301, + "Name": "Hurlthorn", + "Desc": "Deals Lightning DMG equal to #1[i]% of Moze's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122302": { + "Id": 122302, + "Name": "Fleetwinged Raid", + "Desc": "Marks a designated single enemy target as \"Prey\" and deals to it Lightning DMG equal to #1[i]% of Moze's ATK, and gains #2[i] points of Charge.\\nWhen there are no other characters on the field that are capable of combat, Moze cannot use his Skill and dispels the enemy's \"Prey\" state.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 9 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 9 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 9 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 9 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 9 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 9 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 9 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 9 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 9 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 9 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 9 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 9 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 9 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 9 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 9 + ] + } + } + }, + "122303": { + "Id": 122303, + "Name": "Dash In, Gash Out", + "Desc": "Deals Lightning DMG equal to #1[i]% of Moze's ATK to a single target enemy, and launches the Talent's Follow-up ATK against this target. If the target is defeated before this Follow-up ATK is used, then launches the Follow-up ATK against a random single enemy instead.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.62000000057742 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.7280000001192093 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.8360000003594905 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9440000005997717 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.0519999999087304 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1600000001490116 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.294999999925494 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4300000004004687 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.5650000001769513 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.808000000193715 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.9160000004339963 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.023999999742955 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.131999999983236 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.2400000002235174 + ] + } + } + }, + "122304": { + "Id": 122304, + "Name": "Cascading Featherblade", + "Desc": "When \"Prey\" exists on the field, Moze will enter the Departed state.\\nAfter allies attack \"Prey,\" Moze will additionally deal 1 instance of Lightning Additional DMG equal to #1[i]% of his ATK and consumes 1 point of Charge. For every #2[i] point(s) of Charge consumed, Moze launches 1 Follow-up ATK to \"Prey,\" dealing Lightning DMG equal to #3[i]% of his ATK. When Charge reaches 0, dispels the target's \"Prey\" state and resets the tally of Charge points required to launch Follow-up ATK. Talent's Follow-up ATK does not consume Charge.", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 3, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 3, + 0.8800000008195639 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 3, + 0.9600000008940697 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 3, + 1.040000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 3, + 1.1200000001117587 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 3, + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 3, + 1.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 3, + 1.400000000372529 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 3, + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 3, + 1.6800000006332994 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 3, + 1.7600000007078052 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 3, + 1.840000000782311 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 3, + 1.9200000008568168 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 3, + 2 + ] + } + } + }, + "122306": { + "Id": 122306, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122307": { + "Id": 122307, + "Name": "Bated Wings", + "Desc": "After using Technique, enters the Stealth state for #1[i] second(s). While in Stealth, Moze is undetectable by enemies. If Moze attacks enemies to enter combat while in Stealth, increases DMG by #2[i]%, lasting for #3[i] turn(s).", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Maze.png", + "LevelUpSkillID": [ + 122307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 1223101, + "PointName": "Nightfeather", + "PointDesc": "After using Talent's Follow-up ATK, recovers #1[i] Skill Point(s). This effect can trigger again after #2[i] turn(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968 + ], + "PointID": 1223102, + "PointName": "Daggerhold", + "PointDesc": "When Moze dispels his Departed state, his action advances by #1[i]%. At the start of each wave, Moze's action advances by #2[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1223103, + "PointName": "Vengewise", + "PointDesc": "When dealing DMG by using Ultimate, it is considered as having launched a Follow-up ATK. The Follow-up ATK DMG taken by the \"Prey\" increases by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223201, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1223101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223203, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1223202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223205, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1223102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223206, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1223205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223207, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1223103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223209, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1223208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223210, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1223208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 110.40000000037253, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 154.56000000052154, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 198.72000000067055, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 242.88000000081956, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 287.04000000003725, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 331.20000000018626, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 375.3600000003353, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1223, + "Set4IDList": [ + 117, + 109, + 120 + ], + "Set2IDList": [ + 315, + 314, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 283 + ] + } + }, + "1224": { + "Name": "March 7th", + "Desc": "March 7th in a Xianzhou-styled outfit. A sword-wielding female martial artist.\\nLearning swordplay from both Yunli and Yanqing, she is eager to create more beautiful memories on the Xianzhou.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "mar7th2", + "SPNeed": 110, + "BaseType": "Rogue", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 122401, + "Name": "My Sword Stirs Starlight", + "Desc": "When Shifu is on the field, increases March 7th's SPD by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 122402, + "Name": "Blade Dances on Waves' Fight", + "Desc": "After \"Shifu\" uses Basic ATK or Skill to attack an enemy target, March 7th immediately launches a Follow-up ATK and deals Imaginary DMG equal to #1[i]% of March 7th's ATK to the primary target of this attack. Additionally, triggers the corresponding effect based on \"Shifu\"'s Path and then gains #3[i] point(s) of Charge. If there is no primary target available to attack, then she attacks a single random enemy instead. This effect can only trigger once per turn.", + "ParamList": [ + 0.6000000005587935, + 5, + 1, + 15 + ] + }, + "3": { + "Id": 122403, + "Name": "Sharp Wit in Martial Might", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 122404, + "Name": "Being Fabulous Never Frights", + "Desc": "At the start of the turn, regenerates #1[i] Energy.", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 122405, + "Name": "Sword Delights, Sugar Blights", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 122406, + "Name": "Me, the Best Girl in Sight", + "Desc": "After using Ultimate, increases the CRIT DMG dealt by the next Enhanced Basic ATK by #1[i]%.", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "122401": { + "Id": 122401, + "Name": "My Sword Zaps Demons", + "Desc": "Deals Imaginary DMG equal to #1[i]% of March 7th's ATK to a single target enemy and gains #2[i] point(s) of Charge.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1 + ] + } + } + }, + "122402": { + "Id": 122402, + "Name": "Master, It's Tea Time!", + "Desc": "Designates a single ally (excluding this unit) as \"Shifu\" and increases \"Shifu\"'s SPD by #1[f1]%. Only the most recent target of March 7th's Skill is considered as \"Shifu.\"\\n\\n\\nWhenever using Basic ATK or dealing 1 hit of Enhanced Basic ATK's DMG, triggers the corresponding effect if \"Shifu\" with the specified Path is present on the field:\\n\\nErudition, Destruction, The Hunt, Remembrance: Deals Additional DMG (DMG Type based on \"Shifu\"'s Combat Type) equal to #2[i]% of March 7th's ATK.\\n\\nHarmony, Nihility, Preservation, Abundance: Increases the Toughness Reduction of this instance of DMG by #3[i]%.", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.10000000009313226, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06399999978020787, + 0.11000000010244548, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.06799999950453639, + 0.12000000011175871, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07199999992735684, + 0.13000000012107193, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07599999965168536, + 0.14000000013038516, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0800000000745058, + 0.1500000001396984, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08499999972991645, + 0.1625000003259629, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09000000008381903, + 0.17499999981373549, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09499999973922968, + 0.1875, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10399999981746078, + 0.21000000019557774, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1079999995417893, + 0.22000000020489097, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11199999996460974, + 0.2300000002142042, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.11599999968893826, + 0.24000000022351742, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12000000011175871, + 0.25000000023283064, + 1 + ] + } + } + }, + "122403": { + "Id": 122403, + "Name": "March 7th, the Apex Heroine", + "Desc": "Deals Imaginary DMG equal to #1[i]% of March 7th's ATK to a single target enemy.\\nIncreases the initial Hits Per Action of the next Enhanced Basic ATK by #2[i] hits and increase the fixed chance of additionally dealing DMG by #3[i]%.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.440000000409782, + 2, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5360000000800937, + 2, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6320000004488975, + 2, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7280000001192093, + 2, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.824000000488013, + 2, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9200000008568168, + 2, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.040000000037253, + 2, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1600000001490116, + 2, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2800000002607703, + 2, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.496000000042841, + 2, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.5920000004116446, + 2, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.6880000000819564, + 2, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.78400000045076, + 2, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.880000000819564, + 2, + 0.20000000018626451 + ] + } + } + }, + "122404": { + "Id": 122404, + "Name": "Master, I've Ascended!", + "Desc": "After Shifu uses an attack or Ultimate, March 7th gains up to 1 point of Charge each time.\\nUpon reaching #1[i] or more points of Charge, March 7th immediately takes action and increases the DMG she deals by #2[i]%. Her Basic ATK gets Enhanced, and her Skill cannot be used. After using Enhanced Basic ATK, consumes #1[i] point(s) of Charge. Charge is capped at #3[i] points.", + "Type": null, + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7, + 0.40000000037252903, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7, + 0.44000000040978193, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 7, + 0.48000000044703484, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 7, + 0.5200000004842877, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7, + 0.5600000005215406, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7, + 0.6000000005587935, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7, + 0.6500000006053597, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 7, + 0.7000000006519258, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 7, + 0.7500000006984919, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 0.8000000007450581, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 7, + 0.840000000782311, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 7, + 0.8800000008195639, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 7, + 0.9200000008568168, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 7, + 0.9600000008940697, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 7, + 1, + 10 + ] + } + } + }, + "122406": { + "Id": 122406, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122407": { + "Id": 122407, + "Name": "Feast in One Go", + "Desc": "If March 7th is on the team, she gains 1 point of Charge at the start of the next battle whenever a teammate uses Technique, up to a max of #1[i] point(s).\\nAfter using Technique, March 7th regenerates #2[i] Energy when the next battle starts.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 30 + ] + } + } + }, + "122408": { + "Id": 122408, + "Name": "Brows Be Smitten, Heart Be Bitten", + "Desc": "Initially, deals #4[i] hits, each causing Imaginary DMG equal to #1[i]% of March 7th's ATK to a single target enemy. Whenever dealing the final hit, there is a #2[i]% fixed chance to deal 1 additional hit of DMG, up to a max of #3[i] additional hit(s). Energy regenerated from using Enhanced Basic ATK does not increase with the number of hits.\\nEnhanced Basic ATK cannot recover Skill Points.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.6000000005587935, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.48000000044703484, + 0.6000000005587935, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5600000005215406, + 0.6000000005587935, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6400000005960464, + 0.6000000005587935, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7200000006705523, + 0.6000000005587935, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8800000008195639, + 0.6000000005587935, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9600000008940697, + 0.6000000005587935, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.040000000037253, + 0.6000000005587935, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1200000001117587, + 0.6000000005587935, + 3, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Maze.png", + "LevelUpSkillID": [ + 122407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1224101, + "PointName": "Swan Soar", + "PointDesc": "When the battle starts, March 7th's action advances by #1[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224102, + "PointName": "Filigree", + "PointDesc": "March 7th can reduce the Toughness of enemies whose Weakness Type is the same as Shifu's Combat Type. When Breaking Weakness, triggers the Imaginary Weakness Break effect.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 0.3600000003352761, + 2 + ], + "PointID": 1224103, + "PointName": "Tide Tamer", + "PointDesc": "After using Enhanced Basic ATK, increases Shifu's CRIT DMG by #1[i]% and Break Effect by #2[i]%, lasting for #3[i] turn(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224202, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1224101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1224202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1224102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224206, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1224205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1224103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224209, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1224208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1224208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1224, + "Set4IDList": [ + 102, + 112, + 117 + ], + "Set2IDList": [ + 309, + 314, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 349, + 292 + ] + } + }, + "1225": { + "Name": "Fugue", + "Desc": "A tactful foxian girl, whose appearance, name, and identity have all been stolen.\\nThe fates have left her a thread of chance at survival, yet the brand of Destruction still writhes with anticipation.\\nThe one in a fugue who has experienced life and death and is given a new life... when would she be able to return home?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "fugue", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 122501, + "Name": "Earthbound I Was, Cloudward I Be", + "Desc": "Ally target with \"Foxian Prayer\" increases their Weakness Break Efficiency by #1[i]%.", + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Id": 122502, + "Name": "Beatitude Dawns for the Worthy", + "Desc": "When an enemy target's Weakness gets broken, Fugue regenerates #1[i] Energy. After using Ultimate, advances the action of all allies by #2[i]%.", + "ParamList": [ + 3, + 0.24000000022351742 + ] + }, + "3": { + "Id": 122503, + "Name": "Verity Weaves Thoughts to Blade", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 122504, + "Name": "Bereft of Form, Which Name to Bear", + "Desc": "Ally target with \"Foxian Prayer\" increases their Break DMG dealt by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 122505, + "Name": "Colored Cloud Rains Fortune", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 122506, + "Name": "Clairvoyance of Boom and Doom", + "Desc": "Increases Fugue's Weakness Break Efficiency by #1[i]%. While Fugue is in the \"Torrid Scorch\" state, \"Foxian Prayer\" takes effect on all allies.", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "122501": { + "Id": 122501, + "Name": "Radiant Streak", + "Desc": "Deals Fire DMG equal to #1[i]% of Fugue's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122502": { + "Id": 122502, + "Name": "Virtue Beckons Bliss", + "Desc": "Grants one designated ally \"Foxian Prayer\". Enters the \"Torrid Scorch\" state, lasting for #1[i] turn(s). The duration reduces by 1 at the start of Fugue's every turn. \"Foxian Prayer\" only takes effect on the most recent target of Fugue's Skill.\\nThe ally target with \"Foxian Prayer\" increases their Break Effect by #2[i]% and can also reduce Toughness even when attacking enemies that don't have the corresponding Weakness Type, with the effect equivalent to #6[i]% of the original Toughness Reduction value. This cannot stack with other Toughness Reduction effects that also ignore Weakness Type.\\nWhile in the \"Torrid Scorch\" state, Fugue enhances her Basic ATK. Every time an ally target with \"Foxian Prayer\" attacks, Fugue has a #3[i]% base chance to reduce the attacked enemy target's DEF by #4[i]%, lasting for #5[i] turn(s).", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.1500000001396984, + 1, + 0.0800000000745058, + 2, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.16499999980442226, + 1, + 0.09000000008381903, + 2, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.18000000016763806, + 1, + 0.10000000009313226, + 2, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.19499999983236194, + 1, + 0.11000000010244548, + 2, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.21000000019557774, + 1, + 0.12000000011175871, + 2, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.2249999998603016, + 1, + 0.13000000012107193, + 2, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.24375000083819032, + 1, + 0.14250000030733645, + 2, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.26250000041909516, + 1, + 0.15499999979510903, + 2, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.28125000069849193, + 1, + 0.16749999998137355, + 2, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.3000000002793968, + 1, + 0.18000000016763806, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.31499999994412065, + 1, + 0.1900000001769513, + 2, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.33000000030733645, + 1, + 0.20000000018626451, + 2, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.3449999999720603, + 1, + 0.21000000019557774, + 2, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.3600000003352761, + 1, + 0.22000000020489097, + 2, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.375, + 1, + 0.2300000002142042, + 2, + 0.5000000004656613 + ] + } + } + }, + "122503": { + "Id": 122503, + "Name": "Solar Splendor Shines Upon All", + "Desc": "Deals Fire DMG equal to #1[i]% of Fugue's ATK to all enemies. This attack ignores Weakness Type to reduce all enemies' Toughness. And when breaking Weakness, triggers the Fire Weakness Break effect.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613 + ] + } + } + }, + "122504": { + "Id": 122504, + "Name": "Fortune Follows Where Virtue Spreads", + "Desc": "While Fugue is on the field, enemy targets will get additionally afflicted with \"Cloudflame Luster,\" equal to #2[i]% of their Max Toughness. When the initial Toughness is reduced to 0, \"Cloudflame Luster\" can continue to be reduced. When \"Cloudflame Luster\" is reduced to 0, the enemy will receive Weakness Break DMG again.\\nWhile Fugue is on the field and after allies attack Weakness Broken enemy targets, converts the Toughness Reduction of this attack into 1 instance of #1[i]% Super Break DMG.", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 0.40000000037252903 + ] + } + } + }, + "122506": { + "Id": 122506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122507": { + "Id": 122507, + "Name": "Percipient Shine", + "Desc": "After using Technique, inflicts Daze on enemies within a certain area, lasting for #1[i] second(s). While Dazed, enemies will not actively attack ally targets.\\nAfter entering battle via actively attacking Dazed enemies, Fugue's action advances by #4[i]%, with a #2[i]% base chance to inflict each enemy target with the same DEF Reduction state as that applied by Fugue's Skill, lasting for #3[i] turn(s).", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 2, + 0.40000000037252903 + ] + } + } + }, + "122508": { + "Id": 122508, + "Name": "Fiery Caress", + "Desc": "Deals Fire DMG equal to #1[i]% of Fugue's ATK to one designated enemy and Fire DMG equal to #2[i]% of Fugue's ATK to adjacent targets.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Maze.png", + "LevelUpSkillID": [ + 122507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1225101, + "PointName": "Verdantia Renaissance", + "PointDesc": "After ally targets break weakness, additionally delays the action of the enemy target by #1[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 1 + ], + "PointID": 1225102, + "PointName": "Sylvan Enigma", + "PointDesc": "Increases this unit's Break Effect by #1[i]%. After using Skill for the first time, immediately recovers #2[i] Skill Point(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.060000000055879354, + 2, + 2, + 2.2000000001862645, + 0.12000000011175871 + ], + "PointID": 1225103, + "PointName": "Phecda Primordia", + "PointDesc": "When an enemy target's Weakness gets broken, increases teammates' (i.e., excluding this unit) Break Effect by #1[i]%. If Fugue's Break Effect is #4[i]% or higher, the Break Effect increase is boosted by an additional #5[i]%, lasting for #2[i] turn(s). This effect can stack up to #3[i] time(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225201, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225202, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1225101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225203, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1225202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1225203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225205, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1225102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225206, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1225205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225207, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1225206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1225103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225209, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1225103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "Break Effect" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225210, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1225201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "SPD" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 75.90000000083819, + "DefenceAdd": 3.7950000003911555, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 106.26000000024214, + "DefenceAdd": 3.7950000003911555, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 136.62000000057742, + "DefenceAdd": 3.7950000003911555, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 166.9800000009127, + "DefenceAdd": 3.7950000003911555, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 197.34000000031665, + "DefenceAdd": 3.7950000003911555, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 227.70000000065193, + "DefenceAdd": 3.7950000003911555, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 258.0600000000559, + "DefenceAdd": 3.7950000003911555, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1225, + "Set4IDList": [ + 119, + 111, + 118 + ], + "Set2IDList": [ + 316, + 308, + 307 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 271, + 213 + ] + } + }, + "1301": { + "Name": "Gallagher", + "Desc": "A security officer of the Bloodhound Family at Penacony. He is always courteous toward visiting guests but keeps his vigilance about him. He seems to carry a weight of a complicated past, yet he never voluntarily divulges any details.", + "CharaInfo": { + "Camp": "Penacony", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "gallagher", + "SPNeed": 110, + "BaseType": "Priest", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 130101, + "Name": "Salty Dog", + "Desc": "When entering the battle, Gallagher regenerates #1[i] Energy and increases Effect RES by #2[i]%.", + "ParamList": [ + 20, + 0.5000000004656613 + ] + }, + "2": { + "Id": 130102, + "Name": "Lion's Tail", + "Desc": "When using the Skill, dispels #1[i] debuff(s) from the designated ally. At the same time, increases their Effect RES by #2[i]% for #3[i] turn(s).", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 130103, + "Name": "Corpse Reviver", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 130104, + "Name": "Last Word", + "Desc": "Extends the duration of the Besotted state inflicted by Gallagher's Ultimate by #1[i] turn(s).", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 130105, + "Name": "Death in the Afternoon", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 130106, + "Name": "Blood and Sand", + "Desc": "Increases Gallagher's Break Effect by #1[i]% and Weakness Break Efficiency by #2[i]%.", + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + } + }, + "Skills": { + "130101": { + "Id": 130101, + "Name": "Corkage Fee", + "Desc": "Deals Fire DMG equal to #1[i]% of Gallagher's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130102": { + "Id": 130102, + "Name": "Special Brew", + "Desc": "Immediately heals a target ally for #1[i] HP.", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 200 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 340 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 480 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 676 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 830 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1138 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1292 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1446 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1600 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1684 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1768 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1852 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1936 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2020 + ] + } + } + }, + "130103": { + "Id": 130103, + "Name": "Champagne Etiquette", + "Desc": "Inflicts Besotted on all enemies, lasting for #2[i] turn(s). At the same time, deals Fire DMG equal to #1[i]% of Gallagher's ATK to all enemies, and enhances his next Basic ATK to Nectar Blitz.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 2 + ] + } + } + }, + "130104": { + "Id": 130104, + "Name": "Tipsy Tussle", + "Desc": "The Besotted state makes targets receive #1[f1]% more Break DMG. Every time a Besotted target gets attacked by an ally, the attacking ally's HP is restored by #2[i].", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 80 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06599999964237213, + 136 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07199999992735684, + 192 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07799999951384962, + 270.40000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08399999979883432, + 332 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 393.6000000005588 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09749999991618097, + 455.20000000018626 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1049999997485429, + 516.8000000007451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11250000027939677, + 578.4000000003725 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.12000000011175871, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12599999969825149, + 673.6000000005588 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1319999999832362, + 707.2000000001863 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.13799999956972897, + 740.8000000007451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.14399999985471368, + 774.4000000003725 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 808 + ] + } + } + }, + "130106": { + "Id": 130106, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130107": { + "Id": 130107, + "Name": "Artisan Elixir", + "Desc": "Immediately attacks the enemy. Upon entering battle, inflicts Besotted on all enemies, lasting for #1[i] turn(s). And deals Fire DMG equal to #2[i]% of Gallagher's ATK to all enemies.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.5000000004656613 + ] + } + } + }, + "130108": { + "Id": 130108, + "Name": "Nectar Blitz", + "Desc": "Deals Fire DMG equal to #1[i]% of Gallagher's ATK to a single target enemy. Reduces the target's ATK by #2[f1]%, lasting for #3[i] turn(s).", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5000000004656613, + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.750000000698492, + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2500000002328306, + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5000000004656613, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.750000000698492, + 0.1600000001490116, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.17000000015832484, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.2500000002328306, + 0.18000000016763806, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.5000000004656613, + 0.1900000001769513, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Maze.png", + "LevelUpSkillID": [ + 130107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ], + "PointID": 1301101, + "PointName": "Novel Concoction", + "PointDesc": "Increases this unit's Outgoing Healing by an amount equal to #1[i]% of Break Effect, up to a maximum Outgoing Healing increase of #2[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301102, + "PointName": "Organic Yeast", + "PointDesc": "After using the Ultimate, immediately advances action for this unit by 100%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301103, + "PointName": "Bottoms Up", + "PointDesc": "When Gallagher uses Nectar Blitz to attack Besotted enemies, the HP Restore effect of his Talent will also apply to teammates for this time.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301201, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301202, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1301101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301203, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1301202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1301203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301205, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1301102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301206, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1301205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301207, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1301206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1301103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301209, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1301103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "Effect RES" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301210, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 72, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 177.6000000005588, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 100.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 248.64000000059605, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 129.6000000005588, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 319.6800000006333, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 158.40000000037253, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 390.72000000067055, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 187.20000000018626, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 461.7600000007078, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 216, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 532.8000000007451, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 244.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 603.8400000007823, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1301, + "Set4IDList": [ + 119, + 111, + 101 + ], + "Set2IDList": [ + 316, + 307, + 302 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "BreakDamageAddedRatioBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 309, + 254 + ] + } + }, + "1302": { + "Name": "Argenti", + "Desc": "A paragon knight of the Knights of Beauty who is piously seeking his missing Aeon, Idrila the Beauty.\\nForthright and candid, he wanders the cosmos espousing the virtues of Idrila's good name.", + "CharaInfo": { + "Camp": "The Knights of Beauty", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "argenti", + "SPNeed": 180, + "BaseType": "Mage", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 130201, + "Name": "A Lacuna in Kingdom of Aesthetics", + "Desc": "Each stack of Apotheosis additionally increases CRIT DMG by #1[i]%.", + "ParamList": [ + 0.0400000000372529 + ] + }, + "2": { + "Id": 130202, + "Name": "Agate's Humility", + "Desc": "If the number of enemies on the field equals to #1[i] or more when the Ultimate is used, ATK increases by #2[i]% for #3[i] turn(s).", + "ParamList": [ + 3, + 0.40000000037252903, + 1 + ] + }, + "3": { + "Id": 130203, + "Name": "Thorny Road's Glory", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 130204, + "Name": "Trumpet's Dedication", + "Desc": "At the start of battle, gains #1[i] stack(s) of Apotheosis and increases the maximum stack limit of the Talent's effect by #2[i].", + "ParamList": [ + 2, + 2 + ] + }, + "5": { + "Id": 130205, + "Name": "Snow, From Somewhere in Cosmos", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 130206, + "Name": "\"Your\" Resplendence", + "Desc": "When using Ultimate, ignores #1[i]% of enemy targets' DEF.", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "130201": { + "Id": 130201, + "Name": "Fleeting Fragrance", + "Desc": "Deals Physical DMG equal to #1[i]% of Argenti's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130202": { + "Id": 130202, + "Name": "Justice, Hereby Blooms", + "Desc": "Deals Physical DMG equal to #1[i]% of Argenti's ATK to all enemies.", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613 + ] + } + } + }, + "130203": { + "Id": 130203, + "Name": "For In This Garden, Supreme Beauty Bestows", + "Desc": "Consumes #2[i] Energy and deals Physical DMG equal to #1[i]% of Argenti's ATK to all enemies.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 90 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 90 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 90 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 90 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 90 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 90 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 90 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 90 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 90 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 90 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 90 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 90 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 90 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 90 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 90 + ] + } + } + }, + "130204": { + "Id": 130204, + "Name": "Sublime Object", + "Desc": "For every enemy hit when Argenti uses his Basic Attack, Skill, or Ultimate, regenerates Argenti's Energy by #1[i], and grants him a stack of Apotheosis, increasing his CRIT Rate by #2[f1]%. This effect can stack up to #3[i] time(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.010000000009313226, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.011500000255182385, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.012999999802559614, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.014500000048428774, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.015999999595806003, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.017499999841675162, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.019375000149011612, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.02125000045634806, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.02312500006519258, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.0249999996740371, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.02649999991990626, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.027999999467283487, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.029499999713152647, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.030999999959021807, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.032500000204890966, + 10 + ] + } + } + }, + "130206": { + "Id": 130206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130207": { + "Id": 130207, + "Name": "Manifesto of Purest Virtue", + "Desc": "After using the Technique, enemies in a set area are inflicted with Daze for #1[i] second(s). Dazed enemies will not actively attack the team.\\nWhen attacking a Dazed enemy to enter combat, deals Physical DMG to all enemies equal to #2[i]% of Argenti's ATK and regenerates his Energy by #3[i].", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.8000000007450581, + 15 + ] + } + } + }, + "130214": { + "Id": 130214, + "Name": "Merit Bestowed in \"My\" Garden", + "Desc": "Consumes #4[i] Energy and deals Physical DMG equal to #1[i]% of Argenti's ATK to all enemies. And further deals DMG for #2[i] extra time(s), with each time dealing Physical DMG equal to #3[i]% of Argenti's ATK to a random enemy.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.6800000006332994, + 6, + 0.5700000005308539, + 180 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.792000000597909, + 6, + 0.6080000000074506, + 180 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9040000005625188, + 6, + 0.6460000001825392, + 180 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.015999999595806, + 6, + 0.6840000003576279, + 180 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1279999995604157, + 6, + 0.7220000005327165, + 180 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2400000002235174, + 6, + 0.7600000007078052, + 180 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3800000003539026, + 6, + 0.80750000057742, + 180 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.5200000004842877, + 6, + 0.8550000004470348, + 180 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.660000000614673, + 6, + 0.9025000010151416, + 180 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 6, + 0.9500000008847564, + 180 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.912000000709668, + 6, + 0.9880000003613532, + 180 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.023999999742955, + 6, + 1.0259999996051192, + 180 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.1359999997075647, + 6, + 1.0639999997802079, + 180 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.2479999996721745, + 6, + 1.1019999999552965, + 180 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.360000000335276, + 6, + 1.1400000001303852, + 180 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Maze.png", + "LevelUpSkillID": [ + 130207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1302101, + "PointName": "Piety", + "PointDesc": "At the start of a turn, immediately gains #1[i] stack(s) of Apotheosis.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1302102, + "PointName": "Generosity", + "PointDesc": "When enemy targets enter battle, immediately regenerates #1[i] Energy for self.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ], + "PointID": 1302103, + "PointName": "Courage", + "PointDesc": "Deals #2[i]% more DMG to enemies whose HP percentage is #1[i]% or less.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302202, + "PointName": "DMG Boost: Physical", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1302101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.031999999890103936, + "Name": "Physical DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1302202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1302202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1302102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302206, + "PointName": "DMG Boost: Physical", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1302205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.04799999948590994, + "Name": "Physical DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1302205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1302103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302209, + "PointName": "DMG Boost: Physical", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1302103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.06399999978020787, + "Name": "Physical DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 100.32000000029802, + "AttackAdd": 5.015999999595806, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 140.44799999985844, + "AttackAdd": 5.015999999595806, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 180.57600000011735, + "AttackAdd": 5.015999999595806, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 220.70400000037625, + "AttackAdd": 5.015999999595806, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 260.83200000063516, + "AttackAdd": 5.015999999595806, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 300.96000000089407, + "AttackAdd": 5.015999999595806, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 341.08799999952316, + "AttackAdd": 5.015999999595806, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1302, + "Set4IDList": [ + 122, + 105, + 108 + ], + "Set2IDList": [ + 306, + 313, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1303": { + "Name": "Ruan Mei", + "Desc": "A member of the Genius Society and an expert in life sciences. She teamed up with Herta and others to develop the Simulated Universe.", + "CharaInfo": { + "Camp": "Herta Space Station", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "ruanmei", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 130301, + "Name": "Neuronic Embroidery", + "Desc": "While the Ultimate's Zone is deployed, the DMG dealt by all allies ignores #1[i]% of the target's DEF.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 130302, + "Name": "Reedside Promenade", + "Desc": "While Ruan Mei is on the field, all allies increase their ATK by #1[i]% when dealing DMG to enemies that are Weakness Broken.", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 130303, + "Name": "Viridescent Pirouette", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 130304, + "Name": "Chatoyant Éclat", + "Desc": "When an enemy target's Weakness is Broken, Ruan Mei's Break Effect increases by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 1, + 3 + ] + }, + "5": { + "Id": 130305, + "Name": "Languid Barrette", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 130306, + "Name": "Sash Cascade", + "Desc": "Extends the duration of the Ultimate's Zone by #1[i] turn(s). The Talent's Break DMG multiplier additionally increases by #2[i]%.", + "ParamList": [ + 1, + 2 + ] + } + }, + "Skills": { + "130301": { + "Id": 130301, + "Name": "Threading Fragrance", + "Desc": "Deals Ice DMG equal to #1[i]% of Ruan Mei's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130302": { + "Id": 130302, + "Name": "String Sings Slow Swirls", + "Desc": "After using her Skill, Ruan Mei gains Overtone, lasting for #3[i] turn(s). This duration decreases by 1 at the start of Ruan Mei's every turn. When Ruan Mei has Overtone, all allies' DMG increases by #1[f1]% and Weakness Break Efficiency increases by #2[i]%.", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.17599999974481761, + 0.5000000004656613, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.19200000003911555, + 0.5000000004656613, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.20799999963492155, + 0.5000000004656613, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.22399999992921948, + 0.5000000004656613, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3200000002980232, + 0.5000000004656613, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3359999998938292, + 0.5000000004656613, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.35200000018812716, + 0.5000000004656613, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.36799999978393316, + 0.5000000004656613, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3840000000782311, + 0.5000000004656613, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 3 + ] + } + } + }, + "130303": { + "Id": 130303, + "Name": "Petals to Stream, Repose in Dream", + "Desc": "Ruan Mei deploys a Zone that lasts for #2[i] turns. The Zone's duration decreases by 1 at the start of her turn.\\nWhile inside the Zone, all allies' All-Type RES PEN increases by #1[f1]% and their attacks apply Thanatoplum Rebloom to the enemies hit.\\nWhen these enemies attempt to recover from Weakness Break, Thanatoplum Rebloom is triggered, extending the duration of their Weakness Break, delaying their action by an amount equal to #3[i]% of Ruan Mei's Break Effect plus #4[i]%, and dealing Break DMG equal to #5[i]% of Ruan Mei's Ice Break DMG.\\nEnemy targets cannot have Thanatoplum Rebloom re-applied to them until they recover from Weakness Break.", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1600000001490116, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.17000000015832484, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3400000003166497 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.18000000016763806, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3600000003352761 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1900000001769513, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3800000003539026 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21250000037252903, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.42500000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2249999998603016, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.45000000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23750000004656613, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.47500000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.26000000024214387, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2700000002514571, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5400000005029142 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2800000002607703, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5600000005215406 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.29000000027008355, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5800000005401671 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.6000000005587935 + ] + } + } + }, + "130304": { + "Id": 130304, + "Name": "Somatotypical Helix", + "Desc": "Increases SPD by #1[f1]% for all teammates (i.e., excluding this unit). When allies Break an enemy target's Weakness, Ruan Mei deals to this enemy target Break DMG equal to #2[f1]% of her Ice Break DMG.", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0800000000745058, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.08199999993667006, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.08599999966099858, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08799999952316284, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09250000026077032, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09499999973922968, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09749999991618097, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10199999995529652, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.10399999981746078, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.10599999967962503, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1079999995417893, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.11000000010244548, + 1.5000000004656613 + ] + } + } + }, + "130306": { + "Id": 130306, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130307": { + "Id": 130307, + "Name": "Silken Serenade", + "Desc": "After using the Technique, gains Silken Serenade. At the start of the next battle, automatically triggers the Skill for #1[i] time(s) without consuming Skill Points.\\nIn Simulated Universe or Divergent Universe, when Ruan Mei has Silken Serenade, the team actively attacking enemies will always be regarded as attacking their Weakness to enter battle, and this attack can reduce all enemies' Toughness regardless of Weakness types. When breaking Weakness, triggers Weakness Break Effect corresponding to the attacker's Type. For every Blessing in possession (up to a max of #4[i] Blessings will be taken into account), additionally increases the Toughness Reduction of this attack by #2[i]%. After breaking an enemy target's Weakness, additionally deals to the enemy target Break DMG equal to #3[i]% of Ruan Mei's Ice Break DMG.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 1, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Maze.png", + "LevelUpSkillID": [ + 130307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1303101, + "PointName": "Inert Respiration", + "PointDesc": "Increases Break Effect by #1[i]% for all allies.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1303102, + "PointName": "Days Wane, Thoughts Wax", + "PointDesc": "Ruan Mei regenerates #1[i] Energy at the start of her turn.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.2000000001862645, + 0.10000000009313226, + 0.060000000055879354, + 0.3600000003352761 + ], + "PointID": 1303103, + "PointName": "Candle Lights on Still Waters", + "PointDesc": "In battle, for every #2[i]% of Ruan Mei's Break Effect that exceeds #1[i]%, her Skill additionally increases allies' DMG by #3[i]%, up to a maximum of #4[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303201, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303202, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1303101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303203, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1303202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303204, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1303201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303205, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1303102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303206, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1303205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303207, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1303201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303208, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1303103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303209, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1303208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303210, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1303208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "Break Effect" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1303, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 312, + 308 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 241, + 187 + ] + } + }, + "1304": { + "Name": "Aventurine", + "Desc": "A high-ranking executive of the IPC's Strategic Investment Department.\\nA risk-taker, his constant smile makes it difficult for people to discern his true feelings.", + "CharaInfo": { + "Camp": "Interastral Peace Corporation", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "aventurine", + "SPNeed": 110, + "BaseType": "Knight", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 130401, + "Name": "Prisoner's Dilemma", + "Desc": "Increases CRIT DMG by #1[i]% for ally targets with Fortified Wager. After using the Ultimate, provides all allies with a Fortified Wager shield, whose Shield Effect is equal to #2[i]% of the one provided by the Skill, lasting for #3[i] turn(s).", + "ParamList": [ + 0.20000000018626451, + 1, + 3 + ] + }, + "2": { + "Id": 130402, + "Name": "Bounded Rationality", + "Desc": "When using the Basic ATK, reduces the target's All-Type RES by #2[i]% for #3[i] turn(s).", + "ParamList": [ + 1.2000000001862645, + 0.12000000011175871, + 3 + ] + }, + "3": { + "Id": 130403, + "Name": "Droprate Maxing", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 130404, + "Name": "Unexpected Hanging Paradox", + "Desc": "When triggering his Talent's Follow-up ATK, first increases Aventurine's DEF by #1[i]% for #2[i] turn(s), and additionally increases the Hits Per Action for his talent's Follow-up ATK by #3[i].", + "ParamList": [ + 0.40000000037252903, + 2, + 3 + ] + }, + "5": { + "Id": 130405, + "Name": "Ambiguity Aversion", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 130406, + "Name": "Stag Hunt Game", + "Desc": "For every teammate that holds a Shield, the DMG dealt by Aventurine increases by #1[i]%, up to a maximum of #2[i]%.", + "ParamList": [ + 0.5000000004656613, + 1.5000000004656613 + ] + } + }, + "Skills": { + "130401": { + "Id": 130401, + "Name": "Straight Bet", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Aventurine's DEF to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130402": { + "Id": 130402, + "Name": "Cornerstone Deluxe", + "Desc": "Provides all allies with a Fortified Wager shield that can block DMG equal to #1[f1]% of Aventurine's DEF plus #2[i], lasting for #3[i] turn(s). When Fortified Wager is gained repeatedly, the Shield Effect can stack, up to #4[i]% of the current Shield Effect provided by the Skill.", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1600000001490116, + 80, + 3, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.17000000015832484, + 128, + 3, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 164, + 3, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1900000001769513, + 200, + 3, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.20000000018626451, + 224, + 3, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20799999963492155, + 248, + 3, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21599999978207052, + 266, + 3, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.22399999992921948, + 284, + 3, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23200000007636845, + 302, + 3, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 320, + 3, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24799999967217445, + 338, + 3, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2559999998193234, + 356, + 3, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2639999999664724, + 374, + 3, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27200000011362135, + 392, + 3, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2800000002607703, + 410, + 3, + 2 + ] + } + } + }, + "130403": { + "Id": 130403, + "Name": "Roulette Shark", + "Desc": "Randomly gains 1 to #1[i] points of Blind Bet. Then, inflicts Unnerved on a single target enemy for #4[i] turn(s) and deals Imaginary DMG equal to #2[i]% of Aventurine's DEF to the single target enemy. When an ally hits an Unnerved enemy target, the CRIT DMG dealt increases by #3[f1]%.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7, + 1.62000000057742, + 0.09000000008381903, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7, + 1.7280000001192093, + 0.09599999967031181, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 7, + 1.8360000003594905, + 0.10199999995529652, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 7, + 1.9440000005997717, + 0.1079999995417893, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7, + 2.0519999999087304, + 0.113999999826774, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7, + 2.1600000001490116, + 0.12000000011175871, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7, + 2.294999999925494, + 0.12749999994412065, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 7, + 2.4300000004004687, + 0.13499999977648258, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 7, + 2.5650000001769513, + 0.14250000030733645, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 2.700000000651926, + 0.1500000001396984, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 7, + 2.808000000193715, + 0.15599999972619116, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 7, + 2.9160000004339963, + 0.16200000001117587, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 7, + 3.023999999742955, + 0.16799999959766865, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 7, + 3.131999999983236, + 0.17399999988265336, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 7, + 3.2400000002235174, + 0.18000000016763806, + 3 + ] + } + } + }, + "130404": { + "Id": 130404, + "Name": "Shot Loaded Right", + "Desc": "For any single ally with Fortified Wager, their Effect RES increases by #4[f1]%, and when they get attacked, Aventurine gains 1 point of Blind Bet. When Aventurine has Fortified Wager, he can resist Crowd Control debuffs. This effect can trigger again after #5[i] turn(s). Aventurine additionally gains #1[i] point(s) of Blind Bet after getting attacked. Upon reaching 7 points of Blind Bet, Aventurine consumes the 7 points to launch a #2[i]-hit Follow-up ATK, with each hit dealing Imaginary DMG equal to #3[i]% of Aventurine's DEF to a single random enemy. Blind Bet is capped at 10 points.", + "Type": null, + "Tag": "Bounce", + "SPBase": 1, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 10, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 7, + 0.12499999976716936, + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 7, + 0.13749999995343387, + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 7, + 0.1500000001396984, + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 7, + 0.1625000003259629, + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 7, + 0.17499999981373549, + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 7, + 0.1875, + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 7, + 0.20312500023283064, + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 7, + 0.2187500004656613, + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 7, + 0.23437500069849193, + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 7, + 0.25000000023283064, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 7, + 0.26250000041909516, + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 7, + 0.27499999990686774, + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 7, + 0.28750000009313226, + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 7, + 0.3000000002793968, + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 7, + 0.3125000004656613, + 0.6250000002328306, + 2 + ] + } + } + }, + "130406": { + "Id": 130406, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130407": { + "Id": 130407, + "Name": "The Red or the Black", + "Desc": "After using the Technique, 1 of the following effects will be granted:\\nThere is a chance for DEF to increase by #1[i]%.\\nThere is a high chance for DEF to increase by #2[i]%.\\nThere is a small chance for DEF to increase by #3[i]%.\\n\\nWhen this Technique is used repeatedly, the acquired effect with the highest buff value is retained.\\nWhen the next battle starts, increases all allies' DEF by the corresponding value, lasting for #4[i] turn(s).", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 0.6000000005587935, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Maze.png", + "LevelUpSkillID": [ + 130407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.02000000001862645, + 0.48000000044703484, + 1600 + ], + "PointID": 1304101, + "PointName": "Leverage", + "PointDesc": "For every 100 of Aventurine's DEF that exceeds #3[i], increases his own CRIT Rate by #1[i]%, up to a maximum increase of #2[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1304201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 1 + ], + "PointID": 1304102, + "PointName": "Hot Hand", + "PointDesc": "When battle starts, grants all allies a Fortified Wager shield, whose Shield Effect is equal to #2[i]% of the one provided by the Skill, lasting for #1[i] turn(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1304201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.07199999992735684, + 96, + 3, + 0.07199999992735684, + 96 + ], + "PointID": 1304103, + "PointName": "Bingo!", + "PointDesc": "After a teammate with Fortified Wager launches Follow-up ATK, Aventurine accumulates 1 Blind Bet point. This effect can trigger up to #3[i] time(s). Its trigger count resets at the start of Aventurine's turn. After Aventurine launches his Talent's Follow-up ATK, provides all ally targets with a Fortified Wager that can block DMG equal to #1[i]% of Aventurine's DEF plus #2[i], and additionally grants a Fortified Wager that can block DMG equal to #4[i]% of Aventurine's DEF plus #5[i] to the ally with the lowest Shield Effect, lasting for 3 turns.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304201, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304202, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1304101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304203, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1304202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304205, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1304102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304206, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1304205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304207, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1304103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304209, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1304208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304210, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1304208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 4.455000000074506, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 4.455000000074506, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 160.3800000003539, + "DefenceAdd": 4.455000000074506, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 196.02000000001863, + "DefenceAdd": 4.455000000074506, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 231.66000000061467, + "DefenceAdd": 4.455000000074506, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 267.3000000002794, + "DefenceAdd": 4.455000000074506, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 302.94000000087544, + "DefenceAdd": 4.455000000074506, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1304, + "Set4IDList": [ + 103, + 117, + 120 + ], + "Set2IDList": [ + 306, + 304, + 310 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "DefenceAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 301, + 247 + ], + "LocalCriticalChance": 0.48000000044703484 + } + }, + "1305": { + "Name": "Dr. Ratio", + "Desc": "Member of the Intelligentsia Guild.\\nEccentric temperament, sharp-tongued but with an elegant demeanor.\\nThe face under the strange alabaster head sculpture is apparently unexpectedly handsome.", + "CharaInfo": { + "Camp": "Intelligentsia Guild", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "drratio", + "SPNeed": 140, + "BaseType": "Rogue", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 130501, + "Name": "Pride Comes Before a Fall", + "Desc": "The maximum stackable count for the Trace \"Summation\" increases by #1[i]. When a battle begins, immediately obtains #2[i] stacks of Summation. Needs to unlock Summation first.", + "ParamList": [ + 4, + 4 + ] + }, + "2": { + "Id": 130502, + "Name": "The Divine Is in the Details", + "Desc": "When his Talent's Follow-up ATK hits a target, for every debuff the target has, deals Imaginary Additional DMG equal to #1[i]% of Dr. Ratio's ATK. This effect can be triggered for a maximum of #2[i] time(s) during each Follow-up ATK.", + "ParamList": [ + 0.20000000018626451, + 4 + ] + }, + "3": { + "Id": 130503, + "Name": "Know Thyself", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 130504, + "Name": "Ignorance Is Blight", + "Desc": "When triggering the Talent, additionally regenerates #1[i] Energy for Dr. Ratio.", + "ParamList": [ + 15 + ] + }, + "5": { + "Id": 130505, + "Name": "Sic Itur Ad Astra", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 130506, + "Name": "Vincit Omnia Veritas", + "Desc": "Additionally increases the trigger count for \"Wiseman's Folly\" by #1[i]. The DMG dealt by the Talent's Follow-up ATK increases by #2[i]%.", + "ParamList": [ + 1, + 0.5000000004656613 + ] + } + }, + "Skills": { + "130501": { + "Id": 130501, + "Name": "Mind is Might", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Dr. Ratio's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130502": { + "Id": 130502, + "Name": "Intellectual Midwifery", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Dr. Ratio's ATK to a single target enemy.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613 + ] + } + } + }, + "130503": { + "Id": 130503, + "Name": "Syllogistic Paradox", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Dr. Ratio's ATK to a single target enemy and applies Wiseman's Folly. When Dr. Ratio's teammates attack a target afflicted with Wiseman's Folly, Dr. Ratio launches 1 instance of his Talent's Follow-up ATK against this target.\\nWiseman's Folly can be triggered for up to #2[i] times and only affects the most recent target of Dr. Ratio's Ultimate. This trigger count resets after Dr. Ratio's Ultimate is used.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5360000000800937, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6320000004488975, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7280000001192093, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.824000000488013, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9200000008568168, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.040000000037253, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1600000001490116, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2800000002607703, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.496000000042841, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.5920000004116446, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.6880000000819564, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.78400000045076, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.880000000819564, + 2 + ] + } + } + }, + "130504": { + "Id": 130504, + "Name": "Cogito, Ergo Sum", + "Desc": "When using his Skill, Dr. Ratio has a #2[i]% fixed chance of launching a Follow-up ATK against his target for 1 time, dealing Imaginary DMG equal to #1[i]% of Dr. Ratio's ATK. For each debuff the target enemy has, the fixed chance of launching Follow-up ATK increases by #3[i]%. If the target enemy is defeated before the Follow-up ATK triggers, the Follow-up ATK will be directed at a single random enemy instead.", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.350000000325963, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4850000001024455, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.62000000057742, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7550000003539026, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.890000000828877, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.024999999674037, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.193750000791624, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.3625000005122274, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.5312500009313226, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.8350000004284084, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.970000000903383, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.104999999748543, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.2400000002235174, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.375, + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "130506": { + "Id": 130506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130507": { + "Id": 130507, + "Name": "Mold of Idolatry", + "Desc": "After using Technique, creates a Special Dimension that Taunts nearby enemies, lasting for #1[i] second(s). After entering battle with enemies in this Special Dimension, there is a #2[i]% base chance to reduce each single enemy target's SPD by #3[i]% for #4[i] turn(s). Only 1 Dimension Effect created by allies can exist at the same time.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 0.1500000001396984, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Maze.png", + "LevelUpSkillID": [ + 130507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0249999996740371, + 0.05000000004656613, + 6 + ], + "PointID": 1305101, + "PointName": "Summation", + "PointDesc": "When Dr. Ratio uses his Skill, for every debuff on the target, his CRIT Rate increases by #1[f1]% and CRIT DMG by #2[i]%. This effect can stack up to #3[i] time(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.10000000009313226, + 2 + ], + "PointID": 1305102, + "PointName": "Inference", + "PointDesc": "When Skill is used to attack an enemy target, there is a #1[i]% base chance to reduce the attacked enemy target's Effect RES by #2[i]% for #3[i] turn(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.10000000009313226, + 0.5000000004656613 + ], + "PointID": 1305103, + "PointName": "Deduction", + "PointDesc": "When dealing DMG to a target that has #1[i] or more debuff(s), for each debuff the target has, the DMG dealt by Dr. Ratio to this target increases by #2[i]%, up to a maximum increase of #3[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1305101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1305202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1305102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1305205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1305103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1305208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1305208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 105.6000000005588, + "AttackAdd": 5.28000000026077, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 147.8400000007823, + "AttackAdd": 5.28000000026077, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 190.0800000000745, + "AttackAdd": 5.28000000026077, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 232.32000000029802, + "AttackAdd": 5.28000000026077, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 274.56000000052154, + "AttackAdd": 5.28000000026077, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 316.80000000074506, + "AttackAdd": 5.28000000026077, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 359.04000000003725, + "AttackAdd": 5.28000000026077, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1305, + "Set4IDList": [ + 117, + 112, + 115 + ], + "Set2IDList": [ + 315, + 306, + 311 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1306": { + "Name": "Sparkle", + "Desc": "A member of the Masked Fools. Inscrutable and unscrupulous.\\nA dangerous maestro of theatrics, utterly engrossed in the art of performance. Adorned with innumerable masks, she is the hero with a thousand faces.\\nWealth, status, power... None of those matters to Sparkle. The only thing that can get her attention is \"amusement.\"", + "CharaInfo": { + "Camp": "Masked Fools", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sparkle", + "SPNeed": 110, + "BaseType": "Shaman", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 130601, + "Name": "Suspension of Disbelief", + "Desc": "The Cipher effect granted by the Ultimate lasts for 1 extra turn. All allies with Cipher have their ATK increased by #1[i]%.", + "ParamList": [ + 0.40000000037252903 + ] + }, + "2": { + "Id": 130602, + "Name": "Purely Fictitious", + "Desc": "Every stack of the Talent's effect allows allies to additionally ignore #1[i]% of the target's DEF when dealing DMG.", + "ParamList": [ + 0.0800000000745058 + ] + }, + "3": { + "Id": 130603, + "Name": "Pipedream", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 130604, + "Name": "Life Is a Gamble", + "Desc": "The Ultimate recovers 1 more Skill Point. The Talent additionally increases the Max Skill Points by 1.", + "ParamList": [] + }, + "5": { + "Id": 130605, + "Name": "Parallax Truth", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 130606, + "Name": "Narrative Polysemy", + "Desc": "The CRIT DMG Boost effect provided by the Skill additionally increases by an amount equal to #1[i]% of Sparkle's CRIT DMG. When Sparkle uses Skill, her Skill's CRIT DMG Boost effect will apply to all teammates with Cipher. When Sparkle uses her Ultimate, any single ally who benefits from her Skill's CRIT DMG Boost will spread that effect to teammates with Cipher.", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "130601": { + "Id": 130601, + "Name": "Monodrama", + "Desc": "Deals Quantum DMG equal to #1[i]% of Sparkle's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130602": { + "Id": 130602, + "Name": "Dreamdiver", + "Desc": "Increases the CRIT DMG of a single target ally by #1[f1]% of Sparkle's CRIT DMG plus #2[f1]%, lasting for #3[i] turn(s). And at the same time, Advances Forward this ally's action by #4[i]%.\\nWhen Sparkle uses this ability on herself, the Action Advance effect will not trigger.", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 0.2700000002514571, + 1, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1319999999832362, + 0.28799999970942736, + 1, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14399999985471368, + 0.30599999986588955, + 1, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.15599999972619116, + 0.32400000002235174, + 1, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.16799999959766865, + 0.34200000017881393, + 1, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19499999983236194, + 0.38250000053085387, + 1, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21000000019557774, + 0.4050000000279397, + 1, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2249999998603016, + 0.4275000002235174, + 1, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.45000000041909516, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2520000000949949, + 0.4679999998770654, + 1, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2639999999664724, + 0.4860000000335276, + 1, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.27599999983794987, + 0.5040000001899898, + 1, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.28799999970942736, + 0.522000000346452, + 1, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.5400000005029142, + 1, + 0.5000000004656613 + ] + } + } + }, + "130603": { + "Id": 130603, + "Name": "The Hero with a Thousand Faces", + "Desc": "Recovers #2[i] Skill Points for the team and grants all allies Cipher. For allies with Cipher, each stack of the DMG Boost effect provided by Sparkle's Talent additionally increases by #3[f1]%, lasting for #4[i] turns.", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 4, + 0.060000000055879354, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 4, + 0.06399999978020787, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 4, + 0.06799999950453639, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 4, + 0.07199999992735684, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 4, + 0.07599999965168536, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 4, + 0.0800000000745058, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 4, + 0.08499999972991645, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 4, + 0.09000000008381903, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 4, + 0.09499999973922968, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 4, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 4, + 0.10399999981746078, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 4, + 0.1079999995417893, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 4, + 0.11199999996460974, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 4, + 0.11599999968893826, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 4, + 0.12000000011175871, + 2 + ] + } + } + }, + "130604": { + "Id": 130604, + "Name": "Red Herring", + "Desc": "While Sparkle is on the battlefield, additionally increases the max number of Skill Points by #3[i]. Whenever an ally consumes 1 Skill Point, all allies' DMG dealt increases by #2[f1]%. This effect lasts for #1[i] turn(s) and can stack up to #4[i] time(s).", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.030000000027939677, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.032999999821186066, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.035999999614432454, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.03899999940767884, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.04199999989941716, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.04499999969266355, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.04875000030733645, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.05250000022351742, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.056250000139698386, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.060000000055879354, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.06299999984912574, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.06599999964237213, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.06899999943561852, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.07199999992735684, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.07499999972060323, + 2, + 3 + ] + } + } + }, + "130606": { + "Id": 130606, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130607": { + "Id": 130607, + "Name": "Unreliable Narrator", + "Desc": "Using the Technique grants all allies Misdirect for #2[i] seconds. Characters with Misdirect will not be detected by enemies, and entering battle in the Misdirect state recovers #1[i] Skill Point(s) for the team.", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Maze.png", + "LevelUpSkillID": [ + 130607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1306101, + "PointName": "Almanac", + "PointDesc": "When using Basic ATK, additionally regenerates #1[i] Energy.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306102, + "PointName": "Artificial Flower", + "PointDesc": "The CRIT DMG Boost effect provided by the Skill will be extended until the start of the target's next turn.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 0.1500000001396984, + 0.3000000002793968, + 0.1500000001396984 + ], + "PointID": 1306103, + "PointName": "Nocturne", + "PointDesc": "Increases all allies' ATK by #4[i]%. When there are 1/2/3 Quantum-Type allies in the team, additionally increases Quantum-Type allies' ATK by #1[i]%/#2[i]%/#3[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306201, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306202, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1306101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306203, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1306202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1306201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306205, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1306102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306206, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1306205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306207, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1306201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1306103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306209, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1306208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306210, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1306208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 190.0800000000745, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 342.1439999998547, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 418.1759999997448, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 494.2079999996349, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 570.2400000002235, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 646.2720000001136, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1306, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 317, + 310, + 312 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 187 + ], + "LocalCriticalChance": 1 + } + }, + "1307": { + "Name": "Black Swan", + "Desc": "A Memokeeper of the Garden of Recollection. An indolent and mysterious soothsayer.\\n\"Remembrance\" of men are hers to heed, threads of fate are hers to tug.", + "CharaInfo": { + "Camp": "Garden of Recollection", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "blackswan", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 130701, + "Name": "Seven Pillars of Wisdom", + "Desc": "While Black Swan is active in battle, enemies afflicted with Wind Shear, Bleed, Burn, or Shock will have their corresponding Wind, Physical, Fire, or Lightning RES respectively reduced by #1[i]%.", + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Id": 130702, + "Name": "Weep Not For Me, My Lamb", + "Desc": "When an enemy target afflicted with \"Arcana\" is defeated, there is a #1[i]% base chance of inflicting #2[i] stack(s) of \"Arcana\" on adjacent targets.", + "ParamList": [ + 1, + 6 + ] + }, + "3": { + "Id": 130703, + "Name": "As Above, So Below", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 130704, + "Name": "In Tears We Gift", + "Desc": "While in the Epiphany state, enemy targets have their Effect RES reduced by #1[i]% and Black Swan regenerates #2[i] Energy at the start of these targets' turns or when they are defeated. This Energy Regeneration effect can only trigger up to 1 time while Epiphany lasts. The trigger count is reset when Epiphany is applied again.", + "ParamList": [ + 0.10000000009313226, + 8 + ] + }, + "5": { + "Id": 130705, + "Name": "Linnutee Flyway", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 130706, + "Name": "Pantheon Merciful, Masses Pitiful", + "Desc": "When an enemy target is attacked by Black Swan's teammates, Black Swan has a #2[i]% base chance of inflicting 1 stack of \"Arcana\" on the target.\\nEvery time Black Swan inflicts \"Arcana\" on an enemy target, there is a #1[i]% fixed chance to additionally increase the number of \"Arcana\" stacked this time by #3[i].", + "ParamList": [ + 0.5000000004656613, + 0.6500000006053597, + 1 + ] + } + }, + "Skills": { + "130701": { + "Id": 130701, + "Name": "Percipience, Silent Dawn", + "Desc": "Deals Wind DMG equal to #1[i]% of Black Swan's ATK to a single target enemy, with a #2[i]% base chance of inflicting 1 stack of Arcana on the target. Additionally, when attacking a target that suffers Wind Shear, Bleed, Burn, or Shock, there is respectively a #3[i]% base chance of inflicting 1 extra stack of Arcana on the target.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3600000003352761, + 0.530000000493601, + 0.530000000493601 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 0.5600000005215406, + 0.5600000005215406 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.48000000044703484, + 0.5900000005494803, + 0.5900000005494803 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5400000005029142, + 0.62000000057742, + 0.62000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.6500000006053597, + 0.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6600000006146729, + 0.6800000006332994, + 0.6800000006332994 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 0.710000000661239, + 0.710000000661239 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7800000007264316, + 0.7400000006891787, + 0.7400000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.840000000782311, + 0.7700000007171184, + 0.7700000007171184 + ] + } + } + }, + "130702": { + "Id": 130702, + "Name": "Decadence, False Twilight", + "Desc": "Deals Wind DMG equal to #1[i]% of Black Swan's ATK to a single target enemy and any adjacent targets. At the same time, there is a #2[i]% base chance of inflicting 1 stack of Arcana on the target enemy and the adjacent targets. Additionally, there is a #3[i]% base chance of reducing the DEF of the target enemy and the adjacent targets by #4[f1]%, lasting for #5[i] turn(s).", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 1, + 1, + 0.1479999995790422, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.4950000001117587, + 1, + 1, + 0.1539999998640269, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5400000005029142, + 1, + 1, + 0.1600000001490116, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5850000001955777, + 1, + 1, + 0.1659999997355044, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6300000005867332, + 1, + 1, + 0.1720000000204891, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6750000002793968, + 1, + 1, + 0.17799999960698187, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.7312500011175871, + 1, + 1, + 0.18550000013783574, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7875000005587935, + 1, + 1, + 0.19299999997019768, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.8437500013969839, + 1, + 1, + 0.20050000050105155, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.9000000008381903, + 1, + 1, + 0.20799999963492155, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.9450000005308539, + 1, + 1, + 0.21399999991990626, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.9900000009220093, + 1, + 1, + 0.22000000020489097, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.0349999996833503, + 1, + 1, + 0.22599999979138374, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.0800000000745058, + 1, + 1, + 0.23200000007636845, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.1249999997671694, + 1, + 1, + 0.23799999966286123, + 3 + ] + } + } + }, + "130703": { + "Id": 130703, + "Name": "Bliss of Otherworld's Embrace", + "Desc": "Inflicts Epiphany on all enemies for #2[i] turn(s).\\nWhile afflicted with Epiphany, enemies take #3[i]% increased DMG in their turn. Additionally, if enemies are also inflicted with Arcana, they are considered to be simultaneously afflicted with Wind Shear, Bleed, Burn, and Shock. After Arcana causes DMG at the start of each turn, its stacks are not reset. This non-reset effect of Arcana stacks can be triggered up to #4[i] time(s) for the duration of Epiphany. And the trigger count resets when Epiphany is applied again.\\nDeals Wind DMG equal to #1[i]% of Black Swan's ATK to all enemies.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523, + 2, + 0.1500000001396984, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622, + 2, + 0.1600000001490116, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641, + 2, + 0.17000000015832484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659, + 2, + 0.18000000016763806, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678, + 2, + 0.1900000001769513, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697, + 2, + 0.20000000018626451, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265, + 2, + 0.21250000037252903, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 2, + 0.2249999998603016, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852, + 2, + 0.23750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 2, + 0.25000000023283064, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745, + 2, + 0.26000000024214387, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763, + 2, + 0.2700000002514571, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782, + 2, + 0.2800000002607703, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538, + 2, + 0.29000000027008355, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782, + 2, + 0.3000000002793968, + 1 + ] + } + } + }, + "130704": { + "Id": 130704, + "Name": "Loom of Fate's Caprice", + "Desc": "Every time an enemy target receives DoT at the start of each turn, there is a #2[i]% base chance for it to be inflicted with 1 stack of Arcana.\\nWhile afflicted with Arcana, enemy targets receive Wind DoT equal to #1[i]% of Black Swan's ATK at the start of each turn. Each stack of Arcana increases this DMG multiplier by #3[f1]%. Then Arcana resets to 1 stack. Arcana can stack up to #8[i] times.\\nOnly when Arcana causes DMG at the start of an enemy target's turn, Black Swan triggers additional effects based on the number of Arcana stacks inflicted on the target:\\nWhen there are #4[i] or more Arcana stacks, deals Wind DoT equal to #5[i]% of Black Swan's ATK to adjacent targets, with a #2[i]% base chance of inflicting 1 stack of Arcana on adjacent targets.\\nWhen there are #6[i] or more Arcana stacks, enables the current DoT dealt this time to ignore #7[i]% of the target's and adjacent targets' DEF.", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.5000000004656613, + 0.04799999948590994, + 3, + 0.7200000006705523, + 7, + 0.20000000018626451, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1183999998029321, + 0.5150000001303852, + 0.0559200004208833, + 3, + 0.838800000725314, + 7, + 0.20000000018626451, + 50 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2768000003416091, + 0.530000000493601, + 0.06384000065736473, + 3, + 0.9576000007800758, + 7, + 0.20000000018626451, + 50 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4352000001817942, + 0.5450000001583248, + 0.07176000089384615, + 3, + 1.076399999903515, + 7, + 0.20000000018626451, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5936000007204711, + 0.5600000005215406, + 0.07968000043183565, + 3, + 1.1951999999582767, + 7, + 0.20000000018626451, + 50 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.7520000005606562, + 0.5750000001862645, + 0.08759999996982515, + 3, + 1.3140000000130385, + 7, + 0.20000000018626451, + 50 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.8960000004153699, + 0.5937500011641532, + 0.0948000003118068, + 3, + 1.4220000002533197, + 7, + 0.20000000018626451, + 50 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.040000000037253, + 0.6125000007450581, + 0.10199999995529652, + 3, + 1.530000000493601, + 7, + 0.20000000018626451, + 50 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.220000000204891, + 0.6312500010244548, + 0.11100000003352761, + 3, + 1.6650000002700835, + 7, + 0.20000000018626451, + 50 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.6500000006053597, + 0.12000000011175871, + 3, + 1.800000000745058, + 7, + 0.20000000018626451, + 50 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.6650000002700835, + 0.12599999969825149, + 3, + 1.890000000828877, + 7, + 0.20000000018626451, + 50 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.6800000006332994, + 0.1319999999832362, + 3, + 1.9800000009126961, + 7, + 0.20000000018626451, + 50 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.6950000002980232, + 0.13799999956972897, + 3, + 2.0700000000651926, + 7, + 0.20000000018626451, + 50 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.710000000661239, + 0.14399999985471368, + 3, + 2.1600000001490116, + 7, + 0.20000000018626451, + 50 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.7250000003259629, + 0.1500000001396984, + 3, + 2.2500000002328306, + 7, + 0.20000000018626451, + 50 + ] + } + } + }, + "130706": { + "Id": 130706, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130707": { + "Id": 130707, + "Name": "From Façade to Vérité", + "Desc": "After this Technique is used, there is a #1[i]% base chance for each enemy to be inflicted with 1 stack of Arcana at the start of the next battle. For each successful application of Arcana on a target, inflicts another stack of Arcana on the same target. This process repeats until Arcana fails to be inflicted on this target. For each successive application of Arcana on a target, its base chance of success is equal to #2[i]% of the base chance of the previous successful infliction of Arcana on that target.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Maze.png", + "LevelUpSkillID": [ + 130707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6500000006053597 + ], + "PointID": 1307101, + "PointName": "Viscera's Disquiet", + "PointDesc": "After using Skill to attack one designated enemy that has Wind Shear, Bleed, Burn, or Shock, each of these debuffs respectively has a #1[i]% base chance of inflicting 1 extra stack of Arcana.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6500000006053597, + 3 + ], + "PointID": 1307102, + "PointName": "Goblet's Dredges", + "PointDesc": "When an enemy target enters battle, there is a #1[i]% base chance for it to be inflicted with 1 stack of Arcana.\\nEvery time an enemy target receives 1 instance of DoT during a single attack by an ally, there is a #1[i]% base chance for the target to be inflicted with 1 stack of Arcana. The maximum number of stacks that can be inflicted during 1 single attack is #2[i].", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 0.7200000006705523 + ], + "PointID": 1307103, + "PointName": "Candleflame's Portent", + "PointDesc": "Increases this unit's DMG by an amount equal to #1[i]% of Effect Hit Rate, up to a maximum DMG increase of #2[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307202, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1307101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1307202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307204, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1307203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1307102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307206, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1307205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1307206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307208, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1307103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307209, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1307103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1307201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1307, + "Set4IDList": [ + 116, + 110, + 102 + ], + "Set2IDList": [ + 303, + 322, + 301 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "StatusProbabilityBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 323, + 268 + ] + } + }, + "1308": { + "Name": "Acheron", + "Desc": "A drifter claiming to be a Galaxy Ranger. Her true name is unknown.\\nShe walks the cosmos alone, carrying with her a long sword.", + "CharaInfo": { + "Camp": "Galaxy Ranger", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "acheron", + "SPNeed": 9, + "BaseType": "Warlock", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 130801, + "Name": "Silenced Sky Spake Sooth", + "Desc": "When dealing DMG to debuffed enemies, increases CRIT Rate by #1[i]%.", + "ParamList": [ + 0.18000000016763806 + ] + }, + "2": { + "Id": 130802, + "Name": "Mute Thunder in Still Tempest", + "Desc": "The number of Nihility characters required for the Trace \"The Abyss\" to achieve its highest possible effect is reduced by 1. When this unit's turn starts, gains 1 point of Slashed Dream and inflicts 1 stack of Crimson Knot on the enemy with the most Crimson Knot stacks.", + "ParamList": [] + }, + "3": { + "Id": 130803, + "Name": "Frost Bites in Death", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 130804, + "Name": "Shrined Fire for Mirrored Soul", + "Desc": "When enemy targets enter combat, inflicts them with the Ultimate DMG Vulnerability, increasing the amount of Ultimate DMG they take by #1[i]%.", + "ParamList": [ + 0.0800000000745058 + ] + }, + "5": { + "Id": 130805, + "Name": "Strewn Souls on Erased Earths", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 130806, + "Name": "Apocalypse, the Emancipator", + "Desc": "Increases the All-Type RES PEN for the Ultimate DMG dealt by Acheron by #1[i]%. The DMG dealt by Basic ATK and Skill will also be considered as Ultimate DMG and can Reduce enemy Toughness regardless of Weakness Types. When breaking Weaknesses, triggers the Lightning Weakness Break effect.", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "130801": { + "Id": 130801, + "Name": "Trilateral Wiltcross", + "Desc": "Deals Lightning DMG equal to #1[i]% of Acheron's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130802": { + "Id": 130802, + "Name": "Octobolt Flash", + "Desc": "Gains #3[i] point(s) of Slashed Dream. Inflicts #3[i] stack(s) of Crimson Knot on a single target enemy, dealing Lightning DMG equal to #1[i]% of Acheron's ATK to this target, as well as Lightning DMG equal to #2[i]% of Acheron's ATK to adjacent targets.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.3000000002793968, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.33000000030733645, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.3600000003352761, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.3900000003632158, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.4200000003911555, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.45000000041909516, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.4875000002793968, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.5250000001396984, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.5625000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.6000000005587935, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.6300000005867332, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.6600000006146729, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.6900000006426126, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.7200000006705523, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.7500000006984919, + 1 + ] + } + } + }, + "130803": { + "Id": 130803, + "Name": "Slashed Dream Cries in Red", + "Desc": "Sequentially unleash Rainblade 3 times and Stygian Resurge 1 time, dealing Lightning DMG up to #6[i]% of Acheron's ATK to a single target enemy, as well as Lightning DMG up to #7[i]% of Acheron's ATK to other targets.\\n\\nRainblade: Deals Lightning DMG equal to #1[f1]% of Acheron's ATK to a single target enemy and removes up to 3 stacks of Crimson Knot from the target. When Crimson Knot is removed, immediately deals Lightning DMG equal to #2[f1]% of Acheron's ATK to all enemies. For every stack of Crimson Knot removed, this DMG Multiplier is additionally increased, up to a maximum of #5[f1]%.\\n\\nStygian Resurge: Deals Lightning DMG equal to #3[i]% of Acheron's ATK to all enemies and remove all Crimson Knots.\\n\\nCrimson Knot cannot be applied to enemies during the Ultimate.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523, + 9, + 0.3600000003352761, + 2.2320000000763685, + 1.800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622, + 9, + 0.3840000000782311, + 2.380800000857562, + 1.9200000008568168 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641, + 9, + 0.40799999982118607, + 2.5296000002417713, + 2.040000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659, + 9, + 0.43200000026263297, + 2.678400000324473, + 2.1600000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678, + 9, + 0.45600000000558794, + 2.8272000004071742, + 2.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697, + 9, + 0.48000000044703484, + 2.9760000004898757, + 2.400000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265, + 9, + 0.5100000004749745, + 3.162000000011176, + 2.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058, + 9, + 0.5400000005029142, + 3.3479999997653067, + 2.700000000651926 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852, + 9, + 0.5700000005308539, + 3.5340000002179295, + 2.850000000791624 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645, + 9, + 0.6000000005587935, + 3.7200000006705523, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745, + 9, + 0.6240000003017485, + 3.8688000007532537, + 3.1200000001117587 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763, + 9, + 0.6480000000447035, + 4.017599999904633, + 3.2400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782, + 9, + 0.6720000004861504, + 4.166399999987334, + 3.360000000335276 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538, + 9, + 0.6960000002291054, + 4.3152000000700355, + 3.480000000447035 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782, + 9, + 0.7200000006705523, + 4.464000000152737, + 3.6000000005587935 + ] + } + } + }, + "130804": { + "Id": 130804, + "Name": "Atop Rainleaf Hangs Oneness", + "Desc": "When Slashed Dream reaches #1[i] point(s), the Ultimate can be activated. During the Ultimate, reduces enemies' Toughness regardless of Weakness Types and reduces all enemies' All-Type RES by #2[i]%, lasting until the end of the Ultimate.\\nWhen any unit inflicts debuffs on an enemy target while using their ability, Acheron gains 1 point of Slashed Dream and inflicts 1 stack of Crimson Knot on a target. If debuffs are inflicted on multiple targets, then the 1 stack of Crimson Knot will be inflicted on the enemy target with the most Crimson Knot stacks. This effect can only trigger once for every ability use.\\nAfter an enemy target exits the field or gets defeated by any unit while Acheron is on the field, their Crimson Knot stacks will be transferred to the enemy target with the most Crimson Knot stacks on the whole field.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 9, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 9, + 0.11000000010244548 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 9, + 0.12000000011175871 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 9, + 0.13000000012107193 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 9, + 0.14000000013038516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 9, + 0.1500000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 9, + 0.1625000003259629 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 9, + 0.17499999981373549 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9, + 0.1875 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 9, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 9, + 0.21000000019557774 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 9, + 0.22000000020489097 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 9, + 0.2300000002142042 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 9, + 0.24000000022351742 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 9, + 0.25000000023283064 + ] + } + } + }, + "130806": { + "Id": 130806, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130807": { + "Id": 130807, + "Name": "Quadrivalent Ascendance", + "Desc": "Immediately attacks the enemy. At the start of each wave, gains Quadrivalent Ascendance, dealing Lightning DMG equal to #1[i]% of Acheron's ATK to all enemies and reducing Toughness of all enemies irrespective of Weakness Types. When breaking Weaknesses, triggers the Lightning Weakness Break effect.\\nQuadrivalent Ascendance: After using the Ultimate, Acheron gains #2[i] point(s) of Slashed Dream and inflicts #2[i] stack(s) of Crimson Knot on a single random enemy.\\nIf attacking a normal enemy, immediately defeats them without entering combat. When not hitting enemies, no Technique Points are consumed.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "130814": { + "Id": 130814, + "Name": "Rainblade", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130815": { + "Id": 130815, + "Name": "Rainblade", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130816": { + "Id": 130816, + "Name": "Rainblade", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130817": { + "Id": 130817, + "Name": "Stygian Resurge", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Maze.png", + "LevelUpSkillID": [ + 130807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 3 + ], + "PointID": 1308101, + "PointName": "Red Oni", + "PointDesc": "When battle starts, immediately gains #1[i] point(s) of Slashed Dream and applies #1[i] stack(s) of Crimson Knot to a random enemy. When Slashed Dream reaches its upper limit, for every point of Slashed Dream that exceeds the limit, gains 1 stack of Quadrivalent Ascendance. Enables Quadrivalent Ascendance to stack up to #2[i] time(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.1500000001396984, + 1.6000000005587935 + ], + "PointID": 1308102, + "PointName": "The Abyss", + "PointDesc": "When there are 1 or 2 Nihility characters other than Acheron in the team, the DMG dealt by Acheron's Basic ATK, Skill, and Ultimate increases to #1[i]% or #2[i]% of the original DMG respectively.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 3, + 6, + 0.25000000023283064 + ], + "PointID": 1308103, + "PointName": "Thunder Core", + "PointDesc": "When the Ultimate's Rainblade hits enemy targets that have Crimson Knot, the DMG dealt by Acheron increases by #1[i]%, stacking up to #2[i] time(s) and lasting for #3[i] turn(s). And when Stygian Resurge triggers, additionally deals DMG for #4[i] times. Each time deals Lightning DMG equal to #5[i]% of Acheron's ATK to a single random enemy and is considered as Ultimate DMG.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308202, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1308101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1308202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308204, + "PointName": "DMG Boost: Lightning", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1308203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "Lightning DMG Boost" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1308102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308206, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1308205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1308206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308208, + "PointName": "DMG Boost: Lightning", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1308103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "Lightning DMG Boost" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308209, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1308103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1308201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1308, + "Set4IDList": [ + 117, + 122, + 109 + ], + "Set2IDList": [ + 314, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1309": { + "Name": "Robin", + "Desc": "A Halovian singer who was born in Penacony and has risen to cosmic fame. An elegant and demure young lady.\\nThis time, she has been invited home by The Family to grace everyone with song during the Charmony Festival.\\nShe can use the power of \"Harmony\" to broadcast her music, manifesting \"resonance\" among not only her fans but all manner of lifeforms.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "robin", + "SPNeed": 160, + "BaseType": "Shaman", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 130901, + "Name": "Land of Smiles", + "Desc": "While the \"Concerto\" state is active, all allies' All-Type RES PEN increases by #1[i]%.", + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "Id": 130902, + "Name": "Afternoon Tea For Two", + "Desc": "While the Concerto state is active, all allies' SPD increases by #1[i]%. The Talent's Energy Regeneration effect additionally increases by #2[i].", + "ParamList": [ + 0.1600000001490116, + 1 + ] + }, + "3": { + "Id": 130903, + "Name": "Inverted Tuning", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nUltimate Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 130904, + "Name": "Raindrop Key", + "Desc": "When using the Ultimate, dispels Crowd Control debuffs from all allies. While Robin is in the \"Concerto\" state, increases the Effect RES of all allies by #1[i]%.", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 130905, + "Name": "Lonestar's Lament", + "Desc": "Basic ATK Lv. +1, up to a maximum of Lv. 10.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 130906, + "Name": "Moonless Midnight", + "Desc": "While the \"Concerto\" state is active, the CRIT DMG for the Physical Additional DMG caused by the Ultimate increases by #2[i]%. The effect of \"Moonless Midnight\" can trigger up to #1[i] time(s) and the trigger count is resets each time the Ultimate is used.", + "ParamList": [ + 8, + 4.500000000465661 + ] + } + }, + "Skills": { + "130901": { + "Id": 130901, + "Name": "Wingflip White Noise", + "Desc": "Deals Physical DMG equal to #1[i]% of Robin's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130902": { + "Id": 130902, + "Name": "Pinion's Aria", + "Desc": "Increase DMG dealt by all allies by #1[i]%, lasting for #2[i] turn(s). This duration decreases by 1 at the start of Robin's every turn.", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 3 + ] + } + } + }, + "130903": { + "Id": 130903, + "Name": "Vox Harmonique, Opus Cosmique", + "Desc": "Robin enters the Concerto state and makes all teammates (i.e., excluding this unit) immediately take action.\\nWhile in the Concerto state, increases all allies' ATK by #1[f1]% of Robin's ATK plus #3[i]. Moreover, after every attack by ally targets, Robin deals Physical Additional DMG equal to #4[i]% of her ATK for 1 time, with a fixed CRIT Rate for this damage set at #5[i]% and fixed CRIT DMG set at #6[i]%.\\nWhile in the Concerto state, Robin is immune to Crowd Control debuffs and cannot enter her turn or take action until the Concerto state ends.\\nA Concerto countdown appears on the Action Order bar. When the countdown's turn begins, Robin exits the Concerto state and immediately takes action. The countdown has its own fixed SPD of #2[i].", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.15200000000186265, + 90, + 50, + 0.7200000006705523, + 1, + 1.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.159599999897182, + 90, + 65, + 0.7680000001564622, + 1, + 1.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.16719999979250133, + 90, + 80, + 0.8160000003408641, + 1, + 1.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1748000003863126, + 90, + 95, + 0.8640000005252659, + 1, + 1.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 90, + 110, + 0.9120000007096678, + 1, + 1.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1900000001769513, + 90, + 125, + 0.9600000008940697, + 1, + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19949999987147748, + 90, + 143.7500000006985, + 1.0200000000186265, + 1, + 1.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.20899999956600368, + 90, + 162.50000000046566, + 1.0800000000745058, + 1, + 1.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2184999999590218, + 90, + 181.25000000023283, + 1.1400000001303852, + 1, + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.227999999653548, + 90, + 200, + 1.2000000001862645, + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.23560000024735928, + 90, + 215, + 1.2479999996721745, + 1, + 1.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.24320000014267862, + 90, + 230, + 1.2959999998565763, + 1, + 1.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2508000007364899, + 90, + 245, + 1.3440000000409782, + 1, + 1.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.2583999999333173, + 90, + 260, + 1.39200000022538, + 1, + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.26599999982863665, + 90, + 275, + 1.440000000409782, + 1, + 1.5000000004656613 + ] + } + } + }, + "130904": { + "Id": 130904, + "Name": "Tonal Resonance", + "Desc": "Increase all allies' CRIT DMG by #1[f1]%. Moreover, after allies attack enemy targets, Robin additionally regenerates #2[i] Energy for herself.", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06499999971129, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.0800000000745058, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09499999973922968, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12499999976716936, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.14375000074505806, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.18125000060535967, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2149999998509884, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.24499999987892807, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.26000000024214387, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.27499999990686774, + 2 + ] + } + } + }, + "130906": { + "Id": 130906, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130907": { + "Id": 130907, + "Name": "Overture of Inebriation", + "Desc": "After using Technique, creates a Special Dimension around the character that lasts for #1[i] seconds. Enemies within this dimension will not attack Robin and will follow Robin while the dimension is active. After entering battle while the dimension is active, Robin regenerates #2[i] Energy at the start of each wave. Only 1 Dimension Effect created by allies can exist at the same time.", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 5 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Maze.png", + "LevelUpSkillID": [ + 130907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1309101, + "PointName": "Coloratura Cadenza", + "PointDesc": "When the battle begins, action advances this character by #1[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1309102, + "PointName": "Impromptu Flourish", + "PointDesc": "While the Concerto state is active, the CRIT DMG dealt when all allies launch Follow-up ATK increases by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1309103, + "PointName": "Sequential Passage", + "PointDesc": "When using Skill, additionally regenerates #1[i] Energy.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1309101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1309202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309204, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1309201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1309102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1309205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1309201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309208, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1309103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1309208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1309208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 174.24000000022352, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 243.93600000045262, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 313.6320000004489, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 383.3279999997467, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 453.02399999974295, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 522.7200000006706, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 592.4159999999683, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1309, + "Set4IDList": [ + 102, + 105, + 116 + ], + "Set2IDList": [ + 302, + 301, + 308 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "AttackAddedRatio", + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "AttackDelta", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 313, + 272 + ] + } + }, + "1310": { + "Name": "Firefly", + "Desc": "A member of the Stellaron Hunters, clad in a set of mechanized armor known as \"SAM.\" Her character is marked by unwavering loyalty and steely resolve.\\nEngineered as a weapon against the Swarm, she experiences accelerated growth, but a tragically shortened lifespan.\\nShe joined the Stellaron Hunters in a quest for a chance at \"life,\" seeking to defy her fated demise.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sam", + "SPNeed": 240, + "BaseType": "Warrior", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 131001, + "Name": "In Reddened Chrysalis, I Once Rest", + "Desc": "When using the Enhanced Skill, ignores #1[i]% of the target's DEF. The Enhanced Skill does not consume Skill Points.", + "ParamList": [ + 0.1500000001396984 + ] + }, + "2": { + "Id": 131002, + "Name": "From Shattered Sky, I Free Fall", + "Desc": "While in Complete Combustion, using the Enhanced Basic ATK or the Enhanced Skill to defeat an enemy target or to Break their Weakness allows SAM to immediately gain 1 extra turn. This effect can trigger again after #2[i] turn(s).", + "ParamList": [ + 1, + 1 + ] + }, + "3": { + "Id": 131003, + "Name": "Amidst Silenced Stars, I Deep Sleep", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 131004, + "Name": "Upon Lighted Fyrefly, I Soon Gaze", + "Desc": "While in Complete Combustion, increases SAM's Effect RES by #1[i]%.", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 131005, + "Name": "From Undreamt Night, I Thence Shine", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 131006, + "Name": "In Finalized Morrow, I Full Bloom", + "Desc": "While in Complete Combustion, increases SAM's Fire RES PEN by #1[i]%. When using the Enhanced Basic ATK or Enhanced Skill, increases Weakness Break Efficiency by #2[i]%.", + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + } + }, + "Skills": { + "131001": { + "Id": 131001, + "Name": "Order: Flare Propulsion", + "Desc": "Deals Fire DMG equal to #1[i]% of SAM's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131002": { + "Id": 131002, + "Name": "Order: Aerial Bombardment", + "Desc": "Consumes HP equal to #2[i]% of this unit's Max HP and regenerates a fixed amount of Energy equal to #3[i]% of this unit's Max Energy. Deals Fire DMG equal to #1[i]% of SAM's ATK to a single target enemy. If the current HP is not sufficient, reduces SAM's HP to 1 when using this Skill. Advances this unit's next Action by #4[i]%.", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903, + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.40000000037252903, + 0.5100000004749745, + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903, + 0.5200000004842877, + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.40000000037252903, + 0.530000000493601, + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.40000000037252903, + 0.5400000005029142, + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.40000000037252903, + 0.5500000005122274, + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.40000000037252903, + 0.5625000006984919, + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.40000000037252903, + 0.5750000001862645, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.40000000037252903, + 0.587500000372529, + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.40000000037252903, + 0.6000000005587935, + 0.25000000023283064 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903, + 0.6100000005681068, + 0.25000000023283064 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.40000000037252903, + 0.62000000057742, + 0.25000000023283064 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.40000000037252903, + 0.6300000005867332, + 0.25000000023283064 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903, + 0.6400000005960464, + 0.25000000023283064 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 0.40000000037252903, + 0.6500000006053597, + 0.25000000023283064 + ] + } + } + }, + "131003": { + "Id": 131003, + "Name": "Fyrefly Type-IV: Complete Combustion", + "Desc": "Enters the Complete Combustion state, advances this unit's Action by 100%, and gains Enhanced Basic ATK and Enhanced Skill. While in Complete Combustion, increases SPD by #3[i], and when using the Enhanced Basic ATK or Enhanced Skill, increases this unit's Weakness Break Efficiency by #2[i]% and the Break DMG dealt by SAM to the enemy targets by #1[f1]%, lasting until this current attack ends.\\nA countdown timer for the Complete Combustion state appears on the Action Order. When the countdown timer's turn starts, SAM exits the Complete Combustion state. The countdown timer has a fixed SPD of #4[i].\\nSAM cannot use Ultimate while in Complete Combustion.", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 30, + 70 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 0.5000000004656613, + 33, + 70 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 36, + 70 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 0.5000000004656613, + 39, + 70 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 42, + 70 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 45, + 70 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 0.5000000004656613, + 48.75000000069849, + 70 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 0.5000000004656613, + 52.50000000046566, + 70 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 0.5000000004656613, + 56.25000000023283, + 70 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 60, + 70 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 0.5000000004656613, + 63, + 70 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 66, + 70 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 0.5000000004656613, + 69, + 70 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 72, + 70 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 75, + 70 + ] + } + } + }, + "131004": { + "Id": 131004, + "Name": "Chrysalid Pyronexus", + "Desc": "The lower the HP, the less DMG received. When HP is #3[i]% or lower, the DMG Reduction reaches its maximum effect, reducing up to #1[i]%. During the Complete Combustion, the DMG Reduction remains at its maximum effect, and the Effect RES increases by #4[i]%.\\nIf Energy is lower than #2[i]% when the battle starts, regenerates Energy to #2[i]%. Once Energy is regenerated to its maximum, dispels all debuffs on this unit.", + "Type": null, + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 0.20000000018626451, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 0.20000000018626451, + 0.12000000011175871 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.20000000018626451, + 0.14000000013038516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613, + 0.20000000018626451, + 0.1600000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 0.20000000018626451, + 0.18000000016763806 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.5000000004656613, + 0.20000000018626451, + 0.2249999998603016 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.5000000004656613, + 0.20000000018626451, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.5000000004656613, + 0.20000000018626451, + 0.27499999990686774 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 0.20000000018626451, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.5000000004656613, + 0.20000000018626451, + 0.3200000002980232 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.5000000004656613, + 0.20000000018626451, + 0.3400000003166497 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.5000000004656613, + 0.20000000018626451, + 0.3600000003352761 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.5000000004656613, + 0.20000000018626451, + 0.3800000003539026 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613, + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "131006": { + "Id": 131006, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131007": { + "Id": 131007, + "Name": "Δ Order: Meteoric Incineration", + "Desc": "Leaps into the air and moves about freely for #1[i] seconds, which can be ended early by launching a plunging attack. When the duration ends, plunges and immediately attacks all enemies within a set area. At the start of each wave, applies a Fire Weakness to all enemies, lasting for #3[i] turn(s). Then, deals Fire DMG equal to #2[i]% of SAM's ATK to all enemies.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5, + 2, + 2 + ] + } + } + }, + "131008": { + "Id": 131008, + "Name": "Fyrefly Type-IV: Pyrogenic Decimation", + "Desc": "Restores HP by an amount equal to #2[i]% of this unit's Max HP. Deals Fire DMG equal to #1[i]% of SAM's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 45, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2000000001862645, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.400000000372529, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6000000005587935, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.800000000745058, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2000000001862645, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.400000000372529, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6000000005587935, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 0.20000000018626451 + ] + } + } + }, + "131009": { + "Id": 131009, + "Name": "Fyrefly Type-IV: Deathstar Overload", + "Desc": "Restores HP by an amount equal to #3[i]% of this unit's Max HP. Applies Fire Weakness to a single target enemy, lasting for #4[i] turn(s). Deals Fire DMG equal to (#5[f1] × Break Effect + #1[f1]%) of SAM's ATK to this target. At the same time, deals Fire DMG equal to (#6[f1] × Break Effect + #2[f1]%) of SAM's ATK to adjacent targets. The Break Effect taken into the calculation is capped at #7[i]%.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 45 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.8125000009313226, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1.0500000000465661, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1.1000000000931323, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1.1500000001396984, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1.2000000001862645, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1.2500000002328306, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Maze.png", + "LevelUpSkillID": [ + 131007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5500000005122274 + ], + "PointID": 1310101, + "PointName": "Module α: Antilag Outburst", + "PointDesc": "During the Complete Combustion, attacking enemies that have no Fire Weakness can also reduce their Toughness, with the effect being equivalent to #1[i]% of the original Toughness Reduction from abilities.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2, + 3.6000000005587935, + 0.3500000003259629, + 0.5000000004656613 + ], + "PointID": 1310102, + "PointName": "Module β: Autoreactive Armor", + "PointDesc": "When SAM is in Complete Combustion with a Break Effect that is equal to or greater than #1[i]%/#2[i]%, attacking a Weakness-Broken enemy target will convert the Toughness Reduction of this attack into 1 instance of #3[i]%/#4[i]% Super Break DMG.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1800, + 10, + 0.007999999448657036 + ], + "PointID": 1310103, + "PointName": "Module γ: Core Overload", + "PointDesc": "For every #2[i] point(s) of SAM's ATK that exceeds #1[i], increases this unit's Break Effect by #3[f1]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310201, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310202, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1310101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310203, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1310202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310204, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1310203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310205, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1310102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310206, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1310205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310207, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1310206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310208, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1310103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310209, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1310208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "Effect RES" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310210, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1310208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "Break Effect" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 5.28000000026077, + "HPBase": 110.88000000081956, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 147.8400000007823, + "DefenceAdd": 5.28000000026077, + "HPBase": 155.23200000007637, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 190.0800000000745, + "DefenceAdd": 5.28000000026077, + "HPBase": 199.5840000002645, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 232.32000000029802, + "DefenceAdd": 5.28000000026077, + "HPBase": 243.93600000045262, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 274.56000000052154, + "DefenceAdd": 5.28000000026077, + "HPBase": 288.2879999997094, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 316.80000000074506, + "DefenceAdd": 5.28000000026077, + "HPBase": 332.64000000059605, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 359.04000000003725, + "DefenceAdd": 5.28000000026077, + "HPBase": 376.9920000007842, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1310, + "Set4IDList": [ + 119, + 112, + 107 + ], + "Set2IDList": [ + 316, + 307, + 309 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 246, + 190 + ] + } + }, + "1312": { + "Name": "Misha", + "Desc": "A well-behaved young man serving as a hotel bellboy in Penacony.\\nMisha has a great longing for the Nameless and dreams of one day embarking on a journey of his own.", + "CharaInfo": { + "Camp": "Penacony", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "misha", + "SPNeed": 100, + "BaseType": "Warrior", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 131201, + "Name": "Whimsicality of Fancy", + "Desc": "When using the Ultimate, for every enemy on the field, additionally increases the Hits Per Action for the current Ultimate by #1[i] hit(s), up to a maximum increase of #2[i] hit(s).", + "ParamList": [ + 1, + 5 + ] + }, + "2": { + "Id": 131202, + "Name": "Yearning of Youth", + "Desc": "Before each hit of the Ultimate lands, there is a #3[i]% base chance of reducing the target's DEF by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.1600000001490116, + 3, + 0.24000000022351742 + ] + }, + "3": { + "Id": 131203, + "Name": "Vestige of Happiness", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 131204, + "Name": "Visage of Kinship", + "Desc": "Increases the DMG multiplier for each hit of the Ultimate by #1[i]%.", + "ParamList": [ + 0.060000000055879354 + ] + }, + "5": { + "Id": 131205, + "Name": "Genesis of First Love", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 131206, + "Name": "Estrangement of Dream", + "Desc": "When using the Ultimate, increases own DMG by #2[i]%, lasting until the end of the turn. In addition, the next time the Skill is used, recovers #1[i] Skill Point(s) for the team.", + "ParamList": [ + 1, + 0.3000000002793968 + ] + } + }, + "Skills": { + "131201": { + "Id": 131201, + "Name": "E—Excuse Me, Please!", + "Desc": "Deals Ice DMG equal to #1[i]% of Misha's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131202": { + "Id": 131202, + "Name": "R—Room Service!", + "Desc": "Increases the Hits Per Action for Misha's next Ultimate by #3[i] hit(s). Deals Ice DMG equal to #1[i]% of Misha's ATK to a single target enemy, and Ice DMG equal to #2[i]% of Misha's ATK to adjacent targets.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.44000000040978193, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.48000000044703484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.5200000004842877, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.5600000005215406, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.7000000006519258, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.7500000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.8800000008195639, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.9200000008568168, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.9600000008940697, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1, + 1 + ] + } + } + }, + "131203": { + "Id": 131203, + "Name": "G—Gonna Be Late!", + "Desc": "Has #1[i] Hits Per Action by default. First, uses 1 hit to deal Ice DMG equal to #2[i]% of Misha's ATK to a single target enemy. Then, the rest of the hits each deals Ice DMG equal to #2[i]% of Misha's ATK to a single random enemy. Just before each hit lands, there is a #3[f1]% base chance to Freeze the target, lasting for 1 turn.\\nWhile Frozen, enemy targets cannot take any actions, and at the start of their turn, they receive Ice Additional DMG equal to #4[i]% of Misha's ATK.\\nThis Ultimate can possess up to #5[i] Hits Per Action. After the Ultimate is used, its Hits Per Action will be reset to the default level.", + "Type": "Ultra", + "Tag": "Bounce", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.3600000003352761, + 0.12000000011175871, + 0.18000000016763806, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.3840000000782311, + 0.12799999956041574, + 0.19200000003911555, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.40799999982118607, + 0.1359999997075647, + 0.20399999991059303, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.43200000026263297, + 0.14399999985471368, + 0.21599999978207052, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.45600000000558794, + 0.15200000000186265, + 0.227999999653548, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.48000000044703484, + 0.1600000001490116, + 0.24000000022351742, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.5100000004749745, + 0.17000000015832484, + 0.2549999998882413, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.5400000005029142, + 0.18000000016763806, + 0.2700000002514571, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.5700000005308539, + 0.1900000001769513, + 0.28499999991618097, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.6000000005587935, + 0.20000000018626451, + 0.3000000002793968, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.6240000003017485, + 0.20799999963492155, + 0.31200000015087426, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.6480000000447035, + 0.21599999978207052, + 0.32400000002235174, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.6720000004861504, + 0.22399999992921948, + 0.3359999998938292, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.6960000002291054, + 0.23200000007636845, + 0.3479999997653067, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.7200000006705523, + 0.24000000022351742, + 0.3600000003352761, + 10 + ] + } + } + }, + "131204": { + "Id": 131204, + "Name": "Horological Escapement", + "Desc": "For every 1 Skill Point allies consume, Misha's next Ultimate delivers #2[i] more Hit(s) Per Action, and Misha regenerates #1[f1] Energy.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "131206": { + "Id": 131206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131207": { + "Id": 131207, + "Name": "Wait, You Are So Beautiful!", + "Desc": "After using the Technique, creates a Special Dimension that lasts for #1[i] seconds. Enemies caught in the Special Dimension are inflicted with Dream Prison and stop all their actions. Upon entering battle against enemies afflicted with Dream Prison, increases the Hits Per Action for Misha's next Ultimate by #2[i] hit(s). Only 1 Dimension Effect created by allies can exist at the same time.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Maze.png", + "LevelUpSkillID": [ + 131207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 1312101, + "PointName": "Release", + "PointDesc": "Before the Ultimate's first hit, increases the base chance of Freezing the target by #1[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935 + ], + "PointID": 1312102, + "PointName": "Interlock", + "PointDesc": "When using the Ultimate, increases the Effect Hit Rate by #1[i]%, lasting until the end of the current Ultimate's action.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1312103, + "PointName": "Transmission", + "PointDesc": "When dealing DMG to Frozen enemies, increases CRIT DMG by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312201, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312202, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1312101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312203, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1312202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312204, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1312203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312205, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1312102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312206, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1312205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312207, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1312206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312208, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1312103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312209, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1312208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312210, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1312208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "Ice DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 172.80000000074506, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 241.92000000085682, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 311.04000000003725, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 380.160000000149, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 449.28000000026077, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 518.4000000003725, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 587.5200000004843, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1312, + "Set4IDList": [ + 104, + 122, + 102 + ], + "Set2IDList": [ + 306, + 301, + 311 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1313": { + "Name": "Sunday", + "Desc": "The dream of the Order has dissipated, yet there are still those who will not give up on their original intent.\\n — The traveler whose wings were clipped... whereto shall his footsteps lead?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sunday", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 131301, + "Name": "Millennium's Quietus", + "Desc": "When Sunday uses Skill, the target character can ignore #2[i]% of enemy target's DEF to deal DMG and their summon can ignore #3[i]% of enemy target's DEF to deal DMG, lasting for #1[i] turn(s).", + "ParamList": [ + 2, + 0.1600000001490116, + 0.40000000037252903 + ] + }, + "2": { + "Id": 131302, + "Name": "Faith Outstrips Frailty", + "Desc": "After the first use of Ultimate, recovers #2[i] Skill Point(s). The DMG dealt by \"The Beatified\" increases by #1[i]%.", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 131303, + "Name": "Hermitage of Thorns", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 131304, + "Name": "Sculpture's Preamble", + "Desc": "When the turn starts, regenerates #1[i] Energy.", + "ParamList": [ + 8 + ] + }, + "5": { + "Id": 131305, + "Name": "Paper Raft in Silver Bay", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 131306, + "Name": "Dawn of Sidereal Cacophony", + "Desc": "The Talent's CRIT Rate boost effect becomes stackable up to #1[i] time(s), and the Talent's duration increases by #3[i] turn(s). When Sunday uses Ultimate, can also apply the Talent's CRIT Rate boost effect to the target. When the Talent's CRIT Rate boost takes effect and the target's CRIT Rate exceeds 100%, every 1% of excess CRIT Rate increases CRIT DMG by #2[i]%.", + "ParamList": [ + 3, + 0.02000000001862645, + 1 + ] + } + }, + "Skills": { + "131301": { + "Id": 131301, + "Name": "Gleaming Admonition", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Sunday's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131302": { + "Id": 131302, + "Name": "Benison of Paper and Rites", + "Desc": "Enables one designated ally character and their summon to immediately take action, and increases their DMG dealt by #2[i]%. If the target has a summon, then the dealt DMG increase is further boosted by an additional #4[i]%, lasting for #3[i] turn(s).\\nAfter using Skill on The Beatified, recovers 1 Skill Point.\\nWhen Sunday uses this ability on characters following the Path of Harmony, cannot trigger the \"immediate action\" effect.", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.1500000001396984, + 2, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.16499999980442226, + 2, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.18000000016763806, + 2, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.19499999983236194, + 2, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.21000000019557774, + 2, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.2249999998603016, + 2, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.24375000083819032, + 2, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.26250000041909516, + 2, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.28125000069849193, + 2, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.3000000002793968, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.31499999994412065, + 2, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.33000000030733645, + 2, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.3449999999720603, + 2, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.3600000003352761, + 2, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.375, + 2, + 0.6250000002328306 + ] + } + } + }, + "131303": { + "Id": 131303, + "Name": "Ode to Caress and Cicatrix", + "Desc": "Regenerates Energy by #1[f1]% of Max Energy for one designated ally character, and turns the target and their summon into \"The Beatified.\" \"The Beatified\" have their CRIT DMG increased by an amount equal to #2[f1]% of Sunday's CRIT DMG plus #4[f1]%.\\nAt the start of Sunday's each turn, the duration of \"The Beatified\" decreases by 1 turn, lasting for a total of #3[i] turn(s). And it only takes effect on the most recent target of the Ultimate (excluding Sunday himself). When Sunday is knocked down, \"The Beatified\" will also be dispelled.", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.12000000011175871, + 3, + 0.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 0.13799999956972897, + 3, + 0.08399999979883432 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.20000000018626451, + 0.15599999972619116, + 3, + 0.08799999952316284 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.20000000018626451, + 0.17399999988265336, + 3, + 0.09199999994598329 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.20000000018626451, + 0.19200000003911555, + 3, + 0.09599999967031181 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.21000000019557774, + 3, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20000000018626451, + 0.23250000039115548, + 3, + 0.1049999997485429 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.20000000018626451, + 0.2549999998882413, + 3, + 0.11000000010244548 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.20000000018626451, + 0.27750000008381903, + 3, + 0.11499999975785613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 3, + 0.12000000011175871 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20000000018626451, + 0.31799999973736703, + 3, + 0.12399999983608723 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.20000000018626451, + 0.3359999998938292, + 3, + 0.12799999956041574 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20000000018626451, + 0.3540000000502914, + 3, + 0.1319999999832362 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.20000000018626451, + 0.3720000002067536, + 3, + 0.1359999997075647 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.20000000018626451, + 0.3900000003632158, + 3, + 0.14000000013038516 + ] + } + } + }, + "131304": { + "Id": 131304, + "Name": "The Sorrowing Body", + "Desc": "When using Skill, increases the target's CRIT Rate by #1[f1]%, lasting for #2[i] turn(s).", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 3 + ] + } + } + }, + "131306": { + "Id": 131306, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131307": { + "Id": 131307, + "Name": "The Glorious Mysteries", + "Desc": "After this Technique is used, the first time Sunday uses an ability on an ally target in the next battle, the target's DMG dealt increases by #1[i]%, lasting for #2[i] turn(s).", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Maze.png", + "LevelUpSkillID": [ + 131307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 40 + ], + "PointID": 1313101, + "PointName": "Rest Day's Longing", + "PointDesc": "When using Ultimate, if the Energy regenerated for the target is less than #1[i], increases the regenerated Energy to #1[i].", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 25 + ], + "PointID": 1313102, + "PointName": "Exalted Sweep", + "PointDesc": "When battle starts, Sunday regenerates #1[i] Energy.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1313103, + "PointName": "Haven in Palm", + "PointDesc": "When using Skill, dispels #1[i] debuff(s) from the target.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313201, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313202, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1313101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313203, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1313202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1313201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313205, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1313102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313206, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1313205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313207, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1313201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1313103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313209, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1313208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "Effect RES" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313210, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1313208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 72.6000000005588, + "DefenceAdd": 3.630000000586733, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 101.64000000059605, + "DefenceAdd": 3.630000000586733, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 3.630000000586733, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 159.72000000067055, + "DefenceAdd": 3.630000000586733, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 3.630000000586733, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 3.630000000586733, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 246.8400000007823, + "DefenceAdd": 3.630000000586733, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1313, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 317, + 310, + 308 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 187 + ], + "LocalCriticalChance": 1 + } + }, + "1314": { + "Name": "Jade", + "Desc": "A senior manager in the IPC Strategic Investment Department and one of the Ten Stonehearts, known for her cornerstone \"Jade of Credit.\"\\nA beautiful and elegant moneylender, she is skilled in deciphering the depths of people's minds, with a personal hobby called \"Bonajade Exchange.\"\\nShe's willing to wait patiently for high-value acquisitions and adept at extracting value from seemingly destitute clients.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jade", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 131401, + "Name": "Altruism? Nevertheless Tradable", + "Desc": "The Follow-up ATK DMG from Jade's Talent increases by #1[i]%. After the \"Debt Collector\" character attacks and the number of the enemy target(s) hit is either 2 or 1, Jade additionally gains #2[i] or #3[i] point(s) of Charge respectively.", + "ParamList": [ + 0.3200000002980232, + 1, + 2 + ] + }, + "2": { + "Id": 131402, + "Name": "Morality? Herein Authenticated", + "Desc": "When there are #1[i] stacks of Pawned Asset, Jade's CRIT Rate increases by #2[i]%.", + "ParamList": [ + 15, + 0.18000000016763806 + ] + }, + "3": { + "Id": 131403, + "Name": "Honesty? Soon Mortgaged", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 131404, + "Name": "Sincerity? Put Option Only", + "Desc": "When using Ultimate, enables the DMG dealt by Jade to ignore #1[i]% of enemy targets' DEF, lasting for #2[i] turn(s).", + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "5": { + "Id": 131405, + "Name": "Hope? Hitherto Forfeited", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 131406, + "Name": "Equity? Pending Sponsorship", + "Desc": "While the \"Debt Collector\" character exists on the field, Jade's Quantum RES PEN increases by #1[i]%, and Jade gains the \"Debt Collector\" state.", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "131401": { + "Id": 131401, + "Name": "Lash of Riches", + "Desc": "Deals Quantum DMG equal to #1[i]% of Jade's ATK to a single target enemy, and Quantum DMG equal to #2[i]% of Jade's ATK to adjacent enemies.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5400000005029142, + 0.18000000016763806 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6300000005867332, + 0.21000000019557774 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523, + 0.24000000022351742 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8100000007543713, + 0.2700000002514571 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9900000009220093, + 0.33000000030733645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 0.3600000003352761 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1700000001583248, + 0.3900000003632158 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2600000002421439, + 0.4200000003911555 + ] + } + } + }, + "131402": { + "Id": 131402, + "Name": "Acquisition Surety", + "Desc": "Makes a single target ally become the Debt Collector and increases their SPD by #1[i], lasting for #4[i] turn(s).\\nAfter the Debt Collector attacks, deals 1 instance of Quantum Additional DMG equal to #3[i]% of Jade's ATK to each enemy target hit, and consumes the Debt Collector's HP by an amount equal to #2[i]% of their Max HP. If the current HP is insufficient, reduces HP to 1.\\nIf Jade becomes the Debt Collector, she cannot gain the SPD boost effect, and her attacks do not consume HP.\\nWhen the Debt Collector exists on the field, Jade cannot use her Skill. At the start of Jade's every turn, the Debt Collector's duration decreases by 1 turn.", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1500000001396984, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1600000001490116, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 30, + 0.02000000001862645, + 0.17000000015832484, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 30, + 0.02000000001862645, + 0.18000000016763806, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1900000001769513, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 30, + 0.02000000001862645, + 0.20000000018626451, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 30, + 0.02000000001862645, + 0.21250000037252903, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2249999998603016, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 30, + 0.02000000001862645, + 0.23750000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 30, + 0.02000000001862645, + 0.25000000023283064, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 30, + 0.02000000001862645, + 0.26000000024214387, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2700000002514571, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2800000002607703, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 30, + 0.02000000001862645, + 0.29000000027008355, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 30, + 0.02000000001862645, + 0.3000000002793968, + 3 + ] + } + } + }, + "131403": { + "Id": 131403, + "Name": "Vow of the Deep", + "Desc": "Deals Quantum DMG equal to #3[i]% of Jade's ATK to all enemies. At the same time, Jade enhances her Talent's Follow-up ATK, increasing its DMG multiplier by #1[i]%. This enhancement can take effect #2[i] time(s).", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 2, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 2, + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 2, + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 2, + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 2, + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 2, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 2, + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 2, + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 2, + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 2, + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 2, + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 2, + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 2, + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 2, + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 2, + 3 + ] + } + } + }, + "131404": { + "Id": 131404, + "Name": "Fang of Flare Flaying", + "Desc": "After Jade or the Debt Collector unit attacks, gains 1 point of Charge for each enemy target hit. Upon reaching #3[i] points of Charge, consumes the #3[i] points to launch 1 instance of Follow-up ATK, dealing Quantum DMG equal to #5[i]% of Jade's ATK to all enemies. This Follow-up ATK does not generate Charge.\\nWhen launching her Talent's Follow-up ATK, Jade immediately gains #4[i] stack(s) of Pawned Asset, with each stack increasing CRIT DMG by #1[f1]%, stacking up to #2[i] times.", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.011999999871477485, + 50, + 8, + 5, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.013199999928474426, + 50, + 8, + 5, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.014399999985471368, + 50, + 8, + 5, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.01560000004246831, + 50, + 8, + 5, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.01680000009946525, + 50, + 8, + 5, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.01799999945797026, + 50, + 8, + 5, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.01949999970383942, + 50, + 8, + 5, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.02099999994970858, + 50, + 8, + 5, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.02250000019557774, + 50, + 8, + 5, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.02399999974295497, + 50, + 8, + 5, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.02519999979995191, + 50, + 8, + 5, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.026399999856948853, + 50, + 8, + 5, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.027599999913945794, + 50, + 8, + 5, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.028799999970942736, + 50, + 8, + 5, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.030000000027939677, + 50, + 8, + 5, + 1.5000000004656613 + ] + } + } + }, + "131406": { + "Id": 131406, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131407": { + "Id": 131407, + "Name": "Visionary Predation", + "Desc": "After using the Technique, inflicts enemies within a set area with Blind Fealty for #1[i] second(s). Enemies inflicted with Blind Fealty will not initiate attacks on allies. When entering battle via actively attacking enemies inflicted with Blind Fealty, all enemies with Blind Fealty will enter combat simultaneously. After entering battle, deals Quantum DMG equal to #2[i]% of Jade's ATK to all enemies, and immediately gains #3[i] stack(s) of Pawned Asset.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 15 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Maze.png", + "LevelUpSkillID": [ + 131407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 1 + ], + "PointID": 1314101, + "PointName": "Reverse Repo", + "PointDesc": "When an enemy target enters combat, Jade gains #2[i] stack(s) of Pawned Asset. When the Debt Collector character's turn starts, additionally gains #1[i] stack(s) of Pawned Asset.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1314102, + "PointName": "Collateral Ticket", + "PointDesc": "When the battle starts, action advances Jade by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.004999999655410647 + ], + "PointID": 1314103, + "PointName": "Asset Forfeiture", + "PointDesc": "Each Pawned Asset stack from the Talent additionally increases Jade's ATK by #1[f1]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314201, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1314101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314203, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1314202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1314202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314205, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1314102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314206, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1314205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314207, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1314205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1314103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314209, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1314103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314210, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "Quantum DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1314, + "Set4IDList": [ + 108, + 115, + 102 + ], + "Set2IDList": [ + 313, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1315": { + "Name": "Boothill", + "Desc": "A cyborg cowboy drifting among the stars. Extremely optimistic and unrestrained.\\nHe is a member of the Galaxy Rangers who swore to punish the wretched by any and all means...\\nHis flamboyant and brash actions were all to draw the attention of the Interastral Peace Corporation — the target of his revenge.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "boothill", + "SPNeed": 115, + "BaseType": "Rogue", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 131501, + "Name": "Dusty Trail's Lone Star", + "Desc": "When the battle starts, obtains 1 stack of Pocket Trickshot. When Boothill deals DMG, ignores #1[i]% of the enemy target's DEF.", + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "Id": 131502, + "Name": "Milestonemonger", + "Desc": "When in Standoff and gaining Pocket Trickshot, recovers #1[i] Skill Point(s) and increases Break Effect by #2[i]%, lasting for #3[i] turn(s). Can also trigger this effect when gaining Pocket Trickshot stacks that exceed the max limit. But cannot trigger repeatedly within one turn.", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 131503, + "Name": "Marble Orchard's Guard", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 131504, + "Name": "Cold Cuts Chef", + "Desc": "When the enemy target in the Standoff is attacked by Boothill, the DMG they receive additionally increases by #1[i]%. When Boothill is attacked by the enemy target in the Standoff, the effect of him receiving increased DMG is offset by #2[i]%.", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "5": { + "Id": 131505, + "Name": "Stump Speech", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 131506, + "Name": "Crowbar Hotel's Raccoon", + "Desc": "When triggering the Talent's Break DMG, additionally deals Break DMG to the target equal to #1[i]% of the original DMG multiplier and additionally deals Break DMG to adjacent targets equal to #2[i]% of the original DMG multiplier.", + "ParamList": [ + 0.40000000037252903, + 0.7000000006519258 + ] + } + }, + "Skills": { + "131501": { + "Id": 131501, + "Name": "Skullcrush Spurs", + "Desc": "Deals Physical DMG equal to #1[i]% of Boothill's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131502": { + "Id": 131502, + "Name": "Sizzlin' Tango", + "Desc": "Forces Boothill and a single target enemy into the Standoff state. Boothill's Basic ATK gets Enhanced, and he cannot use his Skill, lasting for #3[i] turn(s). This duration decreases by 1 at the start of Boothill's every turn.\\nThe enemy target in the Standoff becomes Taunted. When this enemy target/Boothill gets attacked by the other party in the Standoff, the DMG they receive increases by #1[i]%/#2[i]%.\\nAfter this target is defeated or becomes Weakness Broken, Boothill gains 1 stack of Pocket Trickshot, then dispels the Standoff.\\nThis Skill cannot regenerate Energy. After using this Skill, the current turn does not end.", + "Type": "BPSkill", + "Tag": "Impair", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 0.1500000001396984, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 0.1500000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 0.1500000001396984, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 0.1500000001396984, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 0.1500000001396984, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 0.1500000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 0.1500000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 0.1500000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 0.1500000001396984, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 0.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 0.1500000001396984, + 2 + ] + } + } + }, + "131503": { + "Id": 131503, + "Name": "Dust Devil's Sunset Rodeo", + "Desc": "Applies Physical Weakness to a single target enemy, lasting for #3[i] turn(s).\\nDeals Physical DMG equal to #1[i]% of Boothill's ATK to the target and delays their action by #2[i]%.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406, + 0.31000000028871, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523, + 0.3200000002980232, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564, + 0.33000000030733645, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253, + 0.3400000003166497, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645, + 0.3500000003259629, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529, + 0.3625000005122274, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935, + 0.375, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058, + 0.3875000001862645, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.40000000037252903, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012, + 0.41000000038184226, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023, + 0.4200000003911555, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035, + 0.4300000004004687, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464, + 0.44000000040978193, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058, + 0.45000000041909516, + 2 + ] + } + } + }, + "131504": { + "Id": 131504, + "Name": "Five Peas in a Pod", + "Desc": "Each stack of Pocket Trickshot increases the Enhanced Basic Attack's Toughness Reduction by #4[i]%, stacking up to #5[i] time(s).\\nIf the target is Weakness Broken while the Enhanced Basic ATK is being used, based on the number of Pocket Trickshot stacks, deals Break DMG to this target equal to #1[i]%/#2[i]%/#3[i]% of Boothill's Physical Break DMG. The max Toughness taken into account for this DMG cannot exceed #6[i] times the base Toughness Reduction of the Basic Attack \"Skullcrush Spurs.\"\\nAfter winning the battle, Boothill can retain Pocket Trickshot for the next battle.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 0.6000000005587935, + 0.8500000007916242, + 0.5000000004656613, + 3, + 16 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 0.6600000006146729, + 0.9350000005215406, + 0.5000000004656613, + 3, + 16 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 0.7200000006705523, + 1.0200000000186265, + 0.5000000004656613, + 3, + 16 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 0.7800000007264316, + 1.104999999748543, + 0.5000000004656613, + 3, + 16 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 0.840000000782311, + 1.1900000001769513, + 0.5000000004656613, + 3, + 16 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 0.9000000008381903, + 1.2749999999068677, + 0.5000000004656613, + 3, + 16 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 0.9750000005587935, + 1.3812500007916242, + 0.5000000004656613, + 3, + 16 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 1.0500000000465661, + 1.4875000002793968, + 0.5000000004656613, + 3, + 16 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 1.1249999997671694, + 1.5937500011641532, + 0.5000000004656613, + 3, + 16 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 1.2000000001862645, + 1.7000000006519258, + 0.5000000004656613, + 3, + 16 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 1.2600000002421439, + 1.7850000003818423, + 0.5000000004656613, + 3, + 16 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 1.3200000002980232, + 1.8700000008102506, + 0.5000000004656613, + 3, + 16 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 1.3800000003539026, + 1.955000000540167, + 0.5000000004656613, + 3, + 16 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 1.440000000409782, + 2.040000000037253, + 0.5000000004656613, + 3, + 16 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 1.5000000004656613, + 2.1249999997671694, + 0.5000000004656613, + 3, + 16 + ] + } + } + }, + "131506": { + "Id": 131506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131507": { + "Id": 131507, + "Name": "3-9× Smile", + "Desc": "After the Technique is used, when casting the Skill for the first time in the next battle, applies the same Physical Weakness to the target as the one induced by the Ultimate, lasting for #1[i] turn(s).", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + }, + "131508": { + "Id": 131508, + "Name": "Fanning the Hammer", + "Desc": "Deals Physical DMG equal to #1[i]% of Boothill's ATK to a single target enemy.\\nThe Enhanced Basic Attack cannot recover Skill Points and can only target the enemy that is in the Standoff.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5400000005029142 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7600000007078052 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9800000009126961 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.4200000003911555 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.6400000005960464 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.8600000008009374 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.080000000074506 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Maze.png", + "LevelUpSkillID": [ + 131507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 0.5000000004656613, + 1.5000000004656613 + ], + "PointID": 1315101, + "PointName": "Ghost Load", + "PointDesc": "Increase this character's CRIT Rate/CRIT DMG, by an amount equal to #1[i]%/#3[i]% of Break Effect, up to a max increase of #2[i]%/#4[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1315102, + "PointName": "Above Snakes", + "PointDesc": "While Boothill is in the Standoff, reduces the DMG he receives from targets that are not in the Standoff by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1315103, + "PointName": "Point Blank", + "PointDesc": "When in Standoff and gaining Pocket Trickshot, regenerates #1[i] Energy. Can also trigger this effect when gaining Pocket Trickshot stacks that exceed the max limit.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315201, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1315101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315203, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1315202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315205, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1315102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315206, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1315205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315207, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1315103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315209, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1315208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315210, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1315208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "Break Effect" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1315, + "Set4IDList": [ + 111, + 119, + 102 + ], + "Set2IDList": [ + 307, + 316, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase" + ], + "ScoreRankList": [ + 280, + 226 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1317": { + "Name": "Rappa", + "Desc": "A peculiar girl who appears in Penacony like a flashbang at the darkest hour of night, identifying herself as a ninja and attributing everything in the world to \"ninjutsu.\"\\nUpholding the recitation of ninja mantra, creating Dazzling Ninja Seals, and studying ninja scrolls — That is, the Way of the Ninja involves rap, graffiti, and manga — Through rigorous self-discipline, she roams the stars, upholding justice and righteousness.\\nAs a member of the Galaxy Rangers, she relentlessly pursues the villain known as Evil Ninja Osaru, chasing them to the very edge of the Cosmos.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "rappa", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 131701, + "Name": "Returned Is the Revenant With No Ferry Toll", + "Desc": "During the \"Sealform\" state entered by using Ultimate, DMG dealt by Rappa ignores #1[i]% of the targets' DEF. After exiting the \"Sealform\" state, regenerates #2[i] Energy.", + "ParamList": [ + 0.1500000001396984, + 20 + ] + }, + "2": { + "Id": 131702, + "Name": "Free Is the Mind Enlightened by Haikus", + "Desc": "The Enhanced Basic ATK's first 2 hits have their Toughness Reduction against the one designated enemy increased by #1[i]%.", + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Id": 131703, + "Name": "Many Are the Shrines That Repel No Hell", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 131704, + "Name": "Lost Is the Nindō Devoured by Time", + "Desc": "While in the \"Sealform\" state, increases all allies' SPD by #1[i]%.", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 131705, + "Name": "Steady Is The Ranger With Unerring Arrows", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 131706, + "Name": "Righteous Is the Wrath That Spares No Evil", + "Desc": "When battle starts, Rappa gains #1[i] point(s) of her Talent's Charge, and its upper limit increases by #2[i] point(s). After launching the third hit of \"Ningu: Demonbane Petalblade,\" gains #1[i] point(s) of Charge.", + "ParamList": [ + 5, + 5 + ] + } + }, + "Skills": { + "131701": { + "Id": 131701, + "Name": "Ninjutsu: Rise Above Tumbles", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Rappa's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131702": { + "Id": 131702, + "Name": "Ninja Strike: Rooted Resolute", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Rappa's ATK to all enemies.", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613 + ] + } + } + }, + "131703": { + "Id": 131703, + "Name": "Nindō Supreme: Aishiteru", + "Desc": "Enters the \"Sealform\" state, immediately gains 1 extra turn, obtains #3[i] points of \"Chroma Ink,\" and increases Weakness Break Efficiency by #1[i]% and Break Effect by #2[i]%.\\nWhile in the \"Sealform\" state, Basic ATK is enhanced, and Skill and Ultimate cannot be used. After using Enhanced Basic ATK, consumes 1 point of \"Chroma Ink.\" When \"Chroma Ink\" is depleted, exits the \"Sealform\" state.", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 0.12000000011175871, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 0.14000000013038516, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 0.1600000001490116, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 0.18000000016763806, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 0.2249999998603016, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 0.27499999990686774, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 0.3200000002980232, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 0.3400000003166497, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 0.3600000003352761, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 0.3800000003539026, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903, + 3 + ] + } + } + }, + "131704": { + "Id": 131704, + "Name": "Ninja Tech: Endurance Gauge", + "Desc": "Each time the enemy target is Weakness Broken, Rappa gains 1 point of Charge, up to a max of #1[i] points of Charge. When Rappa next launches the third hit of \"Ningu: Demonbane Petalblade,\" additionally deals Break DMG equal to #3[i]% of Rappa's Imaginary Break DMG to all enemies. This DMG can ignore Weakness Type to reduce #4[i] Toughness, consuming all Charge. Each point of Charge increases the Break DMG multiplier by #5[i]% and increases the Toughness Reduction that can ignore Weakness Type by #6[i].\\nWhen Breaking Weakness, triggers the Imaginary Weakness Break effect.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 6, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0, + 0.3000000002793968, + 2, + 0.25000000023283064, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 10, + 0, + 0.33000000030733645, + 2, + 0.27499999990686774, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 10, + 0, + 0.3600000003352761, + 2, + 0.3000000002793968, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 10, + 0, + 0.3900000003632158, + 2, + 0.32499999995343387, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 10, + 0, + 0.4200000003911555, + 2, + 0.3500000003259629, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 10, + 0, + 0.45000000041909516, + 2, + 0.375, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 10, + 0, + 0.4875000002793968, + 2, + 0.4062500004656613, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 10, + 0, + 0.5250000001396984, + 2, + 0.43750000023283064, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 10, + 0, + 0.5625000006984919, + 2, + 0.46875000069849193, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10, + 0, + 0.6000000005587935, + 2, + 0.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10, + 0, + 0.6300000005867332, + 2, + 0.5250000001396984, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 10, + 0, + 0.6600000006146729, + 2, + 0.5500000005122274, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 10, + 0, + 0.6900000006426126, + 2, + 0.5750000001862645, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 10, + 0, + 0.7200000006705523, + 2, + 0.6000000005587935, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 10, + 0, + 0.7500000006984919, + 2, + 0.6250000002328306, + 1 + ] + } + } + }, + "131706": { + "Id": 131706, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131707": { + "Id": 131707, + "Name": "Ninja Dash: By Leaps and Bounds", + "Desc": "After using Technique, enters the \"Graffiti\" state for #1[i] seconds. While in the \"Graffiti\" state, moves forward rapidly for a set distance and attacks any enemies touched. During the rapid movement, can block all enemies' attacks. Using an attack in the \"Graffiti\" state can end the state's duration early. After entering combat via attacking enemies, deals #5[i] Toughness Reduction regardless of Weakness Type and Break DMG equal to #2[i]% of Rappa's Imaginary Break DMG to each enemy target, and deals Break DMG equal to #3[i]% of Rappa's Imaginary Break DMG to adjacent targets. At the same time, this unit regenerates #4[i] Energy.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 2, + 1.800000000745058, + 10, + 30 + ] + } + } + }, + "131708": { + "Id": 131708, + "Name": "Ningu: Demonbane Petalblade", + "Desc": "Launches \"Ningu: Demonbane Petalblade.\" The first 2 hits deal Imaginary DMG equal to #1[i]% of Rappa's ATK to one designated enemy and Imaginary DMG equal to #2[i]% of Rappa's ATK to adjacent targets, and the 3rd hit deals Imaginary DMG equal to #3[i]% of Rappa's ATK to all enemies.\\nEnhanced Basic ATK will not recover Skill Points. Attacking enemies that don't have Imaginary Weakness can also reduce Toughness, whose effect is equal to #4[i]% of the original Toughness Reduction. When Breaking Weakness, triggers the Imaginary Weakness Break effect.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497, + 0.6800000006332994, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026, + 0.7600000007078052, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.840000000782311, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084, + 0.9200000008568168, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142, + 1.0800000000745058, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671, + 1.1600000001490116, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742, + 1.2400000002235174, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 1.3200000002980232, + 0.5000000004656613 + ] + } + } + }, + "131710": { + "Id": 131710, + "Name": "Ningu: Demonbane Petalblade", + "Desc": null, + "Type": "Normal", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729 + ] + } + } + }, + "131712": { + "Id": 131712, + "Name": "Ningu: Demonbane Petalblade", + "Desc": null, + "Type": "Normal", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232 + ] + } + } + }, + "131718": { + "Id": 131718, + "Name": "Ningu: Demonbane Petalblade", + "Desc": "Launches \"Ningu: Demonbane Petalblade.\" The first 2 hits deal Imaginary DMG equal to #1[i]% of Rappa's ATK to one designated enemy and Imaginary DMG equal to #2[i]% of Rappa's ATK to adjacent targets, and the 3rd hit deals Imaginary DMG equal to #3[i]% of Rappa's ATK to all enemies.\\nEnhanced Basic ATK will not recover Skill Points. Attacking enemies that don't have Imaginary Weakness can also reduce Toughness, whose effect is equal to #4[i]% of the original Toughness Reduction. When Breaking Weakness, triggers the Imaginary Weakness Break effect.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 75, + 0, + 45 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497, + 0.6800000006332994, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026, + 0.7600000007078052, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.840000000782311, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084, + 0.9200000008568168, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142, + 1.0800000000745058, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671, + 1.1600000001490116, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742, + 1.2400000002235174, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 1.3200000002980232, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Maze.png", + "LevelUpSkillID": [ + 131707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 1 + ], + "PointID": 1317101, + "PointName": "Ninjutsu Inscription: Sky High", + "PointDesc": "When the Weakness of an elite-level or higher enemy is broken, Rappa additionally gains #2[i] point(s) of Charge and regenerates #1[i] Energy.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935 + ], + "PointID": 1317102, + "PointName": "Ninjutsu Inscription: Sea Echo", + "PointDesc": "While in the \"Sealform\" state, after Rappa uses Enhanced Basic ATK to deal DMG to a Weakness Broken enemy target, converts the Toughness Reduction from this instance of DMG to 1 instance of #1[i]% Super Break DMG.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.02000000001862645, + 2400, + 0.010000000009313226, + 0.0800000000745058, + 2 + ], + "PointID": 1317103, + "PointName": "Ninjutsu Inscription: Withered Leaf", + "PointDesc": "When an enemy target becomes Weakness Broken, increases the Break DMG taken by #1[i]%. If Rappa's current ATK is higher than #2[i], for every 100 excess ATK, additionally increases this value by #3[i]%, up to a max additional increase of #4[i]%. This effect lasts for #5[i] turn(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317202, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1317101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1317202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317204, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1317202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1317102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317206, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1317205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1317205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317208, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1317103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317209, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1317103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "SPD" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 97.6800000006333, + "AttackAdd": 4.884000000543892, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 136.75200000056066, + "AttackAdd": 4.884000000543892, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 175.824000000488, + "AttackAdd": 4.884000000543892, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 214.89600000041537, + "AttackAdd": 4.884000000543892, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 253.96800000034273, + "AttackAdd": 4.884000000543892, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 293.04000000003725, + "AttackAdd": 4.884000000543892, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 332.1119999999646, + "AttackAdd": 4.884000000543892, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1317, + "Set4IDList": [ + 119, + 111, + 118 + ], + "Set2IDList": [ + 307, + 316, + 301 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 246, + 189 + ] + } + }, + "1401": { + "Name": "The Herta", + "Desc": "Esteemed Genius Society #83, human, female, young, beautiful, attractive.\\nIt's said that she lives in the far edge of the Cosmos, almost never leaving. Sounds like her appearance this time...\\n...must be for some issue that requires a personal touch, right?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "theherta", + "SPNeed": 220, + "BaseType": "Mage", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 140101, + "Name": "Night at Shorefall", + "Desc": "When the Enhanced Skill calculates the number of \"Interpretation\" stacks, additionally counts #1[i]% of the number of \"Interpretation\" stacks on the 1 target with the most stacks among the primary target and adjacent targets. When \"Interpretation\" is reset by using the Enhanced Skill, its stack number is reset to #2[i] instead.", + "ParamList": [ + 0.5000000004656613, + 15 + ] + }, + "2": { + "Id": 140102, + "Name": "Wind Through Keyhole", + "Desc": "After The Herta enters battle or uses Ultimate, additionally gains 1 \"Inspiration\" stack. After using Enhanced Skill, advances The Herta's next action by #1[i]%.", + "ParamList": [ + 0.3500000003259629, + 42, + 0.25000000023283064 + ] + }, + "3": { + "Id": 140103, + "Name": "Door into Summer", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 140104, + "Name": "The Sixteenth Key", + "Desc": "The SPD of Erudition characters in the team increases by #1[i]%.", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 140105, + "Name": "Bitter Pill of Truth", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 140106, + "Name": "Sweet Lure of Answer", + "Desc": "The Herta's Ice RES PEN increases by #4[i]%. When the number of enemy targets on the field is 3 (or more)/2/1, Ultimate's DMG multiplier increases by #1[i]%/#2[i]%/#3[i]% respectively.", + "ParamList": [ + 1.400000000372529, + 2.5000000004656613, + 4, + 0.20000000018626451 + ] + } + }, + "Skills": { + "140101": { + "Id": 140101, + "Name": "Did You Get It", + "Desc": "Deals Ice DMG equal to #1[i]% of The Herta's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 3, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 3, + 1, + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 3, + 1, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 3, + 1, + 0.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 3, + 1, + 0.3000000002793968 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 3, + 1, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 3, + 1, + 0.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 3, + 1, + 0.3000000002793968 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 3, + 1, + 0.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 3, + 1, + 0.3000000002793968 + ] + } + } + }, + "140102": { + "Id": 140102, + "Name": "Big Brain Energy", + "Desc": "Deals Ice DMG equal to #1[i]% of The Herta's ATK to one designated enemy, and inflicts #2[i] stack(s) of \"Interpretation.\" Deals Ice DMG equal to #1[i]% of The Herta's ATK to the targets hit by this instance of Skill and their respective adjacent targets. This effect can repeat 2 times.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 45, + 15, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 1 + ] + } + } + }, + "140103": { + "Id": 140103, + "Name": "Told Ya! Magic Happens", + "Desc": "Rearranges the numbers of \"Interpretation\" stacks on all enemies, prioritizing the transfer of the higher numbers of \"Interpretation\" stacks to Elite-level targets and above. Then, deals Ice DMG equal to #1[i]% of The Herta's ATK to all enemies. When using Ultimate, increases The Herta's ATK by #4[i]%, lasting for #5[i] turn(s). After the use, The Herta immediately takes action and gains 1 stack of \"Inspiration.\" \"Inspiration\" can stack up to #6[i] time(s). While having \"Inspiration,\" enhances Skill to \"Hear Me Out.\"", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 1, + 0.40000000037252903, + 3, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 2, + 1, + 0.44000000040978193, + 3, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 2, + 1, + 0.48000000044703484, + 3, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 2, + 1, + 0.5200000004842877, + 3, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 2, + 1, + 0.5600000005215406, + 3, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 2, + 1, + 0.6000000005587935, + 3, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 2, + 1, + 0.6500000006053597, + 3, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 2, + 1, + 0.7000000006519258, + 3, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 2, + 1, + 0.7500000006984919, + 3, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 2, + 1, + 0.8000000007450581, + 3, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 2, + 1, + 0.840000000782311, + 3, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 2, + 1, + 0.8800000008195639, + 3, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 2, + 1, + 0.9200000008568168, + 3, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 2, + 1, + 0.9600000008940697, + 3, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 2, + 1, + 1, + 3, + 4 + ] + } + } + }, + "140104": { + "Id": 140104, + "Name": "Hand Them Over", + "Desc": "When enemy targets enter battle, The Herta inflicts 1 stack of \"Interpretation\" on them. At the start of each wave, applies #6[i] stack(s) of \"Interpretation\" to a random enemy target, prioritizing Elite-level targets and above. When the Enhanced Skill's primary target has \"Interpretation,\" the multiplier for the DMG dealt increases, with each stack granting an increase of #1[f1]%/#2[f1]% on the primary target/other targets respectively. If 2 or more characters follow the Path of Erudition in the team, each stack grants an additional increase of #1[f1]%/#2[f1]% on the primary target/other targets respectively. \"Interpretation\" can stack up to #3[i] time(s). When using the Enhanced Skill, resets the number of \"Interpretation\" stacks on the primary target to 1. After the enemy target leaves the field or gets defeated by any unit, \"Interpretation\" will be transferred, prioritizing the transfer to Elite-level targets and above.", + "Type": null, + "Tag": "Enhance", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 0.02000000001862645, + 42, + 1, + 42, + 25 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04399999976158142, + 0.02199999988079071, + 42, + 1, + 42, + 25 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04799999948590994, + 0.02399999974295497, + 42, + 1, + 42, + 25 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.05199999990873039, + 0.02599999960511923, + 42, + 1, + 42, + 25 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.055999999633058906, + 0.027999999467283487, + 42, + 1, + 42, + 25 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.060000000055879354, + 0.030000000027939677, + 42, + 1, + 42, + 25 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06499999971129, + 0.032500000204890966, + 42, + 1, + 42, + 25 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.07000000006519258, + 0.034999999683350325, + 42, + 1, + 42, + 25 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07499999972060323, + 0.037499999860301614, + 42, + 1, + 42, + 25 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529, + 42, + 1, + 42, + 25 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.08399999979883432, + 0.04199999989941716, + 42, + 1, + 42, + 25 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.08799999952316284, + 0.04399999976158142, + 42, + 1, + 42, + 25 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.09199999994598329, + 0.04599999962374568, + 42, + 1, + 42, + 25 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.09599999967031181, + 0.04799999948590994, + 42, + 1, + 42, + 25 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.10000000009313226, + 0.05000000004656613, + 42, + 1, + 42, + 25 + ] + } + } + }, + "140106": { + "Id": 140106, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140107": { + "Id": 140107, + "Name": "Vibe Checker", + "Desc": "After using Technique, increases The Herta's ATK by #1[i]% at the start of the next battle, lasting for #2[i] turn(s).\\nIf there are Basic Treasures in this current map, using Technique can mark up to #3[i] Basic Treasures' locations.\\nAfter entering battle by using Technique in Simulated Universe or Divergent Universe, at the start of each wave, deals True DMG to enemy targets lower than Elite-level by an amount equal to #4[i]% of the targets' Max HP, and deals True DMG to enemy targets at Elite-level and above by an amount equal to #5[i]% of the targets' Max HP.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 2, + 3, + 0.9900000009220093, + 0.3000000002793968, + 25 + ] + } + } + }, + "140109": { + "Id": 140109, + "Name": "Hear Me Out", + "Desc": "Consumes 1 stack of \"Inspiration.\" Deals Ice DMG equal to #1[i]% of The Herta's ATK to one designated enemy and inflicts #2[i] stack(s) of \"Interpretation.\" Deals Ice DMG equal to #1[i]% of The Herta's ATK to the targets hit by this instance of Skill and their respective adjacent targets, repeating 2 times. At the end, deals Ice DMG equal to #3[i]% of The Herta's ATK to all enemies.", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 15, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1, + 0.22000000020489097 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1, + 0.24000000022351742 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1, + 0.26000000024214387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1, + 0.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1, + 0.32499999995343387 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1, + 0.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1, + 0.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1, + 0.44000000040978193 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1, + 0.4600000004284084 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1, + 0.48000000044703484 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Maze.png", + "LevelUpSkillID": [ + 140107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.5000000004656613 + ], + "PointID": 1401101, + "PointName": "Aloofly Honest", + "PointDesc": "When ally targets attack, inflicts 1 stack of \"Interpretation\" on the hit enemy target. After attacking, for every 1 target hit by this attack, regenerates #1[i] fixed Energy for The Herta, counting up to a maximum of 5 targets. When using Enhanced Skill, if the primary target's \"Interpretation\" stack reaches 42, increases the Ice DMG dealt by The Herta by #2[i]%, lasting until the end of this attack.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 3, + 1, + 2 + ], + "PointID": 1401102, + "PointName": "Message From Beyond the Veil", + "PointDesc": "When entering battle, if the team has 2 or more Erudition characters, increases all allies' CRIT DMG by #1[i]%. And the Trace \"Aloofly Honest\" counts at least #2[i] target(s) when calculating the number of targets hit. After attacking, applies #3[i] \"Interpretation\" stack(s) to the target that has the highest existing \"Interpretation\" stacks among the hit enemy targets. If the attacker is an Erudition character, then additionally applies #4[i] \"Interpretation\" stack(s).", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.010000000009313226, + 99 + ], + "PointID": 1401103, + "PointName": "Starved Landscape of Vacua", + "PointDesc": "For every 1 stack of \"Interpretation\" inflicted on enemy targets, The Herta gains 1 stack of \"Answer,\" up to a max of #2[i] stack(s). When using Ultimate, each \"Answer\" stack increases this instance of Ultimate's DMG multiplier by #1[f1]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401201, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1401101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401203, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1401202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401204, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1401202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401205, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1401102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401206, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1401205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401207, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1401205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "Ice DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401208, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1401103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401209, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1401103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401210, + "PointName": "DMG Boost: Ice", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "Ice DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1401, + "Set4IDList": [ + 122, + 104, + 102 + ], + "Set2IDList": [ + 314, + 309, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1402": { + "Name": "Aglaea", + "Desc": "In that holy city kissed by the dawn, the weaver caresses the golden threads, entwining fates.\\nThe Chrysos Heir that bears the \"Romance\" Coreflame gathered the world's heroes, leading them on a long journey once more\\n— to topple the gods, reclaim the divine flame, and grant rebirth to the nearly fallen Amphoreus.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "aglaea", + "SPNeed": 350, + "BaseType": "Memory", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 140201, + "Name": "Drift at the Whim of Venus", + "Desc": "The enemy afflicted with \"Seam Stitch\" takes #1[i]% increased DMG. After Aglaea or Garmentmaker attacks this target, additionally regenerates #2[i] Energy.", + "ParamList": [ + 0.1500000001396984, + 20 + ] + }, + "2": { + "Id": 140202, + "Name": "Sail on the Raft of Eyelids", + "Desc": "When Aglaea or Garmentmaker takes action, enables the DMG dealt by Aglaea and Garmentmaker to ignore #1[i]% of the target's DEF. This effect stacks up to #2[i] time(s) and lasts until any unit, other than Aglaea or Garmentmaker, actively uses an ability.", + "ParamList": [ + 0.14000000013038516, + 3 + ] + }, + "3": { + "Id": 140203, + "Name": "Bequeath in the Coalescence of Dew", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.\\nMemosprite Talent Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 140204, + "Name": "Flicker Below the Surface of Marble", + "Desc": "The SPD Boost effect from the Memosprite Talent has its max stack limit increased by #1[i]. After Aglaea uses an attack, can also make Garmentmaker gain the SPD Boost effect from the Memosprite Talent.", + "ParamList": [ + 1, + 2 + ] + }, + "5": { + "Id": 140205, + "Name": "Weave Under the Shroud of Woe", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.\\nMemosprite Skill Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 140206, + "Name": "Fluctuate in the Tapestry of Fates", + "Desc": "While Aglaea is in \"Supreme Stance,\" increases her and Garmentmaker's Lightning RES PEN by #1[i]%. When Aglaea's or Garmentmaker's SPD is greater than 160/240/320, the Joint ATK DMG dealt by them increases by #2[i]%/#3[i]%/#4[i]%.", + "ParamList": [ + 0.20000000018626451, + 0.10000000009313226, + 0.3000000002793968, + 0.6000000005587935 + ] + } + }, + "Skills": { + "140201": { + "Id": 140201, + "Name": "Thorned Nectar", + "Desc": "Deals Lightning DMG equal to #1[i]% of Aglaea's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1 + ] + } + } + }, + "140202": { + "Id": 140202, + "Name": "Rise, Exalted Renown", + "Desc": "Restores HP to Garmentmaker by #1[i]% of its Max HP. If Garmentmaker is absent, then summons the memosprite Garmentmaker and makes this unit immediately take action.", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 0, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 0, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 0, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 0, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 0, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 0, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 0, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 0, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 0, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 0, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 0, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 0, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 0, + 5 + ] + } + } + }, + "140203": { + "Id": 140203, + "Name": "Dance, Destined Weaveress", + "Desc": "Summons the memosprite Garmentmaker. If Garmentmaker is already on the field, then restores its HP to max. Aglaea enters the \"Supreme Stance\" state and immediately takes action.\\nWhile in \"Supreme Stance,\" Aglaea gains the SPD Boost stacks from Garmentmaker's Memosprite Talent, with each stack increasing this unit's SPD by #1[f1]%. Enhances Basic ATK to \"Slash by a Thousandfold Kiss,\" and cannot use Skill. Garmentmaker is immune to Crowd Control debuffs.\\nA countdown appears on the Action Order, with its own SPD set at #4[i]. While the countdown exists, using Ultimate again will reset the countdown. When the countdown's turn starts, Garmentmaker self-destructs. When Garmentmaker disappears, Aglaea dispels the \"Supreme Stance\" state.", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0, + 0, + 100, + 0, + 0 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1049999997485429, + 0, + 0, + 100, + 0, + 0 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.11000000010244548, + 0, + 0, + 100, + 0, + 0 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.11499999975785613, + 0, + 0, + 100, + 0, + 0 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.12000000011175871, + 0, + 0, + 100, + 0, + 0 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12499999976716936, + 0, + 0, + 100, + 0, + 0 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.13125000055879354, + 0, + 0, + 100, + 0, + 0 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.13749999995343387, + 0, + 0, + 100, + 0, + 0 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.14375000074505806, + 0, + 0, + 100, + 0, + 0 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1500000001396984, + 0, + 0, + 100, + 0, + 0 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.15499999979510903, + 0, + 0, + 100, + 0, + 0 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1600000001490116, + 0, + 0, + 100, + 0, + 0 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.16499999980442226, + 0, + 0, + 100, + 0, + 0 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.17000000015832484, + 0, + 0, + 100, + 0, + 0 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.17499999981373549, + 0, + 0, + 100, + 0, + 0 + ] + } + } + }, + "140204": { + "Id": 140204, + "Name": "Rosy-Fingered", + "Desc": "The memosprite Garmentmaker has an initial SPD equal to #4[i]% of Aglaea's SPD and a Max HP equal to #5[i]% of Aglaea's Max HP plus #6[i]. While Garmentmaker is on the field, Aglaea's attacks inflict the target with the \"Seam Stitch\" state. After attacking enemies in the \"Seam Stitch\" state, further deals Lightning Additional DMG equal to #1[i]% of Aglaea's ATK. \"Seam Stitch\" only takes effect on the most recently inflicted target.", + "Type": null, + "Tag": "Enhance", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 0, + 0, + 0.3500000003259629, + 0.44000000040978193, + 180 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.13799999956972897, + 0, + 0, + 0.3500000003259629, + 0.4675000002607703, + 247.50000000046566 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.15599999972619116, + 0, + 0, + 0.3500000003259629, + 0.4950000001117587, + 315 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17399999988265336, + 0, + 0, + 0.3500000003259629, + 0.522500000661239, + 382.50000000046566 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.19200000003911555, + 0, + 0, + 0.3500000003259629, + 0.5500000005122274, + 450 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.21000000019557774, + 0, + 0, + 0.3500000003259629, + 0.5720000003930181, + 504 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.23250000039115548, + 0, + 0, + 0.3500000003259629, + 0.5940000002738088, + 558 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2549999998882413, + 0, + 0, + 0.3500000003259629, + 0.6160000001545995, + 612 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.27750000008381903, + 0, + 0, + 0.3500000003259629, + 0.6380000000353903, + 666 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0, + 0, + 0.3500000003259629, + 0.6600000006146729, + 720 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31799999973736703, + 0, + 0, + 0.3500000003259629, + 0.6820000004954636, + 774 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3359999998938292, + 0, + 0, + 0.3500000003259629, + 0.7040000003762543, + 828 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3540000000502914, + 0, + 0, + 0.3500000003259629, + 0.726000000257045, + 882 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3720000002067536, + 0, + 0, + 0.3500000003259629, + 0.7480000001378357, + 936 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3900000003632158, + 0, + 0, + 0.3500000003259629, + 0.7700000007171184, + 990 + ] + } + } + }, + "140206": { + "Id": 140206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140207": { + "Id": 140207, + "Name": "Meteoric Sunder", + "Desc": "Summons the memosprite Garmentmaker and launches a forward joint attack. After entering battle, regenerates #2[i] Energy and deals Lightning DMG equal to #1[i]% of Aglaea's ATK to all enemy targets. Then, randomly inflicts the \"Seam Stitch\" state on a random enemy target.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 30 + ] + } + } + }, + "140208": { + "Id": 140208, + "Name": "Slash by a Thousandfold Kiss", + "Desc": "Aglaea and Garmentmaker launch a Joint ATK on the target, respectively dealing Lightning DMG equal to #1[f1]% of Aglaea's ATK and #3[f1]% of Garmentmaker's ATK to the target. Also, respectively deals Lightning DMG equal to #2[i]% of Aglaea's ATK and #4[i]% of Garmentmaker's ATK to adjacent targets.\\n\"Slash by a Thousandfold Kiss\" cannot recover Skill Points.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.45000000041909516, + 1, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2000000001862645, + 0.5400000005029142, + 1.2000000001862645, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.400000000372529, + 0.6300000005867332, + 1.400000000372529, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6000000005587935, + 0.7200000006705523, + 1.6000000005587935, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.800000000745058, + 0.8100000007543713, + 1.800000000745058, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.9000000008381903, + 2, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2000000001862645, + 0.9900000009220093, + 2.2000000001862645, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.400000000372529, + 1.0800000000745058, + 2.400000000372529, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6000000005587935, + 1.1700000001583248, + 2.6000000005587935, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.2600000002421439, + 2.800000000745058, + 1.2600000002421439 + ] + } + } + }, + "140209": { + "Id": 140209, + "Name": "Rise, Exalted Renown", + "Desc": null, + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Maze.png", + "LevelUpSkillID": [ + 140207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 7.2000000001862645, + 3.6000000005587935 + ], + "PointID": 1402101, + "PointName": "The Myopic's Doom", + "PointDesc": "While in \"Supreme Stance,\" increases Aglaea's and Garmentmaker's ATK by an amount equal to #1[i]% of Aglaea's SPD plus #2[i]% of Garmentmaker's SPD.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1402102, + "PointName": "Last Thread of Fate", + "PointDesc": "When Garmentmaker disappears, up to #1[i] stack(s) of the SPD Boost from the Memosprite Talent can be retained. When Garmentmaker is summoned again, gains the corresponding number of SPD Boost stacks.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1402103, + "PointName": "The Speeding Sol", + "PointDesc": "At the start of battle, if this unit's Energy is lower than #1[i]%, regenerates this unit's Energy to #2[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402201, + "PointName": "DMG Boost: Lightning", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "Lightning DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1402201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402203, + "PointName": "DMG Boost: Lightning", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1402201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "Lightning DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1402101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402205, + "PointName": "DMG Boost: Lightning", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1402101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "Lightning DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1402102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402207, + "PointName": "DMG Boost: Lightning", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1402102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "Lightning DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1402103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1402208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402210, + "PointName": "DMG Boost: Lightning", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1402209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.06399999978020787, + "Name": "Lightning DMG Boost" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "Thorned Snare", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "Thorned Snare", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "Thorned Snare", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "Thorned Snare", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "Thorned Snare", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "Thorned Snare", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "A Body Brewed by Tears", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "A Body Brewed by Tears", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "A Body Brewed by Tears", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "A Body Brewed by Tears", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "A Body Brewed by Tears", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "A Body Brewed by Tears", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "Garmentmaker", + "Icon": "SpriteOutput/ServantIconTeam/11402B.png", + "HPBase": "#6", + "HPInherit": "#5", + "HPSkill": 140204, + "SpeedBase": "0", + "SpeedInherit": "#4", + "SpeedSkill": 140204, + "Aggro": 125, + "Skills": { + "1140201": { + "Name": "Thorned Snare", + "Desc": "Deals Lightning DMG equal to #1[i]% of ATK to one enemy and Lightning DMG equal to #2[i]% of ATK to adjacent targets.", + "Type": "Servant", + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 0.33000000030733645, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.3959999999497086, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7700000007171184, + 0.46200000029057264, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8800000008195639, + 0.5279999999329448, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9900000009220093, + 0.5940000002738088, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1000000000931323, + 0.6600000006146729, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2100000001955777, + 0.726000000257045, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3200000002980232, + 0.7920000005979091, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4300000004004687, + 0.8580000002402812, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5400000005029142, + 0.9240000005811453, + 1 + ] + } + } + }, + "1140203": { + "Name": "A Body Brewed by Tears", + "Desc": "After attacking an enemy afflicted with \"Seam Stitch,\" increases this unit's SPD by #1[i], stacking up to #3[i] time(s). When Garmentmaker takes action, automatically uses \"Thorned Snare,\" prioritizing enemies under the \"Seam Stitch\" state.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 44, + 3, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 46.200000000186265, + 3, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 48.40000000037253, + 3, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 50.60000000055879, + 3, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 52.80000000074506, + 3, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 55, + 3, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 57.200000000186265, + 3, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 59.40000000037253, + 3, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 61.60000000055879, + 3, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 63.80000000074506, + 3, + 6 + ] + } + } + }, + "1140205": { + "Name": "The Speeding Summer", + "Desc": "When Garmentmaker is summoned, this unit's action advances by #1[i]%.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1 + ] + } + } + }, + "1140206": { + "Name": "Bloom of Drying Grass", + "Desc": "When Garmentmaker disappears, regenerates #1[i] Energy for Aglaea.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 20 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 20 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 20 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 20 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 20 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 20 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 20 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 20 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1402, + "Set4IDList": [ + 123, + 102, + 109 + ], + "Set2IDList": [ + 318, + 302, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1403": { + "Name": "Tribbie", + "Desc": "From that holy land blessed by the tripartite prophecy, the messenger split into a thousand forms, embarking on a long journey.\\nTribios, Holy Maiden of Janusopolis, the Chrysos Heir who stole Passage's Coreflame, toiled for the masses and brought the news of deliverance to all domains.\\n—Seek the children of humanity with golden blood in their veins, shatter the dimmest dark in this world, and walk toward the tomorrow where the stars gleam.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "tribbie", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140301, + "Name": "Rite of Sugar Scoop", + "Desc": "While the Zone lasts and after ally targets attack enemies, additionally deals True DMG equal to #1[i]% of the total DMG of this attack to targets that have been dealt Additional DMG by the Zone.", + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "Id": 140302, + "Name": "Guide of Dream Tour", + "Desc": "The Additional DMG dealt by the Zone increases to #1[i]% of the original DMG. When the Zone deals Additional DMG, further deals #2[i] instance(s) of Additional DMG.", + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "3": { + "Id": 140303, + "Name": "Trove of Morning Glow", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 140304, + "Name": "Peace of Empathy Bond", + "Desc": "While \"Numinosity\" lasts, the DMG dealt by all allies ignores #1[i]% of the target's DEF.", + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "Id": 140305, + "Name": "Clock of Wonder Origin", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 140306, + "Name": "Morrow of Star Shine", + "Desc": "After Tribbie uses Ultimate, launches her Talent's Follow-up ATK against all enemies. The DMG dealt by Talent's Follow-up ATK increases by #1[i]%.", + "ParamList": [ + 7.2900000002700835 + ] + } + }, + "Skills": { + "140301": { + "Id": 140301, + "Name": "Hundred Rockets", + "Desc": "Deals Quantum DMG equal to #1[i]% of Tribbie's Max HP to one designated enemy. Deals Quantum DMG equal to #2[i]% of Tribbie's Max HP to adjacent targets.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.07499999972060323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.21000000019557774, + 0.1049999997485429 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2700000002514571, + 0.13499999977648258 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.33000000030733645, + 0.16499999980442226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3900000003632158, + 0.19499999983236194 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774 + ] + } + } + }, + "140302": { + "Id": 140302, + "Name": "Where'd the Gifts Go", + "Desc": "Gains \"Numinosity,\" lasting for #2[i] turn(s). This duration decreases by 1 at the start of this unit's every turn. While Tribbie has \"Numinosity,\" increases all ally targets' All-Type RES PEN by #1[f1]%.", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1319999999832362, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14399999985471368, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.15599999972619116, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.16799999959766865, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19499999983236194, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2249999998603016, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2520000000949949, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2639999999664724, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.27599999983794987, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.28799999970942736, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3 + ] + } + } + }, + "140303": { + "Id": 140303, + "Name": "Guess Who Lives Here", + "Desc": "Activates a Zone and deals Quantum DMG equal to #1[i]% of Tribbie's Max HP to all enemies.\\nWhile the Zone lasts, increases enemy targets' DMG taken by #2[f1]%. After an ally target attacks, for every 1 target hit, deals 1 instance of Quantum Additional DMG equal to #3[f1]% of Tribbie's Max HP to the target that has the highest HP among the hit targets.\\nThe Zone lasts for #4[i] turn(s). This duration decreases by 1 at the start of this unit's every turn.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 0.060000000055879354, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 0.16499999980442226, + 0.06599999964237213, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 0.18000000016763806, + 0.07199999992735684, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 0.19499999983236194, + 0.07799999951384962, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 0.21000000019557774, + 0.08399999979883432, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 0.2249999998603016, + 0.09000000008381903, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 0.24375000083819032, + 0.09749999991618097, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 0.26250000041909516, + 0.1049999997485429, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 0.28125000069849193, + 0.11250000027939677, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.12000000011175871, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 0.31499999994412065, + 0.12599999969825149, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 0.33000000030733645, + 0.1319999999832362, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 0.3449999999720603, + 0.13799999956972897, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761, + 0.14399999985471368, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 0.375, + 0.1500000001396984, + 2 + ] + } + } + }, + "140304": { + "Id": 140304, + "Name": "Busy as Tribbie", + "Desc": "After other ally characters use Ultimate, Tribbie launches Follow-up ATK, dealing Quantum DMG equal to #1[f1]% of Tribbie's Max HP to all enemies. This effect triggers up to 1 time per character. When Tribbie uses Ultimate, resets the trigger count for other ally characters. If the target was defeated before the Follow-up ATK is launched, then launches the Follow-up ATK against new enemy targets entering the battlefield.", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.0989999994635582 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1079999995417893 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.11699999962002039 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.12599999969825149 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.13499999977648258 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.14625000022351742 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.15749999997206032 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.16875000041909516 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.18000000016763806 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.18899999954737723 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.19799999962560833 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20699999970383942 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.21599999978207052 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016 + ] + } + } + }, + "140306": { + "Id": 140306, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140307": { + "Id": 140307, + "Name": "If You're Happy and You Know It", + "Desc": "After using Technique and upon entering battle, obtains \"Numinosity,\" lasting for #1[i] turn(s).", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Maze.png", + "LevelUpSkillID": [ + 140307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7200000006705523, + 3, + 3 + ], + "PointID": 1403101, + "PointName": "Lamb Outside the Wall...", + "PointDesc": "After using Talent's Follow-up ATK, increases the DMG dealt by Tribbie by #1[i]%. This effect can stack up to #2[i] time(s), lasting for #3[i] turn(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.09000000008381903 + ], + "PointID": 1403102, + "PointName": "Glass Ball with Wings!", + "PointDesc": "While the Zone lasts, Tribbie's Max HP increases by an amount equal to #1[i]% of the sum of all ally characters' Max HP.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 30, + 1.5000000004656613 + ], + "PointID": 1403103, + "PointName": "Pebble at Crossroads?", + "PointDesc": "At the start of battle, Tribbie regenerates #1[i] Energy. After other ally targets attack, Tribbie regenerates #2[f1] Energy for each target hit.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403201, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1403101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403203, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1403202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1403201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403205, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1403102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1403205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403207, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1403201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1403103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1403208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403210, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1403208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 99, + "DefenceAdd": 4.9500000008847564, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 4.9500000008847564, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 4.9500000008847564, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.9500000008847564, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 297, + "DefenceAdd": 4.9500000008847564, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 336.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1403, + "Set4IDList": [ + 124, + 108, + 102 + ], + "Set2IDList": [ + 319, + 302, + 317 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "HPAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio" + ], + "ScoreRankList": [ + 324, + 268 + ] + } + }, + "1404": { + "Name": "Mydei", + "Desc": "Kremnos, the mist-shrouded city of chaos and war! Its royal lineage is tainted with patricide, and its god bears the name of calamity.\\nThe undying Mydeimos, the lion apart from the rest. Chrysos Heir who seeks the Coreflame of Strife, must suffer a thousand deaths, be bathed in blood on the path home, and bear the madness of fate alone.\\n— Kingslayer be king, godslayer be god. Iron-hooves pound across the wilderness for the campaign, and must eventually soak in the blood of their homeland.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "mydei", + "SPNeed": 160, + "BaseType": "Warrior", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 140401, + "Name": "Frost Hones Spine of Steel", + "Desc": "Increases the DMG multiplier dealt by \"Godslayer Be God\" to the primary target by #1[i]%. This ability now deals to all enemies Imaginary DMG equal to the DMG multiplier dealt to the primary target.", + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Id": 140402, + "Name": "Strife Beholds Cry of Dead", + "Desc": "During \"Vendetta,\" the DMG dealt by Mydei ignores #1[i]% of enemy targets' DEF. After he receives healing, converts #2[i]% of the healed amount to Charge. The tally of the converted Charge cannot exceed #3[i] point(s). Resets this tally of Charge after any unit takes action.", + "ParamList": [ + 0.1500000001396984, + 0.40000000037252903, + 40 + ] + }, + "3": { + "Id": 140403, + "Name": "Honor Exalts Feast of Faith", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 140404, + "Name": "Siren Jolts the Laconic Lion", + "Desc": "While in \"Vendetta,\" increases CRIT DMG by #2[i]% and restores HP by #1[i]% of this unit's Max HP after receiving attacks from enemy targets.", + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "5": { + "Id": 140405, + "Name": "War Chisels Flesh of Flame", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 140406, + "Name": "Legacy Scales Mound of Blood", + "Desc": "When entering battle, immediately enters the \"Vendetta\" state, and lowers the Charge required for \"Godslayer Be God\" to #1[i] point(s).", + "ParamList": [ + 100 + ] + } + }, + "Skills": { + "140401": { + "Id": 140401, + "Name": "Vow of Voyage", + "Desc": "Deals Imaginary DMG equal to #1[i]% of Mydei's Max HP to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140402": { + "Id": 140402, + "Name": "Deaths are Legion, Regrets are None", + "Desc": "Consumes HP by an amount equal to #3[i]% of Mydei's current HP. Deals Imaginary DMG equal to #1[i]% of Mydei's Max HP to one designated enemy and Imaginary DMG equal to #2[i]% of Mydei's Max HP to adjacent targets.\\nIf the current HP is not sufficient, using Skill reduces Mydei's current HP to 1.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.4950000001117587, + 0.27499999990686774, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5400000005029142, + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5850000001955777, + 0.32499999995343387, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6300000005867332, + 0.3500000003259629, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6750000002793968, + 0.375, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.7312500011175871, + 0.4062500004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7875000005587935, + 0.43750000023283064, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.8437500013969839, + 0.46875000069849193, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.9000000008381903, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.9450000005308539, + 0.5250000001396984, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.9900000009220093, + 0.5500000005122274, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.0349999996833503, + 0.5750000001862645, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.0800000000745058, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.1249999997671694, + 0.6250000002328306, + 0.5000000004656613 + ] + } + } + }, + "140403": { + "Id": 140403, + "Name": "Throne of Bones", + "Desc": "Restores HP by #3[f1]% of Mydei's Max HP and accumulates #5[i] Talent's Charge point(s). Deals Imaginary DMG equal to #1[i]% of Mydei's Max HP to one designated enemy, and deals Imaginary DMG equal to #2[i]% of Mydei's Max HP to adjacent targets. Additionally, Taunts the target and targets adjacent to it, lasting for #4[i] turn(s). The next use of \"Godslayer Be God\" prioritizes attacking one designated enemy, and this effect only works on the latest target.", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.6000000005587935, + 0.1500000001396984, + 2, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 0.6400000005960464, + 0.15499999979510903, + 2, + 20 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 0.6800000006332994, + 0.1600000001490116, + 2, + 20 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 0.7200000006705523, + 0.16499999980442226, + 2, + 20 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 0.7600000007078052, + 0.17000000015832484, + 2, + 20 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 0.8000000007450581, + 0.17499999981373549, + 2, + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 0.8500000007916242, + 0.18125000060535967, + 2, + 20 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 0.9000000008381903, + 0.1875, + 2, + 20 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 0.9500000008847564, + 0.1937500007916242, + 2, + 20 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 0.20000000018626451, + 2, + 20 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1.040000000037253, + 0.20499999984167516, + 2, + 20 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1.0800000000745058, + 0.21000000019557774, + 2, + 20 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1.1200000001117587, + 0.2149999998509884, + 2, + 20 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1.1600000001490116, + 0.22000000020489097, + 2, + 20 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1.2000000001862645, + 0.2249999998603016, + 2, + 20 + ] + } + } + }, + "140404": { + "Id": 140404, + "Name": "Blood for Blood", + "Desc": "For each 1% of HP lost, accumulates 1 point of Charge (up to 200 points). When Charge reaches 100, consumes 100 points of Charge to enter the \"Vendetta\" state, restores HP equal to #1[i]% of Mydei's Max HP, and advances action by 100%. While the \"Vendetta\" state is active, Max HP increases by #5[i]% of the current Max HP and DEF remains at 0. At the start of this unit's turn, automatically uses \"Kingslayer Be King.\"\\nWhen Charge reaches #3[i] points during the \"Vendetta\" state, Mydei immediately gains 1 extra turn and automatically uses \"Godslayer Be God.\"\\nWhen receiving a killing blow during the \"Vendetta\" state, Mydei will not be knocked down, but will clear his Charge, exits the \"Vendetta\" state, and restores HP by #4[i]% of his Max HP.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1600000001490116, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.17000000015832484, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.18000000016763806, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1900000001769513, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21250000037252903, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2249999998603016, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23750000004656613, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.26000000024214387, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2700000002514571, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2800000002607703, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.29000000027008355, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + } + } + }, + "140406": { + "Id": 140406, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140407": { + "Id": 140407, + "Name": "Cage of Broken Lance", + "Desc": "After using Technique, pulls in enemies within a certain area and inflicts Daze on them for #1[i] second(s). Dazed enemies will not actively attack ally targets.\\nIf actively attacking Dazed enemies, when entering battle, deals Imaginary DMG equal to #2[i]% of Mydei's Max HP to all enemies, and Taunts the targets, lasting for #4[i] turn(s). This unit accumulates #5[i] point(s) of Talent's Charge.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.8000000007450581, + 1, + 1, + 50 + ] + } + } + }, + "140409": { + "Id": 140409, + "Name": "Kingslayer Be King", + "Desc": "Consumes HP by an amount equal to #3[i]% of Mydei's current HP. Deals Imaginary DMG equal to #1[i]% of Mydei's Max HP to one enemy and Imaginary DMG equal to #2[i]% of Mydei's Max HP to adjacent targets.\\nIf the current HP is not sufficient, using Skill reduces Mydei's current HP to 1.\\nThis ability will be automatically used.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 0.33000000030733645, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6050000002142042, + 0.3630000001285225, + 0.3500000003259629 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6600000006146729, + 0.3959999999497086, + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7150000003166497, + 0.42899999977089465, + 0.3500000003259629 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7700000007171184, + 0.46200000029057264, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8250000004190952, + 0.4950000001117587, + 0.3500000003259629 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.89375000144355, + 0.5362500005867332, + 0.3500000003259629 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.962500001071021, + 0.5775000003632158, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.0312500004656613, + 0.6187500008381903, + 0.3500000003259629 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1000000000931323, + 0.6600000006146729, + 0.3500000003259629 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.154999999795109, + 0.693000000435859, + 0.3500000003259629 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2100000001955777, + 0.726000000257045, + 0.3500000003259629 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.2649999998975545, + 0.7590000000782311, + 0.3500000003259629 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.3200000002980232, + 0.7920000005979091, + 0.3500000003259629 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.375, + 0.8250000004190952, + 0.3500000003259629 + ] + } + } + }, + "140411": { + "Id": 140411, + "Name": "Godslayer Be God", + "Desc": "Consumes #3[i] point(s) of Charge. Deals Imaginary DMG equal to #1[i]% of Mydei's Max HP to one enemy and Imaginary DMG equal to #2[i]% of Mydei's Max HP to adjacent targets.\\nThis ability will be automatically used. While this ability is in use, Charge cannot be accumulated.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 0.840000000782311, + 150 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 0.9240000005811453, + 150 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 1.007999999448657, + 150 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 1.0919999999459833, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 1.1759999997448176, + 150 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 1.2600000002421439, + 150 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 1.3649999999906868, + 150 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 1.4700000004377216, + 150 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1.5750000001862645, + 150 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.6800000006332994, + 150 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1.7640000004321337, + 150 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1.848000000230968, + 150 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1.9320000007282943, + 150 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 2.015999999595806, + 150 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 2.1000000000931323, + 150 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Maze.png", + "LevelUpSkillID": [ + 140407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1404101, + "PointName": "Earth and Water", + "PointDesc": "During the \"Vendetta\" state, Mydei will not exit the \"Vendetta\" state when receiving a killing blow. This effect can trigger #1[i] time(s) per battle.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404102, + "PointName": "Thirty Tyrants", + "PointDesc": "While in the \"Vendetta\" state, Mydei is immune to Crowd Control debuffs.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 4000, + 4000, + 0.011999999871477485, + 0.0249999996740371, + 0.007499999832361937 + ], + "PointID": 1404103, + "PointName": "Bloodied Chiton", + "PointDesc": "When battle starts, if Mydei's Max HP exceeds #1[i], for every 100 excess HP, Mydei's CRIT Rate increases by #3[f1]%, his Charge ratio from enemy targets' DMG increases by #4[f1]%, and his HP restored when receiving healing increases by #5[f2]%. Up to #2[i] excess HP can be taken into account for this effect.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404201, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1404101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404203, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1404202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404204, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1404203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404205, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1404102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1404205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404207, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1404206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404208, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1404103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1404208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404210, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1404208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 58.080000000074506, + "AttackAdd": 2.904000000562519, + "DefenceBase": 26.40000000037253, + "DefenceAdd": 1.3200000002980232, + "HPBase": 211.20000000018626, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 81.31200000015087, + "AttackAdd": 2.904000000562519, + "DefenceBase": 36.96000000089407, + "DefenceAdd": 1.3200000002980232, + "HPBase": 295.6800000006333, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 104.54400000022724, + "AttackAdd": 2.904000000562519, + "DefenceBase": 47.52000000048429, + "DefenceAdd": 1.3200000002980232, + "HPBase": 380.160000000149, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 127.77600000030361, + "AttackAdd": 2.904000000562519, + "DefenceBase": 58.080000000074506, + "DefenceAdd": 1.3200000002980232, + "HPBase": 464.64000000059605, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 151.00799999944866, + "AttackAdd": 2.904000000562519, + "DefenceBase": 68.64000000059605, + "DefenceAdd": 1.3200000002980232, + "HPBase": 549.1200000001118, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 174.24000000022352, + "AttackAdd": 2.904000000562519, + "DefenceBase": 79.20000000018626, + "DefenceAdd": 1.3200000002980232, + "HPBase": 633.6000000005588, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 197.4720000002999, + "AttackAdd": 2.904000000562519, + "DefenceBase": 89.7600000007078, + "DefenceAdd": 1.3200000002980232, + "HPBase": 718.0800000000745, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1404, + "Set4IDList": [ + 122, + 113, + 112 + ], + "Set2IDList": [ + 319, + 309, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "ImaginaryAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 333, + 275 + ], + "LocalCriticalChance": 0.45000000041909516 + } + }, + "1405": { + "Name": "Anaxa", + "Desc": "The Grove of Epiphany, where knowledge flourishes and philosophers are born.\\nYet here stands Anaxagoras the blasphemer, the Chrysos Heir who challenges the Coreflame of Reason. He is questioned: Would you defy the prophecy even if you must bear infamy, and insist on driving the thorns of doubt into the Sacred Tree of wisdom?\\n——\"Ridiculous. In a world full of lies, I am the only truth.\"", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "anaxa", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 140501, + "Name": "Magician, Isolated by Stars", + "Desc": "After using Skill for the first time, recovers #3[i] Skill Point(s). When using Skill to hit enemy targets, decreases the targets' DEF by #1[i]%, lasting for #2[i] turn(s).", + "ParamList": [ + 0.1600000001490116, + 2, + 1 + ] + }, + "2": { + "Id": 140502, + "Name": "Soul, True to History", + "Desc": "When enemy targets enter the battlefield, triggers 1 instance of the Talent's Weakness Implant effect, and reduces their All-Type RES by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 140503, + "Name": "Pupil, Etched into Cosmos", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 140504, + "Name": "Blaze, Plunged to Canyon", + "Desc": "When using Skill, increases ATK by #1[i]%, lasting for #2[i] turn(s). This effect can stack up to #3[i] time(s).", + "ParamList": [ + 0.3000000002793968, + 2, + 2 + ] + }, + "5": { + "Id": 140505, + "Name": "Embryo, Set Beyond Vortex", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 140506, + "Name": "Everything Is in Everything", + "Desc": "The DMG dealt by Anaxa is #1[i]% of the original DMG. The 2 effects in the Trace \"Imperative Hiatus\" will be triggered directly and will no longer depend on the number of \"Erudition\" characters in the team.", + "ParamList": [ + 1.3000000002793968 + ] + } + }, + "Skills": { + "140501": { + "Id": 140501, + "Name": "Pain, Brews Truth", + "Desc": "Deals Wind DMG equal to #1[i]% of Anaxa's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140502": { + "Id": 140502, + "Name": "Fractal, Exiles Fallacy", + "Desc": "Deals Wind DMG equal to #1[i]% of Anaxa's ATK to one designated enemy and additionally deals #2[i] instance(s) of DMG. Each instance of DMG deals Wind DMG equal to #1[i]% of Anaxa's ATK to one random enemy, prioritizing Bouncing to enemy targets that have not been hit by this instance of Skill.\\nWhen used, for each attackable enemy on the field, this Skill has its DMG dealt increased by #3[i]%.", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 4, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 4, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 4, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 4, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 4, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 4, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 4, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 4, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 4, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 4, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 4, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 4, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 4, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 4, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 4, + 0.20000000018626451 + ] + } + } + }, + "140503": { + "Id": 140503, + "Name": "Sprouting Life Sculpts Earth", + "Desc": "Inflicts the \"Sublimation\" state on all enemies, then deals Wind DMG equal to #1[i]% of Anaxa's ATK to all enemies.\\nIn the \"Sublimation\" state, the targets will be simultaneously inflicted with Physical, Fire, Ice, Lightning, Wind, Quantum, and Imaginary Weaknesses, lasting until the start of the targets' turn. If the targets do not have Control RES, they are unable to take action in the \"Sublimation\" state.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2 + ] + } + } + }, + "140504": { + "Id": 140504, + "Name": "Tetrad Wisdom Reigns Thrice", + "Desc": "Each time Anaxa lands 1 hit on enemy targets, inflicts 1 Weakness of a random Type to the targets, lasting for #2[i] turn(s), with priority to the Weakness Type that the target doesn't already possess.\\nWhile Anaxa is on the field, inflicts the \"Qualitative Disclosure\" state on enemy targets that have at least #3[i] different Types of Weaknesses. Anaxa deals #1[i]% increased DMG to targets afflicted with the \"Qualitative Disclosure\" state. In addition, after using Basic ATK or Skill on them, unleashes 1 additional instance of Skill on the targets. This additional Skill does not consume any Skill Points and cannot trigger this effect again. If the target has been defeated before the additional Skill is used, it will be cast on one random enemy instead.", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.19200000003911555, + 3, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.20399999991059303, + 3, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.21599999978207052, + 3, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.227999999653548, + 3, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.24000000022351742, + 3, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.2549999998882413, + 3, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2700000002514571, + 3, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28499999991618097, + 3, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31200000015087426, + 3, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.32400000002235174, + 3, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3359999998938292, + 3, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3479999997653067, + 3, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3600000003352761, + 3, + 5 + ] + } + } + }, + "140506": { + "Id": 140506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140507": { + "Id": 140507, + "Name": "Prism of the Pupil", + "Desc": "After using Technique, inflicts the Terrified state on enemies in a set area. Terrified enemies will flee in a direction away from Anaxa for #1[i] second(s). When allies enter battle via actively attacking a Terrified enemy, it will always be considered as entering battle via attacking a Weakness. After entering battle, Anaxa applies 1 Weakness of the attacker's Type to every enemy target, lasting for #2[i] turn(s).", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Maze.png", + "LevelUpSkillID": [ + 140507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 30 + ], + "PointID": 1405101, + "PointName": "Roaming Signifier", + "PointDesc": "When using Basic ATK, additionally regenerates #1[i] Energy.\\nAt the start of the turn, if there are no enemy targets in the \"Qualitative Disclosure\" state, immediately regenerates #2[i] Energy.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.400000000372529, + 0.5000000004656613 + ], + "PointID": 1405102, + "PointName": "Imperative Hiatus", + "PointDesc": "Based on the number of \"Erudition\" characters in the team, one of the following effects will be triggered in the current battle:\\n1 character: Increases Anaxa's CRIT DMG by #1[i]%.\\nAt least 2 characters: Increases DMG dealt by all allies by #2[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0400000000372529 + ], + "PointID": 1405103, + "PointName": "Qualitative Shift", + "PointDesc": "For every 1 different Weakness Type an enemy target has, the DMG that Anaxa deals to that target ignores #1[i]% of their DEF. Up to a max of 7 Weakness Types can be taken into account for this effect.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405201, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405202, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1405101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405203, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1405202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1405202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405205, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1405102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405206, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1405205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405207, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1405205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "Wind DMG Boost" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1405103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405209, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1405103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405210, + "PointName": "DMG Boost: Wind", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "Wind DMG Boost" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 75.90000000083819, + "DefenceAdd": 3.7950000003911555, + "HPBase": 132, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 106.26000000024214, + "DefenceAdd": 3.7950000003911555, + "HPBase": 184.80000000074506, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 136.62000000057742, + "DefenceAdd": 3.7950000003911555, + "HPBase": 237.6000000005588, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 166.9800000009127, + "DefenceAdd": 3.7950000003911555, + "HPBase": 290.40000000037253, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 197.34000000031665, + "DefenceAdd": 3.7950000003911555, + "HPBase": 343.20000000018626, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 227.70000000065193, + "DefenceAdd": 3.7950000003911555, + "HPBase": 396, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 258.0600000000559, + "DefenceAdd": 3.7950000003911555, + "HPBase": 448.80000000074506, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1405, + "Set4IDList": [ + 110, + 117, + 122 + ], + "Set2IDList": [ + 309, + 314, + 308 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1406": { + "Name": "Cipher", + "Desc": "In the fallen city of bandits, Dolos, the 300 Rogues run wild and free, the entire city at their mercy.\\nRace onward, fleet-Footed Thief Star Cifera, Chrysos Heir of the \"Trickery\" Coreflame, and may your web of lies spread with the breeze throughout all lands—\\n\"Tryna trick me? Fetch better scripts!\"", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "cipher", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140601, + "Name": "Read the Room, Seek the Glee", + "Desc": "Cipher's recorded DMG is #3[i]% of the original recorded DMG value. When using a Follow-up ATK caused by her Talent, increases Cipher's ATK by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.8000000007450581, + 2, + 1.5000000004656613 + ] + }, + "2": { + "Id": 140602, + "Name": "In the Fray, Nab On a Spree", + "Desc": "When Cipher hits an enemy target, there is a #2[i]% base chance of causing them to receive #3[i]% more DMG, lasting #1[i] turn(s).", + "ParamList": [ + 2, + 1.2000000001862645, + 0.3000000002793968 + ] + }, + "3": { + "Id": 140603, + "Name": "From Thin Air, Hard to Foresee", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 140604, + "Name": "The Jig Is Up, Quick to Flee", + "Desc": "After \"Patron\" is attacked by an ally target, Cipher deals Quantum Additional DMG equal to #1[i]% of Cipher's ATK to it.", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 140605, + "Name": "Safe in Numbers, Light as a Bee", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 140606, + "Name": "The Thief's Game, Unsung and Free", + "Desc": "Increases DMG dealt by Follow-up ATKs caused by Cipher's Talent by #2[i]%. Records an additional #3[i]% of non-Overflow DMG dealt by this ATK. After resetting the record upon using her Ultimate, returns #1[i]% of the reset record.", + "ParamList": [ + 0.20000000018626451, + 3.5000000004656613, + 0.1600000001490116 + ] + } + }, + "Skills": { + "140601": { + "Id": 140601, + "Name": "Oops, a Missed Catch", + "Desc": "Deals Quantum DMG equal to #1[i]% of Cipher's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140602": { + "Id": 140602, + "Name": "Hey, Jackpot for the Taking", + "Desc": "There is a #6[i]% base chance to Weaken one designated enemy and adjacent targets, decreasing their DMG dealt by #3[i]% and increasing Cipher's ATK by #5[i]%, lasting for #4[i] turn(s). At the same time, deals Quantum DMG equal to #1[i]% of Cipher's ATK to one designated enemy, and Quantum DMG equal to #2[i]% of Cipher's ATK to its adjacent targets.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.8125000009313226, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1.0500000000465661, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1.1000000000931323, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1.1500000001396984, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1.2000000001862645, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1.2500000002328306, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + } + } + }, + "140603": { + "Id": 140603, + "Name": "Yours Truly, Kitty Phantom Thief!", + "Desc": "Deals Quantum DMG equal to #1[i]% of Cipher's ATK to one designated enemy. Then, deals True DMG equal to #2[i]% of the currently recorded Talent value to one designated enemy, Quantum DMG equal to #4[i]% of Cipher's ATK to one designated enemy and its adjacent targets, and True DMG equal to #3[i]% of the current Talent's recorded value. This True DMG is Distributed to all Skill targets.", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.25000000023283064, + 0.7500000006984919, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.25000000023283064, + 0.7500000006984919, + 0.22000000020489097 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.25000000023283064, + 0.7500000006984919, + 0.24000000022351742 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.25000000023283064, + 0.7500000006984919, + 0.26000000024214387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.25000000023283064, + 0.7500000006984919, + 0.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.25000000023283064, + 0.7500000006984919, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.25000000023283064, + 0.7500000006984919, + 0.32499999995343387 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.25000000023283064, + 0.7500000006984919, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.25000000023283064, + 0.7500000006984919, + 0.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.25000000023283064, + 0.7500000006984919, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.25000000023283064, + 0.7500000006984919, + 0.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.25000000023283064, + 0.7500000006984919, + 0.44000000040978193 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.25000000023283064, + 0.7500000006984919, + 0.4600000004284084 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.25000000023283064, + 0.7500000006984919, + 0.48000000044703484 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.25000000023283064, + 0.7500000006984919, + 0.5000000004656613 + ] + } + } + }, + "140604": { + "Id": 140604, + "Name": "The Hospitable Dolosian", + "Desc": "When there are no enemy targets in \"Patron\" state on the battlefield, Cipher immediately causes one enemy target with the highest Max HP on the battlefield to become the \"Patron.\" When using Skill and Ultimate, the primary target becomes the \"Patron.\" The \"Patron\" state only takes effect on the latest target.\\nAfter the \"Patron\" is attacked by other ally targets, Cipher immediately launches a Follow-up ATK against the \"Patron,\" dealing Quantum DMG equal to #1[i]% of Cipher's ATK. This effect can be triggered up to #3[i] time(s) each turn, and it resets at the start of Cipher's turn.\\nCipher will record #2[i]% of the non-True DMG ally targets dealt to \"Patron,\" but the Overflow DMG will not be recorded. The recorded value is cleared after using Ultimate.", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.12000000011175871, + 1, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.12000000011175871, + 1, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.12000000011175871, + 1, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.12000000011175871, + 1, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.12000000011175871, + 1, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.12000000011175871, + 1, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.12000000011175871, + 1, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.12000000011175871, + 1, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.12000000011175871, + 1, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.12000000011175871, + 1, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.12000000011175871, + 1, + 5 + ] + } + } + }, + "140606": { + "Id": 140606, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140607": { + "Id": 140607, + "Name": "Puss in Boots", + "Desc": "Obtains \"Zagreus's Blessing\" for #1[i] second(s). During this time, Cipher will be undetectable by enemies and her movement speed increases by 50%. When approaching an enemy in the overworld/Simulated Universe/Divergent Universe, there is a chance of immediately obtaining a random Consumable. You can obtain Consumables up to #4[i] time(s) in each Earth day.\\nWhen entering battle with \"Zagreus's Blessing\" active, deals Quantum DMG equal to #3[i]% of Cipher's ATK to all enemies. Increases the recorded DMG Cipher obtains from this instance of DMG by #2[i]%.", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 2, + 1, + 50 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Maze.png", + "LevelUpSkillID": [ + 140607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 0.5000000004656613, + 1 + ], + "PointID": 1406101, + "PointName": "Empyrean Strides", + "PointDesc": "When Cipher's SPD is greater or equal to 140/170, increases CRIT Rate by #1[i]%/#2[i]%, and recorded value by #3[i]%/#4[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0800000000745058 + ], + "PointID": 1406102, + "PointName": "300 Rogues", + "PointDesc": "Cipher will record #1[i]% of the non-True DMG ally targets dealt to the enemy targets aside from the \"Patron.\" Overflow DMG is not recorded.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903, + 1 + ], + "PointID": 1406103, + "PointName": "Sleight of Sky", + "PointDesc": "Increases the CRIT DMG dealt by the Talent's Follow-up ATK by #2[i]%. When Cipher is on the battlefield, DMG received by all enemy targets increases by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406201, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406202, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1406101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406203, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1406202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406204, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1406203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406205, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1406102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406206, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1406205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406207, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1406206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406208, + "PointName": "Effect Hit Rate Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1406103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "Effect Hit Rate" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406209, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1406103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406210, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1406201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "SPD" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1406, + "Set4IDList": [ + 117, + 108, + 114 + ], + "Set2IDList": [ + 317, + 302, + 308 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalDamageBase", + "CriticalChanceBase" + ], + "ScoreRankList": [ + 273, + 236 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1407": { + "Name": "Castorice", + "Desc": "Aidonia, the snowy land that respects and worships death, has already sunken into sweet slumber.\\nO Castorice, daughter of the River of Souls, the Chrysos Heir in search of the Coreflame of \"Death,\" set forth! Guard the lament of the souls in this world, and embrace the solitude of destiny.\\n— Life and death is a journey. When a butterfly rests on that dead branch, the withered will be reborn again.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "castorice", + "SPNeed": null, + "BaseType": "Memory", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140701, + "Name": "Snowbound Maiden, Memory to Tomb", + "Desc": "When the enemy target's current HP is #1[i]%/#2[i]% of Max HP or lower, the DMG dealt to it by \"Boneclaw, Doomdrake's Embrace,\" \"Claw Splits the Veil,\" \"Breath Scorches the Shadow,\" and \"Wings Sweep the Ruins\" is #3[i]%/#4[i]% of the original DMG respectively.", + "ParamList": [ + 0.8000000007450581, + 0.5000000004656613, + 1.2000000001862645, + 1.400000000372529 + ] + }, + "2": { + "Id": 140702, + "Name": "Crown on Wings of Bloom", + "Desc": "After summoning the memosprite Netherwing, Castorice gains #1[i] stack(s) of \"Ardent Will.\" \"Ardent Will\" can stack up to #2[i] time(s) and can be used to offset the HP cost of Netherwing's Memosprite Skill, \"Breath Scorches the Shadow\" and advance Castorice's action by 100%. When using the next Enhanced Skill, Castorice gains \"Newbud\" by an amount equal to #3[i]% of max \"Newbud.\"", + "ParamList": [ + 2, + 2, + 0.3000000002793968 + ] + }, + "3": { + "Id": 140703, + "Name": "Pious Pilgrim, Dance in Doom", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.\\nMemosprite Talent Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 140704, + "Name": "Rest in Songs of Gloom", + "Desc": "While Castorice is on the field, all allies' HP restored when receiving healing increases by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 140705, + "Name": "Pristine Pages, Prophecy as Plume", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.\\nMemosprite Skill Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 140706, + "Name": "Await for Years to Loom", + "Desc": "When Castorice or Netherwing deals DMG, increases Quantum RES PEN by #1[i]%. During Netherwing's attacks, can reduce enemy Toughness regardless of Weakness Types. When breaking Weaknesses, triggers the Quantum Weakness Break effect. And the number of Bounces for Netherwing's Talent \"Wings Sweep the Ruins\" additionally increases by #2[i].", + "ParamList": [ + 0.20000000018626451, + 3 + ] + } + }, + "Skills": { + "140701": { + "Id": 140701, + "Name": "Lament, Nethersea's Ripple", + "Desc": "Deals Quantum DMG equal to #1[i]% of Castorice's Max HP to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140702": { + "Id": 140702, + "Name": "Silence, Wraithfly's Caress", + "Desc": "Consumes #1[i]% of all allies' current HP. Deals Quantum DMG equal to #2[i]% of Castorice's Max HP to one designated enemy and Quantum DMG equal to #3[i]% of Castorice's Max HP to adjacent targets.\\nIf the current HP is insufficient, reduces the current HP down to 1.\\nIf Netherwing is on the battlefield, the Skill becomes \"Boneclaw, Doomdrake's Embrace\" instead.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.25000000023283064, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.27499999990686774, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.32499999995343387, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.3500000003259629, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.4062500004656613, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.43750000023283064, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.46875000069849193, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.5250000001396984, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.5500000005122274, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.5750000001862645, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.6000000005587935, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.6250000002328306, + 0.375 + ] + } + } + }, + "140703": { + "Id": 140703, + "Name": "Doomshriek, Dawn's Chime", + "Desc": "Summons the memosprite Netherwing and advances its action by 100%. At the same time, deploys the Territory \"Lost Netherland,\" which decreases all enemies' All-Type RES by #4[i]%. If Castorice has the DMG Boost effect from her Talent, then this effect spreads to Netherwing. Netherwing has an initial SPD of #1[i] and a set Max HP equal to #3[i]% of max \"Newbud.\"\\nAfter Netherwing experiences #2[i] turns or when its HP is 0, it disappears and dispels the Territory \"Lost Netherland.\"", + "Type": "Ultra", + "Tag": "Summon", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 165, + 3, + 1, + 0.10000000009313226, + 0 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 165, + 3, + 1, + 0.11000000010244548, + 0 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 165, + 3, + 1, + 0.12000000011175871, + 0 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 165, + 3, + 1, + 0.13000000012107193, + 0 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 165, + 3, + 1, + 0.14000000013038516, + 0 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 165, + 3, + 1, + 0.1500000001396984, + 0 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 165, + 3, + 1, + 0.1625000003259629, + 0 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 165, + 3, + 1, + 0.17499999981373549, + 0 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 165, + 3, + 1, + 0.1875, + 0 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 165, + 3, + 1, + 0.20000000018626451, + 0 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 165, + 3, + 1, + 0.21000000019557774, + 0 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 165, + 3, + 1, + 0.22000000020489097, + 0 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 165, + 3, + 1, + 0.2300000002142042, + 0 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 165, + 3, + 1, + 0.24000000022351742, + 0 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 165, + 3, + 1, + 0.25000000023283064, + 0 + ] + } + } + }, + "140704": { + "Id": 140704, + "Name": "Desolation Across Palms", + "Desc": "The maximum limit of \"Newbud\" is related to the levels of all characters on the battlefield. For every 1 point of HP lost by all allies, Castorice gains 1 point of \"Newbud.\" When \"Newbud\" reaches its maximum limit, can activate the Ultimate. When allies lose HP, Castorice's and Netherwing's DMG dealt increases by #2[i]%. This effect can stack up to #3[i] time(s), lasting for #4[i] turn(s).\\nWhen Netherwing is on the field, \"Newbud\" cannot be gained through Talent, and every 1 point of HP lost by all allies (except Netherwing) will be converted to an equal amount of HP for Netherwing.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0, + 0.10000000009313226, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0, + 0.11000000010244548, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0, + 0.12000000011175871, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0, + 0.13000000012107193, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0, + 0.14000000013038516, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0, + 0.1500000001396984, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0, + 0.1625000003259629, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0, + 0.17499999981373549, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0, + 0.1875, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0, + 0.20000000018626451, + 3, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0, + 0.21000000019557774, + 3, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0, + 0.22000000020489097, + 3, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0, + 0.2300000002142042, + 3, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0, + 0.24000000022351742, + 3, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0, + 0.25000000023283064, + 3, + 3 + ] + } + } + }, + "140706": { + "Id": 140706, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140707": { + "Id": 140707, + "Name": "Wail, Death's Herald", + "Desc": "After using Technique, enters the \"Netherveil\" state that lasts for #3[i] seconds. While \"Netherveil\" is active, enemies are unable to actively approach Castorice.\\nDuring \"Netherveil,\" active attacks will cause all enemies within range to enter combat. At the same time, summons the memosprite Netherwing, advances its action by 100%, and deploys the Territory \"Lost Netherland.\" Netherwing has its current HP equal to #2[i]% of max \"Newbud.\" After entering battle, consumes #1[i]% of the current HP of all allies (except Netherwing).\\nIf Netherwing is not summoned after entering battle, Castorice gains \"Newbud\" by an amount equal to #4[i]% of max \"Newbud.\"", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 20, + 0.3000000002793968 + ] + } + } + }, + "140709": { + "Id": 140709, + "Name": "Boneclaw, Doomdrake's Embrace", + "Desc": "Consumes #1[i]% of the current HP of all allies (except Netherwing). Castorice and Netherwing launch Joint ATK on the targets, dealing Quantum DMG equal to #2[f1]% and #3[f1]% of Castorice's Max HP to all enemies.\\nIf the current HP is insufficient, reduces the current HP down to 1.", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.1500000001396984, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.40000000037252903, + 0.16499999980442226, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40000000037252903, + 0.18000000016763806, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903, + 0.19499999983236194, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.40000000037252903, + 0.21000000019557774, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 0.2249999998603016, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.40000000037252903, + 0.24375000083819032, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.40000000037252903, + 0.26250000041909516, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.40000000037252903, + 0.28125000069849193, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.40000000037252903, + 0.31499999994412065, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.40000000037252903, + 0.33000000030733645, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.40000000037252903, + 0.3449999999720603, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.40000000037252903, + 0.3600000003352761, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.40000000037252903, + 0.375, + 0.6250000002328306 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Maze.png", + "LevelUpSkillID": [ + 140707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.12000000011175871 + ], + "PointID": 1407101, + "PointName": "Contained Dark Tide", + "PointDesc": "After ally targets (excluding Netherwing) receive healing, converts #1[i]% of the healed amount into \"Newbud.\" If Netherwing is on the field, this is converted to Netherwing's HP instead. Each ally target can accumulate a conversion amount up to #2[i]% of the max \"Newbud.\" After any unit takes action, all units reset their accumulated conversion amount.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903, + 1 + ], + "PointID": 1407102, + "PointName": "Inverted Torch", + "PointDesc": "When Castorice's current HP is higher than or equal to #1[i]% of her Max HP, her SPD increases by #2[i]%. When Netherwing uses \"Breath Scorches the Shadow\" and deals fatal damage to all enemies on the field or brings them to a point where their HP cannot be reduced further, Netherwing's SPD increases by #3[i]%, lasting for 1 turn.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 6 + ], + "PointID": 1407103, + "PointName": "Where The West Wind Dwells", + "PointDesc": "Each time Netherwing uses \"Breath Scorches the Shadow,\" the DMG dealt increases by #1[i]%. This effect stacks up to #2[i] time(s) and lasts until the end of this turn.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407201, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407202, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1407201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407203, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1407201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407204, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1407101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407205, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1407101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407206, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1407102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407207, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1407102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407208, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1407103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407209, + "PointName": "DMG Boost: Quantum", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1407208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "Quantum DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407210, + "PointName": "CRIT Rate Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1407209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "Claw Splits the Veil", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "Claw Splits the Veil", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "Claw Splits the Veil", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "Claw Splits the Veil", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "Claw Splits the Veil", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "Claw Splits the Veil", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "Breath Scorches the Shadow", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "Breath Scorches the Shadow", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "Breath Scorches the Shadow", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "Breath Scorches the Shadow", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "Breath Scorches the Shadow", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "Breath Scorches the Shadow", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "Netherwing: Pollux", + "Icon": "SpriteOutput/ServantIconTeam/11407B.png", + "HPBase": "0", + "HPInherit": "0", + "HPSkill": null, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 140703, + "Aggro": 100, + "Skills": { + "1140701": { + "Name": "Claw Splits the Veil", + "Desc": "Deals Quantum DMG equal to #1[f1]% of Castorice's Max HP to all enemies.", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406 + ] + } + } + }, + "1140702": { + "Name": "Breath Scorches the Shadow", + "Desc": "Launching \"Breath Scorches the Shadow\" will consume #1[i]% of Netherwing's Max HP to deal Quantum DMG equal to #2[f1]% of Castorice's Max HP to all enemies.\\nIn one attack, \"Breath Scorches the Shadow\" can be launched repeatedly, with the DMG multiplier increased progressively to #3[f1]% / #4[f1]%. After reaching #4[f1]%, it will not increase further. The DMG Multiplier Boost effect will not decrease before Netherwing disappears.\\nWhen Netherwing's current HP is equal to or less than #5[i]% of its Max HP, launching this ability will actively reduce HP down to 1, and then trigger the ability effect equal to that of the Talent \"Wings Sweep the Ruins.\"", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 0.12000000011175871, + 0.14000000013038516, + 0.17000000015832484, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064, + 0.14399999985471368, + 0.16799999959766865, + 0.20399999991059303, + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064, + 0.16799999959766865, + 0.19599999976344407, + 0.23799999966286123, + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064, + 0.19200000003911555, + 0.22399999992921948, + 0.27200000011362135, + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064, + 0.21599999978207052, + 0.2520000000949949, + 0.30599999986588955, + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064, + 0.24000000022351742, + 0.2800000002607703, + 0.3400000003166497, + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064, + 0.2639999999664724, + 0.3079999997280538, + 0.37400000006891787, + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064, + 0.28799999970942736, + 0.3359999998938292, + 0.40799999982118607, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064, + 0.31200000015087426, + 0.36400000005960464, + 0.4420000002719462, + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 0.3359999998938292, + 0.39200000022538006, + 0.4760000000242144, + 0.25000000023283064 + ] + } + } + }, + "1140703": { + "Name": "Mooncocoon Shrouds the Form", + "Desc": "When Netherwing is on the field, it acts as backup for allies. When allies take DMG or consume HP, their current HP can be reduced down to a minimum of 1, after which Netherwing will bear the HP loss. But Netherwing consumes HP equal to #1[i]% of the original value. This lasts until Netherwing disappears.", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5 + ] + } + } + }, + "1140705": { + "Name": "Roar Rumbles the Realm", + "Desc": "When Netherwing is summoned, increases DMG dealt by all allies by #1[i]%, lasting for #2[i] turn(s).", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + } + }, + "1140706": { + "Name": "Wings Sweep the Ruins", + "Desc": "When Netherwing disappears, deals #2[i] instance(s) of DMG, with each instance dealing Quantum DMG equal to #1[f1]% of Castorice's Max HP to one random enemy. At the same time, restores HP by an amount equal to #3[i]% of Castorice's Max HP plus #4[i] for all allies.", + "Type": null, + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 6, + 0.030000000027939677, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742, + 6, + 0.035999999614432454, + 480 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703, + 6, + 0.04199999989941716, + 560 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232, + 6, + 0.04799999948590994, + 640 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761, + 6, + 0.05399999977089465, + 720 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 6, + 0.060000000055879354, + 800 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193, + 6, + 0.06599999964237213, + 880 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484, + 6, + 0.07199999992735684, + 960 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877, + 6, + 0.07799999951384962, + 1040 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406, + 6, + 0.08399999979883432, + 1120 + ] + } + } + }, + "1140710": { + "Name": "Breath Scorches the Shadow", + "Desc": null, + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1140711": { + "Name": "Breath Scorches the Shadow", + "Desc": null, + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1140712": { + "Name": "Wings Sweep the Ruins", + "Desc": "Consumes all HP and deals #2[i] instance(s) of DMG, with each instance dealing Quantum DMG equal to #1[f1]% of Castorice's Max HP to one random enemy. At the same time, restores HP by an amount equal to #3[i]% of Castorice's Max HP plus #4[i] for all allies.", + "Type": "Servant", + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 6, + 0.030000000027939677, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742, + 6, + 0.035999999614432454, + 480 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703, + 6, + 0.04199999989941716, + 560 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232, + 6, + 0.04799999948590994, + 640 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761, + 6, + 0.05399999977089465, + 720 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 6, + 0.060000000055879354, + 800 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193, + 6, + 0.06599999964237213, + 880 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484, + 6, + 0.07199999992735684, + 960 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877, + 6, + 0.07799999951384962, + 1040 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406, + 6, + 0.08399999979883432, + 1120 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": { + "140704": { + "Tag": "Support", + "Name": "Sanctuary of Mooncocoon", + "Desc": "After obtaining Castorice or when Castorice is in the current team, receive the following effect: In battle, when an ally character receives a killing blow, all ally characters that received a killing blow in this action enter the \"Mooncocoon\" state. Characters in \"Mooncocoon\" temporarily delay becoming downed and can take actions normally. After the action and before the start of the next turn, if their current HP increases or they gain a Shield, \"Mooncocoon\" is removed. Otherwise, they will be downed immediately. This effect can only trigger once per battle.", + "Param": [ + 0.10000000009313226 + ] + } + }, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 310.46400000015274, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 399.16799999959767, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 487.8720000006724, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 576.5760000001173, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 665.2800000002608, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 753.984000000637, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1407, + "Set4IDList": [ + 124, + 108, + 113 + ], + "Set2IDList": [ + 319, + 302, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "HPAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio" + ], + "ScoreRankList": [ + 319, + 261 + ] + } + }, + "1408": { + "Name": "Phainon", + "Desc": "Aedes Elysiae, a remote frontier village isolated from the world, now lives on only in cryptic legends.\\nThe Nameless hero, █████, the Chrysos Heir carrying the Coreflame of \"Worldbearing,\" memorizes the ideals of the entire world, carries the fate of millions, and brings the first light of dawn to the new world\\n—\"But should dawn have never existed, let the fires of rage burn this body to ashes and transform into the blazing sun of tomorrow!\"", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "phainon", + "SPNeed": 12, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 140801, + "Name": "Phainon Eidolon 1", + "Desc": "The SPD of █████'s extra turn increases to #1[i]% of █████'s base SPD. When \"Coreflame\" reaches the max limit, this unit's Physical RES PEN increases by #2[i]%, lasting for #3[i] turn(s).", + "ParamList": [ + 0.7200000006705523, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Id": 140802, + "Name": "Phainon Eidolon 2", + "Desc": "█████ attacks and deals DMG equal to #2[i]% of the original DMG. When consuming #1[i] \"Scourge\" to use \"Foundation: Stardeath Verdict,\" gains 1 extra turn.", + "ParamList": [ + 4, + 1.2000000001862645 + ] + }, + "3": { + "Id": 140803, + "Name": "Phainon Eidolon 3", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 140804, + "Name": "Phainon Eidolon 4", + "Desc": "When using \"Calamity: Soulscorch Edict,\" additionally gains #1[i] stacks of \"Soulscorch.\"", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 140805, + "Name": "Phainon Eidolon 5", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "6": { + "Id": 140806, + "Name": "Phainon Eidolon 6", + "Desc": "Max \"Scourge\" increases by 2. When using \"Creation: Bloodthorn Ferry\" or \"Calamity: Soulscorch Edict,\" additionally gains #2[i] \"Scourge\". After using the attack from \"Foundation: Stardeath Verdict,\" additionally deals True DMG equal to #1[i]% of the total DMG dealt in this attack to the enemy with the highest HP.", + "ParamList": [ + 0.20000000018626451, + 2 + ] + } + }, + "Skills": { + "140801": { + "Id": 140801, + "Name": "Stride to Deliverance", + "Desc": "Deals Physical DMG equal to #1[i]% of Phainon's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140802": { + "Id": 140802, + "Name": "Let There Be Light", + "Desc": "Gains #3[i] point(s) of \"Coreflame,\" dealing Physical DMG equal to #1[i]% of Phainon's ATK to one designated enemy and Physical DMG equal to #2[i]% of Phainon's ATK to adjacent targets.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.6500000006053597, + 0.6600000006146729, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9500000008847564, + 0.7800000007264316, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 0.9000000008381903, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.4375000002328306, + 0.9750000005587935, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.6250000002328306, + 1.0500000000465661, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.8125000009313226, + 1.1249999997671694, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.2000000001862645, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1500000001396984, + 1.2600000002421439, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.3000000002793968, + 1.3200000002980232, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.450000000419095, + 1.3800000003539026, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.6000000005587935, + 1.440000000409782, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.750000000698492, + 1.5000000004656613, + 2 + ] + } + } + }, + "140803": { + "Id": 140803, + "Name": "He Who Bears the World Must Burn", + "Desc": "Transforms into █████ and deploys Territory during transformation. Other teammates in the Territory becomes Departed and cannot take action, and all enemies gain Physical Weakness.\\n█████ does not have his own turn, but has #4[i] █████'s extra turn(s) with a fixed SPD equal to #3[i]% of █████'s base SPD. At the start of the final █████'s extra turn, immediately launches Final Hit and deals Physical Ultimate DMG equal to #1[i]% of █████'s ATK that is distributed evenly across all enemies.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4.800000000745058, + 12, + 0.6000000005587935, + 8 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.28000000026077, + 12, + 0.6000000005587935, + 8 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5.760000000707805, + 12, + 0.6000000005587935, + 8 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.240000000223517, + 12, + 0.6000000005587935, + 8 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 6.720000000670552, + 12, + 0.6000000005587935, + 8 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.2000000001862645, + 12, + 0.6000000005587935, + 8 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7.800000000745058, + 12, + 0.6000000005587935, + 8 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.400000000372529, + 12, + 0.6000000005587935, + 8 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9, + 12, + 0.6000000005587935, + 8 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 9.600000000558794, + 12, + 0.6000000005587935, + 8 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.080000000074506, + 12, + 0.6000000005587935, + 8 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 10.56000000052154, + 12, + 0.6000000005587935, + 8 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.040000000037253, + 12, + 0.6000000005587935, + 8 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 11.520000000484288, + 12, + 0.6000000005587935, + 8 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12, + 12, + 0.6000000005587935, + 8 + ] + } + } + }, + "140804": { + "Id": 140804, + "Name": "Pyric Corpus", + "Desc": "Phainon's Talent. When \"Coreflame\" reaches #4[i] point(s), Ultimate can be activated. After reaching the max limit, up to #3[i] excess point(s) can be accumulated.\\nWhen Phainon is the target of an ally or an enemy's ability, he gains 1 point of \"Coreflame.\" When he is the target of an ally's ability, increases CRIT DMG by #1[i]%, lasting for #2[i] turn(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 3, + 3, + 12 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 3, + 3, + 12 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 3, + 3, + 12 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 3, + 3, + 12 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 3, + 3, + 12 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 3, + 3, + 12 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 3, + 3, + 12 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 3, + 3, + 12 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 3, + 3, + 12 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 3, + 12 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 3, + 3, + 12 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 3, + 3, + 12 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 3, + 3, + 12 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 3, + 3, + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 3, + 3, + 12 + ] + } + } + }, + "140805": { + "Id": 140805, + "Name": "Fate: Divine Vessel", + "Desc": "█████'s Talent. When Transforming, gains #1[i] point(s) of \"Bruise\". If it is during an ally target's turn, all buffs on that ally target will be extended by 1 turn and the current turn ends.\\n█████ is immune to Crowd Control debuffs and has 1 Enhanced Basic ATK and 2 Enhanced Skills, but cannot use Ultimate. During his Transformation, increases ATK by #4[i]% and Max HP by #5[i]%. After attacking, restores HP equal to #7[i]% of his Max HP. Upon taking a killing blow, █████ will not get knocked down, and will instead restore HP equal to #2[i]% of Max HP and immediately launch Final Hit. For every 1 remaining extra turn █████ has, the Final Hit's DMG multiplier reduces by #3[f1]% of its original multiplier.\\nWhen the Transformation ends, increases all allies' SPD by #6[i]%, lasting for 1 turn.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.40000000037252903, + 1.2000000001862645, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.44000000040978193, + 1.3200000002980232, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.48000000044703484, + 1.440000000409782, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.5200000004842877, + 1.5600000005215406, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.5600000005215406, + 1.6800000006332994, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.6000000005587935, + 1.800000000745058, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.6500000006053597, + 1.9500000008847564, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.7000000006519258, + 2.1000000000931323, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.7500000006984919, + 2.2500000002328306, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.8000000007450581, + 2.400000000372529, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.840000000782311, + 2.5200000004842877, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.8800000008195639, + 2.6400000005960464, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.9200000008568168, + 2.760000000707805, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.9600000008940697, + 2.880000000819564, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 1, + 3, + 0.1500000001396984, + 0.20000000018626451 + ] + } + } + }, + "140806": { + "Id": 140806, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140807": { + "Id": 140807, + "Name": "Beginning of the End", + "Desc": "When Phainon is in the team, increases Max Technique Points by 3.\\nActively uses Technique by consuming 2 Technique Points to immediately attack all enemies within a certain range. After entering battle, regenerates #3[i] Energy for allies, gains #2[i] \"Scourge\" and #4[i] Skill Point(s). Deals Physical DMG equal to #1[i]% of Phainon's ATK to all enemies at the start of each wave.\\nIf attacking a normal enemy, immediately defeats them without entering combat. When not hitting enemies, no Technique Points are consumed.", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 2, + 25, + 1 + ] + } + } + }, + "140808": { + "Id": 140808, + "Name": "Creation: Bloodthorn Ferry", + "Desc": "Obtains #3[i] \"Scourge\", dealing Physical DMG equal to #1[i]% of █████'s ATK to one designated enemy and Physical DMG equal to #2[i]% of █████'s ATK to enemies adjacent to it.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 0.375, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5000000004656613, + 0.45000000041909516, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.750000000698492, + 0.5250000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.6000000005587935, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2500000002328306, + 0.6750000002793968, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5000000004656613, + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.750000000698492, + 0.8250000004190952, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.9000000008381903, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.2500000002328306, + 0.9750000005587935, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.5000000004656613, + 1.0500000000465661, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.7800000007264316, + 0.9450000005308539, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.9600000008940697, + 0.9900000009220093, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.140000000130385, + 1.0349999996833503, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.320000000298023, + 1.0800000000745058, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.500000000465661, + 1.1249999997671694, + 2 + ] + } + } + }, + "140809": { + "Id": 140809, + "Name": "Calamity: Soulscorch Edict", + "Desc": "Gains \"Bruise\" by an amount equal to the number of enemy targets present and then causes all enemy targets to immediately take action and gains 1 stack of \"Soulrending Blaze.\"\\nWhen in the \"Soulrending Blaze\" state, reduces █████'s DMG received by #2[i]% and gains 1 additional stack of \"Soulrending Blaze\" after enemy targets attack or take action. Triggers a Counter after all enemies take their immediate actions, dealing Physical DMG to all enemies equal to #1[i]% of █████'s ATK, as well as additionally deals #3[i] instance(s) of DMG, each instance being Physical DMG equal to #4[i]% of █████'s ATK. Then, \"Soulrending Blaze\" is dispelled. Each stack of \"Soulrending Blaze\" increases this Counter's DMG multiplier by #5[i]% of the original multiplier.\\nDMG dealt through this ability is considered as Skill DMG. If \"Soulrending Blaze\" is still active at the start of █████'s extra turn, immediately launches Counter.", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.7500000006984919, + 4, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.7500000006984919, + 4, + 0.16499999980442226, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.7500000006984919, + 4, + 0.18000000016763806, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.7500000006984919, + 4, + 0.19499999983236194, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.7500000006984919, + 4, + 0.21000000019557774, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.7500000006984919, + 4, + 0.2249999998603016, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.7500000006984919, + 4, + 0.24375000083819032, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.7500000006984919, + 4, + 0.26250000041909516, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.7500000006984919, + 4, + 0.28125000069849193, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.7500000006984919, + 4, + 0.3000000002793968, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.7500000006984919, + 4, + 0.31499999994412065, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.7500000006984919, + 4, + 0.33000000030733645, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.7500000006984919, + 4, + 0.3449999999720603, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.7500000006984919, + 4, + 0.3600000003352761, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919, + 4, + 0.375, + 0.20000000018626451 + ] + } + } + }, + "140811": { + "Id": 140811, + "Name": "Foundation: Stardeath Verdict", + "Desc": "Dispels all debuffs from this unit, then deals Physical DMG up to #5[i]% of █████'s ATK.\\nIn that, for every 1 point(s) of \"Bruise\" consumed, deals #3[i] instance(s) of DMG, each instance being Physical DMG equal to #2[i]% of █████'s ATK dealt to one random enemy. When consuming #4[i] point(s) of \"Bruise\", additionally deals Physical DMG equal to #1[i]% of █████'s ATK, and this DMG is evenly distributed to all enemies.", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 10, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2500000002328306, + 0.2249999998603016, + 4, + 4, + 5.850000000791624 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.4750000000931323, + 0.24750000005587935, + 4, + 4, + 6.435000000055879 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.700000000651926, + 0.2700000002514571, + 4, + 4, + 7.0200000000186265 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.9250000005122274, + 0.29250000044703484, + 4, + 4, + 7.605000000214204 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.1500000001396984, + 0.31499999994412065, + 4, + 4, + 8.190000000176951 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.375, + 0.3375000001396984, + 4, + 4, + 8.775000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.656250000698492, + 0.36562500055879354, + 4, + 4, + 9.506250000558794 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.937500000698492, + 0.3937500009778887, + 4, + 4, + 10.237500000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.218750000465661, + 0.42187500139698386, + 4, + 4, + 10.968750001164153 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 0.45000000041909516, + 4, + 4, + 11.700000000651926 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.725000000325963, + 0.4725000006146729, + 4, + 4, + 12.284999999916181 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.9500000008847564, + 0.4950000001117587, + 4, + 4, + 12.87000000081025 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 5.1749999998137355, + 0.5175000003073364, + 4, + 4, + 13.455000000074506 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.400000000372529, + 0.5400000005029142, + 4, + 4, + 14.040000000037253 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.625000000232831, + 0.5625000006984919, + 4, + 4, + 14.62500000023283 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Maze.png", + "LevelUpSkillID": [ + 140807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1408101, + "PointName": "March to Oblivion", + "PointDesc": "When the transformation ends, gains #1[i] point(s) of \"Coreflame\"", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903, + 4, + 1 + ], + "PointID": 1408102, + "PointName": "Bide in Flames", + "PointDesc": "When receiving healing effects or Shields from a teammate, increases DMG dealt by #1[i]% for #2[i] turn(s). This effect cannot be triggered repeatedly within one turn.\\nWhen receiving Energy regeneration ability effects provided by teammates, gains #3[i] point(s) of \"Coreflame.\"", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ], + "PointID": 1408103, + "PointName": "Shine with Valor", + "PointDesc": "When entering battle or when transformation ends, increases ATK by #1[i]%. This effect can stack up to #2[i] time(s).", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408201, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408202, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1408101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "CRIT Rate" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408203, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1408202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408204, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1408203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408205, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1408102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408206, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1408205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "CRIT Rate" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408207, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1408206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408208, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1408103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408209, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1408208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "CRIT Rate" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408210, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1408208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 99, + "DefenceAdd": 4.9500000008847564, + "HPBase": 195.36000000033528, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 273.50400000019, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 4.9500000008847564, + "HPBase": 351.6480000000447, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 4.9500000008847564, + "HPBase": 429.7920000005979, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.9500000008847564, + "HPBase": 507.9360000004526, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 297, + "DefenceAdd": 4.9500000008847564, + "HPBase": 586.0800000000745, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 336.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 664.2239999999292, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1408, + "Set4IDList": [ + 126, + 105, + 122 + ], + "Set2IDList": [ + 321, + 309, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 324, + 266 + ] + } + }, + "1409": { + "Name": "Hyacine", + "Desc": "As the city-state in the clouds crumbles through time, the Twilight Courtyard opens its gates once more, bringing a glimmer of light to Evernight.\\nYou, Physician Hyacinthia, Chrysos Heir who guards the Sky Coreflame, must inherit your ancestors' will and mend the torn fabric of dusk and dawn.\\nMay the rainbow light pour down, dissolve all grudges, and bring the dawn back to this land.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "hyacine", + "SPNeed": 140, + "BaseType": "Memory", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 140901, + "Name": "Cradle the Candle of Night", + "Desc": "When Hyacine is in the \"After Rain\" state, additionally increases the Max HP of all ally targets by #1[i]%, and immediately restores HP equal to #2[i]% of Hyacine's Max HP after using an attack.", + "ParamList": [ + 0.5000000004656613, + 0.0800000000745058 + ] + }, + "2": { + "Id": 140902, + "Name": "Come Sit in My Courtyard", + "Desc": "When any ally target's HP decreases, this unit's SPD increases by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 140903, + "Name": "Depart, Unto the Sun!", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.\\nMemosprite Skill Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 140904, + "Name": "Sunlit Amber, Yours to Keep", + "Desc": "The \"Tempestuous Halt\" Trace is enhanced. For every #1[i] of SPD exceeded, additionally increases Hyacine and Little Ica's CRIT DMG by #2[i]%.", + "ParamList": [ + 1, + 0.02000000001862645 + ] + }, + "5": { + "Id": 140905, + "Name": "Twilight Drapes the Tide", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.\\nMemosprite Talent Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 140906, + "Name": "O Sky, Heed My Plea", + "Desc": "Little Ica uses Memosprite Skill and changes the amount of Healing tally cleared to #1[i]%. When Little Ica is on the field, increases all ally targets' All-Type RES PEN by #2[i]%.", + "ParamList": [ + 0.12000000011175871, + 0.20000000018626451 + ] + } + }, + "Skills": { + "140901": { + "Id": 140901, + "Name": "When Breeze Kisses Cirrus", + "Desc": "Deals Wind DMG equal to #1[i]% of Hyacine's Max HP to a designated enemy target.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140902": { + "Id": 140902, + "Name": "Love Over the Rainbow", + "Desc": "Summons memosprite Little Ica, restores HP equal to #1[f1]% of Hyacine's Max HP plus #2[i] for all allies aside from Little Ica, and restores HP equal to #3[f1]% of Hyacine's Max HP plus #4[i] for Little Ica.", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 40, + 0.05000000004656613, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04499999969266355, + 64, + 0.056250000139698386, + 80 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.05000000004656613, + 82, + 0.06250000023283064, + 102.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.054999999701976776, + 100, + 0.0687500003259629, + 125 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.060000000055879354, + 112, + 0.07499999972060323, + 140 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.06399999978020787, + 124, + 0.0800000000745058, + 155 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06799999950453639, + 133, + 0.08499999972991645, + 166.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.07199999992735684, + 142, + 0.09000000008381903, + 177.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07599999965168536, + 151, + 0.09499999973922968, + 188.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0800000000745058, + 160, + 0.10000000009313226, + 200 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.08399999979883432, + 169, + 0.1049999997485429, + 211.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.08799999952316284, + 178, + 0.11000000010244548, + 222.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.09199999994598329, + 187, + 0.11499999975785613, + 233.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.09599999967031181, + 196, + 0.12000000011175871, + 245 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.10000000009313226, + 205, + 0.12499999976716936, + 256.25000000023283 + ] + } + } + }, + "140903": { + "Id": 140903, + "Name": "We Who Fly Into Twilight", + "Desc": "Summons memosprite Little Ica, restores HP equal to #1[f1]% of Hyacine's Max HP plus #2[i] for all allies aside from Little Ica, and restores HP equal to #6[f1]% of Hyacine's Max HP plus #7[i] for Little Ica. Hyacine enters the \"After Rain\" state for #5[i] turn(s) afterward. Reduces the state's duration by 1 turn each time Hyacine's turn begins. When in \"After Rain\" state, increases Max HP for all allies by #3[f1]% plus #4[i].", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 50, + 0.1500000001396984, + 150, + 3, + 0.060000000055879354, + 60 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.056250000139698386, + 80, + 0.16499999980442226, + 240, + 3, + 0.06749999988824129, + 96 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.06250000023283064, + 102.50000000046566, + 0.18000000016763806, + 307.50000000046566, + 3, + 0.07499999972060323, + 123 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.0687500003259629, + 125, + 0.19499999983236194, + 375, + 3, + 0.0825000002514571, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07499999972060323, + 140, + 0.21000000019557774, + 420, + 3, + 0.09000000008381903, + 168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0800000000745058, + 155, + 0.2249999998603016, + 465, + 3, + 0.09599999967031181, + 186 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08499999972991645, + 166.25000000023283, + 0.24375000083819032, + 498.7500000006985, + 3, + 0.10199999995529652, + 199.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09000000008381903, + 177.50000000046566, + 0.26250000041909516, + 532.5000000004657, + 3, + 0.1079999995417893, + 213 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09499999973922968, + 188.7500000006985, + 0.28125000069849193, + 566.2500000002328, + 3, + 0.113999999826774, + 226.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 200, + 0.3000000002793968, + 600, + 3, + 0.12000000011175871, + 240 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 211.25000000023283, + 0.31499999994412065, + 633.7500000006985, + 3, + 0.12599999969825149, + 253.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 222.50000000046566, + 0.33000000030733645, + 667.5000000004657, + 3, + 0.1319999999832362, + 267 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 233.7500000006985, + 0.3449999999720603, + 701.2500000002328, + 3, + 0.13799999956972897, + 280.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 245, + 0.3600000003352761, + 735, + 3, + 0.14399999985471368, + 294 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 256.25000000023283, + 0.375, + 768.7500000006985, + 3, + 0.1500000001396984, + 307.50000000046566 + ] + } + } + }, + "140904": { + "Id": 140904, + "Name": "First Light Heals the World", + "Desc": "The memosprite Little Ica initially has Max HP equal to #1[i]% of Hyacine's Max HP. When Hyacine or Little Ica provides healing, increases Little Ica's DMG dealt by #3[i]% for #4[i] turn(s). Stacks up to #5[i] time(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1, + 0.40000000037252903, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 1, + 0.44000000040978193, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 1, + 0.48000000044703484, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 1, + 0.5200000004842877, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 1, + 0.5600000005215406, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 1, + 0.6000000005587935, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 1, + 0.6500000006053597, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 1, + 0.7000000006519258, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 1, + 0.7500000006984919, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 0.8000000007450581, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 1, + 0.840000000782311, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 1, + 0.8800000008195639, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 1, + 0.9200000008568168, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 1, + 0.9600000008940697, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 1, + 1, + 2, + 3 + ] + } + } + }, + "140906": { + "Id": 140906, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140907": { + "Id": 140907, + "Name": "Day So Right, Life So Fine!", + "Desc": "At the start of the next battle, restores HP equal to #1[i]% of Hyacine's Max HP plus #2[i] for all allies and increases their Max HP by #3[i]% for #4[i] turn(s).", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 600, + 0.20000000018626451, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "Rainclouds, Time to Go!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "Rainclouds, Time to Go!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "Rainclouds, Time to Go!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "Rainclouds, Time to Go!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "Rainclouds, Time to Go!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "Rainclouds, Time to Go!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "Take Sky in Hand", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "Take Sky in Hand", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "Take Sky in Hand", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "Take Sky in Hand", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "Take Sky in Hand", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "Take Sky in Hand", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Maze.png", + "LevelUpSkillID": [ + 140907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.25000000023283064 + ], + "PointID": 1409101, + "PointName": "Gloomy Grin", + "PointDesc": "Increases Hyacine and Little Ica's CRIT Rate by #1[i]%. When providing healing to an ally target with less than or equal to #2[i]% this unit's Max HP, increases Hyacine and Little Ica's Outgoing Healing by #3[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ], + "PointID": 1409102, + "PointName": "Stormy Caress", + "PointDesc": "Increases Hyacine's Effect RES by #1[i]%. When using Skill and Ultimate, dispels #2[i] debuff(s) from all ally targets.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 200, + 0.20000000018626451, + 1, + 0.010000000009313226, + 200 + ], + "PointID": 1409103, + "PointName": "Tempestuous Halt", + "PointDesc": "When Hyacine's SPD exceeds #1[i], increases her and Little Ica's Max HP by #2[i]%. Then, for every #3[i] excess SPD, increases Hyacine's and Little Ica's Outgoing Healing by #4[i]%. Up to a max of #5[i] excess SPD can be taken into account for this effect.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409201, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409202, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1409201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409203, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1409201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "SPD" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1409101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409205, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1409101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409206, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1409102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409207, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1409102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "SPD" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1409103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409209, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1409208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "Effect RES" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409210, + "PointName": "SPD Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1409209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "SPD" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "Little Ica", + "Icon": "SpriteOutput/ServantIconTeam/11409B.png", + "HPBase": "0", + "HPInherit": "#1", + "HPSkill": 140904, + "SpeedBase": "0", + "SpeedInherit": "0", + "SpeedSkill": 140904, + "Aggro": 100, + "Skills": { + "1140901": { + "Name": "Rainclouds, Time to Go!", + "Desc": "Deals Wind DMG to all enemies equal to #1[i]% of the tally of healing done by Hyacine and Little Ica in the current battle, and clears #2[i]% of the tally of healing.", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613 + ] + } + } + }, + "1140903": { + "Name": "Take Sky in Hand", + "Desc": "Little Ica's SPD remains at 0, is immune to debuffs, and they will not appear on the Action Order.\\nIf ally targets (except Little Ica) have their HP reduced, then Little Ica will consume HP equal to #1[i]% of their own Max HP and restore HP equal to #2[f1]% of Hyacine's Max HP plus #3[i] for the ally target with reduced HP at the start of any target's turn or after any target takes action.\\nWhile Hyacine is in the \"After Rain\" state, Little Ica immediately obtains 1 extra turn and automatically uses \"Rainclouds, Time to Go!\" after Hyacine uses an ability. Moreover, when Little Ica triggers their Talent's healing effect, additionally restores HP for all ally targets by an amount equal to #4[f1]% of Hyacine's Max HP plus #5[i]. After Little Ica uses an ability, all Continuous Effects' duration decreases by 1 turn.", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 0.010000000009313226, + 10, + 0.010000000009313226, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.0400000000372529, + 0.011999999871477485, + 12, + 0.011999999871477485, + 12 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.0400000000372529, + 0.013999999733641744, + 14, + 0.013999999733641744, + 14 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.0400000000372529, + 0.015999999595806003, + 16, + 0.015999999595806003, + 16 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.0400000000372529, + 0.01799999945797026, + 18, + 0.01799999945797026, + 18 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0400000000372529, + 0.02000000001862645, + 20, + 0.02000000001862645, + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.0400000000372529, + 0.02199999988079071, + 22, + 0.02199999988079071, + 22 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.0400000000372529, + 0.02399999974295497, + 24, + 0.02399999974295497, + 24 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.0400000000372529, + 0.02599999960511923, + 26, + 0.02599999960511923, + 26 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0400000000372529, + 0.027999999467283487, + 28, + 0.027999999467283487, + 28 + ] + } + } + }, + "1140905": { + "Name": "Soar, Unto the Sunlight", + "Desc": "When summoned, additionally regenerates #1[i] Energy for Hyacine. When first summoned, additionally regenerates #2[i] Energy.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 30 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 15, + 30 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 15, + 30 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 15, + 30 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 15, + 30 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 15, + 30 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 15, + 30 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 15, + 30 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 15, + 30 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 15, + 30 + ] + } + } + }, + "1140906": { + "Name": "Fall, Then Take Wing", + "Desc": "Upon disappearing, advances the action of Hyacine by #1[i]%.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 52.80000000074506, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 73.92000000085682, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 95.04000000003725, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 116.16000000014901, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 137.28000000026077, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 158.40000000037253, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 179.5200000004843, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1409, + "Set4IDList": [ + 125, + 101, + 114 + ], + "Set2IDList": [ + 320, + 302, + 308 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "WindAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 304, + 253 + ] + } + }, + "8001": { + "Name": "{NICKNAME}", + "Desc": "A {F#girl}{M#boy} who boarded the Astral Express.\\n{F#She}{M#He} chose to travel with the Astral Express to eliminate the dangers posed by the Stellaron.", + "CharaInfo": { + "Camp": "Astral Express", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 101, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 102, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 103, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 104, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 105, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 106, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 107, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 108, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 109, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 110, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 111, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 112, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 113, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 114, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 115, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 116, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 117, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 118, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 119, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 120, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 121, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 122, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 123, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 124, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 125, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 126, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 127, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 128, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 129, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 130, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 131, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 132, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 133, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 134, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 995, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 996, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 992, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 993, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 997, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 994, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 998, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 999, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 800101, + "Name": "A Falling Star", + "Desc": "When enemies are defeated due to the Trailblazer's Ultimate, the Trailblazer regenerates #1[i] extra Energy. This effect can only be triggered once per attack.", + "ParamList": [ + 10 + ] + }, + "2": { + "Id": 800102, + "Name": "An Unwilling Host", + "Desc": "Attacking enemies with Physical Weakness restores the Trailblazer's HP equal to #1[i]% of the Trailblazer's ATK.", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 800103, + "Name": "A Leading Whisper", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 800104, + "Name": "A Destructing Glance", + "Desc": "When attacking an enemy that is Weakness Broken, increases CRIT Rate by #1[i]%.", + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Id": 800105, + "Name": "A Surviving Hope", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 800106, + "Name": "A Trailblazing Will", + "Desc": "The Trailblazer's Talent is also triggered when they defeat an enemy.", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800101": { + "Id": 800101, + "Name": "Farewell Hit", + "Desc": "Deals Physical DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800102": { + "Id": 800102, + "Name": "RIP Home Run", + "Desc": "Deals Physical DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy and enemies adjacent to it.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.562500000698492 + ] + } + } + }, + "800103": { + "Id": 800103, + "Name": "Stardust Ace", + "Desc": "Choose between two attack modes to deliver a full strike.\\nBlowout: Farewell Hit deals Physical DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy.\\nBlowout: RIP Home Run deals Physical DMG equal to #2[i]% of the Trailblazer's ATK to a single enemy, and Physical DMG equal to #3[i]% of the Trailblazer's ATK to enemies adjacent to it.", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968, + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095, + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935, + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492, + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492, + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169, + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661, + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536, + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058, + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564, + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132, + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831, + 3.1500000001396984, + 1.890000000828877 + ] + } + } + }, + "800104": { + "Id": 800104, + "Name": "Perfect Pickoff", + "Desc": "Each time after this character inflicts Weakness Break on an enemy, ATK increases by #1[i]%. This effect stacks up to #2[i] time(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "800106": { + "Id": 800106, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800107": { + "Id": 800107, + "Name": "Immortal Third Strike", + "Desc": "Immediately heals all allies for #1[i]% of their respective Max HP after using this Technique.", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + } + } + }, + "800108": { + "Id": 800108, + "Name": "Blowout: Farewell Hit", + "Desc": "Deals Physical DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831 + ] + } + } + }, + "800109": { + "Id": 800109, + "Name": "Blowout: RIP Home Run", + "Desc": "Deals Physical DMG equal to #1[i]% of Trailblazer's ATK to a single enemy and Physical DMG equal to #2[i]% of Trailblazer's ATK to enemies adjacent to it.", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Maze.png", + "LevelUpSkillID": [ + 800107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 8001101, + "PointName": "Ready for Battle", + "PointDesc": "At the start of the battle, immediately regenerates #1[i] Energy.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 8001102, + "PointName": "Tenacity", + "PointDesc": "Each Talent stack increases the Trailblazer's DEF by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 8001103, + "PointName": "Fighting Will", + "PointDesc": "When using Skill or Ultimate \"Blowout: RIP Home Run,\" DMG dealt to the target enemy is increased by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8001101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8001202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8001203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8001102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8001205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8001206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8001103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8001, + "Set4IDList": [ + 105, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "8002": { + "Name": "{NICKNAME}", + "Desc": "A {F#girl}{M#boy} who boarded the Astral Express.\\n{F#She}{M#He} chose to travel with the Astral Express to eliminate the dangers posed by the Stellaron.", + "CharaInfo": { + "Camp": "Astral Express", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 101, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 102, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 103, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 104, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 105, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 106, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 107, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 108, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 109, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 110, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 111, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 112, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 113, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 114, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 115, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 116, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 117, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 118, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 119, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 120, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 121, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 122, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 123, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 124, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 125, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 126, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 127, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 128, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 129, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 130, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 131, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 132, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 133, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 134, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 995, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 996, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 992, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 993, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 997, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 994, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 998, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 999, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 800201, + "Name": "A Falling Star", + "Desc": "When enemies are defeated due to the Trailblazer's Ultimate, the Trailblazer regenerates #1[i] extra Energy. This effect can only be triggered once per attack.", + "ParamList": [ + 10 + ] + }, + "2": { + "Id": 800202, + "Name": "An Unwilling Host", + "Desc": "Attacking enemies with Physical Weakness restores the Trailblazer's HP equal to #1[i]% of the Trailblazer's ATK.", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 800203, + "Name": "A Leading Whisper", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 800204, + "Name": "A Destructing Glance", + "Desc": "When attacking an enemy that is Weakness Broken, increases CRIT Rate by #1[i]%.", + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Id": 800205, + "Name": "A Surviving Hope", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 800206, + "Name": "A Trailblazing Will", + "Desc": "The Trailblazer's Talent is also triggered when they defeat an enemy.", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800201": { + "Id": 800201, + "Name": "Farewell Hit", + "Desc": "Deals Physical DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800202": { + "Id": 800202, + "Name": "RIP Home Run", + "Desc": "Deals Physical DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy and enemies adjacent to it.", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.562500000698492 + ] + } + } + }, + "800203": { + "Id": 800203, + "Name": "Stardust Ace", + "Desc": "Choose between two attack modes to deliver a full strike.\\nBlowout: Farewell Hit deals Physical DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy.\\nBlowout: RIP Home Run deals Physical DMG equal to #2[i]% of the Trailblazer's ATK to a single enemy, and Physical DMG equal to #3[i]% of the Trailblazer's ATK to enemies adjacent to it.", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968, + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095, + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935, + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492, + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492, + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169, + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661, + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536, + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058, + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564, + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132, + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831, + 3.1500000001396984, + 1.890000000828877 + ] + } + } + }, + "800204": { + "Id": 800204, + "Name": "Perfect Pickoff", + "Desc": "Each time after this character inflicts Weakness Break on an enemy, ATK increases by #1[i]%. This effect stacks up to #2[i] time(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "800206": { + "Id": 800206, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800207": { + "Id": 800207, + "Name": "Immortal Third Strike", + "Desc": "Immediately heals all allies for #1[i]% of their respective Max HP after using this Technique.", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + } + } + }, + "800208": { + "Id": 800208, + "Name": "Blowout: Farewell Hit", + "Desc": "Deals Physical DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy.", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831 + ] + } + } + }, + "800209": { + "Id": 800209, + "Name": "Blowout: RIP Home Run", + "Desc": "Deals Physical DMG equal to #1[i]% of Trailblazer's ATK to a single enemy and Physical DMG equal to #2[i]% of Trailblazer's ATK to enemies adjacent to it.", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Maze.png", + "LevelUpSkillID": [ + 800207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 8002101, + "PointName": "Ready for Battle", + "PointDesc": "At the start of the battle, immediately regenerates #1[i] Energy.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 8002102, + "PointName": "Tenacity", + "PointDesc": "Each Talent stack increases the Trailblazer's DEF by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 8002103, + "PointName": "Fighting Will", + "PointDesc": "When using Skill or Ultimate \"Blowout: RIP Home Run,\" DMG dealt to the target enemy is increased by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002201, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002202, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8002101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002203, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8002202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002204, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8002203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002205, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8002102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8002205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002207, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8002206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002208, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8002103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002210, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8002, + "Set4IDList": [ + 105, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "8003": { + "Name": "{NICKNAME}", + "Desc": "A {F#girl}{M#boy} who boarded the Astral Express.\\n{F#She}{M#He} chose to travel with the Astral Express to eliminate the dangers posed by the Stellaron.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy2", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 800301, + "Name": "Earth-Shaking Resonance", + "Desc": "When the Trailblazer uses their Basic ATK, additionally deals Fire DMG equal to #1[i]% of the Trailblazer's DEF. When the Trailblazer uses their enhanced Basic ATK, additionally deals Fire DMG equal to #2[i]% of the Trailblazer's DEF.", + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Id": 800302, + "Name": "Time-Defying Tenacity", + "Desc": "The Shield applied to all allies from the Trailblazer's Talent will block extra DMG equal to #1[i]% of the Trailblazer's DEF plus #2[i].", + "ParamList": [ + 0.02000000001862645, + 27 + ] + }, + "3": { + "Id": 800303, + "Name": "Trail-Blazing Blueprint", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 800304, + "Name": "Nation-Building Oath", + "Desc": "At the start of the battle, immediately gains #1[i] stack(s) of Magma Will.", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 800305, + "Name": "Spirit-Warming Flame", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 800306, + "Name": "City-Forging Bulwarks", + "Desc": "After the Trailblazer uses enhanced Basic ATK or Ultimate, their DEF increases by #1[i]%. Stacks up to #2[i] time(s).", + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + }, + "Skills": { + "800301": { + "Id": 800301, + "Name": "Ice-Breaking Light", + "Desc": "Deals Fire DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy and gains 1 stack of Magma Will.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800302": { + "Id": 800302, + "Name": "Ever-Burning Amber", + "Desc": "Increases the Trailblazer's DMG Reduction by #1[i]% and gains 1 stack of Magma Will, with a #2[i]% base chance to Taunt all enemies for #3[i] turn(s).", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.41000000038184226, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4300000004004687, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4625000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.47500000009313226, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4875000002793968, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5100000004749745, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.530000000493601, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5400000005029142, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5500000005122274, + 1, + 1 + ] + } + } + }, + "800303": { + "Id": 800303, + "Name": "War-Flaming Lance", + "Desc": "Deals Fire DMG equal to #1[i]% of the Trailblazer's ATK plus #2[i]% of the Trailblazer's DEF to all enemies. The next Basic ATK will be automatically enhanced and does not cost Magma Will.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 1.8750000004656613 + ] + } + } + }, + "800304": { + "Id": 800304, + "Name": "Treasure of the Architects", + "Desc": "Each time the Trailblazer is hit, they gain 1 stack of Magma Will for a max of #3[i] stack(s).\\nWhen Magma Will has no fewer than 4 stacks, the Trailblazer's Basic ATK becomes enhanced, dealing DMG to a single enemy and enemies adjacent to it.\\nWhen the Trailblazer uses Basic ATK, Skill, or Ultimate, apply a Shield to all allies that absorbs DMG equal to #1[f1]% of the Trailblazer's DEF plus #4[i]. The Shield lasts for #2[i] turn(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 2, + 8, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04250000021420419, + 2, + 8, + 32 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04499999969266355, + 2, + 8, + 41 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04749999986961484, + 2, + 8, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.05000000004656613, + 2, + 8, + 56 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.05199999990873039, + 2, + 8, + 62 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.05399999977089465, + 2, + 8, + 66.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.055999999633058906, + 2, + 8, + 71 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.057999999495223165, + 2, + 8, + 75.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.060000000055879354, + 2, + 8, + 80 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.06199999991804361, + 2, + 8, + 84.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.06399999978020787, + 2, + 8, + 89 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.06599999964237213, + 2, + 8, + 93.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.06799999950453639, + 2, + 8, + 98 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.07000000006519258, + 2, + 8, + 102.50000000046566 + ] + } + } + }, + "800306": { + "Id": 800306, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800307": { + "Id": 800307, + "Name": "Call of the Guardian", + "Desc": "After using Technique, at the start of the next battle, gains a Shield that absorbs DMG equal to #1[i]% of the Trailblazer's DEF plus #2[i] for #3[i] turn(s).", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 384, + 1 + ] + } + } + }, + "800308": { + "Id": 800308, + "Name": "Ice-Breaking Light", + "Desc": "Consumes 4 stacks of Magma Will to enhance Basic ATK, dealing Fire DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy and Fire DMG to equal to #2[i]% of the Trailblazer's ATK to enemies adjacent to it.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Maze.png", + "LevelUpSkillID": [ + 800307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 0.1500000001396984, + 1 + ], + "PointID": 8003101, + "PointName": "The Strong Defend the Weak", + "PointDesc": "After using the Skill, the DMG taken by all allies reduces by #2[i]% for #3[i] turn(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 8003201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8003102, + "PointName": "Unwavering Gallantry", + "PointDesc": "Using Enhanced Basic ATK restores the Trailblazer's HP by #1[i]% of their Max HP.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 8003201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.1500000001396984 + ], + "PointID": 8003103, + "PointName": "Action Beats Overthinking", + "PointDesc": "When the Trailblazer is protected by a Shield at the beginning of the turn, increases their ATK by #2[i]% and regenerates #1[i] Energy until the action is over.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003201, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8003101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003203, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003205, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8003102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003206, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003207, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003209, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8003208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003210, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8003208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8003, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 302 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 278, + 215 + ] + } + }, + "8004": { + "Name": "{NICKNAME}", + "Desc": "A {F#girl}{M#boy} who boarded the Astral Express.\\n{F#She}{M#He} chose to travel with the Astral Express to eliminate the dangers posed by the Stellaron.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl2", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 800401, + "Name": "Earth-Shaking Resonance", + "Desc": "When the Trailblazer uses their Basic ATK, additionally deals Fire DMG equal to #1[i]% of the Trailblazer's DEF. When the Trailblazer uses their enhanced Basic ATK, additionally deals Fire DMG equal to #2[i]% of the Trailblazer's DEF.", + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Id": 800402, + "Name": "Time-Defying Tenacity", + "Desc": "The Shield applied to all allies from the Trailblazer's Talent will block extra DMG equal to #1[i]% of the Trailblazer's DEF plus #2[i].", + "ParamList": [ + 0.02000000001862645, + 27 + ] + }, + "3": { + "Id": 800403, + "Name": "Trail-Blazing Blueprint", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 800404, + "Name": "Nation-Building Oath", + "Desc": "At the start of the battle, immediately gains #1[i] stack(s) of Magma Will.", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 800405, + "Name": "Spirit-Warming Flame", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 800406, + "Name": "City-Forging Bulwarks", + "Desc": "After the Trailblazer uses enhanced Basic ATK or Ultimate, their DEF increases by #1[i]%. Stacks up to #2[i] time(s).", + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + }, + "Skills": { + "800401": { + "Id": 800401, + "Name": "Ice-Breaking Light", + "Desc": "Deals Fire DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy and gains 1 stack of Magma Will.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800402": { + "Id": 800402, + "Name": "Ever-Burning Amber", + "Desc": "Increases the Trailblazer's DMG Reduction by #1[i]% and gains 1 stack of Magma Will, with a #2[i]% base chance to Taunt all enemies for #3[i] turn(s).", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.41000000038184226, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4300000004004687, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4625000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.47500000009313226, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4875000002793968, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5100000004749745, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.530000000493601, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5400000005029142, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5500000005122274, + 1, + 1 + ] + } + } + }, + "800403": { + "Id": 800403, + "Name": "War-Flaming Lance", + "Desc": "Deals Fire DMG equal to #1[i]% of the Trailblazer's ATK plus #2[i]% of the Trailblazer's DEF to all enemies. The next Basic ATK will be automatically enhanced and does not cost Magma Will.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 1.8750000004656613 + ] + } + } + }, + "800404": { + "Id": 800404, + "Name": "Treasure of the Architects", + "Desc": "Each time the Trailblazer is hit, they gain 1 stack of Magma Will for a max of #3[i] stack(s).\\nWhen Magma Will has no fewer than 4 stacks, the Trailblazer's Basic ATK becomes enhanced, dealing DMG to a single enemy and enemies adjacent to it.\\nWhen the Trailblazer uses Basic ATK, Skill, or Ultimate, apply a Shield to all allies that absorbs DMG equal to #1[f1]% of the Trailblazer's DEF plus #4[i]. The Shield lasts for #2[i] turn(s).", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 2, + 8, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04250000021420419, + 2, + 8, + 32 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04499999969266355, + 2, + 8, + 41 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04749999986961484, + 2, + 8, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.05000000004656613, + 2, + 8, + 56 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.05199999990873039, + 2, + 8, + 62 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.05399999977089465, + 2, + 8, + 66.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.055999999633058906, + 2, + 8, + 71 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.057999999495223165, + 2, + 8, + 75.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.060000000055879354, + 2, + 8, + 80 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.06199999991804361, + 2, + 8, + 84.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.06399999978020787, + 2, + 8, + 89 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.06599999964237213, + 2, + 8, + 93.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.06799999950453639, + 2, + 8, + 98 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.07000000006519258, + 2, + 8, + 102.50000000046566 + ] + } + } + }, + "800406": { + "Id": 800406, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800407": { + "Id": 800407, + "Name": "Call of the Guardian", + "Desc": "After using Technique, at the start of the next battle, gains a Shield that absorbs DMG equal to #1[i]% of the Trailblazer's DEF plus #2[i] for #3[i] turn(s).", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 384, + 1 + ] + } + } + }, + "800408": { + "Id": 800408, + "Name": "Ice-Breaking Light", + "Desc": "Consumes 4 stacks of Magma Will to enhance Basic ATK, dealing Fire DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy and Fire DMG to equal to #2[i]% of the Trailblazer's ATK to enemies adjacent to it.", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Maze.png", + "LevelUpSkillID": [ + 800407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 0.1500000001396984, + 1 + ], + "PointID": 8004101, + "PointName": "The Strong Defend the Weak", + "PointDesc": "After using the Skill, the DMG taken by all allies reduces by #2[i]% for #3[i] turn(s).", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 8004201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8004102, + "PointName": "Unwavering Gallantry", + "PointDesc": "Using Enhanced Basic ATK restores the Trailblazer's HP by #1[i]% of their Max HP.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 8004201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.1500000001396984 + ], + "PointID": 8004103, + "PointName": "Action Beats Overthinking", + "PointDesc": "When the Trailblazer is protected by a Shield at the beginning of the turn, increases their ATK by #2[i]% and regenerates #1[i] Energy until the action is over.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004201, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8004101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004203, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8004202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "DEF" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004204, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004205, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8004102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004206, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8004205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004207, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "DEF" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004208, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004209, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8004208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "ATK" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004210, + "PointName": "DEF Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8004208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "DEF" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8004, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 302 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 278, + 215 + ] + } + }, + "8005": { + "Name": "{NICKNAME}", + "Desc": "A {F#girl}{M#boy} who boarded the Astral Express.\\n{F#She}{M#He} chose to travel with the Astral Express to eliminate the dangers posed by the Stellaron.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy3", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 800501, + "Name": "Best Seat in the House", + "Desc": "After using Skill for the first time, immediately recovers #1[i] Skill Point(s).", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 800502, + "Name": "Jailbreaking Rainbowwalk", + "Desc": "When the battle starts, the Trailblazer's Energy Regeneration Rate increases by #1[i]%, lasting for #2[i] turn(s).", + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "Id": 800503, + "Name": "Sanatorium for Rest Notes", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 800504, + "Name": "Dove in Tophat", + "Desc": "While the Trailblazer is on the field, increases the Break Effect of all teammates (excluding the Trailblazer), by an amount equal to #1[i]% of the Trailblazer's Break Effect.", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 800505, + "Name": "Poem Favors Rhythms of Old", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 800506, + "Name": "Tomorrow, Rest in Spotlight", + "Desc": "The number of additional DMG applications by the Skill increases by #1[i].", + "ParamList": [ + 2 + ] + } + }, + "Skills": { + "800501": { + "Id": 800501, + "Name": "Swing Dance Etiquette", + "Desc": "Deals Imaginary DMG equal to #1[i]% of the Trailblazer's ATK to a single target enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800502": { + "Id": 800502, + "Name": "Halftime to Make It Rain", + "Desc": "Deals Imaginary DMG equal to #1[i]% of the Trailblazer's ATK to a single target enemy and additionally deals DMG for 4 times, with each time dealing Imaginary DMG equal to #1[i]% of the Trailblazer's ATK to a random enemy.", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 2 + ] + } + } + }, + "800503": { + "Id": 800503, + "Name": "All-Out Footlight Parade", + "Desc": "Grants all allies the Backup Dancer effect, lasting for #1[i] turn(s). This duration decreases by 1 at the start of Trailblazer's every turn. Allies with the Backup Dancer effect have their Break Effect increased by #3[i]%. And when they attack enemy targets that are in the Weakness Broken state, the Toughness Reduction of the attack will be converted into 1 instance of Super Break DMG.", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 1, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 1, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 1, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 1, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 0.375 + ] + } + } + }, + "800504": { + "Id": 800504, + "Name": "Full-on Aerial Dance", + "Desc": "The Trailblazer immediately regenerates #1[f1] Energy when an enemy target's Weakness is Broken.", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "800506": { + "Id": 800506, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800507": { + "Id": 800507, + "Name": "Now! I'm the Band!", + "Desc": "After the Technique is used, at the start of the next battle, all allies' Break Effect increases by #1[i]%, lasting for #2[i] turn(s).", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Maze.png", + "LevelUpSkillID": [ + 800507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.40000000037252903, + 0.5000000004656613, + 0.6000000005587935 + ], + "PointID": 8005101, + "PointName": "Dance With the One", + "PointDesc": "When the number of enemy targets on the field is 5 (or more)/4/3/2/1, the Super Break DMG triggered by the Backup Dancer effect increases by #1[i]%/#2[i]%/#3[i]%/#4[i]%/#5[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 8005102, + "PointName": "Shuffle Along", + "PointDesc": "When using Skill, additionally increases the Toughness Reduction of the first instance of DMG by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 8005103, + "PointName": "Hat of the Theater", + "PointDesc": "After ally targets break weakness, additionally delays the action of the enemy target by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005201, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005202, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005203, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005205, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005206, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005207, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005209, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8005208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005210, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8005208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "Break Effect" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 4.62000000057742, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 129.36000000033528, + "DefenceAdd": 4.62000000057742, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 166.32000000029802, + "DefenceAdd": 4.62000000057742, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 203.28000000026077, + "DefenceAdd": 4.62000000057742, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 240.24000000022352, + "DefenceAdd": 4.62000000057742, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 277.20000000018626, + "DefenceAdd": 4.62000000057742, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 314.160000000149, + "DefenceAdd": 4.62000000057742, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8005, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 316, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 243, + 191 + ] + } + }, + "8006": { + "Name": "{NICKNAME}", + "Desc": "A {F#girl}{M#boy} who boarded the Astral Express.\\n{F#She}{M#He} chose to travel with the Astral Express to eliminate the dangers posed by the Stellaron.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl3", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 800601, + "Name": "Best Seat in the House", + "Desc": "After using Skill for the first time, immediately recovers #1[i] Skill Point(s).", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 800602, + "Name": "Jailbreaking Rainbowwalk", + "Desc": "When the battle starts, the Trailblazer's Energy Regeneration Rate increases by #1[i]%, lasting for #2[i] turn(s).", + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "Id": 800603, + "Name": "Sanatorium for Rest Notes", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.", + "ParamList": [] + }, + "4": { + "Id": 800604, + "Name": "Dove in Tophat", + "Desc": "While the Trailblazer is on the field, increases the Break Effect of all teammates (excluding the Trailblazer), by an amount equal to #1[i]% of the Trailblazer's Break Effect.", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 800605, + "Name": "Poem Favors Rhythms of Old", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 800606, + "Name": "Tomorrow, Rest in Spotlight", + "Desc": "The number of additional DMG applications by the Skill increases by #1[i].", + "ParamList": [ + 2 + ] + } + }, + "Skills": { + "800601": { + "Id": 800601, + "Name": "Swing Dance Etiquette", + "Desc": "Deals Imaginary DMG equal to #1[i]% of the Trailblazer's ATK to a single enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800602": { + "Id": 800602, + "Name": "Halftime to Make It Rain", + "Desc": "Deals Imaginary DMG equal to #1[i]% of the Trailblazer's ATK to a single target enemy and additionally deals DMG for 4 times, with each time dealing Imaginary DMG equal to #1[i]% of the Trailblazer's ATK to a random enemy.", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 2 + ] + } + } + }, + "800603": { + "Id": 800603, + "Name": "All-Out Footlight Parade", + "Desc": "Grants all allies the Backup Dancer effect, lasting for #1[i] turn(s). This duration decreases by 1 at the start of Trailblazer's every turn. Allies with the Backup Dancer effect have their Break Effect increased by #3[i]%. And when they attack enemy targets that are in the Weakness Broken state, the Toughness Reduction of the attack will be converted into 1 instance of Super Break DMG.", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 1, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 1, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 1, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 1, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 0.375 + ] + } + } + }, + "800604": { + "Id": 800604, + "Name": "Full-on Aerial Dance", + "Desc": "The Trailblazer immediately regenerates #1[f1] Energy when an enemy target's Weakness is Broken.", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "800606": { + "Id": 800606, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800607": { + "Id": 800607, + "Name": "Now! I'm the Band!", + "Desc": "After the Technique is used, at the start of the next battle, all allies' Break Effect increases by #1[i]%, lasting for #2[i] turn(s).", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Maze.png", + "LevelUpSkillID": [ + 800607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.40000000037252903, + 0.5000000004656613, + 0.6000000005587935 + ], + "PointID": 8006101, + "PointName": "Dance With the One", + "PointDesc": "When the number of enemy targets on the field is 5 (or more)/4/3/2/1, the Super Break DMG triggered by the Backup Dancer effect increases by #1[i]%/#2[i]%/#3[i]%/#4[i]%/#5[i]%.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 8006102, + "PointName": "Shuffle Along", + "PointDesc": "When using Skill, additionally increases the Toughness Reduction of the first instance of DMG by #1[i]%.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 8006103, + "PointName": "Hat of the Theater", + "PointDesc": "After ally targets break weakness, additionally delays the action of the enemy target by #1[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006201, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006202, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006203, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "Break Effect" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006204, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "Effect RES" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006205, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006206, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006207, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "Break Effect" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006208, + "PointName": "Effect RES Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "Effect RES" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006209, + "PointName": "DMG Boost: Imaginary", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8006208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "Imaginary DMG Boost" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006210, + "PointName": "Break Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8006208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "Break Effect" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 4.62000000057742, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 129.36000000033528, + "DefenceAdd": 4.62000000057742, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 166.32000000029802, + "DefenceAdd": 4.62000000057742, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 203.28000000026077, + "DefenceAdd": 4.62000000057742, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 240.24000000022352, + "DefenceAdd": 4.62000000057742, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 277.20000000018626, + "DefenceAdd": 4.62000000057742, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 314.160000000149, + "DefenceAdd": 4.62000000057742, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8006, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 316, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 243, + 191 + ] + } + }, + "8007": { + "Name": "{NICKNAME}", + "Desc": "A {F#girl}{M#boy} who boarded the Astral Express.\\n{F#She}{M#He} chose to travel with the Astral Express to eliminate the dangers posed by the Stellaron.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy4", + "SPNeed": 160, + "BaseType": "Memory", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 800701, + "Name": "Narrator of the Present", + "Desc": "Increases the CRIT Rate of ally targets with \"Mem's Support\" by #1[i]%. When an ally target has \"Mem's Support,\" the effect of \"Mem's Support\" also applies to the target's memosprite/memomaster. This effect cannot stack.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 800702, + "Name": "Gleaner of the Past", + "Desc": "When ally memosprites (aside from Mem) take action, Trailblazer regenerates #1[i] Energy. This effect can trigger a max of #2[i] time(s) per turn. The trigger count resets at the start of Trailblazer's turn.", + "ParamList": [ + 8, + 1 + ] + }, + "3": { + "Id": 800703, + "Name": "Chanter of the Future", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.\\nMemosprite Talent Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 800704, + "Name": "Dancer of the Muse", + "Desc": "When an ally target with 0 Max Energy actively uses an ability, Mem can also gain #1[i]% Charge, and the multiplier of the True DMG dealt by this target via \"Mem's Support\" additionally increases by #2[i]%.", + "ParamList": [ + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "5": { + "Id": 800705, + "Name": "Seamster of the Ode", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.\\nMemosprite Skill Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 800706, + "Name": "Bearer of the Revelation", + "Desc": "Ultimate's CRIT Rate is set at 100%.", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800701": { + "Id": 800701, + "Name": "Leave It to Me!", + "Desc": "Deals Ice DMG equal to #1[i]% of Trailblazer's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800702": { + "Id": 800702, + "Name": "I Choose You!", + "Desc": "Summons the memosprite Mem. If Mem is already on the field, restores Mem's HP by an amount equal to #1[i]% of Mem's Max HP, and grants Mem #2[i]% Charge.", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919, + 0.10000000009313226 + ] + } + } + }, + "800703": { + "Id": 800703, + "Name": "Together, Mem!", + "Desc": "Summons memosprite Mem. Grants Mem #2[i]% Charge, then makes Mem deal Ice DMG equal to #1[i]% of Mem's ATK to all enemies.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.40000000037252903 + ] + } + } + }, + "800704": { + "Id": 800704, + "Name": "Almighty Companion", + "Desc": "Memosprite Mem has an initial SPD of #1[i] and a Max HP equal to #2[i]% of Trailblazer's Max HP plus #4[i]. For every #3[i] Energy regenerated by all allies in total, Mem gains 1% Charge.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 130, + 0.5000000004656613, + 10, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 130, + 0.530000000493601, + 10, + 424 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 130, + 0.5600000005215406, + 10, + 448 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 130, + 0.5900000005494803, + 10, + 472 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 130, + 0.62000000057742, + 10, + 496 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 130, + 0.6500000006053597, + 10, + 520 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 130, + 0.6875000004656613, + 10, + 550 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 130, + 0.7250000003259629, + 10, + 580 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 130, + 0.7625000008847564, + 10, + 610 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 130, + 0.8000000007450581, + 10, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 130, + 0.8300000007729977, + 10, + 664 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 130, + 0.8600000008009374, + 10, + 688 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 130, + 0.8900000008288771, + 10, + 712 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 130, + 0.9200000008568168, + 10, + 736 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 130, + 0.9500000008847564, + 10, + 760 + ] + } + } + }, + "800706": { + "Id": 800706, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800707": { + "Id": 800707, + "Name": "Memories Back as Echoes", + "Desc": "After using Technique, creates a Special Dimension that lasts for #1[i] second(s). Enemies within the Special Dimension are placed in a Time Stop state, halting all their actions.\\nAfter entering battle against enemies afflicted with the Time Stop state, delays the action of all enemies by #2[i]%, and then deals Ice DMG to all enemies equal to #3[i]% of Trailblazer's ATK.\\nOnly 1 Dimension Effect created by allies can exist at the same time.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 1 + ] + } + } + }, + "800709": { + "Id": 800709, + "Name": "I Choose You!", + "Desc": null, + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + }, + "2": { + "Level": 2, + "ParamList": [] + }, + "3": { + "Level": 3, + "ParamList": [] + }, + "4": { + "Level": 4, + "ParamList": [] + }, + "5": { + "Level": 5, + "ParamList": [] + }, + "6": { + "Level": 6, + "ParamList": [] + }, + "7": { + "Level": 7, + "ParamList": [] + }, + "8": { + "Level": 8, + "ParamList": [] + }, + "9": { + "Level": 9, + "ParamList": [] + }, + "10": { + "Level": 10, + "ParamList": [] + }, + "11": { + "Level": 11, + "ParamList": [] + }, + "12": { + "Level": 12, + "ParamList": [] + }, + "13": { + "Level": 13, + "ParamList": [] + }, + "14": { + "Level": 14, + "ParamList": [] + }, + "15": { + "Level": 15, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Maze.png", + "LevelUpSkillID": [ + 800707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.40000000037252903 + ], + "PointID": 8007101, + "PointName": "Rhapsode's Scepter", + "PointDesc": "When the battle starts, Trailblazer's action advances by #1[i]%. When Mem is first summoned, grants Mem #2[i]% Charge.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8007102, + "PointName": "Petite Parable", + "PointDesc": "When using \"Baddies! Trouble!,\" Mem immediately gains #1[i]% Charge.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 100, + 10, + 0.02000000001862645, + 0.20000000018626451 + ], + "PointID": 8007103, + "PointName": "Magnets and Long Chains", + "PointDesc": "When the Max Energy of an ally target that has \"Mem's Support\" exceeds #1[i], for every #2[i] excess Energy, additionally increases the multiplier of the True DMG dealt via \"Mem's Support\" by #3[f1]%, up to a max increase of #4[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007201, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8007201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007203, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8007201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007204, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8007101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 15200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007205, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8007101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8007102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007207, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8007102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007208, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8007103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8007208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007210, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8007209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "Mem", + "Icon": "SpriteOutput/ServantIconTeam/18007B.png", + "HPBase": "#4", + "HPInherit": "#2", + "HPSkill": 800704, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 800704, + "Aggro": 100, + "Skills": { + "1800701": { + "Name": "Baddies! Trouble!", + "Desc": "Deals #2[i] instance(s) of DMG, with each instance dealing Ice DMG equal to #1[f1]% of Mem's ATK to one random enemy. At the end, deals Ice DMG equal to #3[i]% of Mem's ATK to all enemies.", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 4, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.21599999978207052, + 4, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2520000000949949, + 4, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 4, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.32400000002235174, + 4, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3600000003352761, + 4, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3959999999497086, + 4, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43200000026263297, + 4, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4679999998770654, + 4, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5040000001899898, + 4, + 1.2600000002421439 + ] + } + } + }, + "1800703": { + "Name": "Friends! Together!", + "Desc": "Increases all allies' CRIT DMG by an amount equal to #1[f1]% of Mem's CRIT DMG plus #2[f1]%.\\nIf the Charge has yet to reach 100%, Mem automatically uses \"Baddies! Trouble!\" when taking action. When the Charge reaches 100%, Mem immediately takes action. In the next action, can select one ally and use \"Lemme! Help You!\".", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.16799999959766865 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09599999967031181, + 0.19200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1079999995417893, + 0.21599999978207052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1319999999832362, + 0.2639999999664724 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.14399999985471368, + 0.28799999970942736 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.15599999972619116, + 0.31200000015087426 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.16799999959766865, + 0.3359999998938292 + ] + } + } + }, + "1800705": { + "Name": "Go, Mem, Go!", + "Desc": "When Mem is summoned, immediately gains #1[i]% Charge.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + } + } + }, + "1800706": { + "Name": "No... Regrets", + "Desc": "When Mem disappears, Trailblazer's action advances by #1[i]%.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1800707": { + "Name": "Lemme! Help You!", + "Desc": "Advances the action of one designated ally by #3[i]% and grants them \"Mem's Support,\" lasting for #2[i] turn(s).\\nFor every 1 instance of DMG dealt by a target that has \"Mem's Support,\" additionally deals 1 instance of True DMG equal to #1[i]% of the original DMG.\\nWhen using this ability on this unit, cannot trigger the action advance effect.", + "Type": "Servant", + "Tag": "Support", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 3, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.22000000020489097, + 3, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 3, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.26000000024214387, + 3, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2800000002607703, + 3, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3200000002980232, + 3, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3400000003166497, + 3, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 3, + 1 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8007, + "Set4IDList": [ + 123, + 104, + 110 + ], + "Set2IDList": [ + 317, + 312, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 294, + 237 + ], + "LocalCriticalChance": 1 + } + }, + "8008": { + "Name": "{NICKNAME}", + "Desc": "A {F#girl}{M#boy} who boarded the Astral Express.\\n{F#She}{M#He} chose to travel with the Astral Express to eliminate the dangers posed by the Stellaron.", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl4", + "SPNeed": 160, + "BaseType": "Memory", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 800801, + "Name": "Narrator of the Present", + "Desc": "Increases the CRIT Rate of ally targets with \"Mem's Support\" by #1[i]%. When an ally target has \"Mem's Support,\" the effect of \"Mem's Support\" also applies to the target's memosprite/memomaster. This effect cannot stack.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 800802, + "Name": "Gleaner of the Past", + "Desc": "When ally memosprites (aside from Mem) take action, Trailblazer regenerates #1[i] Energy. This effect can trigger a max of #2[i] time(s) per turn. The trigger count resets at the start of Trailblazer's turn.", + "ParamList": [ + 8, + 1 + ] + }, + "3": { + "Id": 800803, + "Name": "Chanter of the Future", + "Desc": "Skill Lv. +2, up to a maximum of Lv. 15.\\nTalent Lv. +2, up to a maximum of Lv. 15.\\nMemosprite Talent Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "4": { + "Id": 800804, + "Name": "Dancer of the Muse", + "Desc": "When an ally target with 0 Max Energy actively uses an ability, Mem can also gain #1[i]% Charge, and the multiplier of the True DMG dealt by this target via \"Mem's Support\" additionally increases by #2[i]%.", + "ParamList": [ + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "5": { + "Id": 800805, + "Name": "Seamster of the Ode", + "Desc": "Ultimate Lv. +2, up to a maximum of Lv. 15.\\nBasic ATK Lv. +1, up to a maximum of Lv. 10.\\nMemosprite Skill Lv. +1, up to a maximum of Lv. 10.", + "ParamList": [] + }, + "6": { + "Id": 800806, + "Name": "Bearer of the Revelation", + "Desc": "Ultimate's CRIT Rate is set at 100%.", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800801": { + "Id": 800801, + "Name": "Leave It to Me!", + "Desc": "Deals Ice DMG equal to #1[i]% of Trailblazer's ATK to one designated enemy.", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800802": { + "Id": 800802, + "Name": "I Choose You!", + "Desc": "Summons the memosprite Mem. If Mem is already on the field, restores Mem's HP by an amount equal to #1[i]% of Mem's Max HP, and grants Mem #2[i]% Charge.", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919, + 0.10000000009313226 + ] + } + } + }, + "800803": { + "Id": 800803, + "Name": "Together, Mem!", + "Desc": "Summons memosprite Mem. Grants Mem #2[i]% Charge, then makes Mem deal Ice DMG equal to #1[i]% of Mem's ATK to all enemies.", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.40000000037252903 + ] + } + } + }, + "800804": { + "Id": 800804, + "Name": "Almighty Companion", + "Desc": "Memosprite Mem has an initial SPD of #1[i] and a Max HP equal to #2[i]% of Trailblazer's Max HP plus #4[i]. For every #3[i] Energy regenerated by all allies in total, Mem gains 1% Charge.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 130, + 0.5000000004656613, + 10, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 130, + 0.530000000493601, + 10, + 424 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 130, + 0.5600000005215406, + 10, + 448 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 130, + 0.5900000005494803, + 10, + 472 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 130, + 0.62000000057742, + 10, + 496 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 130, + 0.6500000006053597, + 10, + 520 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 130, + 0.6875000004656613, + 10, + 550 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 130, + 0.7250000003259629, + 10, + 580 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 130, + 0.7625000008847564, + 10, + 610 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 130, + 0.8000000007450581, + 10, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 130, + 0.8300000007729977, + 10, + 664 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 130, + 0.8600000008009374, + 10, + 688 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 130, + 0.8900000008288771, + 10, + 712 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 130, + 0.9200000008568168, + 10, + 736 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 130, + 0.9500000008847564, + 10, + 760 + ] + } + } + }, + "800806": { + "Id": 800806, + "Name": "Attack", + "Desc": "Attacks an enemy, and when the battle starts, reduces their Toughness of the corresponding Type.", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800807": { + "Id": 800807, + "Name": "Memories Back as Echoes", + "Desc": "After using Technique, creates a Special Dimension that lasts for #1[i] second(s). Enemies within the Special Dimension are placed in a Time Stop state, halting all their actions.\\nAfter entering battle against enemies afflicted with the Time Stop state, delays the action of all enemies by #2[i]%, and then deals Ice DMG to all enemies equal to #3[i]% of Trailblazer's ATK.\\nOnly 1 Dimension Effect created by allies can exist at the same time.", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 1 + ] + } + } + }, + "800809": { + "Id": 800809, + "Name": "I Choose You!", + "Desc": null, + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + }, + "2": { + "Level": 2, + "ParamList": [] + }, + "3": { + "Level": 3, + "ParamList": [] + }, + "4": { + "Level": 4, + "ParamList": [] + }, + "5": { + "Level": 5, + "ParamList": [] + }, + "6": { + "Level": 6, + "ParamList": [] + }, + "7": { + "Level": 7, + "ParamList": [] + }, + "8": { + "Level": 8, + "ParamList": [] + }, + "9": { + "Level": 9, + "ParamList": [] + }, + "10": { + "Level": 10, + "ParamList": [] + }, + "11": { + "Level": 11, + "ParamList": [] + }, + "12": { + "Level": 12, + "ParamList": [] + }, + "13": { + "Level": 13, + "ParamList": [] + }, + "14": { + "Level": 14, + "ParamList": [] + }, + "15": { + "Level": 15, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Maze.png", + "LevelUpSkillID": [ + 800807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.40000000037252903 + ], + "PointID": 8008101, + "PointName": "Rhapsode's Scepter", + "PointDesc": "When the battle starts, Trailblazer's action advances by #1[i]%. When Mem is first summoned, grants Mem #2[i]% Charge.", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8008102, + "PointName": "Petite Parable", + "PointDesc": "When using \"Baddies! Trouble!,\" Mem immediately gains #1[i]% Charge.", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 100, + 10, + 0.02000000001862645, + 0.20000000018626451 + ], + "PointID": 8008103, + "PointName": "Magnets and Long Chains", + "PointDesc": "When the Max Energy of an ally target that has \"Mem's Support\" exceeds #1[i], for every #2[i] excess Energy, additionally increases the multiplier of the True DMG dealt via \"Mem's Support\" by #3[f1]%, up to a max increase of #4[i]%.", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008201, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008202, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8008201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008203, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8008201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "CRIT DMG" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008204, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "ATK" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 15200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008205, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008206, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008207, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "CRIT DMG" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008208, + "PointName": "ATK Boost", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8008103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "ATK" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008209, + "PointName": "HP Boost", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008210, + "PointName": "CRIT DMG Boost", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8008209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "CRIT DMG" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "Baddies! Trouble!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "Friends! Together!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "Mem", + "Icon": "SpriteOutput/ServantIconTeam/18007B.png", + "HPBase": "#4", + "HPInherit": "#2", + "HPSkill": 800704, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 800704, + "Aggro": 100, + "Skills": { + "1800701": { + "Name": "Baddies! Trouble!", + "Desc": "Deals #2[i] instance(s) of DMG, with each instance dealing Ice DMG equal to #1[f1]% of Mem's ATK to one random enemy. At the end, deals Ice DMG equal to #3[i]% of Mem's ATK to all enemies.", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 4, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.21599999978207052, + 4, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2520000000949949, + 4, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 4, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.32400000002235174, + 4, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3600000003352761, + 4, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3959999999497086, + 4, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43200000026263297, + 4, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4679999998770654, + 4, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5040000001899898, + 4, + 1.2600000002421439 + ] + } + } + }, + "1800703": { + "Name": "Friends! Together!", + "Desc": "Increases all allies' CRIT DMG by an amount equal to #1[f1]% of Mem's CRIT DMG plus #2[f1]%.\\nIf the Charge has yet to reach 100%, Mem automatically uses \"Baddies! Trouble!\" when taking action. When the Charge reaches 100%, Mem immediately takes action. In the next action, can select one ally and use \"Lemme! Help You!\".", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.16799999959766865 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09599999967031181, + 0.19200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1079999995417893, + 0.21599999978207052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1319999999832362, + 0.2639999999664724 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.14399999985471368, + 0.28799999970942736 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.15599999972619116, + 0.31200000015087426 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.16799999959766865, + 0.3359999998938292 + ] + } + } + }, + "1800705": { + "Name": "Go, Mem, Go!", + "Desc": "When Mem is summoned, immediately gains #1[i]% Charge.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + } + } + }, + "1800706": { + "Name": "No... Regrets", + "Desc": "When Mem disappears, Trailblazer's action advances by #1[i]%.", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1800707": { + "Name": "Lemme! Help You!", + "Desc": "Advances the action of one designated ally by #3[i]% and grants them \"Mem's Support,\" lasting for #2[i] turn(s).\\nFor every 1 instance of DMG dealt by a target that has \"Mem's Support,\" additionally deals 1 instance of True DMG equal to #1[i]% of the original DMG.\\nWhen using this ability on this unit, cannot trigger the action advance effect.", + "Type": "Servant", + "Tag": "Support", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 3, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.22000000020489097, + 3, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 3, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.26000000024214387, + 3, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2800000002607703, + 3, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3200000002980232, + 3, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3400000003166497, + 3, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 3, + 1 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8008, + "Set4IDList": [ + 123, + 104, + 110 + ], + "Set2IDList": [ + 317, + 312, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 294, + 237 + ], + "LocalCriticalChance": 1 + } + } +} \ No newline at end of file diff --git a/data/characters.jp.json b/data/characters.jp.json new file mode 100644 index 0000000..5647dcd --- /dev/null +++ b/data/characters.jp.json @@ -0,0 +1,261882 @@ +{ + "1001": { + "Name": "{RUBY_B#みつき}三月{RUBY_E#}なのか", + "Desc": "かつて恒氷の中で眠っていた少女。すべての記憶を失っている。\\n本当の自分を見つけるために、列車に乗って旅をすることを決めた。\\n約67種の「身の上話」を用意しているらしい。", + "CharaInfo": { + "Camp": "星穹列車", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "mar7th", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 100101, + "Name": "{RUBY_B#きおく}記憶{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}の{RUBY_B#きみ}君{RUBY_E#}", + "Desc": "必殺技が敵1体を凍結状態にするたび、三月なのかはEPを#1[i]回復する。", + "ParamList": [ + 6 + ] + }, + "2": { + "Id": 100102, + "Name": "{RUBY_B#きおく}記憶{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}のあの{RUBY_B#こ}子{RUBY_E#}", + "Desc": "戦闘に入る時、残りHP割合が最も低い味方に、三月なのかの防御力#1[i]%+#3[i]の耐久値を持つバリアを付与する、#2[i]ターン継続。", + "ParamList": [ + 0.24000000022351742, + 3, + 320 + ] + }, + "3": { + "Id": 100103, + "Name": "{RUBY_B#きおく}記憶{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}の{RUBY_B#すべ}全{RUBY_E#}て", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 100104, + "Name": "もう{RUBY_B#うしな}失{RUBY_E#}いたくない", + "Desc": "ターンが回ってくるたび、天賦のカウンター効果を発動できる回数+1。カウンターのダメージ基礎値が、三月なのかの防御力#1[i]%分アップする。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 100105, + "Name": "もう{RUBY_B#わす}忘{RUBY_E#}れたくない", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 100106, + "Name": "このまま、ずっと…", + "Desc": "戦闘スキルによるバリアで守られている味方は、ターンが回ってくるたびにHPをそれぞれの最大HP#1[i]%+#2[i]回復する。", + "ParamList": [ + 0.0400000000372529, + 106 + ] + } + }, + "Skills": { + "100101": { + "Id": 100101, + "Name": "{RUBY_B#ごっかん}極寒{RUBY_E#}の{RUBY_B#ゆみや}弓矢{RUBY_E#}", + "Desc": "指定した敵単体に三月なのかの攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100102": { + "Id": 100102, + "Name": "{RUBY_B#かわい}可愛{RUBY_E#}いは{RUBY_B#せいぎ}正義{RUBY_E#}", + "Desc": "指定した味方単体に三月なのかの防御力#1[i]%+#4[i]の耐久値を持つバリアを与える、#2[i]ターン継続。\\nその味方の残りHPが#3[i]%以上の場合、敵に攻撃される確率が大アップする。", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3800000003539026, + 3, + 0.3000000002793968, + 190, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.40375000098720193, + 3, + 0.3000000002793968, + 304, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4275000002235174, + 3, + 0.3000000002793968, + 389.50000000046566, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.45125000085681677, + 3, + 0.3000000002793968, + 475, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.47500000009313226, + 3, + 0.3000000002793968, + 532, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.4940000001806766, + 3, + 0.3000000002793968, + 589, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5130000002682209, + 3, + 0.3000000002793968, + 631.7500000006985, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5320000003557652, + 3, + 0.3000000002793968, + 674.5000000004657, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5510000004433095, + 3, + 0.3000000002793968, + 717.2500000002328, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5700000005308539, + 3, + 0.3000000002793968, + 760, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5889999999199063, + 3, + 0.3000000002793968, + 802.7500000006985, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6080000000074506, + 3, + 0.3000000002793968, + 845.5000000004657, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6270000000949949, + 3, + 0.3000000002793968, + 888.2500000002328, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6460000001825392, + 3, + 0.3000000002793968, + 931, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6650000002700835, + 3, + 0.3000000002793968, + 973.7500000006985, + 5 + ] + } + } + }, + "100103": { + "Id": 100103, + "Name": "{RUBY_B#ひょうこく}氷刻{RUBY_E#}{RUBY_B#やう}矢雨{RUBY_E#}の{RUBY_B#とき}時{RUBY_E#}", + "Desc": "敵全体に三月なのかの攻撃力#1[i]%分の氷属性ダメージを与える。攻撃を受けた敵は#2[i]%基礎確率で凍結状態になる、#3[i]ターン継続。\\n凍結状態の敵は行動できなくなり、ターンが回ってくるたびに三月なのかの攻撃力#4[i]%分の氷属性付加ダメージを受ける。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.5000000004656613, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.5000000004656613, + 1, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.5000000004656613, + 1, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.5000000004656613, + 1, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.5000000004656613, + 1, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.5000000004656613, + 1, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.5000000004656613, + 1, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.5000000004656613, + 1, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613, + 1, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.5000000004656613, + 1, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.5000000004656613, + 1, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.5000000004656613, + 1, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.5000000004656613, + 1, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.5000000004656613, + 1, + 0.7500000006984919 + ] + } + } + }, + "100104": { + "Id": 100104, + "Name": "{RUBY_B#しょうじょ}少女{RUBY_E#}の{RUBY_B#とっけん}特権{RUBY_E#}", + "Desc": "バリアを持つ味方が敵に攻撃された後、三月なのかは攻撃者にカウンターを発動し、三月なのかの攻撃力#1[i]%分の氷属性ダメージを与える。この効果はターンが回ってくるたびに#2[i]回発動できる。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 2 + ] + } + } + }, + "100106": { + "Id": 100106, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100107": { + "Id": 100107, + "Name": "{RUBY_B#こお}凍{RUBY_E#}る{RUBY_B#しゅんかん}瞬間{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、#1[i]%基礎確率でランダムな敵単体を凍結状態にする、#2[i]ターン継続。\\n凍結状態の敵は行動できなくなり、ターンが回ってくるたびに三月なのかの攻撃力#3[i]%分の氷属性付加ダメージを受ける。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Maze.png", + "LevelUpSkillID": [ + 100107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001201, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001202, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1001101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001203, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1001202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001205, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1001102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001206, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1001205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001207, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001208, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1001103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001209, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001210, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001101, + "PointName": "{RUBY_B#じゅんけつ}純潔{RUBY_E#}", + "PointDesc": "戦闘スキルを発動した時、指定した味方単体のデバフを1つ解除する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1001201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1001102, + "PointName": "{RUBY_B#かご}加護{RUBY_E#}", + "PointDesc": "戦闘スキルで付与したバリアの継続時間+#1[i]ターン。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1001201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1001103, + "PointName": "{RUBY_B#ひょうじゅ}氷呪{RUBY_E#}", + "PointDesc": "必殺技を発動した時、敵を凍結状態にする基礎確率+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 69.6000000005588, + "AttackAdd": 3.480000000447035, + "DefenceBase": 78, + "DefenceAdd": 3.9000000008381903, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 97.44000000040978, + "AttackAdd": 3.480000000447035, + "DefenceBase": 109.20000000018626, + "DefenceAdd": 3.9000000008381903, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 125.28000000026077, + "AttackAdd": 3.480000000447035, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 3.9000000008381903, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 153.12000000011176, + "AttackAdd": 3.480000000447035, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.9000000008381903, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 180.96000000089407, + "AttackAdd": 3.480000000447035, + "DefenceBase": 202.80000000074506, + "DefenceAdd": 3.9000000008381903, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 208.80000000074506, + "AttackAdd": 3.480000000447035, + "DefenceBase": 234, + "DefenceAdd": 3.9000000008381903, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 236.64000000059605, + "AttackAdd": 3.480000000447035, + "DefenceBase": 265.20000000018626, + "DefenceAdd": 3.9000000008381903, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1001, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 317 + ], + "PropertyList3": [ + "DefenceAddedRatio", + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta", + "DefenceAddedRatio" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusProbabilityBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 279, + 216 + ] + } + }, + "1002": { + "Name": "{RUBY_B#タンコウ}丹恒{RUBY_E#}", + "Desc": "自分の過去をひた隠しにしている、凛とした無口な青年。\\n同族を避けるため、星穹列車に同行することを決めた。", + "CharaInfo": { + "Camp": "星穹列車", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "danheng", + "SPNeed": 100, + "BaseType": "Rogue", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 100201, + "Name": "{RUBY_B#きょくてんきゅうじん}極天窮尽{RUBY_E#}するも\\n{RUBY_B#たかぶ}昂{RUBY_E#}り{RUBY_B#たも}保{RUBY_E#}てず", + "Desc": "攻撃が命中した敵の残りHPが#1[i]%以上の場合、会心率+#2[i]%。", + "ParamList": [ + 0.5000000004656613, + 0.12000000011175871 + ] + }, + "2": { + "Id": 100202, + "Name": "{RUBY_B#はちどくあっとう}八毒圧倒{RUBY_E#}\\n{RUBY_B#えんえんめっきゃく}炎煙滅却{RUBY_E#}", + "Desc": "天賦のクールタイム-1ターン。", + "ParamList": [] + }, + "3": { + "Id": 100203, + "Name": "{RUBY_B#ゆうめい}幽明{RUBY_E#}の{RUBY_B#へんげ}変化{RUBY_E#}\\n{RUBY_B#ゆうりゅう}遊龍{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}く{RUBY_B#じざい}自在{RUBY_E#}にあり", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 100204, + "Name": "{RUBY_B#ふんじんざんまい}奮迅三昧{RUBY_E#}\\n{RUBY_B#にちりん}日輪{RUBY_E#}が{RUBY_B#ごと}如{RUBY_E#}く", + "Desc": "必殺技で敵を倒した時、丹恒が即座に行動する。", + "ParamList": [] + }, + "5": { + "Id": 100205, + "Name": "{RUBY_B#てんすい}天水{RUBY_E#}{RUBY_B#わ}分{RUBY_E#}かつ{RUBY_B#いっそう}一槍{RUBY_E#}\\n{RUBY_B#ろっきょ}六虚{RUBY_E#}の{RUBY_B#こうりゅうふ}洪流{RUBY_E#}振り{RUBY_B#お}起{RUBY_E#}こす", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 100206, + "Name": "{RUBY_B#こんじょうじょうばく}今生縄縛{RUBY_E#}\\n{RUBY_B#と}解{RUBY_E#}く{RUBY_B#とき}時{RUBY_E#}{RUBY_B#せ}急{RUBY_E#}く{RUBY_B#なか}勿{RUBY_E#}れ", + "Desc": "戦闘スキルによって減速状態を付与された敵は、さらに速度-#1[i]%。", + "ParamList": [ + 0.0800000000745058 + ] + } + }, + "Skills": { + "100201": { + "Id": 100201, + "Name": "{RUBY_B#うんきそうじゅつ}雲騎槍術{RUBY_E#}・{RUBY_B#さくふう}朔風{RUBY_E#}", + "Desc": "指定した敵単体に丹恒の攻撃力#1[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100202": { + "Id": 100202, + "Name": "{RUBY_B#うんきそうじゅつ}雲騎槍術{RUBY_E#}・{RUBY_B#しつう}疾雨{RUBY_E#}", + "Desc": "指定した敵単体に丹恒の攻撃力#1[i]%分の風属性ダメージを与える。\\n戦闘スキルによるダメージで会心が発生した時、#4[i]%基礎確率で攻撃を受けた敵の速度-#2[i]%#3[i]ターン継続。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3000000002793968, + 0.12000000011175871, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4300000004004687, + 0.12000000011175871, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5600000005215406, + 0.12000000011175871, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6900000006426126, + 0.12000000011175871, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.8200000007636845, + 0.12000000011175871, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9500000008847564, + 0.12000000011175871, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.1125000002793968, + 0.12000000011175871, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.2749999999068677, + 0.12000000011175871, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.4375000002328306, + 0.12000000011175871, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.6000000005587935, + 0.12000000011175871, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.7300000006798655, + 0.12000000011175871, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.8600000008009374, + 0.12000000011175871, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.9900000009220093, + 0.12000000011175871, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.1200000001117587, + 0.12000000011175871, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.2500000002328306, + 0.12000000011175871, + 2, + 1 + ] + } + } + }, + "100203": { + "Id": 100203, + "Name": "{RUBY_B#どうてん}洞天{RUBY_E#}{RUBY_B#げんげ}幻化{RUBY_E#}、{RUBY_B#ちょうむ}長夢{RUBY_E#}{RUBY_B#いっかく}一覚{RUBY_E#}", + "Desc": "指定した敵単体に丹恒の攻撃力#1[i]%分の風属性ダメージを与える。攻撃を受けた敵が減速状態の場合、必殺技によるダメージのダメージ倍率+#2[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058, + 1.440000000409782 + ] + } + } + }, + "100204": { + "Id": 100204, + "Name": "{RUBY_B#すんちょうすんきょう}寸長寸強{RUBY_E#}", + "Desc": "丹恒が味方スキルのターゲットになった時、次の攻撃の風属性耐性貫通+#1[i]%。この効果は#2[i]ターン後に再度発動できる。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.19799999962560833, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.21599999978207052, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.2339999999385327, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2520000000949949, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2700000002514571, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.29250000044703484, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.31499999994412065, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3375000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3779999997932464, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3959999999497086, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4140000001061708, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.43200000026263297, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.45000000041909516, + 2 + ] + } + } + }, + "100206": { + "Id": 100206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100207": { + "Id": 100207, + "Name": "{RUBY_B#はてき}破敵{RUBY_E#}の{RUBY_B#ほこさき}矛先{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、丹恒の攻撃力+#1[i]%#2[i]ターン継続。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Maze.png", + "LevelUpSkillID": [ + 100207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1002101, + "PointName": "{RUBY_B#せんりゅう}潜龍{RUBY_E#}", + "PointDesc": "残りHPが#1[i]%以下の場合、敵に攻撃される確率ダウン。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451, + 2 + ], + "PointID": 1002102, + "PointName": "{RUBY_B#ぜつえい}絶影{RUBY_E#}", + "PointDesc": "攻撃を行った後、#1[i]%固定確率で自身の速度+#2[i]%#3[i]ターン継続。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903 + ], + "PointID": 1002103, + "PointName": "{RUBY_B#ごうふう}剛風{RUBY_E#}", + "PointDesc": "減速状態の敵に対する、通常攻撃によるダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002201, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1002101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002203, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1002202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002205, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1002102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002206, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1002205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002207, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1002103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002209, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002210, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "風属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 74.40000000037253, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 120, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 104.16000000014901, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 168, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.92000000085682, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 216, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 163.6800000006333, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 264, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 193.44000000040978, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 312, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 223.20000000018626, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 360, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 252.96000000089407, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 408, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1002, + "Set4IDList": [ + 110, + 122, + 102 + ], + "Set2IDList": [ + 311, + 301, + 309 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1003": { + "Name": "{RUBY_B#ひめこ}姫子{RUBY_E#}", + "Desc": "星穹列車の修復者。\\n広い星空を見るため、星穹列車に乗ることを決めた。\\n趣味は自分で豆を挽いてコーヒーを淹れること。", + "CharaInfo": { + "Camp": "星穹列車", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "himeko", + "SPNeed": 120, + "BaseType": "Mage", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 100301, + "Name": "{RUBY_B#こどもじだい}子供時代{RUBY_E#}", + "Desc": "「乗勝追撃」発動後、姫子の速度+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "2": { + "Id": 100302, + "Name": "{RUBY_B#かいこう}邂逅{RUBY_E#}", + "Desc": "残りHPが#1[i]%以下の敵に対して与ダメージ+#2[i]%。", + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ] + }, + "3": { + "Id": 100303, + "Name": "{RUBY_B#じが}自我{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 100304, + "Name": "{RUBY_B#ぼっとう}没頭{RUBY_E#}", + "Desc": "戦闘スキルで敵を弱点撃破した時、姫子はさらにチャージを#1[i]獲得する。", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 100305, + "Name": "{RUBY_B#ゆめ}夢{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 100306, + "Name": "{RUBY_B#かいたく}開拓{RUBY_E#}!", + "Desc": "必殺技を発動した時、さらに2ヒットし、1ヒットごとにランダムな敵単体に本来のダメージ#1[i]%分の炎属性ダメージを与える。", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "100301": { + "Id": 100301, + "Name": "{RUBY_B#ぶそうちょうりつ}武装調律{RUBY_E#}", + "Desc": "指定した敵単体に姫子の攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100302": { + "Id": 100302, + "Name": "{RUBY_B#ようかくばくれつ}溶核爆裂{RUBY_E#}", + "Desc": "指定した敵単体に姫子の攻撃力#1[i]%分の炎属性ダメージを与え、隣接する敵に姫子の攻撃力#2[i]%分の炎属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 13, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "100303": { + "Id": 100303, + "Name": "{RUBY_B#てんつい}天墜{RUBY_E#}の{RUBY_B#ひ}火{RUBY_E#}", + "Desc": "敵全体に姫子の攻撃力#1[i]%分の炎属性ダメージを与える。敵を1体倒すごとに、さらに姫子のEPを#2[i]回復する。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 27, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3800000003539026, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4720000002998859, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5640000002458692, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6560000001918525, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.7480000001378357, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.840000000782311, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.955000000540167, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.0700000000651926, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.1849999998230487, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.3000000002793968, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.39200000022538, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4840000001713634, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.5760000001173466, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.66800000006333, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.760000000707805, + 5 + ] + } + } + }, + "100304": { + "Id": 100304, + "Name": "{RUBY_B#じょうしょうついげき}乗勝追撃{RUBY_E#}", + "Desc": "敵が弱点撃破された時、姫子はチャージを獲得する、最大で#2[i]層まで。\\n味方が攻撃を行った後、姫子のチャージが最大に達した場合、チャージを全部消費して追加攻撃を1回発動し、敵全体に姫子の攻撃力#1[i]%分の炎属性ダメージを与える。\\n戦闘開始時にチャージを1層獲得。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 3 + ] + } + } + }, + "100306": { + "Id": 100306, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100307": { + "Id": 100307, + "Name": "{RUBY_B#ふかんぜんねんしょう}不完全燃焼{RUBY_E#}", + "Desc": "秘技を使用した後、#4[i]秒間継続する特殊領域を作り出す。特殊領域内にいる敵と戦闘に入った後、#1[i]%基礎確率で敵の受ける炎属性ダメージ+#2[i]%#3[i]ターン継続。味方が作り出した領域は1つまで存在できる。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.10000000009313226, + 2, + 15 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Maze.png", + "LevelUpSkillID": [ + 100307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2, + 0.3000000002793968 + ], + "PointID": 1003101, + "PointName": "{RUBY_B#せいか}星火{RUBY_E#}", + "PointDesc": "攻撃を行った時、#1[i]%基礎確率で敵を燃焼状態にする、#2[i]ターン継続。\\n燃焼状態の敵はターンが回ってくるたびに、姫子の攻撃力#3[i]%分の炎属性持続ダメージを受ける。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1003102, + "PointName": "{RUBY_B#しゃくねつ}灼熱{RUBY_E#}", + "PointDesc": "燃焼状態の敵に対する、戦闘スキルによるダメージ+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ], + "PointID": 1003103, + "PointName": "{RUBY_B#みちしるべ}道標{RUBY_E#}", + "PointDesc": "残りHPが#1[i]%以上の場合、会心率+#2[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003201, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1003101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003203, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003205, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1003102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003206, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003207, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003209, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003210, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "炎属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1003, + "Set4IDList": [ + 115, + 107, + 119 + ], + "Set2IDList": [ + 306, + 313, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 343, + 289 + ], + "LocalCriticalChance": 0.1500000001396984 + } + }, + "1004": { + "Name": "ヴェルト", + "Desc": "経験豊富で頼れる列車組の先輩。\\n久しぶりの冒険を楽しんでいるうちに、心の中の情熱が再燃した。\\nたまに冒険で経験したことを絵にしてノートにまとめている。", + "CharaInfo": { + "Camp": "星穹列車", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "welt", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 100401, + "Name": "{RUBY_B#な}名{RUBY_E#}の{RUBY_B#けいしょう}継承{RUBY_E#}", + "Desc": "必殺技を発動した後、ヴェルトは強化を獲得、以後#3[i]回の通常攻撃/戦闘スキルはさらに敵に付加ダメージを1回与える。通常攻撃による付加ダメージは通常攻撃のダメージ倍率の#1[i]%、戦闘スキルによる付加ダメージは戦闘スキルのダメージ倍率の#2[i]%となる。", + "ParamList": [ + 0.5000000004656613, + 0.8000000007450581, + 2 + ] + }, + "2": { + "Id": 100402, + "Name": "{RUBY_B#ほし}星{RUBY_E#}の{RUBY_B#ぎょうしゅう}凝集{RUBY_E#}", + "Desc": "天賦発動時、ヴェルトはEPを#1[i]回復する。", + "ParamList": [ + 3 + ] + }, + "3": { + "Id": 100403, + "Name": "{RUBY_B#へいわ}平和{RUBY_E#}の{RUBY_B#ねが}願{RUBY_E#}い", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 100404, + "Name": "{RUBY_B#ぎ}義{RUBY_E#}の{RUBY_B#はたじるし}旗標{RUBY_E#}", + "Desc": "戦闘スキルを発動した時、攻撃を受けた敵の速度をダウンさせる基礎確率+#1[i]%。", + "ParamList": [ + 0.3500000003259629 + ] + }, + "5": { + "Id": 100405, + "Name": "{RUBY_B#ぜん}善{RUBY_E#}の{RUBY_B#ちから}力{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 100406, + "Name": "{RUBY_B#ひかり}光{RUBY_E#}ある{RUBY_B#みらい}未来{RUBY_E#}", + "Desc": "戦闘スキルを発動した時、さらにランダムな敵単体にダメージを1回与える。", + "ParamList": [] + } + }, + "Skills": { + "100401": { + "Id": 100401, + "Name": "{RUBY_B#じゅうりょくせいあつ}重力制圧{RUBY_E#}", + "Desc": "指定した敵単体にヴェルトの攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100402": { + "Id": 100402, + "Name": "{RUBY_B#こくうだんかい}虚空断界{RUBY_E#}", + "Desc": "指定した敵単体にヴェルトの攻撃力#1[i]%分の虚数属性ダメージを与え、さらに2ヒットする。1ヒットごとに、ランダムな敵単体にヴェルトの攻撃力#1[i]%分の虚数属性ダメージを与える。攻撃が命中すると、#2[i]%基礎確率で攻撃を受けた敵の速度-#3[i]%#4[i]ターン継続。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 10, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.6500000006053597, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086, + 0.6600000006146729, + 0.10000000009313226, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297, + 0.6700000006239861, + 0.10000000009313226, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654, + 0.6800000006332994, + 0.10000000009313226, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898, + 0.6900000006426126, + 0.10000000009313226, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142, + 0.7000000006519258, + 0.10000000009313226, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777, + 0.7125000008381903, + 0.10000000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332, + 0.7250000003259629, + 0.10000000009313226, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968, + 0.7375000005122274, + 0.10000000009313226, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523, + 0.7500000006984919, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847, + 0.7600000007078052, + 0.10000000009313226, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091, + 0.7700000007171184, + 0.10000000009313226, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415, + 0.7800000007264316, + 0.10000000009313226, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659, + 0.7900000007357448, + 0.10000000009313226, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903, + 0.8000000007450581, + 0.10000000009313226, + 2 + ] + } + } + }, + "100403": { + "Id": 100403, + "Name": "{RUBY_B#ぎじ}疑似{RUBY_E#}ブラックホール", + "Desc": "敵全体にヴェルトの攻撃力#1[i]%分の虚数属性ダメージを与え、#3[i]%基礎確率で攻撃を受けた敵を禁錮状態にする、1ターン継続。\\n禁錮状態の敵の行動順#2[f1]%遅延し、速度-#4[i]%。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3200000002980232, + 1, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.32799999974668026, + 1, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.3359999998938292, + 1, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.3440000000409782, + 1, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.35200000018812716, + 1, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.3600000003352761, + 1, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.37000000034458935, + 1, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.3800000003539026, + 1, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.3900000003632158, + 1, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.40000000037252903, + 1, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.40799999982118607, + 1, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.41599999996833503, + 1, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.424000000115484, + 1, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.43200000026263297, + 1, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.44000000040978193, + 1, + 0.10000000009313226 + ] + } + } + }, + "100404": { + "Id": 100404, + "Name": "{RUBY_B#じくう}時空{RUBY_E#}の{RUBY_B#ゆが}歪{RUBY_E#}み", + "Desc": "攻撃が減速状態の敵に命中した時、さらにヴェルトの攻撃力#1[i]%分の虚数属性付加ダメージを1回与える。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919 + ] + } + } + }, + "100406": { + "Id": 100406, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100407": { + "Id": 100407, + "Name": "{RUBY_B#がちいろう}画地為牢{RUBY_E#}", + "Desc": "秘技を使用した後、#4[i]秒間継続する特殊領域を作り出す、特殊領域内にいる敵の移動速度-#5[i]%。特殊領域内にいる敵と戦闘に入った後、#1[i]%基礎確率で敵を禁錮状態にする、1ターン継続。\\n禁錮状態の敵は行動順#2[i]%遅延し、速度-#3[i]%。味方が作り出した領域は1つまで存在できる。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451, + 0.10000000009313226, + 15, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Maze.png", + "LevelUpSkillID": [ + 100407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.12000000011175871, + 2 + ], + "PointID": 1004101, + "PointName": "{RUBY_B#ちょうかい}懲戒{RUBY_E#}", + "PointDesc": "必殺技を発動する時、#1[i]%基礎確率で敵の受けるダメージ+#2[i]%#3[i]ターン継続。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1004102, + "PointName": "{RUBY_B#しんぱん}審判{RUBY_E#}", + "PointDesc": "必殺技を発動した時、さらにEPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1004103, + "PointName": "{RUBY_B#さいけつ}裁決{RUBY_E#}", + "PointDesc": "弱点撃破された敵に対して与ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004202, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1004101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1004202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1004203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1004102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004206, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1004205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1004206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004209, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1004201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1004, + "Set4IDList": [ + 112, + 122, + 111 + ], + "Set2IDList": [ + 309, + 301, + 303 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 358, + 302 + ] + } + }, + "1005": { + "Name": "カフカ", + "Desc": "「星核ハンター」のメンバーで、どこか余裕のある颯爽とした麗人。\\n言霊を使い、{NICKNAME}が星核を取り込むよう仕向けた。\\n趣味はコートを買ったり整理したりすること。", + "CharaInfo": { + "Camp": "星核ハンター", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "kafka", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 100501, + "Name": "{RUBY_B#むきゅう}無窮{RUBY_E#}に{RUBY_B#うご}動{RUBY_E#}く!{RUBY_B#むきゅう}無窮{RUBY_E#}に", + "Desc": "天賦効果により追加攻撃を行った時、#1[i]%基礎確率でターゲットの受ける持続ダメージ+#2[i]%#3[i]ターン継続。", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Id": 100502, + "Name": "{RUBY_B#きょうそうしゃ}狂想者{RUBY_E#}の{RUBY_B#おえつ}嗚咽{RUBY_E#}", + "Desc": "カフカがフィールド上にいる時、味方全体の持続ダメージ+#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Id": 100503, + "Name": "{RUBY_B#そっきょう}即興{RUBY_E#}の{RUBY_B#さんび}賛美{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 100504, + "Name": "この{RUBY_B#じょしょう}叙唱{RUBY_E#}を", + "Desc": "カフカが敵に付与した感電状態がダメージを発生する時、カフカのEPをさらに#1[i]回復する。", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 100505, + "Name": "{RUBY_B#こんばん}今晩{RUBY_E#}だけの{RUBY_B#そうめい}奏鳴{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 100506, + "Name": "{RUBY_B#まわ}回{RUBY_E#}る、{RUBY_B#しず}静{RUBY_E#}かに", + "Desc": "必殺技、秘技、天賦による追加攻撃が敵に付与する感電状態のダメージ倍率+#1[i]%、感電状態の継続時間+#2[i]ターン。", + "ParamList": [ + 1.5600000005215406, + 1 + ] + } + }, + "Skills": { + "100501": { + "Id": 100501, + "Name": "{RUBY_B#や}止{RUBY_E#}まない{RUBY_B#よる}夜{RUBY_E#}の{RUBY_B#けんそう}喧騒{RUBY_E#}", + "Desc": "指定した敵単体にカフカの攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100502": { + "Id": 100502, + "Name": "{RUBY_B#つき}月{RUBY_E#}{RUBY_B#あ}明{RUBY_E#}かりが{RUBY_B#な}撫{RUBY_E#}でる{RUBY_B#れんめん}連綿{RUBY_E#}", + "Desc": "指定した敵単体にカフカの攻撃力#1[i]%分の雷属性ダメージを与え、隣接する敵にカフカの攻撃力#3[i]%分の雷属性ダメージを与える。\\n指定した敵が持続ダメージ系デバフである場合、付与された全持続ダメージ系デバフが、本来のダメージ#2[i]%分のダメージを発生する。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.6150000002235174, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.6300000005867332, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.6450000002514571, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.6600000006146729, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.6750000002793968, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.6937500012572855, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.7125000008381903, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.7312500011175871, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.7500000006984919, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.7650000003632158, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.7800000007264316, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.7950000003911555, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.8100000007543713, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.8250000004190952, + 0.7500000006984919 + ] + } + } + }, + "100503": { + "Id": 100503, + "Name": "{RUBY_B#ひげき}悲劇{RUBY_E#}{RUBY_B#さいは}最果{RUBY_E#}ての{RUBY_B#せんおん}顫音{RUBY_E#}", + "Desc": "敵全体にカフカの攻撃力#1[i]%分の雷属性ダメージを与え、#2[i]%基礎確率で攻撃を受けた敵を感電状態にし、付与された感電状態が本来のダメージ#5[i]%分のダメージを発生する。感電状態は#3[i]ターン継続。\\n感電状態の敵はターンが回ってくるたびに、カフカの攻撃力#4[i]%分の雷属性持続ダメージを受ける。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.48000000044703484, + 1, + 2, + 1.1600000001490116, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5120000003371388, + 1, + 2, + 1.2687500005122274, + 0.8200000007636845 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5440000002272427, + 1, + 2, + 1.3775000001769513, + 0.840000000782311 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5760000001173466, + 1, + 2, + 1.486250000540167, + 0.8600000008009374 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6080000000074506, + 1, + 2, + 1.595000000204891, + 0.8800000008195639 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6400000005960464, + 1, + 2, + 1.7581250004004687, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6800000006332994, + 1, + 2, + 1.9756250011269003, + 0.9250000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 1, + 2, + 2.2475000000558794, + 0.9500000008847564 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7600000007078052, + 1, + 2, + 2.5737500011455268, + 0.9750000005587935 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 2, + 2.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.832000000635162, + 1, + 2, + 3.0413750007282943, + 1.0200000000186265 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8640000005252659, + 1, + 2, + 3.182750000851229, + 1.040000000037253 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8960000004153699, + 1, + 2, + 3.3241250002756715, + 1.0600000000558794 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9280000003054738, + 1, + 2, + 3.465500000398606, + 1.0800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9600000008940697, + 1, + 2, + 3.6068750012200326, + 1.1000000000931323 + ] + } + } + }, + "100504": { + "Id": 100504, + "Name": "{RUBY_B#やさ}優{RUBY_E#}しさもまた{RUBY_B#ざんこく}残酷{RUBY_E#}", + "Desc": "カフカ以外の味方が敵に通常攻撃を行った後、カフカは追加攻撃を行い、その敵にカフカの攻撃力#1[i]%分の雷属性ダメージを与え、#2[i]%基礎確率で攻撃を受けた敵を必殺技が与えるものと同じ感電状態にする、#3[i]ターン継続。この効果はターンが回って来るたびに1回まで発動できる。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.4200000003911555, + 1, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5179999999236315, + 1, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6160000001545995, + 1, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7140000003855675, + 1, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8120000006165355, + 1, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9100000008475035, + 1, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.032500000204891, + 1, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.154999999795109, + 1, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.277500000083819, + 1, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.497999999905005, + 1, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.596000000135973, + 1, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.694000000366941, + 1, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.792000000597909, + 1, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.890000000828877, + 1, + 2 + ] + } + } + }, + "100506": { + "Id": 100506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100507": { + "Id": 100507, + "Name": "{RUBY_B#ゆる}許{RUBY_E#}しは{RUBY_B#じひ}慈悲{RUBY_E#}に{RUBY_B#あら}非{RUBY_E#}ず", + "Desc": "一定範囲内のすべての敵を攻撃。戦闘に入った後、敵全体にカフカの攻撃力#3[i]%分の雷属性ダメージを与え、#1[i]%基礎確率で敵単体それぞれを、必殺技が与えるものと同じ感電状態にする、#2[i]ターン継続。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Maze.png", + "LevelUpSkillID": [ + 100507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005101, + "PointName": "{RUBY_B#さいな}苛{RUBY_E#}み", + "PointDesc": "必殺技を発動した時、敵は「付与された感電状態がダメージを発生する」から「付与されたすべての持続ダメージ系デバフがダメージを発生する」に変更される。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1005102, + "PointName": "{RUBY_B#りゃくだつ}略奪{RUBY_E#}", + "PointDesc": "感電状態の敵が倒された時、カフカはさらにEPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1005103, + "PointName": "いばら", + "PointDesc": "必殺技、秘技、天賦による追加攻撃が敵に感電状態を付与する基礎確率+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005202, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1005203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005206, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1005206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005209, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "効果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1100501, + "Name": "{RUBY_B#むきゅう}無窮{RUBY_E#}に{RUBY_B#うご}動{RUBY_E#}く!{RUBY_B#むきゅう}無窮{RUBY_E#}に", + "Desc": "攻撃する時、#1[i]%基礎確率でターゲットの受ける持続ダメージ+#2[i]%#3[i]ターン継続。", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Id": 1100502, + "Name": "{RUBY_B#きょうそうしゃ}狂想者{RUBY_E#}の{RUBY_B#おえつ}嗚咽{RUBY_E#}", + "Desc": "天賦による追加攻撃を行う時、カフカの攻撃力+#1[i]%。この効果は最大で#2[i]層累積できる、#3[i]ターン継続。", + "ParamList": [ + 0.25000000023283064, + 2, + 3 + ] + }, + "3": { + "Id": 1100503, + "Name": "{RUBY_B#そっきょう}即興{RUBY_E#}の{RUBY_B#さんび}賛美{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 1100504, + "Name": "この{RUBY_B#じょしょう}叙唱{RUBY_E#}を", + "Desc": "カフカが敵に付与した感電状態がダメージを発生する時、カフカのEPをさらに#1[i]回復する。", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 1100505, + "Name": "{RUBY_B#こんばん}今晩{RUBY_E#}だけの{RUBY_B#そうめい}奏鳴{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 1100506, + "Name": "{RUBY_B#まわ}回{RUBY_E#}る、{RUBY_B#しず}静{RUBY_E#}かに", + "Desc": "必殺技、秘技、天賦による追加攻撃が敵に付与する感電状態のダメージ倍率+#1[i]%、感電状態の継続時間+#2[i]ターン。", + "ParamList": [ + 1.5600000005215406, + 1 + ] + } + }, + "Skills": { + "1100501": { + "Id": 1100501, + "Name": "止まない夜の喧騒", + "Desc": "指定した敵単体にカフカの攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "1100502": { + "Id": 1100502, + "Name": "月明かりが撫でる連綿", + "Desc": "指定した敵単体にカフカの攻撃力の#1[i]%分の雷属性ダメージを与え、隣接する敵にカフカの攻撃力#3[i]%分の雷属性ダメージを与える。\\n指定した敵または隣接する敵が持続ダメージ系デバフ状態の場合、付与された全持続ダメージ系デバフは、本来のダメージの#2[i]%分または#4[i]%分のダメージを発生させる。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.3000000002793968, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.6150000002235174, + 0.33000000030733645, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.6300000005867332, + 0.3600000003352761, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.6450000002514571, + 0.3900000003632158, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.6600000006146729, + 0.4200000003911555, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.6750000002793968, + 0.45000000041909516, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.6937500012572855, + 0.4875000002793968, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.7125000008381903, + 0.5250000001396984, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.7312500011175871, + 0.5625000006984919, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.7500000006984919, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.7650000003632158, + 0.6300000005867332, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.7800000007264316, + 0.6600000006146729, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.7950000003911555, + 0.6900000006426126, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.8100000007543713, + 0.7200000006705523, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.8250000004190952, + 0.7500000006984919, + 0.5500000005122274 + ] + } + } + }, + "1100503": { + "Id": 1100503, + "Name": "{RUBY_B#ひげき}悲劇{RUBY_E#}{RUBY_B#さいは}最果{RUBY_E#}ての{RUBY_B#せんおん}顫音{RUBY_E#}", + "Desc": "敵全体にカフカの攻撃力#1[i]%分の雷属性ダメージを与え、#2[i]%基礎確率で攻撃を受けた敵を感電状態にし、付与された持続ダメージ系デバフは直ちに本来のダメージの#5[i]%分のダメージを発生させる。感電状態は#3[i]ターン継続。\\n感電状態の敵はターンが回ってくるたびに、カフカの攻撃力の#4[i]%分の雷属性持続ダメージを受ける。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.48000000044703484, + 1, + 2, + 1.1600000001490116, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5120000003371388, + 1, + 2, + 1.2687500005122274, + 1.0200000000186265 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5440000002272427, + 1, + 2, + 1.3775000001769513, + 1.040000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5760000001173466, + 1, + 2, + 1.486250000540167, + 1.0600000000558794 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6080000000074506, + 1, + 2, + 1.595000000204891, + 1.0800000000745058 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6400000005960464, + 1, + 2, + 1.7581250004004687, + 1.1000000000931323 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6800000006332994, + 1, + 2, + 1.9756250011269003, + 1.1249999997671694 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 1, + 2, + 2.2475000000558794, + 1.1500000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7600000007078052, + 1, + 2, + 2.5737500011455268, + 1.1749999998137355 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 2, + 2.9000000008381903, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.832000000635162, + 1, + 2, + 3.0413750007282943, + 1.220000000204891 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8640000005252659, + 1, + 2, + 3.182750000851229, + 1.2400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8960000004153699, + 1, + 2, + 3.3241250002756715, + 1.2600000002421439 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9280000003054738, + 1, + 2, + 3.465500000398606, + 1.2800000002607703 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9600000008940697, + 1, + 2, + 3.6068750012200326, + 1.3000000002793968 + ] + } + } + }, + "1100504": { + "Id": 1100504, + "Name": "{RUBY_B#やさ}優{RUBY_E#}しさもまた{RUBY_B#ざんこく}残酷{RUBY_E#}", + "Desc": "カフカ以外の味方が敵に攻撃を行った後、カフカは直ちに追加攻撃を行い、その敵にカフカの攻撃力の#1[i]%分の雷属性ダメージを与え、#2[i]%基礎確率で攻撃を受けた敵を必殺技が与えるものと同じ感電状態にし、#3[i]ターン継続。この効果は最大#5[i]回まで発動できる。キャラのターン終了時、#4[i]回回復する。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.4200000003911555, + 1, + 2, + 1, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5179999999236315, + 1, + 2, + 1, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6160000001545995, + 1, + 2, + 1, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7140000003855675, + 1, + 2, + 1, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8120000006165355, + 1, + 2, + 1, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9100000008475035, + 1, + 2, + 1, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.032500000204891, + 1, + 2, + 1, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.154999999795109, + 1, + 2, + 1, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.277500000083819, + 1, + 2, + 1, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1, + 2, + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.497999999905005, + 1, + 2, + 1, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.596000000135973, + 1, + 2, + 1, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.694000000366941, + 1, + 2, + 1, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.792000000597909, + 1, + 2, + 1, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.890000000828877, + 1, + 2, + 1, + 2 + ] + } + } + }, + "1100506": { + "Id": 1100506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1100507": { + "Id": 1100507, + "Name": "{RUBY_B#ゆる}許{RUBY_E#}しは{RUBY_B#じひ}慈悲{RUBY_E#}に{RUBY_B#あら}非{RUBY_E#}ず", + "Desc": "一定範囲内のすべての敵を攻撃。戦闘に入った後、敵全体にカフカの攻撃力#3[i]%分の雷属性ダメージを与え、#1[i]%基礎確率で敵単体それぞれを、必殺技が与えるものと同じ感電状態にする、#2[i]ターン継続。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Maze.png", + "LevelUpSkillID": [ + 1100507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7500000006984919, + 0.7500000006984919 + ], + "PointID": 11005101, + "PointName": "{RUBY_B#さいな}苛{RUBY_E#}み", + "PointDesc": "味方の効果命中が#1[i]%を超えた場合、カフカはその味方による持続ダメージを#2[i]%アップさせる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 11005102, + "PointName": "{RUBY_B#りゃくだつ}略奪{RUBY_E#}", + "PointDesc": "感電状態の敵が倒された時、カフカはさらにEPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 11005103, + "PointName": "いばら", + "PointDesc": "必殺技を発動した後、天賦による追加攻撃の発動可能回数を1回復する。天賦による追加攻撃を行うと、ターゲットにあるすべての持続ダメージ系デバフが即座に本来のダメージ#1[i]%分のダメージを発生する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005202, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11005203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005206, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11005206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005209, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "効果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1005, + "Set4IDList": [ + 116, + 109, + 102 + ], + "Set2IDList": [ + 322, + 311, + 301 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 310, + 256 + ] + } + }, + "1006": { + "Name": "{RUBY_B#ぎんろう}銀狼{RUBY_E#}", + "Desc": "「星核ハンター」のメンバーで、凄腕のハッカー。\\n宇宙を大きなシミュレーションゲームと見なして楽しんでいる。\\nリアルデータを修正できる「エーテル編集」を習得している。", + "CharaInfo": { + "Camp": "星核ハンター", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "silverwolf", + "SPNeed": 110, + "BaseType": "Warlock", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 100601, + "Name": "{RUBY_B#しゃかいこうがく}社会工学{RUBY_E#}", + "Desc": "必殺技で敵を攻撃した後、敵にデバフが1つあるごとに、銀狼はEPを#1[i]回復する。この効果は一回の必殺技発動につき、最大で#2[i]回発動できる。", + "ParamList": [ + 7, + 5 + ] + }, + "2": { + "Id": 100602, + "Name": "ボットネット", + "Desc": "敵が戦闘に入る時、効果抵抗-#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 100603, + "Name": "ペイロード", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 100604, + "Name": "バウンス{RUBY_B#こうげき}攻撃{RUBY_E#}", + "Desc": "必殺技で敵を攻撃した後、その敵にあるデバフ1つにつき、さらに銀狼の攻撃力#1[i]%分の量子属性付加ダメージを与える。この効果は1回の必殺技で、最大で#2[i]回発動できる。", + "ParamList": [ + 0.20000000018626451, + 5 + ] + }, + "5": { + "Id": 100605, + "Name": "{RUBY_B#そう}総{RUBY_E#}{RUBY_B#あ}当{RUBY_E#}たり{RUBY_B#こうげき}攻撃{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 100606, + "Name": "オーバーレイ\\nネットワーク", + "Desc": "敵にあるデバフ1つにつき、その敵に対する銀狼の与ダメージ+#1[i]%、最大で+#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + }, + "Skills": { + "100601": { + "Id": 100601, + "Name": "|システム{RUBY_B#けいこく}警告{RUBY_E#}|", + "Desc": "指定した敵単体に銀狼の攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100602": { + "Id": 100602, + "Name": "{RUBY_B#へんこう}変更{RUBY_E#}を{RUBY_B#きょか}許可{RUBY_E#}しますか?", + "Desc": "#2[i]%基礎確率で指定した敵単体に、フィールド上の味方が有する属性の内1つを弱点として埋め込む、さらにその弱点属性の属性耐性-#4[i]%#3[i]ターン継続。元からあった弱点を埋め込んだ場合、対応属性の属性耐性がダウンする効果は発動されない。\\n1体の敵に対し、銀狼が埋め込める弱点は1つまで。銀狼が同じ敵に対して再度弱点を埋め込む時、最後に埋め込んだ弱点のみが残される。\\n#5[i]%基礎確率でさらにその敵の全属性耐性-#6[f1]%#7[i]ターン継続。\\nその敵に銀狼の攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9800000009126961, + 0.7500000006984919, + 2, + 0.20000000018626451, + 1, + 0.07499999972060323, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.0779999995138496, + 0.7600000007078052, + 2, + 0.20000000018626451, + 1, + 0.07749999989755452, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.1759999997448176, + 0.7700000007171184, + 2, + 0.20000000018626451, + 1, + 0.0800000000745058, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2739999999757856, + 0.7800000007264316, + 2, + 0.20000000018626451, + 1, + 0.0825000002514571, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3720000002067536, + 0.7900000007357448, + 2, + 0.20000000018626451, + 1, + 0.08499999972991645, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.4700000004377216, + 0.8000000007450581, + 2, + 0.20000000018626451, + 1, + 0.08749999990686774, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.5925000007264316, + 0.8125000009313226, + 2, + 0.20000000018626451, + 1, + 0.0906250006519258, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.7150000003166497, + 0.8250000004190952, + 2, + 0.20000000018626451, + 1, + 0.09375000069849193, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8375000006053597, + 0.8375000006053597, + 2, + 0.20000000018626451, + 1, + 0.09687500074505806, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.9600000008940697, + 0.8500000007916242, + 2, + 0.20000000018626451, + 1, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.057999999495223, + 0.8600000008009374, + 2, + 0.20000000018626451, + 1, + 0.10250000027008355, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.155999999726191, + 0.8700000008102506, + 2, + 0.20000000018626451, + 1, + 0.1049999997485429, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.253999999957159, + 0.8800000008195639, + 2, + 0.20000000018626451, + 1, + 0.1074999999254942, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.352000000188127, + 0.8900000008288771, + 2, + 0.20000000018626451, + 1, + 0.11000000010244548, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.450000000419095, + 0.9000000008381903, + 2, + 0.20000000018626451, + 1, + 0.11250000027939677, + 2 + ] + } + } + }, + "100603": { + "Id": 100603, + "Name": "|アカウントがBANされた|", + "Desc": "#2[i]%基礎確率で指定した敵単体の防御力-#3[f1]%#4[i]ターン継続。その敵に銀狼の攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.8500000007916242, + 0.3600000003352761, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.8650000004563481, + 0.3689999997150153, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.8800000008195639, + 0.3779999997932464, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.8950000004842877, + 0.3869999998714775, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.9100000008475035, + 0.3959999999497086, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 0.9250000005122274, + 0.4050000000279397, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 0.9437500014901161, + 0.4162500004749745, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 0.962500001071021, + 0.4275000002235174, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 0.9812500013504177, + 0.43875000067055225, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 1, + 0.45000000041909516, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 1.0149999996647239, + 0.4589999997988343, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 1.0300000000279397, + 0.4679999998770654, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 1.0449999996926636, + 0.4769999999552965, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 1.0600000000558794, + 0.4860000000335276, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 1.0749999997206032, + 0.4950000001117587, + 3 + ] + } + } + }, + "100604": { + "Id": 100604, + "Name": "プログラム{RUBY_B#おうとう}応答{RUBY_E#}なし…", + "Desc": "銀狼は以下の3つの「欠陥」を作成できる:攻撃力-#1[f1]%、防御力-#2[f1]%、速度-#3[f1]%。\\n銀狼が攻撃を行った後、#4[i]%基礎確率で攻撃を受けた敵にランダムな「欠陥」を1つ埋め込む、#5[i]ターン継続。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 0.0400000000372529, + 0.030000000027939677, + 0.6000000005587935, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 0.04399999976158142, + 0.032999999821186066, + 0.612000000430271, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 0.04799999948590994, + 0.035999999614432454, + 0.6240000003017485, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 0.05199999990873039, + 0.03899999940767884, + 0.636000000173226, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 0.055999999633058906, + 0.04199999989941716, + 0.6480000000447035, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 0.060000000055879354, + 0.04499999969266355, + 0.6600000006146729, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 0.06499999971129, + 0.04875000030733645, + 0.6750000002793968, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 0.07000000006519258, + 0.05250000022351742, + 0.6900000006426126, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 0.07499999972060323, + 0.056250000139698386, + 0.7050000003073364, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.0800000000745058, + 0.060000000055879354, + 0.7200000006705523, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 0.08399999979883432, + 0.06299999984912574, + 0.7320000005420297, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 0.08799999952316284, + 0.06599999964237213, + 0.7440000004135072, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 0.09199999994598329, + 0.06899999943561852, + 0.7560000002849847, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 0.09599999967031181, + 0.07199999992735684, + 0.7680000001564622, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 0.10000000009313226, + 0.07499999972060323, + 0.7800000007264316, + 3 + ] + } + } + }, + "100606": { + "Id": 100606, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100607": { + "Id": 100607, + "Name": "|プロセス{RUBY_B#きょうせいしゅうりょう}強制終了{RUBY_E#}|", + "Desc": "敵を攻撃。戦闘に入った後、敵全体に銀狼の攻撃力#1[i]%分の量子属性ダメージを与え、弱点属性を無視して敵全体の靭性を削る。この秘技で敵を弱点撃破した時、量子属性の弱点撃破効果を発動する。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Maze.png", + "LevelUpSkillID": [ + 100607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006202, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006204, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1006203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006206, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1006206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006208, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006209, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "効果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.6500000006053597 + ], + "PointID": 1006101, + "PointName": "{RUBY_B#さくせい}作成{RUBY_E#}", + "PointDesc": "「欠陥」の継続時間+#1[i]ターン。敵が弱点撃破された時、銀狼は#2[i]%基礎確率でその敵にランダムな「欠陥」を1つ埋め込む。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1006102, + "PointName": "{RUBY_B#ちゅうにゅう}注入{RUBY_E#}", + "PointDesc": "戦闘スキルを発動した時、敵に埋め込む弱点の継続時間+#1[i]ターン。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.030000000027939677 + ], + "PointID": 1006103, + "PointName": "アノテーション", + "PointDesc": "戦闘スキルを発動した時、敵にあるデバフ#1[i]つ以上の場合、戦闘スキルによる敵の全属性耐性ダウン効果がさらに#2[i]%ダウンする。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1100601, + "Name": "{RUBY_B#しゃかいこうがく}社会工学{RUBY_E#}", + "Desc": "必殺技で敵を攻撃した後、敵にデバフが1つあるごとに、銀狼はEPを#1[i]回復する。この効果は一回の必殺技発動につき、最大で#2[i]回発動できる。", + "ParamList": [ + 7, + 5 + ] + }, + "2": { + "Id": 1100602, + "Name": "ボットネット", + "Desc": "敵が戦闘に入る時、受けるダメージ+#1[i]%。敵が味方の攻撃を受けた時、銀狼は#2[i]%基礎確率で攻撃を受けた敵にランダムな「欠陥」を1つ埋め込む。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 1100603, + "Name": "ペイロード", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 1100604, + "Name": "バウンス{RUBY_B#こうげき}攻撃{RUBY_E#}", + "Desc": "必殺技で敵を攻撃した後、その敵にあるデバフ1つにつき、さらに銀狼の攻撃力#1[i]%分の量子属性付加ダメージを与える。この効果は1回の必殺技で、最大で#2[i]回発動できる。", + "ParamList": [ + 0.20000000018626451, + 5 + ] + }, + "5": { + "Id": 1100605, + "Name": "{RUBY_B#そう}総{RUBY_E#}{RUBY_B#あ}当{RUBY_E#}たり{RUBY_B#こうげき}攻撃{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 1100606, + "Name": "オーバーレイ\\nネットワーク", + "Desc": "敵にあるデバフ1つにつき、その敵に対する銀狼の与ダメージ+#1[i]%、最大で+#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + }, + "Skills": { + "1100601": { + "Id": 1100601, + "Name": "|システム{RUBY_B#けいこく}警告{RUBY_E#}|", + "Desc": "指定した敵単体に銀狼の攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "1100602": { + "Id": 1100602, + "Name": "{RUBY_B#へんこう}変更{RUBY_E#}を{RUBY_B#きょか}許可{RUBY_E#}しますか?", + "Desc": "#2[i]%基礎確率で指定した敵単体に、フィールド上の味方が有する属性の内1つを弱点として埋め込む(パーティ1枠目のキャラの属性を優先的に埋め込む)、さらにその弱点属性の属性耐性-#4[i]%#3[i]ターン継続。元からあった弱点を埋め込んだ場合、対応属性の属性耐性がダウンする効果は発動されない。\\n1体の敵に対し、銀狼が埋め込める弱点は1つまで。銀狼が同じ敵に対して再度弱点を埋め込む時、最後に埋め込んだ弱点のみが残される。\\n#5[i]%基礎確率でさらにその敵の全属性耐性-#6[f1]%#7[i]ターン継続。\\nその敵に銀狼の攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9800000009126961, + 0.8000000007450581, + 3, + 0.20000000018626451, + 1, + 0.1049999997485429, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.0779999995138496, + 0.840000000782311, + 3, + 0.20000000018626451, + 1, + 0.1074999999254942, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.1759999997448176, + 0.8800000008195639, + 3, + 0.20000000018626451, + 1, + 0.11000000010244548, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2739999999757856, + 0.9200000008568168, + 3, + 0.20000000018626451, + 1, + 0.11250000027939677, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3720000002067536, + 0.9600000008940697, + 3, + 0.20000000018626451, + 1, + 0.11499999975785613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.4700000004377216, + 1, + 3, + 0.20000000018626451, + 1, + 0.11749999993480742, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.5925000007264316, + 1.0500000000465661, + 3, + 0.20000000018626451, + 1, + 0.12062500067986548, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.7150000003166497, + 1.1000000000931323, + 3, + 0.20000000018626451, + 1, + 0.12375000072643161, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8375000006053597, + 1.1500000001396984, + 3, + 0.20000000018626451, + 1, + 0.12687500077299774, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.9600000008940697, + 1.2000000001862645, + 3, + 0.20000000018626451, + 1, + 0.13000000012107193, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.057999999495223, + 1.2400000002235174, + 3, + 0.20000000018626451, + 1, + 0.13250000029802322, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.155999999726191, + 1.2800000002607703, + 3, + 0.20000000018626451, + 1, + 0.13499999977648258, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.253999999957159, + 1.3200000002980232, + 3, + 0.20000000018626451, + 1, + 0.13749999995343387, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.352000000188127, + 1.3600000003352761, + 3, + 0.20000000018626451, + 1, + 0.14000000013038516, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.450000000419095, + 1.400000000372529, + 3, + 0.20000000018626451, + 1, + 0.14250000030733645, + 2 + ] + } + } + }, + "1100603": { + "Id": 1100603, + "Name": "|アカウントがBANされた|", + "Desc": "#2[i]%基礎確率で敵全体の防御力-#3[f1]%#4[i]ターン継続。敵全体に銀狼の攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.8000000007450581, + 0.3600000003352761, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.840000000782311, + 0.3689999997150153, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.8800000008195639, + 0.3779999997932464, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.9200000008568168, + 0.3869999998714775, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.9600000008940697, + 0.3959999999497086, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 1, + 0.4050000000279397, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 1.0500000000465661, + 0.4162500004749745, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 1.1000000000931323, + 0.4275000002235174, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 1.1500000001396984, + 0.43875000067055225, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 1.2000000001862645, + 0.45000000041909516, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 1.2400000002235174, + 0.4589999997988343, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 1.2800000002607703, + 0.4679999998770654, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 1.3200000002980232, + 0.4769999999552965, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 1.3600000003352761, + 0.4860000000335276, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 1.400000000372529, + 0.4950000001117587, + 3 + ] + } + } + }, + "1100604": { + "Id": 1100604, + "Name": "プログラム{RUBY_B#おうとう}応答{RUBY_E#}なし…", + "Desc": "銀狼は以下の3つの「欠陥」を作成できる:攻撃力-#1[f1]%、防御力-#2[f1]%、速度-#3[f1]%。\\n銀狼が攻撃を行った後、#4[i]%基礎確率で攻撃を受けた敵にランダムな「欠陥」を1つ埋め込む、#5[i]ターン継続。敵が倒された時、銀狼がその敵に付与した弱点は、フィールド上に生存しているほかの敵に移る。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 0.060000000055879354, + 0.030000000027939677, + 0.6000000005587935, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 0.06599999964237213, + 0.032999999821186066, + 0.6400000005960464, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 0.07199999992735684, + 0.035999999614432454, + 0.6800000006332994, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 0.07799999951384962, + 0.03899999940767884, + 0.7200000006705523, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 0.08399999979883432, + 0.04199999989941716, + 0.7600000007078052, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 0.09000000008381903, + 0.04499999969266355, + 0.8000000007450581, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 0.09749999991618097, + 0.04875000030733645, + 0.8500000007916242, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 0.1049999997485429, + 0.05250000022351742, + 0.9000000008381903, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 0.11250000027939677, + 0.056250000139698386, + 0.9500000008847564, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.12000000011175871, + 0.060000000055879354, + 1, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 0.12599999969825149, + 0.06299999984912574, + 1.040000000037253, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 0.1319999999832362, + 0.06599999964237213, + 1.0800000000745058, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 0.13799999956972897, + 0.06899999943561852, + 1.1200000001117587, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 0.14399999985471368, + 0.07199999992735684, + 1.1600000001490116, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 0.1500000001396984, + 0.07499999972060323, + 1.2000000001862645, + 3 + ] + } + } + }, + "1100606": { + "Id": 1100606, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1100607": { + "Id": 1100607, + "Name": "|プロセス{RUBY_B#きょうせいしゅうりょう}強制終了{RUBY_E#}|", + "Desc": "敵を攻撃。戦闘に入った後、敵全体に銀狼の攻撃力#1[i]%分の量子属性ダメージを与え、弱点属性を無視して敵全体の靭性を削る。この秘技で敵を弱点撃破した時、量子属性の弱点撃破効果を発動する。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Maze.png", + "LevelUpSkillID": [ + 1100607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006202, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006204, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11006203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006206, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11006206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006208, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006209, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "効果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 11006101, + "PointName": "{RUBY_B#さくせい}作成{RUBY_E#}", + "PointDesc": "「欠陥」の継続時間+#1[i]ターン。敵が弱点撃破された時、銀狼は#2[i]%基礎確率でその敵にランダムな「欠陥」を1つ埋め込む。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 20, + 5 + ], + "PointID": 11006102, + "PointName": "{RUBY_B#ちゅうにゅう}注入{RUBY_E#}", + "PointDesc": "戦闘開始時、EPを#1[i]回復する。銀狼のターンが回ってきた時、自身のEPを#2[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 0.10000000009313226, + 0.5000000004656613 + ], + "PointID": 11006103, + "PointName": "アノテーション", + "PointDesc": "銀狼の効果命中#1[i]%につき、さらに攻撃力+#2[i]%、最大で+#3[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1006, + "Set4IDList": [ + 108, + 111, + 117 + ], + "Set2IDList": [ + 312, + 303, + 307 + ], + "PropertyList3": [ + "StatusProbabilityBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "StatusProbabilityBase", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 340, + 285 + ] + } + }, + "1008": { + "Name": "アーラン", + "Desc": "宇宙ステーション「ヘルタ」の防衛課責任者。\\n口下手だが、研究を大切にしているスタッフたちがそれぞれの研究を成し遂げられるよう、彼らを命懸けで守ろうとしている。", + "CharaInfo": { + "Camp": "宇宙ステーション「ヘルタ」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "arlan", + "SPNeed": 110, + "BaseType": "Warrior", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 100801, + "Name": "{RUBY_B#ばんし}万死{RUBY_E#}も{RUBY_B#じ}辞{RUBY_E#}さぬ{RUBY_B#けつい}決意{RUBY_E#}", + "Desc": "残りHPが50%以下の時、戦闘スキルによるダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 100802, + "Name": "{RUBY_B#しば}縛{RUBY_E#}りより{RUBY_B#はな}放{RUBY_E#}たれし{RUBY_B#こころ}心{RUBY_E#}", + "Desc": "戦闘スキルまたは必殺技を発動した時、自身のデバフを1つ解除する。", + "ParamList": [] + }, + "3": { + "Id": 100803, + "Name": "{RUBY_B#じゅうけんきょうこう}重剣強攻{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 100804, + "Name": "{RUBY_B#ぜっきょう}絶境{RUBY_E#}の{RUBY_B#はんげき}反撃{RUBY_E#}", + "Desc": "戦闘に入った後、アーランはHPが0になる攻撃を受けても戦闘不能状態にならず、HPを#1[i]%まで回復する。この効果は1回発動した後、または#2[i]ターン以降に自動解除される。", + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "5": { + "Id": 100805, + "Name": "{RUBY_B#ぜんりょくけいちゅう}全力傾注{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 100806, + "Name": "{RUBY_B#けんしんてき}献身的{RUBY_E#}な{RUBY_B#せんどう}先導{RUBY_E#}", + "Desc": "残りHPが50%以下の時、必殺技によるダメージ+#1[i]%、隣接する敵に対するダメージ倍率がメインターゲットと同じになる。", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "100801": { + "Id": 100801, + "Name": "{RUBY_B#しっこう}疾行{RUBY_E#}する{RUBY_B#かみなり}雷{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}し", + "Desc": "指定した敵単体にアーランの攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100802": { + "Id": 100802, + "Name": "{RUBY_B#きんこ}禁錮{RUBY_E#}{RUBY_B#かいじょ}解除{RUBY_E#}", + "Desc": "アーランのHPを最大HP#1[i]%分消費して、指定した敵単体にアーランの攻撃力#2[i]%分の雷属性ダメージを与える。残りHPが足りない場合、戦闘スキルを発動する時、アーランの残りHPが1になる。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": null, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1500000001396984, + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1500000001396984, + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1500000001396984, + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1500000001396984, + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1500000001396984, + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1500000001396984, + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1500000001396984, + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1500000001396984, + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1500000001396984, + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1500000001396984, + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.1500000001396984, + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1500000001396984, + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 3 + ] + } + } + }, + "100803": { + "Id": 100803, + "Name": "{RUBY_B#きょうしゃ}狂者{RUBY_E#}の{RUBY_B#せいさい}制裁{RUBY_E#}", + "Desc": "指定した敵単体にアーランの攻撃力#1[i]%分の雷属性ダメージを与え、隣接する敵にアーランの攻撃力#2[i]%分の雷属性ダメージを与える。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9200000008568168, + 0.9600000008940697 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.04799999948591, + 1.023999999742955 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.1759999997448176, + 1.0879999995231628 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.3040000000037253, + 1.1520000000018626 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.432000000262633, + 1.2159999997820705 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5600000005215406, + 1.2800000002607703 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.7200000006705523, + 1.3600000003352761 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 1.440000000409782 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.040000000037253, + 1.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.2000000001862645, + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.3279999997466803, + 1.6640000003390014 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.456000000005588, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.5840000002644956, + 1.792000000597909 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.7120000005234033, + 1.856000000378117 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.840000000782311, + 1.9200000008568168 + ] + } + } + }, + "100804": { + "Id": 100804, + "Name": "{RUBY_B#いた}痛{RUBY_E#}みと{RUBY_B#いか}怒{RUBY_E#}りの{RUBY_B#きわ}極{RUBY_E#}み", + "Desc": "アーランの失ったHPの割合に応じて与ダメージアップ、最大でアーランの与ダメージ+#1[i]%", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "100806": { + "Id": 100806, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100807": { + "Id": 100807, + "Name": "{RUBY_B#とっきゅう}特急{RUBY_E#}ハーベスト", + "Desc": "敵を攻撃。戦闘に入った後、敵全体にアーランの攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Maze.png", + "LevelUpSkillID": [ + 100807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.20000000018626451 + ], + "PointID": 1008101, + "PointName": "{RUBY_B#そせい}蘇生{RUBY_E#}", + "PointDesc": "敵を倒した時、残りHPが#1[i]%以下の場合、自身の最大HP#2[i]%分のHPを回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1008102, + "PointName": "{RUBY_B#けんにん}堅忍{RUBY_E#}", + "PointDesc": "持続ダメージ系デバフに抵抗する確率+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1008103, + "PointName": "{RUBY_B#こうきょ}抗拒{RUBY_E#}", + "PointDesc": "戦闘に入る時、残りHPが#1[i]%以下の場合、アーランは持続ダメージ以外のすべてのダメージを防ぐ。アーランが攻撃を受けた後、この効果は解除される。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008202, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1008202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1008203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008206, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1008205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1008206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1008103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008209, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "効果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 45, + "DefenceAdd": 2.2500000002328306, + "HPBase": 163.20000000018626, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 63, + "DefenceAdd": 2.2500000002328306, + "HPBase": 228.48000000044703, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 81, + "DefenceAdd": 2.2500000002328306, + "HPBase": 293.7600000007078, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 99, + "DefenceAdd": 2.2500000002328306, + "HPBase": 359.04000000003725, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 117, + "DefenceAdd": 2.2500000002328306, + "HPBase": 424.320000000298, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 135, + "DefenceAdd": 2.2500000002328306, + "HPBase": 489.6000000005588, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 153, + "DefenceAdd": 2.2500000002328306, + "HPBase": 554.8800000008196, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1008, + "Set4IDList": [ + 109, + 122, + 117 + ], + "Set2IDList": [ + 309, + 301, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1009": { + "Name": "アスター", + "Desc": "宇宙ステーション「ヘルタ」の所長を務める、名門出身のお嬢様。\\n好奇心旺盛な天文学者で、癖のある宇宙ステーションのスタッフたちをまとめるのが得意。", + "CharaInfo": { + "Camp": "宇宙ステーション「ヘルタ」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "asta", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 100901, + "Name": "{RUBY_B#ほし}星{RUBY_E#}に{RUBY_B#むごん}無言{RUBY_E#}の{RUBY_B#うた}歌{RUBY_E#}あり", + "Desc": "戦闘スキルを発動した時、さらにランダムな敵単体にダメージを1回与える。", + "ParamList": [] + }, + "2": { + "Id": 100902, + "Name": "{RUBY_B#つき}月{RUBY_E#}は{RUBY_B#えいきょ}盈虚{RUBY_E#}の{RUBY_B#い}意{RUBY_E#}を{RUBY_B#あらわ}現{RUBY_E#}す", + "Desc": "必殺技を発動した時、アスターの次のターンの蓄エネ層数が減少しなくなる。", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 100903, + "Name": "{RUBY_B#こうどういんせき}黄道隕石{RUBY_E#}の{RUBY_B#へん}変{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 100904, + "Name": "{RUBY_B#きょっこう}極光{RUBY_E#}が{RUBY_B#けんげん}顕現{RUBY_E#}する{RUBY_B#とき}時{RUBY_E#}", + "Desc": "天賦の蓄エネが#1[i]層以上の時、アスターのEP回復効率+#2[i]%。", + "ParamList": [ + 2, + 0.1500000001396984 + ] + }, + "5": { + "Id": 100905, + "Name": "{RUBY_B#しんくう}深空{RUBY_E#}{RUBY_B#ざ}座{RUBY_E#}す{RUBY_B#てんたい}天体{RUBY_E#}の{RUBY_B#なぞ}謎{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 100906, + "Name": "{RUBY_B#ぎんが}銀河{RUBY_E#}の{RUBY_B#もと}下{RUBY_E#}に{RUBY_B#ねむ}眠{RUBY_E#}る", + "Desc": "ターンが回ってくるたびに天賦の蓄エネ層数減少値-#1[i]。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "100901": { + "Id": 100901, + "Name": "スペクトル{RUBY_B#こうせん}光線{RUBY_E#}", + "Desc": "指定した敵単体にアスターの攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100902": { + "Id": 100902, + "Name": "スターフォール", + "Desc": "指定した敵単体にアスターの攻撃力#1[i]%分の炎属性ダメージを与え、さらに4ヒットする。1ヒットごとに、ランダムな敵単体にアスターの攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + }, + "100903": { + "Id": 100903, + "Name": "{RUBY_B#ほしぞらしゅうげん}星空祝言{RUBY_E#}", + "Desc": "味方全体の速度+#1[i]#2[i]ターン継続。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 36, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 37.40000000037253, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 38.80000000074506, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 40.200000000186265, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 41.60000000055879, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 43, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 44.75000000069849, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 46.50000000046566, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 48.25000000023283, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 50, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 51.40000000037253, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 52.80000000074506, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 54.200000000186265, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 55.60000000055879, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 57, + 2 + ] + } + } + }, + "100904": { + "Id": 100904, + "Name": "{RUBY_B#てんしょうがく}天象学{RUBY_E#}", + "Desc": "異なる敵に攻撃が命中するごとに蓄エネを1層獲得する。攻撃を受けた敵の弱点が炎属性の場合、さらに蓄エネを1層獲得する。\\nアスターが持つ蓄エネ1層につき、味方全体の攻撃力+#1[f1]%、最大で#2[i]回累積できる。\\n自身の2ターン目から、アスターのターンが回ってくるたびに蓄エネ層数-#3[i]。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07000000006519258, + 5, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07699999958276749, + 5, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 5, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09100000001490116, + 5, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.09799999953247607, + 5, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1049999997485429, + 5, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.11375000071711838, + 5, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.12250000028871, + 5, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13125000055879354, + 5, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.14000000013038516, + 5, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.14699999964796007, + 5, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1539999998640269, + 5, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.16100000008009374, + 5, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.16799999959766865, + 5, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.17499999981373549, + 5, + 3 + ] + } + } + }, + "100906": { + "Id": 100906, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100907": { + "Id": 100907, + "Name": "{RUBY_B#ちゃくそう}着想{RUBY_E#}の{RUBY_B#いっせん}一閃{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、敵全体にアスターの攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Maze.png", + "LevelUpSkillID": [ + 100907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 3, + 0.5000000004656613 + ], + "PointID": 1009101, + "PointName": "{RUBY_B#ひばな}火花{RUBY_E#}", + "PointDesc": "通常攻撃を行った時、#1[i]%基礎確率で敵を燃焼状態にする、#2[i]ターン継続。\\n燃焼状態の敵はターンが回ってくるたびに、アスターの通常攻撃ダメージ#3[i]%分の炎属性持続ダメージを受ける。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.18000000016763806 + ], + "PointID": 1009102, + "PointName": "{RUBY_B#てんか}点火{RUBY_E#}", + "PointDesc": "アスターがフィールド上にいる時、味方全体の炎属性ダメージ+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.060000000055879354 + ], + "PointID": 1009103, + "PointName": "{RUBY_B#せいざ}星座{RUBY_E#}", + "PointDesc": "アスターが持つ蓄エネ1層につき、自身の防御力+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009201, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009202, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1009101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009203, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1009202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009204, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1009201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009205, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1009102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009206, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1009205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009207, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1009201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009208, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1009103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009209, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1009208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009210, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1009208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "炎属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 69.6000000005588, + "AttackAdd": 3.480000000447035, + "DefenceBase": 63, + "DefenceAdd": 3.1500000001396984, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 97.44000000040978, + "AttackAdd": 3.480000000447035, + "DefenceBase": 88.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 125.28000000026077, + "AttackAdd": 3.480000000447035, + "DefenceBase": 113.40000000037253, + "DefenceAdd": 3.1500000001396984, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 153.12000000011176, + "AttackAdd": 3.480000000447035, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 3.1500000001396984, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 180.96000000089407, + "AttackAdd": 3.480000000447035, + "DefenceBase": 163.80000000074506, + "DefenceAdd": 3.1500000001396984, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 208.80000000074506, + "AttackAdd": 3.480000000447035, + "DefenceBase": 189, + "DefenceAdd": 3.1500000001396984, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 236.64000000059605, + "AttackAdd": 3.480000000447035, + "DefenceBase": 214.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1009, + "Set4IDList": [ + 114, + 111, + 106 + ], + "Set2IDList": [ + 302, + 310, + 308 + ], + "PropertyList3": [ + "HPAddedRatio", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 321, + 278 + ] + } + }, + "1013": { + "Name": "ヘルタ", + "Desc": "「天才クラブ」#83、宇宙ステーションの真の主。\\n人に勝る知恵を持つが、まったく共感力がない大科学者。", + "CharaInfo": { + "Camp": "宇宙ステーション「ヘルタ」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "herta", + "SPNeed": 110, + "BaseType": "Mage", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 101301, + "Name": "{RUBY_B#よわ}弱{RUBY_E#}みは{RUBY_B#つ}付{RUBY_E#}け{RUBY_B#こ}込{RUBY_E#}み", + "Desc": "通常攻撃を行った時、指定した敵単体の残りHPが#1[i]%以下の場合、さらにヘルタの攻撃力#2[i]%分の氷属性付加ダメージを与える。", + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "2": { + "Id": 101302, + "Name": "{RUBY_B#か}勝{RUBY_E#}てば{RUBY_B#お}追{RUBY_E#}い{RUBY_B#う}打{RUBY_E#}ち", + "Desc": "天賦が1回発動するごとに、自身の会心率+#1[i]%、この効果は最大で#2[i]回累積できる。", + "ParamList": [ + 0.030000000027939677, + 5 + ] + }, + "3": { + "Id": 101303, + "Name": "{RUBY_B#わたし}私{RUBY_E#}はこういう{RUBY_B#おんな}女{RUBY_E#}なの", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 101304, + "Name": "{RUBY_B#めんつ}面子{RUBY_E#}は{RUBY_B#てっていてき}徹底的{RUBY_E#}に{RUBY_B#つぶ}潰{RUBY_E#}す", + "Desc": "天賦発動時の与ダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "5": { + "Id": 101305, + "Name": "{RUBY_B#けってん}欠点{RUBY_E#}{RUBY_B#つか}掴{RUBY_E#}んで{RUBY_B#ののし}罵{RUBY_E#}り{RUBY_B#たお}倒{RUBY_E#}す", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 101306, + "Name": "{RUBY_B#だれ}誰{RUBY_E#}も{RUBY_B#わたし}私{RUBY_E#}を{RUBY_B#うらぎ}裏切{RUBY_E#}れない", + "Desc": "必殺技を発動した後、攻撃力+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.25000000023283064, + 1 + ] + } + }, + "Skills": { + "101301": { + "Id": 101301, + "Name": "{RUBY_B#なに}何{RUBY_E#}{RUBY_B#み}見{RUBY_E#}てるの?", + "Desc": "指定した敵単体にヘルタの攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "101302": { + "Id": 101302, + "Name": "{RUBY_B#いちど}一度{RUBY_E#}{RUBY_B#かぎ}限{RUBY_E#}りの{RUBY_B#とりひき}取引{RUBY_E#}", + "Desc": "敵全体にヘルタの攻撃力#1[i]%分の氷属性ダメージを与える。敵の残りHPが#2[i]%以上の場合、その敵に対して与ダメージ+#3[i]%。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 0.5000000004656613, + 0.20000000018626451 + ] + } + } + }, + "101303": { + "Id": 101303, + "Name": "{RUBY_B#わたし}私{RUBY_E#}がかけた{RUBY_B#まほう}魔法{RUBY_E#}だよ", + "Desc": "敵全体にヘルタの攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529 + ] + } + } + }, + "101304": { + "Id": 101304, + "Name": "やっぱり{RUBY_B#わたし}私{RUBY_E#}がやる", + "Desc": "味方の攻撃が敵の残りHPを#1[i]%以下にした時、ヘルタは追加攻撃を発動し、敵全体にヘルタの攻撃力#2[i]%分の氷属性ダメージを与える。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 0.2649999998975545 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 0.2949999999254942 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 0.31000000028871 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 0.32499999995343387 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 0.3437500009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 0.3625000005122274 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 0.3812500007916242 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 0.4150000000372529 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 0.4300000004004687 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 0.4450000000651926 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 0.4600000004284084 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.47500000009313226 + ] + } + } + }, + "101306": { + "Id": 101306, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101307": { + "Id": 101307, + "Name": "{RUBY_B#かいぜん}改善{RUBY_E#}すべきだよ", + "Desc": "秘技を使用した後、次の戦闘開始時、ヘルタの攻撃力+#1[i]%#2[i]ターン継続。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Maze.png", + "LevelUpSkillID": [ + 101307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1013101, + "PointName": "{RUBY_B#こうりつ}効率{RUBY_E#}", + "PointDesc": "戦闘スキルを発動した時、さらに与ダメージ+#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1013102, + "PointName": "{RUBY_B#にんぎょう}人形{RUBY_E#}", + "PointDesc": "行動制限系デバフに抵抗する確率+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1013103, + "PointName": "{RUBY_B#ひょうけつ}氷結{RUBY_E#}", + "PointDesc": "必殺技を発動した時、凍結状態の敵に対する与ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013201, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013202, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1013101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013203, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1013202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013204, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1013202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013205, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1013102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013206, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1013205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013207, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1013205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013208, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1013103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013209, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1013103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013210, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "氷属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 129.6000000005588, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 181.44000000040978, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 233.28000000026077, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 285.12000000011176, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 336.96000000089407, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 388.80000000074506, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 440.64000000059605, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1013, + "Set4IDList": [ + 104, + 102, + 122 + ], + "Set2IDList": [ + 313, + 306, + 315 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "IceAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 338, + 284 + ], + "LocalCriticalChance": 0.1500000001396984 + } + }, + "1014": { + "Name": "セイバー", + "Desc": "運命の長夜を歩んだ孤高の英霊。その夢の中では、円卓の旗が今なお風に揺れている。キャメロットの騎士王はこの時、まだ理想郷に辿り着いていない。\\n召喚に応じ、少女は異質な「聖杯戦争」に参戦する。再び選定の剣を目の前にした時、彼女は過去の幻境から抜け出せるのだろうか?\\n——「果たせなかった願いも…今ここで断ち切ります」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "saber", + "SPNeed": 360, + "BaseType": "Warrior", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 101401, + "Name": "{RUBY_B#うし}失{RUBY_E#}われた{RUBY_B#はくあ}白亜{RUBY_E#}の{RUBY_B#しろ}城{RUBY_E#}", + "Desc": "セイバーの必殺技ダメージ+#1[i]%セイバーが通常攻撃または戦闘スキルを発動した後、追加で「炉心共鳴」を#2[i]層獲得する。", + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Id": 101402, + "Name": "{RUBY_B#ちり}塵{RUBY_E#}に{RUBY_B#う}埋{RUBY_E#}もれた{RUBY_B#えんたく}円卓{RUBY_E#}の{RUBY_B#ちか}誓{RUBY_E#}い", + "Desc": "「解放されし黄金の王権」と「風王鉄槌」の会心ダメージ+#1[i]%。「炉心共鳴」を1層獲得するたびに、さらに会心ダメージ+#2[i]%、最大で#3[i]回累積可能。", + "ParamList": [ + 0.5000000004656613, + 0.05000000004656613, + 10 + ] + }, + "3": { + "Id": 101403, + "Name": "{RUBY_B#じゅうごせいき}十五世紀{RUBY_E#}を{RUBY_B#こ}越{RUBY_E#}えた{RUBY_B#ねが}願{RUBY_E#}い", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 101404, + "Name": "{RUBY_B#じゅうよん}十四{RUBY_E#}の{RUBY_B#よる}夜{RUBY_E#}にわたる{RUBY_B#ふゆ}冬{RUBY_E#}の{RUBY_B#かいこう}邂逅{RUBY_E#}", + "Desc": "セイバーの風属性耐性貫通+#1[i]%。必殺技を発動した後、セイバーの風属性耐性貫通+#2[i]%、最大で#3[i]回累積可能。", + "ParamList": [ + 0.0400000000372529, + 0.0400000000372529, + 4 + ] + }, + "5": { + "Id": 101405, + "Name": "{RUBY_B#りそう}理想{RUBY_E#}に{RUBY_B#たど}辿{RUBY_E#}り{RUBY_B#つ}着{RUBY_E#}いた{RUBY_B#あかつき}暁{RUBY_E#}に", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 101406, + "Name": "{RUBY_B#うんめい}運命{RUBY_E#}の{RUBY_B#よる}夜{RUBY_E#}を{RUBY_B#まも}護{RUBY_E#}る{RUBY_B#もの}者{RUBY_E#}", + "Desc": "セイバーの必殺技ダメージの風属性耐性貫通+#1[i]%。戦闘中に初めて必殺技を発動した後、セイバーのEPを#3[i]固定で回復する。その後、この効果は、必殺技を#2[i]回発動するたびに1回発動する。", + "ParamList": [ + 0.20000000018626451, + 4, + 300 + ] + } + }, + "Skills": { + "101401": { + "Id": 101401, + "Name": "{RUBY_B#インビジブル・エア}風王結界{RUBY_E#}", + "Desc": "指定した敵単体にセイバーの攻撃力#1[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "101402": { + "Id": 101402, + "Name": "{RUBY_B#ストライク・エア}風王鉄槌{RUBY_E#}", + "Desc": "指定した敵単体にセイバーの攻撃力#1[i]%分の風属性ダメージを与え、隣接する敵にセイバーの攻撃力#2[i]%分の風属性ダメージを与える。「炉心共鳴」を持ち、かつその回の戦闘スキルで「炉心共鳴」を消費してセイバーのEPを満タンに回復できる場合、持っている「炉心共鳴」1層につき、その回の戦闘スキルのダメージ倍率+#4[i]%。また、戦闘スキルを発動した後に「炉心共鳴」をすべて消費し、セイバーのEPを回復する。EPを満タンにできなかった場合、直ちに「炉心共鳴」を#3[i]層獲得する。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.375, + 2, + 0.07000000006519258 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.41250000055879354, + 2, + 0.07699999958276749 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 2, + 0.08399999979883432 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 2, + 0.09100000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 2, + 0.09799999953247607 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 2, + 0.1049999997485429 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.6093750006984919, + 2, + 0.11375000071711838 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.6562500006984919, + 2, + 0.12250000028871 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.7031250006984919, + 2, + 0.13125000055879354 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 2, + 0.14000000013038516 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.7875000005587935, + 2, + 0.14699999964796007 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.8250000004190952, + 2, + 0.1539999998640269 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.8625000009778887, + 2, + 0.16100000008009374 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.9000000008381903, + 2, + 0.16799999959766865 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 2, + 0.17499999981373549 + ] + } + } + }, + "101403": { + "Id": 101403, + "Name": "{RUBY_B#エクスカリバー}約束された勝利の剣{RUBY_E#}", + "Desc": "敵全体にセイバーの攻撃力#1[i]%分の風属性ダメージを与え、さらに#3[i]ヒットする。1ヒットごとにランダムな敵単体にセイバーの攻撃力#2[i]%分の風属性ダメージを#3[i]与える。必殺技を発動した後、次の通常攻撃が「解放されし黄金の王権」に変わり、「解放されし黄金の王権」のみを発動できるようになる。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 120, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 0.5500000005122274, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 0.6050000002142042, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 0.6600000006146729, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 0.7150000003166497, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 0.7700000007171184, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 0.8250000004190952, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 0.89375000144355, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 0.962500001071021, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1.0312500004656613, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.1000000000931323, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1.154999999795109, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1.2100000001955777, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1.2649999998975545, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 1.3200000002980232, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 1.375, + 10 + ] + } + } + }, + "101404": { + "Id": 101404, + "Name": "{RUBY_B#ドラゴンハート}竜の炉心{RUBY_E#}", + "Desc": "戦闘に入る時、「炉心共鳴」を#8[i]獲得する。味方が必殺技を発動する時、セイバーの与ダメージ+#3[i]%#4[i]ターン継続。同時に「炉心共鳴」を#1[i]層獲得する。「炉心共鳴」を1層消費するたび、セイバーはEPを固定で#5[i]回復する。", + "Type": null, + "Tag": "Enhance", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 25, + 0.20000000018626451, + 2, + 10, + 0.05000000004656613, + 99, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 25, + 0.22000000020489097, + 2, + 10, + 0.054999999701976776, + 99, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 25, + 0.24000000022351742, + 2, + 10, + 0.060000000055879354, + 99, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 25, + 0.26000000024214387, + 2, + 10, + 0.06499999971129, + 99, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 25, + 0.2800000002607703, + 2, + 10, + 0.07000000006519258, + 99, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 25, + 0.3000000002793968, + 2, + 10, + 0.07499999972060323, + 99, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 25, + 0.32499999995343387, + 2, + 10, + 0.08125000051222742, + 99, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 25, + 0.3500000003259629, + 2, + 10, + 0.08749999990686774, + 99, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 25, + 0.375, + 2, + 10, + 0.09375000069849193, + 99, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 25, + 0.40000000037252903, + 2, + 10, + 0.10000000009313226, + 99, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 25, + 0.4200000003911555, + 2, + 10, + 0.1049999997485429, + 99, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 25, + 0.44000000040978193, + 2, + 10, + 0.11000000010244548, + 99, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 25, + 0.4600000004284084, + 2, + 10, + 0.11499999975785613, + 99, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 25, + 0.48000000044703484, + 2, + 10, + 0.12000000011175871, + 99, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 25, + 0.5000000004656613, + 2, + 10, + 0.12499999976716936, + 99, + 1 + ] + } + } + }, + "101406": { + "Id": 101406, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101407": { + "Id": 101407, + "Name": "{RUBY_B#きしおう}騎士王{RUBY_E#}の{RUBY_B#しゅつじん}出陣{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、セイバーの攻撃力+#1[i]%#2[i]ターン継続。さらに「炉心共鳴」を#3[i]層獲得する。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 2, + 2 + ] + } + } + }, + "101408": { + "Id": 101408, + "Name": "{RUBY_B#かいほう}解放{RUBY_E#}されし{RUBY_B#おうごん}黄金{RUBY_E#}の{RUBY_B#おうけん}王権{RUBY_E#}", + "Desc": "「炉心共鳴」を#2[i]層獲得し、敵全体にセイバーの攻撃力#1[i]%分の風属性ダメージを与える。敵の数が2/1体以下の場合、さらに敵全体にセイバーの攻撃力#3[i]%/#4[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 2, + 0.7500000006984919, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9000000008381903, + 2, + 0.9000000008381903, + 0.4200000003911555 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0500000000465661, + 2, + 1.0500000000465661, + 0.49000000045634806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2000000001862645, + 2, + 1.2000000001862645, + 0.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.350000000325963, + 2, + 1.350000000325963, + 0.6300000005867332 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 2, + 1.5000000004656613, + 0.7000000006519258 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6500000006053597, + 2, + 1.6500000006053597, + 0.7700000007171184 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 2, + 1.800000000745058, + 0.840000000782311 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9500000008847564, + 2, + 1.9500000008847564, + 0.9100000008475035 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 2, + 2.1000000000931323, + 0.9800000009126961 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Maze.png", + "LevelUpSkillID": [ + 101407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903, + 0.20000000018626451 + ], + "PointID": 1014101, + "PointName": "{RUBY_B#りゅう}竜{RUBY_E#}の{RUBY_B#きし}騎士{RUBY_E#}", + "PointDesc": "セイバーの会心率+#1[i]%。戦闘に入る時および強化通常攻撃を発動する時、「魔力放出」を獲得する。セイバーが同時に「魔力放出」と「炉心共鳴」を持ち、かつ次に戦闘スキルを発動した後セイバーのEPを満タンに回復できる場合、「魔力放出」を消費しSPを1回復して、セイバーを即座に行動させる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 120, + 0.40000000037252903, + 0.40000000037252903 + ], + "PointID": 1014102, + "PointName": "{RUBY_B#みずうみ}湖{RUBY_E#}の{RUBY_B#しゅくふく}祝福{RUBY_E#}", + "PointDesc": "セイバーは最大EPを超えた分のEPを#1[i]まで蓄積できる。必殺技を発動した後、EPをクリアし、蓄積した分のEPを回復する。戦闘開始時、EPが#3[i]%未満の場合、#2[i]%まで回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ], + "PointID": 1014103, + "PointName": "{RUBY_B#ほし}星{RUBY_E#}の{RUBY_B#かんむり}冠{RUBY_E#}", + "PointDesc": "戦闘スキルを発動する時、セイバーの会心ダメージ+#1[i]%#2[i]ターン継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014201, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1014101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014203, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1014202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1014203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014205, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1014102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1014205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1014206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1014103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1014208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014210, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1014208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "風属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1014, + "Set4IDList": [ + 126, + 122, + 102 + ], + "Set2IDList": [ + 306, + 301, + 309 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 336, + 281 + ] + } + }, + "1015": { + "Name": "アーチャー", + "Desc": "過去から未来へと絶望は繰り返され、赤き外套に包まれた無数の理想は燃え尽きた。だが、残された灰燼に惑わされてはならない——\\n理想を騙り、偽りの美しき夢を紡ぐ者に抗い、彼は再び立ち上がる。この世にはびこる偽善と最後まで戦い抜くだろう。\\nどこに身を置こうとも、彼が正義の味方であることに変わりはないのだから。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "archer", + "SPNeed": 240, + "BaseType": "Rogue", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 101501, + "Name": "触れられなかった理想", + "Desc": "1ターンで戦闘スキルを#1[i]回発動した後、このターンでSPを消費せずに次の戦闘スキルを発動できる。", + "ParamList": [ + 3 + ] + }, + "2": { + "Id": 101502, + "Name": "叶えられなかった幸福", + "Desc": "必殺技によるダメージ+#1[i]%。", + "ParamList": [ + 1.2000000001862645 + ] + }, + "3": { + "Id": 101503, + "Name": "凡庸に甘んじない気概", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 101504, + "Name": "英雄とは程遠い生涯", + "Desc": "必殺技のターゲットが量子属性の弱点を持っていない場合、ターゲットに量子属性の弱点を付与し、その敵の量子属性耐性-#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "5": { + "Id": 101505, + "Name": "無銘なる孤影の守護", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 101506, + "Name": "果てなき彷徨う巡礼", + "Desc": "ターンが回ってきた時、SPを1回復する。自身の戦闘スキルで累積できるダメージアップの層数+#1[i]。戦闘スキルダメージは防御力を#2[i]%無視する。", + "ParamList": [ + 1, + 0.20000000018626451 + ] + } + }, + "Skills": { + "101501": { + "Id": 101501, + "Name": "干将・莫耶", + "Desc": "指定した敵単体にアーチャーの攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + } + } + }, + "101502": { + "Id": 101502, + "Name": "偽・螺旋剣", + "Desc": "「回路接続」状態に入る。指定した敵単体にアーチャーの攻撃力#1[i]%分の量子属性ダメージを与える。「回路接続」状態の時、戦闘スキルを発動してもターンは終了しない。また、アーチャーの戦闘スキルによるダメージ+#2[i]%、この効果は「回路接続」状態が解除されるまで最大で#3[i]層累積できる。戦闘スキルを#5[i]回発動した後、またはSPがなくなり再度戦闘スキルを発動できなくなった時、「回路接続」状態が解除され、ターンが終了する。また、各ウェーブの敵がすべて倒された後、「回路接続」状態が解除される。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 2, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.6000000005587935, + 2, + 1, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.2000000001862645, + 0.6400000005960464, + 2, + 1, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.400000000372529, + 0.6800000006332994, + 2, + 1, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.6000000005587935, + 0.7200000006705523, + 2, + 1, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.800000000745058, + 0.7600000007078052, + 2, + 1, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.8000000007450581, + 2, + 1, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.2500000002328306, + 0.8500000007916242, + 2, + 1, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.5000000004656613, + 0.9000000008381903, + 2, + 1, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.750000000698492, + 0.9500000008847564, + 2, + 1, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 1, + 2, + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.2000000001862645, + 1.040000000037253, + 2, + 1, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.400000000372529, + 1.0800000000745058, + 2, + 1, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.6000000005587935, + 1.1200000001117587, + 2, + 1, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.800000000745058, + 1.1600000001490116, + 2, + 1, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5, + 1.2000000001862645, + 2, + 1, + 5 + ] + } + } + }, + "101503": { + "Id": 101503, + "Name": "無限の剣製", + "Desc": "指定した敵単体にアーチャーの攻撃力#1[i]%分の量子属性ダメージを与え、チャージを#2[i]獲得する。チャージは最大で#3[i]まで累積できる。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7.2000000001862645, + 2, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7.680000000633299, + 2, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 8.160000000149012, + 2, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 8.640000000596046, + 2, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 9.120000000111759, + 2, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 9.600000000558794, + 2, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 10.200000000186265, + 2, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 10.800000000745058, + 2, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 11.400000000372529, + 2, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 12, + 2, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 12.480000000447035, + 2, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 12.96000000089407, + 2, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 13.440000000409782, + 2, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 13.920000000856817, + 2, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 14.400000000372529, + 2, + 4 + ] + } + } + }, + "101504": { + "Id": 101504, + "Name": "心眼(真)", + "Desc": "アーチャー以外の味方が敵に攻撃を行った後、アーチャーは直ちにチャージを1消費してメインターゲットに追加攻撃を行い、アーチャーの攻撃力#1[i]%分の量子属性ダメージを与える。さらにSPを1回復する。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3 + ] + } + } + }, + "101506": { + "Id": 101506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101507": { + "Id": 101507, + "Name": "千里眼", + "Desc": "敵を攻撃。戦闘に入った後、敵全体にアーチャーの攻撃力#1[i]%分の量子属性ダメージを与え、チャージを#2[i]獲得する。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "101509": { + "Id": 101509, + "Name": "終了", + "Desc": "「回路接続」状態を解除し、ラウンドを終了する。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Maze.png", + "LevelUpSkillID": [ + 101507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1015101, + "PointName": "投影魔術", + "PointDesc": "アーチャーがフィールド上にいる時、最大SP+#1[i]。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1015102, + "PointName": "正義の味方", + "PointDesc": "アーチャーが戦闘に入る時、チャージを#1[i]獲得する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 1, + 4 + ], + "PointID": 1015103, + "PointName": "守護者", + "PointDesc": "味方がSPを獲得した後、残りSPが#3[i]以上の場合、アーチャーの会心ダメージ+#1[i]%#2[i]ターン継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015201, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1015101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015203, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1015202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015204, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015205, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1015102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1015205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015207, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015208, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1015103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1015208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015210, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1015208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "量子属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1015, + "Set4IDList": [ + 108, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 336, + 281 + ] + } + }, + "1101": { + "Name": "ブローニャ", + "Desc": "ベロブルグの「大守護者」の継承者。\\n姫としての高貴さと、軍人としての堅実さを兼ね備えている。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "bronya", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 110101, + "Name": "{RUBY_B#えいき}英気{RUBY_E#}を{RUBY_B#やしな}養{RUBY_E#}う", + "Desc": "戦闘スキルを発動した時、#1[i]%固定確率でSPを1回復する、クールタイムは1ターン。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Id": 110102, + "Name": "{RUBY_B#きゅうこうぐん}急行軍{RUBY_E#}", + "Desc": "戦闘スキルを発動した時、指定された味方は行動した後に速度+#1[i]%、1ターン継続。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Id": 110103, + "Name": "{RUBY_B#いっせいしゃげき}一斉射撃{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 110104, + "Name": "{RUBY_B#ふい}不意{RUBY_E#}{RUBY_B#う}打{RUBY_E#}ち", + "Desc": "他の味方が、弱点が風属性の敵に通常攻撃を行った後、ブローニャは追加攻撃を行い、その敵に通常攻撃ダメージ#1[i]%分の風属性ダメージを与える、この効果はターンが回ってくるたびに1回発動できる。", + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Id": 110105, + "Name": "{RUBY_B#む}向{RUBY_E#}かう{RUBY_B#ところてき}所敵{RUBY_E#}なし", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 110106, + "Name": "{RUBY_B#きせいかんてん}気勢貫天{RUBY_E#}", + "Desc": "戦闘スキルが付与する、指定した味方の与ダメージアップ効果の継続時間+#1[i]ターン。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "110101": { + "Id": 110101, + "Name": "{RUBY_B#しっぷう}疾風{RUBY_E#}の{RUBY_B#だんがん}弾丸{RUBY_E#}", + "Desc": "指定した敵単体にブローニャの攻撃力#1[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110102": { + "Id": 110102, + "Name": "{RUBY_B#さくせんさいてんかい}作戦再展開{RUBY_E#}", + "Desc": "指定した味方単体のデバフを1つ解除し、その味方を即座に行動させ、与ダメージ+#1[i]%#3[i]ターン継続。\\n自身に対してこのスキルを発動した時、即時行動の効果は発動しない。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.33000000030733645, + 0, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3630000001285225, + 0, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3959999999497086, + 0, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.42899999977089465, + 0, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.46200000029057264, + 0, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.4950000001117587, + 0, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5362500005867332, + 0, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5775000003632158, + 0, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6187500008381903, + 0, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6600000006146729, + 0, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.693000000435859, + 0, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.726000000257045, + 0, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.7590000000782311, + 0, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7920000005979091, + 0, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8250000004190952, + 0, + 1, + 1 + ] + } + } + }, + "110103": { + "Id": 110103, + "Name": "ベロブルグ{RUBY_B#こうしんきょく}行進曲{RUBY_E#}", + "Desc": "味方全体の攻撃力+#1[i]%、会心ダメージがブローニャの会心ダメージ#2[f1]%分+#3[f1]%アップする、#4[i]ターン継続。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.33000000030733645, + 0.12000000011175871, + 0.12000000011175871, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.35200000018812716, + 0.12399999983608723, + 0.12799999956041574, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.37400000006891787, + 0.12799999956041574, + 0.1359999997075647, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3959999999497086, + 0.1319999999832362, + 0.14399999985471368, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4179999998304993, + 0.1359999997075647, + 0.15200000000186265, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.44000000040978193, + 0.14000000013038516, + 0.1600000001490116, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4675000002607703, + 0.1449999997857958, + 0.17000000015832484, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.4950000001117587, + 0.1500000001396984, + 0.18000000016763806, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.522500000661239, + 0.15499999979510903, + 0.1900000001769513, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5500000005122274, + 0.1600000001490116, + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5720000003930181, + 0.16399999987334013, + 0.20799999963492155, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5940000002738088, + 0.16799999959766865, + 0.21599999978207052, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6160000001545995, + 0.1720000000204891, + 0.22399999992921948, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6380000000353903, + 0.17599999974481761, + 0.23200000007636845, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6600000006146729, + 0.18000000016763806, + 0.24000000022351742, + 2 + ] + } + } + }, + "110104": { + "Id": 110104, + "Name": "{RUBY_B#せんじんいっぽ}先人一歩{RUBY_E#}", + "Desc": "通常攻撃を行った後、ブローニャの行動順#1[i]%早まる。", + "Type": null, + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375 + ] + } + } + }, + "110106": { + "Id": 110106, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110107": { + "Id": 110107, + "Name": "{RUBY_B#はた}旗{RUBY_E#}の{RUBY_B#した}下{RUBY_E#}で", + "Desc": "秘技を使用した後、次の戦闘開始時、味方全体の攻撃力+#1[i]%#2[i]ターン継続。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Maze.png", + "LevelUpSkillID": [ + 110107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101101, + "PointName": "{RUBY_B#ごうれい}号令{RUBY_E#}", + "PointDesc": "通常攻撃の会心率が100%まで上がる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2, + 0.20000000018626451 + ], + "PointID": 1101102, + "PointName": "{RUBY_B#じんち}陣地{RUBY_E#}", + "PointDesc": "戦闘開始時、味方全体の防御力+#2[i]%#1[i]ターン継続。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1101103, + "PointName": "{RUBY_B#ぐんぜい}軍勢{RUBY_E#}", + "PointDesc": "ブローニャがフィールド上にいる時、味方全体の与ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101201, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101202, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1101101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101203, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1101202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1101201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101205, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1101102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101206, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1101205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101207, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1101201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1101103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101209, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1101208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101210, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1101208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "風属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 72.6000000005588, + "DefenceAdd": 3.630000000586733, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 101.64000000059605, + "DefenceAdd": 3.630000000586733, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 3.630000000586733, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 159.72000000067055, + "DefenceAdd": 3.630000000586733, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 3.630000000586733, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 3.630000000586733, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 246.8400000007823, + "DefenceAdd": 3.630000000586733, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1101, + "Set4IDList": [ + 114, + 110, + 121 + ], + "Set2IDList": [ + 317, + 310, + 302 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 188 + ], + "LocalCriticalChance": 1 + } + }, + "1102": { + "Name": "ゼーレ", + "Desc": "地下反抗組織「地炎」の中堅、通称「バーブチカ」。\\nさっぱりした性格だが、繊細で敏感な一面もある。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "seele", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 110201, + "Name": "{RUBY_B#ざんじん}斬尽{RUBY_E#}", + "Desc": "残りHPが#1[i]%以下の敵にダメージを与える時、会心率+#2[i]%。", + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ] + }, + "2": { + "Id": 110202, + "Name": "{RUBY_B#ちょうぶ}蝶舞{RUBY_E#}", + "Desc": "戦闘スキルの加速効果が累積できるようになる、最大で#1[i]層累積できる。", + "ParamList": [ + 2 + ] + }, + "3": { + "Id": 110203, + "Name": "{RUBY_B#りょうらん}繚乱{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 110204, + "Name": "{RUBY_B#りゃくえい}掠影{RUBY_E#}", + "Desc": "ゼーレが敵を倒した時、EPを#1[i]回復する。", + "ParamList": [ + 15 + ] + }, + "5": { + "Id": 110205, + "Name": "{RUBY_B#ほうえい}鋒鋭{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 110206, + "Name": "{RUBY_B#りせき}離析{RUBY_E#}", + "Desc": "必殺技を発動した後、攻撃を受けた敵単体を「乱れ蝶」状態にする、#2[i]ターン継続。乱れ蝶状態の敵が攻撃を受けた後、ゼーレの必殺技ダメージ#1[i]%分の量子属性付加ダメージを1回受ける。その敵が、他の味方に「乱れ蝶」の付加ダメージを触発され倒された時、ゼーレの天賦は発動しない。\\nゼーレが戦闘不能状態になった時、敵の「乱れ蝶」状態が解除される。", + "ParamList": [ + 0.1500000001396984, + 1 + ] + } + }, + "Skills": { + "110201": { + "Id": 110201, + "Name": "{RUBY_B#きょうしゅう}強襲{RUBY_E#}", + "Desc": "指定した敵単体にゼーレの攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110202": { + "Id": 110202, + "Name": "{RUBY_B#かんじん}還刃{RUBY_E#}", + "Desc": "ゼーレの速度+#2[i]%#3[i]ターン継続。指定した敵単体にゼーレの攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323, + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2100000001955777, + 0.25000000023283064, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3200000002980232, + 0.25000000023283064, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4300000004004687, + 0.25000000023283064, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5400000005029142, + 0.25000000023283064, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6500000006053597, + 0.25000000023283064, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7875000005587935, + 0.25000000023283064, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9250000005122274, + 0.25000000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.0625000002328306, + 0.25000000023283064, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645, + 0.25000000023283064, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.31000000028871, + 0.25000000023283064, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4200000003911555, + 0.25000000023283064, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.530000000493601, + 0.25000000023283064, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.6400000005960464, + 0.25000000023283064, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.750000000698492, + 0.25000000023283064, + 2 + ] + } + } + }, + "110203": { + "Id": 110203, + "Name": "{RUBY_B#みだ}乱{RUBY_E#}れ{RUBY_B#ちょう}蝶{RUBY_E#}", + "Desc": "増幅状態に入り、指定した敵単体にゼーレの攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.5500000005122274 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.7200000006705523 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.890000000828877 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.0600000000558794 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.230000000214204 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.400000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.612500000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.825000000419095 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.037499999860302 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.250000000232831 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.59000000054948 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.93000000086613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.100000000093132 + ] + } + } + }, + "110204": { + "Id": 110204, + "Name": "{RUBY_B#さいげん}再現{RUBY_E#}", + "Desc": "通常攻撃、戦闘スキル、必殺技で敵を倒すと追加ターンを1獲得し、増幅状態に入る。増幅状態のゼーレの与ダメージ+#1[i]%#2[i]ターン継続。\\nゼーレの天賦「再現」で獲得した追加ターンの間に敵を倒した場合、この天賦は発動しない。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1 + ] + } + } + }, + "110206": { + "Id": 110206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110207": { + "Id": 110207, + "Name": "{RUBY_B#げんしん}幻身{RUBY_E#}", + "Desc": "秘技を使用した後、#1[i]秒のステルス状態になる。ステルス状態になると敵に発見されず、敵を先制攻撃して戦闘に入る時、ゼーレが増幅状態になる。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Maze.png", + "LevelUpSkillID": [ + 110207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1102101, + "PointName": "{RUBY_B#やこう}夜行{RUBY_E#}", + "PointDesc": "残りHPが#1[i]%以下の場合、敵に攻撃される確率ダウン。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1102102, + "PointName": "{RUBY_B#ざんれつ}斬裂{RUBY_E#}", + "PointDesc": "増幅状態の時、ゼーレの量子属性耐性貫通+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1102103, + "PointName": "さざ{RUBY_B#なみ}波{RUBY_E#}", + "PointDesc": "通常攻撃を行った後、ゼーレの次の行動順#1[i]%早まる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102202, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1102101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1102202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1102102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102206, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1102205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1102103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102209, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1102208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1102208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1102, + "Set4IDList": [ + 108, + 122, + 102 + ], + "Set2IDList": [ + 311, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1103": { + "Name": "セーバル", + "Desc": "ベロブルグの機械工、前職は建創者の技術部門の研究員。\\nジェパード・ランドゥーの姉だが、弟とはまったく異なる性格をしている。\\n大寒波が訪れる前に存在した「ロック」という古典音楽を熱愛している。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "serval", + "SPNeed": 100, + "BaseType": "Mage", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 110301, + "Name": "いつまでも{RUBY_B#な}鳴{RUBY_E#}り{RUBY_B#ひび}響{RUBY_E#}け", + "Desc": "通常攻撃は指定した敵に隣接するランダムな敵に、通常攻撃ダメージ#1[i]%分の雷属性ダメージを与える。", + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Id": 110302, + "Name": "アンコール!", + "Desc": "天賦による付加ダメージを1回発動するたびに、セーバルはEPを#1[i]回復する。", + "ParamList": [ + 4 + ] + }, + "3": { + "Id": 110303, + "Name": "{RUBY_B#き}聞{RUBY_E#}け、{RUBY_B#はぐるま}歯車{RUBY_E#}の{RUBY_B#こどう}鼓動{RUBY_E#}を", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 110304, + "Name": "{RUBY_B#そうおん}噪音{RUBY_E#}を{RUBY_B#な}鳴{RUBY_E#}らせ!", + "Desc": "必殺技を発動した時、#1[i]%基礎確率で感電状態でない敵を、戦闘スキルが与えるものと同じ感電状態にする。", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 110305, + "Name": "ベロブルグ{RUBY_B#さいきょうおん}最強音{RUBY_E#}!", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 110306, + "Name": "この{RUBY_B#いっきょく}一曲{RUBY_E#}、\\n{RUBY_B#てんきゅう}天穹{RUBY_E#}を{RUBY_B#つらぬ}貫{RUBY_E#}く!", + "Desc": "感電状態の敵に対するセーバルの与ダメージ+#1[i]%。", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "110301": { + "Id": 110301, + "Name": "{RUBY_B#らいめいおんかい}雷鳴音階{RUBY_E#}", + "Desc": "指定した敵単体にセーバルの攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110302": { + "Id": 110302, + "Name": "スパーク", + "Desc": "指定した敵単体にセーバルの攻撃力#1[i]%分の雷属性ダメージを与え、隣接する敵にセーバルの攻撃力#2[i]%分の雷属性ダメージを与える。さらに#3[i]%基礎確率で攻撃を受けた敵を感電状態にする、#4[i]ターン継続。\\n感電状態の敵はターンが回ってくるたびに、セーバルの攻撃力#5[i]%分の雷属性持続ダメージを受ける。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 0.3000000002793968, + 0.8000000007450581, + 2, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 0.33000000030733645, + 0.8000000007450581, + 2, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 0.3600000003352761, + 0.8000000007450581, + 2, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 0.3900000003632158, + 0.8000000007450581, + 2, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 0.4200000003911555, + 0.8000000007450581, + 2, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 0.45000000041909516, + 0.8000000007450581, + 2, + 0.62000000057742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 0.4875000002793968, + 0.8000000007450581, + 2, + 0.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 0.5250000001396984, + 0.8000000007450581, + 2, + 0.8000000007450581 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 0.5625000006984919, + 0.8000000007450581, + 2, + 0.9200000008568168 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.6000000005587935, + 0.8000000007450581, + 2, + 1.040000000037253 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 0.6300000005867332, + 0.8000000007450581, + 2, + 1.0919999999459833 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 0.6600000006146729, + 0.8000000007450581, + 2, + 1.1439999998547137 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 0.6900000006426126, + 0.8000000007450581, + 2, + 1.195999999763444 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 0.7200000006705523, + 0.8000000007450581, + 2, + 1.2479999996721745 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 0.7500000006984919, + 0.8000000007450581, + 2, + 1.3000000002793968 + ] + } + } + }, + "110303": { + "Id": 110303, + "Name": "{RUBY_B#きかい}機械{RUBY_E#}ブーム{RUBY_B#とうじょう}登場{RUBY_E#}!", + "Desc": "敵全体にセーバルの攻撃力#1[i]%分の雷属性ダメージを与え、敵の感電状態+#2[i]ターン。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 28, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0800000000745058, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1520000000018626, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2239999999292195, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2959999998565763, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3679999997839332, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.530000000493601, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.62000000057742, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.710000000661239, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.872000000672415, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.9440000005997717, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.015999999595806, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.087999999523163, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.1600000001490116, + 2 + ] + } + } + }, + "110304": { + "Id": 110304, + "Name": "{RUBY_B#じょうねつ}情熱{RUBY_E#}コード", + "Desc": "攻撃を行った後、すべての感電状態の敵にセーバルの攻撃力#1[i]%分の雷属性付加ダメージを与える。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "110306": { + "Id": 110306, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110307": { + "Id": 110307, + "Name": "おやすみ、ベロブルグ", + "Desc": "敵を攻撃。戦闘に入った後、ランダムな敵単体にセーバルの攻撃力#4[i]%分の雷属性ダメージを与え、#1[i]%基礎確率で敵単体それぞれに感電状態を付与する、#3[i]ターン継続。\\n感電状態の敵はターンが回ってくるたびに、セーバルの攻撃力#2[i]%分の雷属性持続ダメージを受ける。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 3, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Maze.png", + "LevelUpSkillID": [ + 110307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1103101, + "PointName": "ロック", + "PointDesc": "戦闘スキルを発動した時、攻撃を受けた敵が感電状態になる基礎確率+#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1103102, + "PointName": "{RUBY_B#でんしおん}電子音{RUBY_E#}", + "PointDesc": "戦闘開始時、EPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 2 + ], + "PointID": 1103103, + "PointName": "{RUBY_B#きょうねつ}狂熱{RUBY_E#}", + "PointDesc": "敵を倒した後、攻撃力+#1[i]%#2[i]ターン継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103201, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103202, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1103101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103203, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1103202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1103202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103205, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1103102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103206, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1103205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103207, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1103205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1103103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103209, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1103103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "効果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103210, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 88.80000000074506, + "AttackAdd": 4.440000000409782, + "DefenceBase": 51, + "DefenceAdd": 2.5500000005122274, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 124.32000000029802, + "AttackAdd": 4.440000000409782, + "DefenceBase": 71.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 159.8400000007823, + "AttackAdd": 4.440000000409782, + "DefenceBase": 91.80000000074506, + "DefenceAdd": 2.5500000005122274, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 195.36000000033528, + "AttackAdd": 4.440000000409782, + "DefenceBase": 112.20000000018626, + "DefenceAdd": 2.5500000005122274, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 230.88000000081956, + "AttackAdd": 4.440000000409782, + "DefenceBase": 132.6000000005588, + "DefenceAdd": 2.5500000005122274, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 266.40000000037253, + "AttackAdd": 4.440000000409782, + "DefenceBase": 153, + "DefenceAdd": 2.5500000005122274, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 301.9200000008568, + "AttackAdd": 4.440000000409782, + "DefenceBase": 173.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1103, + "Set4IDList": [ + 109, + 117, + 122 + ], + "Set2IDList": [ + 301, + 306, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 351, + 296 + ] + } + }, + "1104": { + "Name": "ジェパード", + "Desc": "シルバーメインの戍衛官、ベロブルグで指折りの戦士。\\n裏表がなく、几帳面で、仕事を怠けたことがない。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "gepard", + "SPNeed": 100, + "BaseType": "Knight", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 110401, + "Name": "{RUBY_B#ちゅうじつとっこう}忠実篤厚{RUBY_E#}", + "Desc": "戦闘スキルを発動した時、攻撃を受けた敵が凍結状態になる基礎確率+#1[i]%。", + "ParamList": [ + 0.3500000003259629 + ] + }, + "2": { + "Id": 110402, + "Name": "{RUBY_B#よかん}余寒{RUBY_E#}", + "Desc": "戦闘スキルで敵に与えた凍結状態が解除された後、敵の速度-#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 110403, + "Name": "{RUBY_B#えいごうふらく}永劫不落{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 110404, + "Name": "{RUBY_B#かっこ}確固{RUBY_E#}たる{RUBY_B#いし}意志{RUBY_E#}", + "Desc": "ジェパードがフィールド上にいる時、味方全体の効果抵抗+#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 110405, + "Name": "{RUBY_B#かんてつ}寒鉄{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}く{RUBY_B#こぶし}拳{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 110406, + "Name": "{RUBY_B#ふくつ}不屈{RUBY_E#}の{RUBY_B#けつい}決意{RUBY_E#}", + "Desc": "天賦発動時、ジェパードが即座に行動し、HPの回復量がさらに自身の最大HP#1[i]%分アップする。", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "110401": { + "Id": 110401, + "Name": "{RUBY_B#いちい}一意{RUBY_E#}の{RUBY_B#こぶし}拳{RUBY_E#}", + "Desc": "指定した敵単体にジェパードの攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110402": { + "Id": 110402, + "Name": "{RUBY_B#しんかん}震撼{RUBY_E#}の{RUBY_B#いちげき}一撃{RUBY_E#}", + "Desc": "指定した敵単体にジェパードの攻撃力#1[i]%分の氷属性ダメージを与え、#2[i]%基礎確率で攻撃を受けた敵を凍結状態にする、#3[i]ターン継続。\\n凍結状態の敵は行動できず、ターンが回ってくるたびにジェパードの攻撃力#4[i]%分の氷属性付加ダメージを受ける。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.6500000006053597, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.6500000006053597, + 1, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6500000006053597, + 1, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 1, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.6500000006053597, + 1, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6500000006053597, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597, + 1, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.6500000006053597, + 1, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.6500000006053597, + 1, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.6500000006053597, + 1, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.6500000006053597, + 1, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.6500000006053597, + 1, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.6500000006053597, + 1, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.6500000006053597, + 1, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 0.6500000006053597, + 1, + 0.7500000006984919 + ] + } + } + }, + "110403": { + "Id": 110403, + "Name": "{RUBY_B#えいきつ}永屹{RUBY_E#}の{RUBY_B#かべ}壁{RUBY_E#}", + "Desc": "味方全体にジェパードの防御力#1[i]%+#3[i]の耐久値を持つバリアを付与する、#2[i]ターン継続。", + "Type": "Ultra", + "Tag": "Defence", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 150 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.31875000055879354, + 3, + 240 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3375000001396984, + 3, + 307.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.35625000041909516, + 3, + 375 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.375, + 3, + 420 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3900000003632158, + 3, + 465 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4050000000279397, + 3, + 498.7500000006985 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.4200000003911555, + 3, + 532.5000000004657 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.43500000005587935, + 3, + 566.2500000002328 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.45000000041909516, + 3, + 600 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.46500000008381903, + 3, + 633.7500000006985 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.48000000044703484, + 3, + 667.5000000004657 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4950000001117587, + 3, + 701.2500000002328 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5100000004749745, + 3, + 735 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5250000001396984, + 3, + 768.7500000006985 + ] + } + } + }, + "110404": { + "Id": 110404, + "Name": "{RUBY_B#ふくつ}不屈{RUBY_E#}の{RUBY_B#たいく}体躯{RUBY_E#}", + "Desc": "ジェパードはHPが0になる攻撃を受けても戦闘不能状態にならず、HPを最大HP#1[i]%分回復する。この効果は一度の戦闘で1回まで発動できる。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + }, + "110406": { + "Id": 110406, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110407": { + "Id": 110407, + "Name": "{RUBY_B#じんしん}仁心{RUBY_E#}の{RUBY_B#あかし}証{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、味方全体にジェパードの防御力#1[i]%+#3[i]の耐久値を持つバリアを付与する、#2[i]ターン継続。", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 2, + 150 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Maze.png", + "LevelUpSkillID": [ + 110407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1104101, + "PointName": "{RUBY_B#ごうちょく}剛直{RUBY_E#}", + "PointDesc": "ジェパードが敵に攻撃される確率がアップする。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1104201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104102, + "PointName": "{RUBY_B#とうそつ}統率{RUBY_E#}", + "PointDesc": "「不屈の体躯」を発動した後、ジェパードのEPを100%まで回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1104201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1104103, + "PointName": "{RUBY_B#せんい}戦意{RUBY_E#}", + "PointDesc": "ジェパードの攻撃力が自身の防御力#1[i]%分アップ、ターンが回ってくるたびに更新される。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104201, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104202, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1104101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104203, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1104202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104205, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1104102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104206, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1104205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104207, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1104103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104209, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1104208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "効果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104210, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1104208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "氷属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 4.455000000074506, + "HPBase": 190.0800000000745, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 4.455000000074506, + "HPBase": 266.1119999999646, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 160.3800000003539, + "DefenceAdd": 4.455000000074506, + "HPBase": 342.1439999998547, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 196.02000000001863, + "DefenceAdd": 4.455000000074506, + "HPBase": 418.1759999997448, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 231.66000000061467, + "DefenceAdd": 4.455000000074506, + "HPBase": 494.2079999996349, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 267.3000000002794, + "DefenceAdd": 4.455000000074506, + "HPBase": 570.2400000002235, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 302.94000000087544, + "DefenceAdd": 4.455000000074506, + "HPBase": 646.2720000001136, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1104, + "Set4IDList": [ + 103, + 106, + 114 + ], + "Set2IDList": [ + 304, + 310, + 317 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusProbabilityBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 285, + 221 + ] + } + }, + "1105": { + "Name": "ナターシャ", + "Desc": "べロブルグ下層部の医者、子供たちの面倒を見ている。\\n穏やかで親しみやすい性格だが、怖い一面もある。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "natasha", + "SPNeed": 90, + "BaseType": "Priest", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 110501, + "Name": "{RUBY_B#やくりへんしき}薬理遍識{RUBY_E#}", + "Desc": "攻撃を受けた後、残りHPが#1[i]%以下の場合、自身に治癒を1回行い、自身の最大HP#2[i]%+#3[i]のHPを回復する。この効果は一度の戦闘で1回まで発動できる。", + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984, + 400 + ] + }, + "2": { + "Id": 110502, + "Name": "{RUBY_B#りんしょうけんがく}臨床研学{RUBY_E#}", + "Desc": "必殺技を発動した時、残りHPが#1[i]%以下の味方に#2[i]ターン継続する持続治癒効果を付与する。その味方のターンが回ってきた時、ナターシャの最大HP#3[i]%+#4[i]のHPを回復する。", + "ParamList": [ + 0.3000000002793968, + 1, + 0.060000000055879354, + 160 + ] + }, + "3": { + "Id": 110503, + "Name": "{RUBY_B#いんびょうとうやく}因病投薬{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 110504, + "Name": "{RUBY_B#みょうしゅかいしゅん}妙手回春{RUBY_E#}", + "Desc": "攻撃を受けた後、さらにEPを#1[i]回復する。", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 110505, + "Name": "{RUBY_B#みびょうりょうじ}未病療治{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 110506, + "Name": "{RUBY_B#いしゃじんしん}医者仁心{RUBY_E#}", + "Desc": "通常攻撃を行った時、さらにナターシャの最大HP#1[i]%分の物理属性ダメージを与える。", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "110501": { + "Id": 110501, + "Name": "{RUBY_B#じしん}慈心{RUBY_E#}の{RUBY_B#うらがわ}裏側{RUBY_E#}", + "Desc": "指定した敵単体にナターシャの攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110502": { + "Id": 110502, + "Name": "{RUBY_B#あい}愛{RUBY_E#}、{RUBY_B#きゅうさい}救済{RUBY_E#}と{RUBY_B#せんたく}選択{RUBY_E#}", + "Desc": "指定した味方単体のHPをナターシャの最大HP#1[f1]%+#4[i]回復し、その味方のターンが回ってくるたびに、ナターシャの最大HP#2[f1]%+#5[i]のHPを回復させる、#3[i]ターン継続。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07000000006519258, + 0.04799999948590994, + 2, + 70, + 48 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07437500054948032, + 0.05099999997764826, + 2, + 112, + 76.80000000074506 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07875000033527613, + 0.05399999977089465, + 2, + 143.50000000046566, + 98.40000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.08312500012107193, + 0.056999999564141035, + 2, + 175, + 120 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08749999990686774, + 0.060000000055879354, + 2, + 196, + 134.40000000037253 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09100000001490116, + 0.06240000016987324, + 2, + 217, + 148.80000000074506 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09450000012293458, + 0.06480000028386712, + 2, + 232.7500000006985, + 159.6000000005588 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09799999953247607, + 0.06719999969936907, + 2, + 248.50000000046566, + 170.40000000037253 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10150000033900142, + 0.06959999981336296, + 2, + 264.25000000023283, + 181.20000000018626 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1049999997485429, + 0.07199999992735684, + 2, + 280, + 192 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10849999985657632, + 0.07440000004135072, + 2, + 295.7500000006985, + 202.80000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11199999996460974, + 0.0768000001553446, + 2, + 311.50000000046566, + 213.6000000005588 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11550000007264316, + 0.07919999957084656, + 2, + 327.25000000023283, + 224.40000000037253 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.11899999948218465, + 0.08160000038333237, + 2, + 343, + 235.20000000018626 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12250000028871, + 0.08399999979883432, + 2, + 358.7500000006985, + 246 + ] + } + } + }, + "110503": { + "Id": 110503, + "Name": "{RUBY_B#しんせい}新生{RUBY_E#}の{RUBY_B#れい}礼{RUBY_E#}", + "Desc": "味方全体のHPをナターシャの最大HP#1[f1]%+#2[i]回復する。", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09199999994598329, + 92 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.09775000042282045, + 147.20000000018626 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10350000020116568, + 188.6000000005588 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1092499999795109, + 230 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11499999975785613, + 257.6000000005588 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.11959999985992908, + 285.20000000018626 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.12419999996200204, + 305.9000000008382 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.128800000064075, + 326.6000000005588 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13340000016614795, + 347.3000000002794 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.13799999956972897, + 368 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.14260000037029386, + 388.7000000006519 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.14719999977387488, + 409.40000000037253 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.15180000057443976, + 430.10000000009313 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1563999999780208, + 450.80000000074506 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.16100000008009374, + 471.50000000046566 + ] + } + } + }, + "110504": { + "Id": 110504, + "Name": "{RUBY_B#いのち}生命{RUBY_E#}の{RUBY_B#かがや}輝{RUBY_E#}き", + "Desc": "残りHPが#1[i]%以下の味方に治癒を行う時、ナターシャの治癒量+#2[i]%、この効果は持続治癒効果にも有効。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.6250000002328306 + ] + } + } + }, + "110506": { + "Id": 110506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110507": { + "Id": 110507, + "Name": "{RUBY_B#さいみんけんきゅう}催眠研究{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、ランダムな敵単体にナターシャの攻撃力#4[i]%分の物理属性ダメージを与え、#1[i]%基礎確率で敵単体それぞれを虚弱状態にする。\\n虚弱状態の敵の、味方への与ダメージ-#2[i]%#3[i]ターン継続。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.3000000002793968, + 1, + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Maze.png", + "LevelUpSkillID": [ + 110507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1105101, + "PointName": "{RUBY_B#じょかん}舒緩{RUBY_E#}", + "PointDesc": "戦闘スキルを発動した時、指定した味方単体のデバフ#1[i]つ解除する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1105102, + "PointName": "{RUBY_B#いしゃ}医者{RUBY_E#}", + "PointDesc": "ナターシャの治癒量+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1105103, + "PointName": "{RUBY_B#せっせい}摂生{RUBY_E#}", + "PointDesc": "戦闘スキルの持続回復効果の継続時間+#1[i]ターン。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105201, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105202, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1105101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105203, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1105202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1105203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105205, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1105102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105206, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1105205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105207, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1105206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1105103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105209, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1105103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "効果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105210, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 64.80000000074506, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 69, + "DefenceAdd": 3.450000000419095, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 90.72000000067055, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 96.6000000005588, + "DefenceAdd": 3.450000000419095, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 116.64000000059605, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 124.20000000018626, + "DefenceAdd": 3.450000000419095, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 151.80000000074506, + "DefenceAdd": 3.450000000419095, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 168.48000000044703, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 179.40000000037253, + "DefenceAdd": 3.450000000419095, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 194.40000000037253, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 207, + "DefenceAdd": 3.450000000419095, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 220.32000000029802, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 234.6000000005588, + "DefenceAdd": 3.450000000419095, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1105, + "Set4IDList": [ + 101, + 114, + 121 + ], + "Set2IDList": [ + 302, + 317, + 310 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1106": { + "Name": "ペラ", + "Desc": "シルバーメインの情報官。\\n真面目な性格で、シルバーメインのメンバーたちから尊敬されている。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "pela", + "SPNeed": 110, + "BaseType": "Warlock", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 110601, + "Name": "{RUBY_B#しょうり}勝利{RUBY_E#}のフィードバック", + "Desc": "敵が倒された時、ペラはEPを#1[i]回復する。", + "ParamList": [ + 5 + ] + }, + "2": { + "Id": 110602, + "Name": "{RUBY_B#や}止{RUBY_E#}まぬ{RUBY_B#こうしん}行進{RUBY_E#}", + "Desc": "戦闘スキルを発動してバフを解除する時、速度+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.10000000009313226, + 2, + 1 + ] + }, + "3": { + "Id": 110603, + "Name": "{RUBY_B#せいあつ}制圧{RUBY_E#}エスカレート", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 110604, + "Name": "{RUBY_B#かんぜんかいせき}完全解析{RUBY_E#}", + "Desc": "戦闘スキルを発動した時、#1[i]%基礎確率で敵の氷属性耐性-#2[i]%#3[i]ターン継続。", + "ParamList": [ + 1, + 0.12000000011175871, + 2 + ] + }, + "5": { + "Id": 110605, + "Name": "{RUBY_B#れいどぼうがい}零度妨害{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 110606, + "Name": "{RUBY_B#ひじゃくついげき}疲弱追撃{RUBY_E#}", + "Desc": "攻撃を行った後、敵がデバフ状態の場合、ペラの攻撃力#1[i]%分の氷属性付加ダメージを与える。", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "110601": { + "Id": 110601, + "Name": "{RUBY_B#ひょうてんそげき}氷点狙撃{RUBY_E#}", + "Desc": "指定した敵単体にペラの攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110602": { + "Id": 110602, + "Name": "{RUBY_B#ていおんぼうがい}低温妨害{RUBY_E#}", + "Desc": "指定した敵単体のバフ#2[i]つ解除し、ペラの攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0500000000465661, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.154999999795109, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2600000002421439, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3649999999906868, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.4700000004377216, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5750000001862645, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.706250000745058, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.8375000006053597, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9687500011641532, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.204999999841675, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.31000000028871, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.415000000037253, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5200000004842877, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6250000002328306, + 1 + ] + } + } + }, + "110603": { + "Id": 110603, + "Name": "{RUBY_B#りょういきせいあつ}領域制圧{RUBY_E#}", + "Desc": "#1[i]%基礎確率で敵単体それぞれを「一般解」状態にし、敵全体にペラの攻撃力#4[i]%分の氷属性ダメージを与える。\\n「一般解」状態の敵の防御力-#2[i]%#3[i]ターン継続。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.3000000002793968, + 2, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.31000000028871, + 2, + 0.6400000005960464 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.3200000002980232, + 2, + 0.6800000006332994 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.33000000030733645, + 2, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.3400000003166497, + 2, + 0.7600000007078052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.3500000003259629, + 2, + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.3625000005122274, + 2, + 0.8500000007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.375, + 2, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.3875000001862645, + 2, + 0.9500000008847564 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.40000000037252903, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.41000000038184226, + 2, + 1.040000000037253 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.4200000003911555, + 2, + 1.0800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.4300000004004687, + 2, + 1.1200000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.44000000040978193, + 2, + 1.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.45000000041909516, + 2, + 1.2000000001862645 + ] + } + } + }, + "110604": { + "Id": 110604, + "Name": "データ{RUBY_B#さいしゅ}採取{RUBY_E#}", + "Desc": "攻撃を行った後、敵にデバフがある場合、ペラはさらにEPを#1[f1]回復する。この効果は1回の攻撃で1回まで発動できる。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "110606": { + "Id": 110606, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110607": { + "Id": 110607, + "Name": "{RUBY_B#せんてひっしょう}先手必勝{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、ランダムな敵単体にペラの攻撃力#4[i]%分の氷属性ダメージを与え、#1[i]%基礎確率で敵単体それぞれの防御力-#2[i]%#3[i]ターン継続。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451, + 2, + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Maze.png", + "LevelUpSkillID": [ + 110607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1106101, + "PointName": "{RUBY_B#つうげき}痛撃{RUBY_E#}", + "PointDesc": "デバフ状態の敵に対して与ダメージ+#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1106102, + "PointName": "{RUBY_B#ひさく}秘策{RUBY_E#}", + "PointDesc": "ペラがフィールド上にいる時、味方全体の効果命中+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1106103, + "PointName": "{RUBY_B#ついげきせんめつ}追撃殲滅{RUBY_E#}", + "PointDesc": "戦闘スキルを発動してバフを解除した時、次の攻撃の与ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106201, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1106101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106203, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1106202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106204, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1106203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106205, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1106102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106206, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1106205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106207, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1106206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106208, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1106103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106209, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1106103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106210, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1106201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "氷属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 74.40000000037253, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 63, + "DefenceAdd": 3.1500000001396984, + "HPBase": 134.40000000037253, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 104.16000000014901, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 88.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 188.160000000149, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.92000000085682, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 113.40000000037253, + "DefenceAdd": 3.1500000001396984, + "HPBase": 241.92000000085682, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 163.6800000006333, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 3.1500000001396984, + "HPBase": 295.6800000006333, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 193.44000000040978, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 163.80000000074506, + "DefenceAdd": 3.1500000001396984, + "HPBase": 349.4400000004098, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 223.20000000018626, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 189, + "DefenceAdd": 3.1500000001396984, + "HPBase": 403.20000000018626, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 252.96000000089407, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 214.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 456.96000000089407, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1106, + "Set4IDList": [ + 104, + 106, + 110 + ], + "Set2IDList": [ + 312, + 310, + 308 + ], + "PropertyList3": [ + "StatusProbabilityBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "StatusProbabilityBase", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 318, + 267 + ] + } + }, + "1107": { + "Name": "クラーラ", + "Desc": "機械と一緒に暮らしている流浪の少女。\\n内向的で優しく、純粋な心を持っている。\\n下層部の人々が互いの「家族」になることを願っている。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "clara", + "SPNeed": 110, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 110701, + "Name": "{RUBY_B#おお}大{RUBY_E#}きな{RUBY_B#うし}後{RUBY_E#}ろ{RUBY_B#すがた}姿{RUBY_E#}", + "Desc": "戦闘スキルを発動した後、敵に付与した「反撃の印」が失効しなくなる。", + "ParamList": [] + }, + "2": { + "Id": 110702, + "Name": "ぎゅっとした{RUBY_B#ほうよう}抱擁{RUBY_E#}", + "Desc": "必殺技を発動した後、攻撃力+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 110703, + "Name": "{RUBY_B#れいてつ}冷徹{RUBY_E#}な{RUBY_B#てっこう}鉄甲{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 110704, + "Name": "{RUBY_B#かぞく}家族{RUBY_E#}の{RUBY_B#あたた}温{RUBY_E#}かさ", + "Desc": "攻撃を受けた後、クラーラの受けるダメージ-#1[i]%、次のターンが回ってくるまで継続。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 110705, + "Name": "{RUBY_B#ちい}小{RUBY_E#}さな{RUBY_B#やくそく}約束{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 110706, + "Name": "{RUBY_B#なが}長{RUBY_E#}い{RUBY_B#あいだ}間{RUBY_E#}の{RUBY_B#つ}付{RUBY_E#}き{RUBY_B#そ}添{RUBY_E#}い", + "Desc": "他の味方が攻撃された後も、スヴァローグは#1[i]%固定確率で攻撃者にカウンターを行い、その敵に「反撃の印」を付与する。必殺技を発動した時、さらに強化反撃の回数+#2[i]。", + "ParamList": [ + 0.5000000004656613, + 1 + ] + } + }, + "Skills": { + "110701": { + "Id": 110701, + "Name": "クラーラもお{RUBY_B#てつだ}手伝{RUBY_E#}いします", + "Desc": "指定した敵単体にクラーラの攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110702": { + "Id": 110702, + "Name": "スヴァローグが{RUBY_B#み}見{RUBY_E#}てる", + "Desc": "敵全体にクラーラの攻撃力#1[i]%分の物理属性ダメージを与える。スヴァローグに「反撃の印」を付与された敵に対し、さらにクラーラの攻撃力#2[i]%分の物理属性ダメージを与える。\\n戦闘スキルを発動した後、すべての「反撃の印」が失効する。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 1.5000000004656613 + ] + } + } + }, + "110703": { + "Id": 110703, + "Name": "{RUBY_B#めいれい}命令{RUBY_E#}じゃなくて{RUBY_B#やくそく}約束{RUBY_E#}", + "Desc": "必殺技を発動した後、さらにクラーラの受けるダメージ-#4[i]%、敵に攻撃される確率が大アップする、#3[i]ターン継続。\\nスヴァローグのカウンターを強化。任意の味方が攻撃を受けた後、スヴァローグが攻撃者にカウンターを行い、カウンターのダメージ倍率+#2[i]%、隣接する敵にメインターゲットに与えるダメージ50%分のダメージを与える。強化効果は#5[i]回発動できる。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5, + 0.9600000008940697, + 2, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5, + 1.023999999742955, + 2, + 0.1600000001490116, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5, + 1.0879999995231628, + 2, + 0.17000000015832484, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 5, + 1.1520000000018626, + 2, + 0.18000000016763806, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 5, + 1.2159999997820705, + 2, + 0.1900000001769513, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5, + 1.2800000002607703, + 2, + 0.20000000018626451, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5, + 1.3600000003352761, + 2, + 0.21250000037252903, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 5, + 1.440000000409782, + 2, + 0.2249999998603016, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 5, + 1.5200000004842877, + 2, + 0.23750000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5, + 1.6000000005587935, + 2, + 0.25000000023283064, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 5, + 1.6640000003390014, + 2, + 0.26000000024214387, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 5, + 1.7280000001192093, + 2, + 0.2700000002514571, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 5, + 1.792000000597909, + 2, + 0.2800000002607703, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5, + 1.856000000378117, + 2, + 0.29000000027008355, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5, + 1.9200000008568168, + 2, + 0.3000000002793968, + 2 + ] + } + } + }, + "110704": { + "Id": 110704, + "Name": "{RUBY_B#かぞく}家族{RUBY_E#}なんだから", + "Desc": "クラーラはスヴァローグの保護により受けるダメージ-#3[i]%。クラーラを攻撃した敵に対し、スヴァローグが「反撃の印」を付与してカウンターし、クラーラの攻撃力#2[i]%分の物理属性ダメージを与える。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": 25, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.8000000007450581, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.8800000008195639, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.9600000008940697, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 1.040000000037253, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 1.1200000001117587, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1.2000000001862645, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 1.3000000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 1.400000000372529, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 1.5000000004656613, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 1.6800000006332994, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 1.7600000007078052, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 1.840000000782311, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 1.9200000008568168, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 2, + 0.10000000009313226 + ] + } + } + }, + "110706": { + "Id": 110706, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110707": { + "Id": 110707, + "Name": "{RUBY_B#しょうり}勝利{RUBY_E#}の{RUBY_B#ちい}小{RUBY_E#}さな{RUBY_B#たいか}対価{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、クラーラが敵に攻撃される確率がアップする、#1[i]ターン継続。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 5 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Maze.png", + "LevelUpSkillID": [ + 110707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1107101, + "PointName": "{RUBY_B#かぞく}家族{RUBY_E#}", + "PointDesc": "攻撃を受けた時、#1[i]%固定確率で自身のデバフを1つ解除する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1107102, + "PointName": "{RUBY_B#しゅご}守護{RUBY_E#}", + "PointDesc": "行動制限系デバフに抵抗する確率+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1107103, + "PointName": "{RUBY_B#ふくしゅう}復讐{RUBY_E#}", + "PointDesc": "スヴァローグのカウンターの与ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107202, + "PointName": "ダメージ強化・物理", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1107101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.031999999890103936, + "Name": "物理属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1107202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1107203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1107102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107206, + "PointName": "ダメージ強化・物理", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1107205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.04799999948590994, + "Name": "物理属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1107206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1107103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107209, + "PointName": "ダメージ強化・物理", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1107208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.06399999978020787, + "Name": "物理属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1107208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 100.32000000029802, + "AttackAdd": 5.015999999595806, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 140.44799999985844, + "AttackAdd": 5.015999999595806, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 180.57600000011735, + "AttackAdd": 5.015999999595806, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 220.70400000037625, + "AttackAdd": 5.015999999595806, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 260.83200000063516, + "AttackAdd": 5.015999999595806, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 300.96000000089407, + "AttackAdd": 5.015999999595806, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 341.08799999952316, + "AttackAdd": 5.015999999595806, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1107, + "Set4IDList": [ + 105, + 113, + 115 + ], + "Set2IDList": [ + 306, + 315, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 331, + 277 + ] + } + }, + "1108": { + "Name": "サンポ", + "Desc": "地上と地下を行き来する商人。\\n馴れ馴れしく、情熱的でユーモアがあり、いつも道化を演じている。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "sampo", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 110801, + "Name": "{RUBY_B#ねあ}値上{RUBY_E#}げする{RUBY_B#あい}愛{RUBY_E#}", + "Desc": "戦闘スキルを発動した時、さらにランダムな敵単体にダメージを#1[i]回与える。", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 110802, + "Name": "{RUBY_B#ねつじょう}熱情{RUBY_E#}はうつる", + "Desc": "風化状態の敵が倒された時、#1[i]%基礎確率で敵全体に、天賦と同じ風化状態を#2[i]層付与する。", + "ParamList": [ + 1, + 1 + ] + }, + "3": { + "Id": 110803, + "Name": "{RUBY_B#おおもう}大儲{RUBY_E#}け!", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 110804, + "Name": "{RUBY_B#あい}愛{RUBY_E#}する{RUBY_B#ほど}程{RUBY_E#}{RUBY_B#うら}恨{RUBY_E#}む", + "Desc": "戦闘スキルが風化状態#1[i]層以上の敵に命中した時、その敵が受けている風化状態が本来のダメージ#2[i]%分のダメージを発生する。", + "ParamList": [ + 5, + 0.0800000000745058 + ] + }, + "5": { + "Id": 110805, + "Name": "{RUBY_B#ちょうおおもう}超大儲{RUBY_E#}け!", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 110806, + "Name": "{RUBY_B#しょうひ}消費{RUBY_E#}のアップグレード", + "Desc": "天賦が付与した風化状態のダメージ倍率+#1[i]%。", + "ParamList": [ + 0.1500000001396984 + ] + } + }, + "Skills": { + "110801": { + "Id": 110801, + "Name": "{RUBY_B#まばゆ}眩{RUBY_E#}い{RUBY_B#はもん}刃紋{RUBY_E#}", + "Desc": "指定した敵単体にサンポの攻撃力#1[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110802": { + "Id": 110802, + "Name": "{RUBY_B#はんぷくよこと}反復横跳{RUBY_E#}びの{RUBY_B#あい}愛{RUBY_E#}", + "Desc": "指定した敵単体にサンポの攻撃力#2[i]%分の風属性ダメージを与え、さらに#1[i]ヒットする。1ヒットごとにランダムな敵単体にサンポの攻撃力#2[i]%分の風属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4, + 0.2800000002607703 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 4, + 0.3079999997280538 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 4, + 0.3359999998938292 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 0.36400000005960464 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4, + 0.39200000022538006 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 4, + 0.4200000003911555 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4, + 0.4550000000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4, + 0.49000000045634806 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4, + 0.5250000001396984 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.5600000005215406 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4, + 0.5879999999888241 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4, + 0.6160000001545995 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4, + 0.644000000320375 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4, + 0.6720000004861504 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4, + 0.7000000006519258 + ] + } + } + }, + "110803": { + "Id": 110803, + "Name": "サプライズボックス", + "Desc": "敵全体にサンポの攻撃力#1[i]%分の風属性ダメージを与え、#4[i]%基礎確率で攻撃を受けた敵の受ける持続ダメージ+#2[i]%#3[i]ターン継続。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.20000000018626451, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 0.21000000019557774, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 0.22000000020489097, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 0.2300000002142042, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 0.24000000022351742, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 0.25000000023283064, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 0.26250000041909516, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 0.27499999990686774, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 0.28750000009313226, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.3000000002793968, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 0.31000000028871, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 0.3200000002980232, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 0.33000000030733645, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 0.3400000003166497, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 0.3500000003259629, + 2, + 1 + ] + } + } + }, + "110804": { + "Id": 110804, + "Name": "{RUBY_B#かぜ}風{RUBY_E#}を{RUBY_B#き}切{RUBY_E#}り{RUBY_B#さ}裂{RUBY_E#}く{RUBY_B#ひしゅ}匕首{RUBY_E#}", + "Desc": "サンポの攻撃が敵に命中した後、#1[i]%基礎確率で敵を風化状態にする、#3[i]ターン継続。\\n風化状態の敵はターンが回ってくるたびに、サンポの攻撃力#2[i]%分の風属性持続ダメージを受ける。風化状態は最大で#4[i]層累積できる。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6500000006053597, + 0.20000000018626451, + 3, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6500000006053597, + 0.22000000020489097, + 3, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6500000006053597, + 0.24000000022351742, + 3, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.26000000024214387, + 3, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6500000006053597, + 0.2800000002607703, + 3, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6500000006053597, + 0.31000000028871, + 3, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0.3500000003259629, + 3, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6500000006053597, + 0.40000000037252903, + 3, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597, + 0.4600000004284084, + 3, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6500000006053597, + 0.5200000004842877, + 3, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6500000006053597, + 0.546000000089407, + 3, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6500000006053597, + 0.5720000003930181, + 3, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6500000006053597, + 0.5979999999981374, + 3, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6500000006053597, + 0.6240000003017485, + 3, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6500000006053597, + 0.6500000006053597, + 3, + 5 + ] + } + } + }, + "110806": { + "Id": 110806, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110807": { + "Id": 110807, + "Name": "{RUBY_B#いちばん}一番{RUBY_E#}の{RUBY_B#かがや}輝{RUBY_E#}きをあなたへ", + "Desc": "秘技を使用した後、一定範囲内の敵を#1[i]秒間のブラインド状態にする。ブラインド状態の敵は味方を発見できない。\\nブラインド状態の敵を先制攻撃して戦闘に入った時、#2[i]%固定確率で、敵単体それぞれの行動順#3[i]%遅延させる。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 0.25000000023283064 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Maze.png", + "LevelUpSkillID": [ + 110807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1108102, + "PointName": "{RUBY_B#よび}予備{RUBY_E#}プラン", + "PointDesc": "必殺技を発動した時、さらにEPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1108103, + "PointName": "{RUBY_B#ひ}火{RUBY_E#}に{RUBY_B#あぶら}油{RUBY_E#}", + "PointDesc": "サンポに対する、風化状態の敵の与ダメージ-#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108202, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1108101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1108202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1108203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1108102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108206, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1108205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1108206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1108103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108209, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1108103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "効果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1108201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1108101, + "PointName": "ワナ", + "PointDesc": "天賦による敵の風化状態の継続時間+#1[i]ターン。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 117.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 151.20000000018626, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 184.80000000074506, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 218.40000000037253, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 252, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 285.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1108, + "Set4IDList": [ + 110, + 116, + 102 + ], + "Set2IDList": [ + 301, + 303, + 311 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 316, + 263 + ] + } + }, + "1109": { + "Name": "フック", + "Desc": "地下冒険団「モグラ党」の親分(自称)。\\n自由を愛する彼女は、日々の生活を冒険の一幕だと考えている。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "hook", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 110901, + "Name": "{RUBY_B#はやねはやお}早寝早起{RUBY_E#}きは{RUBY_B#けんこうてき}健康的{RUBY_E#}", + "Desc": "強化戦闘スキルによるダメージ+#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 110902, + "Name": "よく{RUBY_B#た}食{RUBY_E#}べて{RUBY_B#せいちょう}成長{RUBY_E#}する", + "Desc": "戦闘スキルが付与する燃焼状態の継続時間+#1[i]ターン。", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 110903, + "Name": "{RUBY_B#す}好{RUBY_E#}き{RUBY_B#きら}嫌{RUBY_E#}いはしない", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 110904, + "Name": "うっかりしても{RUBY_B#だいじょうぶ}大丈夫{RUBY_E#}", + "Desc": "天賦発動時、#1[i]%基礎確率で指定した敵に隣接する敵を、戦闘スキルが与えるものと同じ燃焼状態にする。", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 110905, + "Name": "モグラ{RUBY_B#とう}党{RUBY_E#}は{RUBY_B#な}名{RUBY_E#}を{RUBY_B#のこ}遺{RUBY_E#}す", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 110906, + "Name": "{RUBY_B#わる}悪{RUBY_E#}い{RUBY_B#やつ}奴{RUBY_E#}らはお{RUBY_B#しお}仕置{RUBY_E#}きだ", + "Desc": "燃焼状態の敵に対するフックの与ダメージ+#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "110901": { + "Id": 110901, + "Name": "おい!{RUBY_B#ひ}火{RUBY_E#}の{RUBY_B#もと}元{RUBY_E#}に{RUBY_B#き}気{RUBY_E#}をつけな", + "Desc": "指定した敵単体にフックの攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110902": { + "Id": 110902, + "Name": "おい!フックを{RUBY_B#おぼ}覚{RUBY_E#}えてるか?", + "Desc": "指定した敵単体にフックの攻撃力#1[i]%分の炎属性ダメージを与え、#2[i]%基礎確率で敵を燃焼状態にする、#3[i]ターン継続。\\n燃焼状態の敵はターンが回ってくるたびに、フックの攻撃力#4[i]%分の炎属性持続ダメージを受ける。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 1, + 2, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 1, + 2, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 1, + 2, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 1, + 2, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 1, + 2, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 1, + 2, + 0.3875000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 1, + 2, + 0.43750000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 1, + 2, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 1, + 2, + 0.5750000001862645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 1, + 2, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 1, + 2, + 0.6825000008102506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 1, + 2, + 0.7150000003166497 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 1, + 2, + 0.7475000005215406 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 1, + 2, + 0.7800000007264316 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 2, + 0.8125000009313226 + ] + } + } + }, + "110903": { + "Id": 110903, + "Name": "ドカン!{RUBY_B#と}飛{RUBY_E#}んでけ{RUBY_B#はなび}花火{RUBY_E#}!", + "Desc": "指定した敵単体にフックの攻撃力#1[i]%分の炎属性ダメージを与える。\\n必殺技を発動した後、次に発動する戦闘スキルを強化、強化後の戦闘スキルは指定した敵単体および隣接する敵にダメージを与える。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058 + ] + } + } + }, + "110904": { + "Id": 110904, + "Name": "はっ!{RUBY_B#ひ}火{RUBY_E#}に{RUBY_B#あぶら}油{RUBY_E#}を{RUBY_B#そそ}注{RUBY_E#}ぐ", + "Desc": "燃焼状態の敵を攻撃する時、さらにフックの攻撃力#1[i]%分の炎属性付加ダメージを1回与え、さらにEPを#2[i]回復する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 5 + ] + } + } + }, + "110906": { + "Id": 110906, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110907": { + "Id": 110907, + "Name": "ほら!{RUBY_B#めちゃくちゃ}滅茶苦茶{RUBY_E#}になってる", + "Desc": "敵を攻撃。戦闘に入った後、ランダムな敵単体にフックの攻撃力#4[i]%分の炎属性ダメージを与え、#1[i]%基礎確率で敵単体それぞれに燃焼状態を付与する、#3[i]ターン継続。\\n燃焼状態の敵はターンが回ってくるたびに、フックの攻撃力#2[i]%分の炎属性持続ダメージを受ける。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 3, + 0.5000000004656613 + ] + } + } + }, + "110909": { + "Id": 110909, + "Name": "おい!フックを{RUBY_B#おぼ}覚{RUBY_E#}えてるか?", + "Desc": "指定した敵単体にフックの攻撃力#1[i]%分の炎属性ダメージを与え、#2[i]%基礎確率で敵を燃焼状態にする、#3[i]ターン継続。さらに、その敵に隣接する敵にフックの攻撃力#5[i]%分の炎属性ダメージを与える。\\n燃焼状態の敵はターンが回ってくるたびに、フックの攻撃力#4[i]%分の炎属性持続ダメージを受ける。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 1, + 2, + 0.25000000023283064, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 1, + 2, + 0.27499999990686774, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 1, + 2, + 0.3000000002793968, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 1, + 2, + 0.32499999995343387, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 1, + 2, + 0.3500000003259629, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 1, + 2, + 0.3875000001862645, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 1, + 2, + 0.43750000023283064, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 1, + 2, + 0.5000000004656613, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1, + 2, + 0.5750000001862645, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1, + 2, + 0.6500000006053597, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1, + 2, + 0.6825000008102506, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1, + 2, + 0.7150000003166497, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1, + 2, + 0.7475000005215406, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 1, + 2, + 0.7800000007264316, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 1, + 2, + 0.8125000009313226, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Maze.png", + "LevelUpSkillID": [ + 110907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 1109101, + "PointName": "{RUBY_B#こどもごころ}子供心{RUBY_E#}", + "PointDesc": "天賦発動時、フックの最大HP#1[i]%分のHPを回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1109102, + "PointName": "{RUBY_B#むじゃき}無邪気{RUBY_E#}", + "PointDesc": "行動制限系デバフに抵抗する確率+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.20000000018626451 + ], + "PointID": 1109103, + "PointName": "{RUBY_B#ひあそ}火遊{RUBY_E#}び", + "PointDesc": "必殺技を発動した後、フックの行動順#2[i]%早まり、さらにEPを#1[i]回復する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1109101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1109202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109204, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1109203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1109102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1109205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1109206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109208, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1109103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1109208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1109208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 182.40000000037253, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 117.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 255.36000000033528, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 151.20000000018626, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 328.320000000298, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 184.80000000074506, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 401.28000000026077, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 218.40000000037253, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 474.2400000002235, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 252, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 547.2000000001863, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 285.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 620.160000000149, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1109, + "Set4IDList": [ + 117, + 122, + 107 + ], + "Set2IDList": [ + 301, + 309, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1110": { + "Name": "リンクス", + "Desc": "ベロブルグの雪原探検家、ランドゥー家の末っ子。\\n落ち着いた性格で、極めて強い行動力の持ち主。よく単身で雪原を探険する。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "lynx", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 111001, + "Name": "{RUBY_B#つえ}杖{RUBY_E#}を{RUBY_B#て}手{RUBY_E#}に{RUBY_B#ゆきみち}雪道{RUBY_E#}を{RUBY_B#い}行{RUBY_E#}く{RUBY_B#そうちょう}早朝{RUBY_E#}", + "Desc": "残りHPが#1[i]%以下の味方に治癒を行う時、リンクスの治癒量+#2[i]%。この効果は持続治癒効果にも有効。", + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Id": 111002, + "Name": "ストーブの{RUBY_B#そば}傍{RUBY_E#}で{RUBY_B#す}過{RUBY_E#}ごす{RUBY_B#しょうご}正午{RUBY_E#}", + "Desc": "「サバイバル反応」を持つターゲットはデバフを付与された時、それを#1[i]回抵抗できる。", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 111003, + "Name": "{RUBY_B#なだれ}雪崩{RUBY_E#}ビーコンの{RUBY_B#な}鳴{RUBY_E#}る{RUBY_B#ごご}午後{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 111004, + "Name": "{RUBY_B#やがい}野外{RUBY_E#}で{RUBY_B#かがりび}篝火{RUBY_E#}を{RUBY_B#た}焚{RUBY_E#}く{RUBY_B#ゆうぐ}夕暮{RUBY_E#}れ", + "Desc": "「サバイバル反応」を獲得した時、ターゲットの攻撃力がリンクスの最大HPの#1[f1]%分アップする。#2[i]ターン継続。", + "ParamList": [ + 0.030000000027939677, + 1 + ] + }, + "5": { + "Id": 111005, + "Name": "{RUBY_B#こうちゃ}紅茶{RUBY_E#}とオーロラを{RUBY_B#たの}楽{RUBY_E#}しむ{RUBY_B#よる}夜{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 111006, + "Name": "{RUBY_B#せいずちゅう}製図中{RUBY_E#}に{RUBY_B#むか}迎{RUBY_E#}える{RUBY_B#よあ}夜明{RUBY_E#}け", + "Desc": "「サバイバル反応」の最大HPアップ効果が、さらにリンクスの最大HPの#1[f1]%分アップする。「サバイバル反応」を持つ味方の効果抵抗+#2[i]%。", + "ParamList": [ + 0.060000000055879354, + 0.3000000002793968 + ] + } + }, + "Skills": { + "111001": { + "Id": 111001, + "Name": "アイスクライミングテクニック", + "Desc": "指定した敵単体に自身の最大HP#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "111002": { + "Id": 111002, + "Name": "{RUBY_B#しおづ}塩漬{RUBY_E#}け{RUBY_B#やえいかんづめ}野営缶詰{RUBY_E#}", + "Desc": "指定した味方単体に「サバイバル反応」を付与し、最大HPをリンクスの最大HP#1[f1]%+#2[i]分アップさせる。その味方が「壊滅」または「存護」の運命にある場合、敵に攻撃される確率が大アップする。「サバイバル反応」は#3[i]ターン継続。\\n「サバイバル反応」を付与された味方は、HPをリンクスの最大HP#4[f1]%+#5[i]回復する。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 50, + 2, + 0.0800000000745058, + 80, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.05250000022351742, + 80, + 2, + 0.08499999972991645, + 128, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.054999999701976776, + 102.50000000046566, + 2, + 0.09000000008381903, + 164, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.057499999878928065, + 125, + 2, + 0.09499999973922968, + 200, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.060000000055879354, + 140, + 2, + 0.10000000009313226, + 224, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.06250000023283064, + 155, + 2, + 0.10399999981746078, + 248, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06562500027939677, + 166.25000000023283, + 2, + 0.1079999995417893, + 266, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.0687500003259629, + 177.50000000046566, + 2, + 0.11199999996460974, + 284, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07187500107102096, + 188.7500000006985, + 2, + 0.11599999968893826, + 302, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.07499999972060323, + 200, + 2, + 0.12000000011175871, + 320, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.07749999989755452, + 211.25000000023283, + 2, + 0.12399999983608723, + 338, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.0800000000745058, + 222.50000000046566, + 2, + 0.12799999956041574, + 356, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.0825000002514571, + 233.7500000006985, + 2, + 0.1319999999832362, + 374, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.08499999972991645, + 245, + 2, + 0.1359999997075647, + 392, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.08749999990686774, + 256.25000000023283, + 2, + 0.14000000013038516, + 410, + 5 + ] + } + } + }, + "111003": { + "Id": 111003, + "Name": "{RUBY_B#せつげんきゅうきゅうしょち}雪原救急処置{RUBY_E#}", + "Desc": "味方全体のデバフ#1[i]つ解除し、味方全体のHPをリンクスの最大HP#2[f1]%+#3[i]回復する。", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.09000000008381903, + 90 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.09562500030733645, + 144 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.10125000053085387, + 184.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.10687500075437129, + 225 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.11250000027939677, + 252 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.11699999962002039, + 279 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.12150000035762787, + 299.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.12599999969825149, + 319.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.13050000043585896, + 339.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.13499999977648258, + 360 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.13949999981559813, + 380.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.14399999985471368, + 400.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.14849999989382923, + 420.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.15299999993294477, + 441 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.15749999997206032, + 461.25000000023283 + ] + } + } + }, + "111004": { + "Id": 111004, + "Name": "{RUBY_B#やがい}野外{RUBY_E#}サバイバル{RUBY_B#けいけん}経験{RUBY_E#}", + "Desc": "戦闘スキルまたは必殺技を発動した時、ターゲットに#1[i]ターン継続する持続治癒効果を付与する。その味方のターンが回ってくるたびに、リンクスの最大HP#2[f1]%+#3[i]のHPを回復する。味方が「サバイバル反応」を持つ場合、持続治癒効果がさらにリンクスの最大HP#4[f1]%+#5[i]アップする。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.02399999974295497, + 24, + 0.030000000027939677, + 30 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.02549999998882413, + 38.40000000037253, + 0.03187500103376806, + 48 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.026999999536201358, + 49.200000000186265, + 0.033750000642612576, + 61.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.028499999782070518, + 60, + 0.035625000251457095, + 75 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.030000000027939677, + 67.20000000018626, + 0.037499999860301614, + 84 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.03120000008493662, + 74.40000000037253, + 0.03899999940767884, + 93 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.03240000014193356, + 79.80000000074506, + 0.04050000035203993, + 99.75000000069849 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.0336000001989305, + 85.20000000018626, + 0.04199999989941716, + 106.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.034800000255927444, + 90.6000000005588, + 0.04350000014528632, + 113.25000000023283 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.035999999614432454, + 96, + 0.04499999969266355, + 120 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.037199999671429396, + 101.40000000037253, + 0.04649999993853271, + 126.75000000069849 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.03839999972842634, + 106.80000000074506, + 0.04799999948590994, + 133.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.03959999978542328, + 112.20000000018626, + 0.0494999997317791, + 140.25000000023283 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.04080000054091215, + 117.6000000005588, + 0.05099999997764826, + 147 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.04199999989941716, + 123, + 0.05250000022351742, + 153.7500000006985 + ] + } + } + }, + "111006": { + "Id": 111006, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111007": { + "Id": 111007, + "Name": "チョコエネルギーバー", + "Desc": "秘技を使用した後、次の戦闘開始時、味方全体にリンクスの天賦による持続治癒効果を付与する、#1[i]ターン継続。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Maze.png", + "LevelUpSkillID": [ + 111007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1110101, + "PointName": "{RUBY_B#じぜんちょうさ}事前調査{RUBY_E#}", + "PointDesc": "「サバイバル反応」を持つターゲットが攻撃を受けた後、リンクスはEPを#1[i]回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1110102, + "PointName": "{RUBY_B#たんけん}探検{RUBY_E#}テクニック", + "PointDesc": "行動制限系デバフに抵抗する確率+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1110103, + "PointName": "エクストリームサバイバル", + "PointDesc": "天賦による持続治癒効果の継続時間+#1[i]ターン。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110201, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110202, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1110101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110203, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1110202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1110203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110205, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1110102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110206, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1110205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110207, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1110206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1110103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110209, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1110103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110210, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 67.20000000018626, + "AttackAdd": 3.360000000335276, + "DefenceBase": 75, + "DefenceAdd": 3.750000000698492, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 94.0800000000745, + "AttackAdd": 3.360000000335276, + "DefenceBase": 105, + "DefenceAdd": 3.750000000698492, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 120.96000000089407, + "AttackAdd": 3.360000000335276, + "DefenceBase": 135, + "DefenceAdd": 3.750000000698492, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 147.8400000007823, + "AttackAdd": 3.360000000335276, + "DefenceBase": 165, + "DefenceAdd": 3.750000000698492, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 174.72000000067055, + "AttackAdd": 3.360000000335276, + "DefenceBase": 195, + "DefenceAdd": 3.750000000698492, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 201.6000000005588, + "AttackAdd": 3.360000000335276, + "DefenceBase": 225, + "DefenceAdd": 3.750000000698492, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 228.48000000044703, + "AttackAdd": 3.360000000335276, + "DefenceBase": 255, + "DefenceAdd": 3.750000000698492, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1110, + "Set4IDList": [ + 101, + 114, + 106 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1111": { + "Name": "ルカ", + "Desc": "ベロブルグ下層部のボクシングチャンピオン、「地炎」の中堅メンバーの一人。\\nファイトクラブの王座保持者。その熱情で下層部の夢ある子どもたちを励ましてきた。", + "CharaInfo": { + "Camp": "ベロブルグ", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "luka", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 111101, + "Name": "{RUBY_B#や}止{RUBY_E#}まぬ{RUBY_B#あらそ}争{RUBY_E#}い", + "Desc": "ルカが行動する時、指定した敵が裂創状態の場合、ルカの与ダメージ+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Id": 111102, + "Name": "オレが{RUBY_B#つよ}強{RUBY_E#}い", + "Desc": "物理属性の弱点がある敵に戦闘スキルが命中した場合、「闘志」を#1[i]層獲得する。", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 111103, + "Name": "リングに{RUBY_B#た}立{RUBY_E#}つため{RUBY_B#う}生{RUBY_E#}まれた{RUBY_B#おとこ}男{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 111104, + "Name": "{RUBY_B#ふとうふくつ}不撓不屈{RUBY_E#}", + "Desc": "「闘志」を1層獲得するごとに、攻撃力+#1[i]%。この効果は最大で#2[i]層累積できる。", + "ParamList": [ + 0.05000000004656613, + 4 + ] + }, + "5": { + "Id": 111105, + "Name": "{RUBY_B#ちえんだましい}地炎魂{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 111106, + "Name": "チャンピオンに{RUBY_B#ふさわ}相応{RUBY_E#}しい{RUBY_B#かっさい}喝采{RUBY_E#}", + "Desc": "強化通常攻撃の「砕天拳」が裂創状態の敵に命中した後、その回の攻撃で「裂地拳」を1段行ったごとに、敵に付与された裂創状態が、さらに本来のダメージ#1[i]%分のダメージを1回発生する。", + "ParamList": [ + 0.0800000000745058 + ] + } + }, + "Skills": { + "111101": { + "Id": 111101, + "Name": "{RUBY_B#れっちけん}裂地拳{RUBY_E#}", + "Desc": "指定した敵単体にルカの攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "111102": { + "Id": 111102, + "Name": "{RUBY_B#れっそうけん}裂創拳{RUBY_E#}", + "Desc": "指定した敵単体にルカの攻撃力#1[i]%分の物理属性ダメージを与え、#2[i]%基礎確率で敵を裂創状態にする、#5[i]ターン継続。\\n裂創状態の敵はターンが回ってくるたびに、自身の最大HP#3[f1]%分の物理属性持続ダメージを受ける。このダメージは最大でルカの攻撃力の#4[i]%を超えない。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 1, + 0.24000000022351742, + 1.3000000002793968, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 1, + 0.24000000022351742, + 1.4300000004004687, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 1, + 0.24000000022351742, + 1.5600000005215406, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 1, + 0.24000000022351742, + 1.6900000006426126, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 1, + 0.24000000022351742, + 1.8200000007636845, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 1, + 0.24000000022351742, + 2.014999999664724, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 1, + 0.24000000022351742, + 2.2749999999068677, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 1, + 0.24000000022351742, + 2.6000000005587935, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 1, + 0.24000000022351742, + 2.9900000009220093, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 1, + 0.24000000022351742, + 3.3800000003539026, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 1, + 0.24000000022351742, + 3.5489999998826534, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 1, + 0.24000000022351742, + 3.718000000109896, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 1, + 0.24000000022351742, + 3.8870000003371388, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 1, + 0.24000000022351742, + 4.055999999633059, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 1, + 0.24000000022351742, + 4.224999999860302, + 3 + ] + } + } + }, + "111103": { + "Id": 111103, + "Name": "{RUBY_B#しょうり}勝利{RUBY_E#}の{RUBY_B#いちげき}一撃{RUBY_E#}", + "Desc": "「闘志」を#5[i]層獲得し、#2[i]%基礎確率で指定した敵単体の受けるダメージ+#3[f1]%#4[i]ターン継続。その後、指定した敵単体にルカの攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9800000009126961, + 1, + 0.12000000011175871, + 3, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.1119999999646097, + 1, + 0.12799999956041574, + 3, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.243999999947846, + 1, + 0.1359999997075647, + 3, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.375999999931082, + 1, + 0.14399999985471368, + 3, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.5079999999143183, + 1, + 0.15200000000186265, + 3, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.6400000005960464, + 1, + 0.1600000001490116, + 3, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.8050000004004687, + 1, + 0.17000000015832484, + 3, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.970000000903383, + 1, + 0.18000000016763806, + 3, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.1349999997764826, + 1, + 0.1900000001769513, + 3, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.3000000002793968, + 1, + 0.20000000018626451, + 3, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.432000000262633, + 1, + 0.20799999963492155, + 3, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.564000000245869, + 1, + 0.21599999978207052, + 3, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.6960000002291054, + 1, + 0.22399999992921948, + 3, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.8280000002123415, + 1, + 0.23200000007636845, + 3, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.9600000008940697, + 1, + 0.24000000022351742, + 3, + 2 + ] + } + } + }, + "111104": { + "Id": 111104, + "Name": "{RUBY_B#と}飛{RUBY_E#}び{RUBY_B#ち}散{RUBY_E#}る{RUBY_B#ひばな}火花{RUBY_E#}", + "Desc": "ルカが通常攻撃「裂地拳」または戦闘スキル「裂創拳」を発動した後、「闘志」を#1[i]層獲得する。「闘志」は最大で4層累積できる。「闘志」が2層以上の時、通常攻撃「裂地拳」が「裂地砕天拳」に強化される。強化通常攻撃の「砕天拳」が裂創状態の敵に命中した後、その敵に付与された裂創状態が、本来のダメージ#2[i]%分のダメージを発生する。戦闘開始時、ルカは「闘志」を1層獲得する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.6800000006332994 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.6970000001601875 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.7140000003855675 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.7310000006109476 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.7480000001378357 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.7650000003632158 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.7862500008195639 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.80750000057742 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.8287500010337681 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.8500000007916242 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.8670000003185123 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.8840000005438924 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.9010000007692724 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.9180000002961606 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.9350000005215406 + ] + } + } + }, + "111106": { + "Id": 111106, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111107": { + "Id": 111107, + "Name": "{RUBY_B#さき}先{RUBY_E#}を{RUBY_B#い}行{RUBY_E#}く{RUBY_B#もの}者{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、ランダムな敵単体にルカの攻撃力#1[i]%分の物理属性ダメージを与え、#2[i]%基礎確率でその敵を、戦闘スキルが与えるものと同じ裂創状態にする。その後、ルカは「闘志」をさらに1層獲得する。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + } + } + }, + "111108": { + "Id": 111108, + "Name": "{RUBY_B#れっちさいてんけん}裂地砕天拳{RUBY_E#}", + "Desc": "「闘志」を2層消費し、「裂地拳」で3段の攻撃を行う。1段の攻撃で指定した敵単体にルカの攻撃力#1[i]%分の物理属性ダメージを与える。\\nそして「砕天拳」で1段の攻撃を行い、指定した敵単体にルカの攻撃力#2[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.12000000011175871, + 0.48000000044703484 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14000000013038516, + 0.5600000005215406 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1600000001490116, + 0.6400000005960464 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18000000016763806, + 0.7200000006705523 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.22000000020489097, + 0.8800000008195639 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.24000000022351742, + 0.9600000008940697 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.26000000024214387, + 1.040000000037253 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.2800000002607703, + 1.1200000001117587 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Maze.png", + "LevelUpSkillID": [ + 111107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1111101, + "PointName": "オーバーロード", + "PointDesc": "戦闘スキルを発動した時、敵のバフ#1[i]つ解除する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1111102, + "PointName": "{RUBY_B#じゅんかんせいどう}循環制動{RUBY_E#}", + "PointDesc": "「闘志」を1層獲得するたび、さらにEPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1111103, + "PointName": "{RUBY_B#とうしふんさい}闘志粉砕{RUBY_E#}", + "PointDesc": "強化通常攻撃を行った時、1段の「裂地拳」ごとに、#1[i]%固定確率でルカが「裂地拳」をさらに1段行う。追加能力「闘志粉砕」によって行われた「裂地拳」では、この効果は発動しない。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111202, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1111101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1111202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1111203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1111102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111206, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1111205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1111206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1111103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111209, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1111103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "効果命中" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1111201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1111, + "Set4IDList": [ + 105, + 116, + 102 + ], + "Set2IDList": [ + 301, + 307, + 309 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "BreakDamageAddedRatioBase" + ], + "ScoreRankList": [ + 322, + 284 + ] + } + }, + "1112": { + "Name": "トパーズ&カブ", + "Desc": "スターピースカンパニー「戦略投資部」の高級幹部であるトパーズは、特殊債務ピケ部隊を率いている。\\n若くして「十の石心」の一員となった彼女は、「徴収の黄玉」という基石を所持している。\\n相棒の次元プーマン「カブ」は富の在処を鋭く感知することができるだけでなく、警備、債権回収、保険数理などの仕事も容易にこなせる。\\n現在、彼女たちは銀河を巡りながら、カンパニーの事業拡大に影響を及ぼす様々な債権トラブルを調査している。", + "CharaInfo": { + "Camp": "スターピースカンパニー", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "topaz", + "SPNeed": 130, + "BaseType": "Rogue", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 111201, + "Name": "フューチャーズ\\nマーケット", + "Desc": "「負債証明」状態の敵が追加攻撃ダメージを受ける時、「強制執行」状態を付与される。この効果は1回の攻撃で1回まで付与できる。\\n「強制執行」状態の敵が受ける追加攻撃ダメージの会心ダメージ+#1[i]%、最大で#2[i]層累積できる。「負債証明」が解除される時、「強制執行」も解除される。", + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Id": 111202, + "Name": "{RUBY_B#ゆうこうてきばいしゅう}友好的買収{RUBY_E#}", + "Desc": "カブ自身が行動し、攻撃を行った後、トパーズのEPを#1[i]回復する。", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 111203, + "Name": "{RUBY_B#だい}大{RUBY_E#}を{RUBY_B#つか}掴{RUBY_E#}み{RUBY_B#しょう}小{RUBY_E#}を{RUBY_B#はな}放{RUBY_E#}つ", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 111204, + "Name": "{RUBY_B#じんそくしょり}迅速処理{RUBY_E#}", + "Desc": "カブ自身のターンが回ってきた時、トパーズの行動順が#1[i]%早まる。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 111205, + "Name": "{RUBY_B#じゅよう}需要{RUBY_E#}インフレ", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 111206, + "Name": "インセンティブ", + "Desc": "「心躍る上昇幅!」状態のカブの攻撃回数+#1[i]、攻撃時の炎属性耐性貫通+#2[i]%。", + "ParamList": [ + 1, + 0.10000000009313226 + ] + } + }, + "Skills": { + "111201": { + "Id": 111201, + "Name": "{RUBY_B#あかじ}赤字{RUBY_E#}…", + "Desc": "指定した敵単体にトパーズの攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "111202": { + "Id": 111202, + "Name": "{RUBY_B#しはらいこんなん}支払困難{RUBY_E#}?", + "Desc": "指定した敵単体に「負債証明」状態を付与し、その敵が受ける追加攻撃ダメージを#2[i]%アップさせる。「負債証明」は最後に付与されたターゲットに対してのみ効果を発揮する。味方のターンが回ってきた時、または味方が行動する時、フィールド上に「負債証明」状態の敵が存在しない場合、トパーズはランダムな敵を「負債証明」状態にする。\\nカブがその敵にトパーズの攻撃力#1[i]%分の炎属性ダメージを与える。この戦闘スキルがダメージを与える時、追加攻撃ダメージを与えると見なされる。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.6250000002328306 + ] + } + } + }, + "111203": { + "Id": 111203, + "Name": "{RUBY_B#あかじ}赤字{RUBY_E#}を{RUBY_B#くろじ}黒字{RUBY_E#}に!", + "Desc": "カブが「心躍る上昇幅!」状態に入り、ダメージ倍率+#1[i]%、会心ダメージ+#2[i]%。「負債証明」状態の敵が味方の通常攻撃、戦闘スキル、または必殺技を受けた時、カブの行動順が#3[i]%早まる。カブが攻撃を#4[i]回行った後、「心躍る上昇幅!」状態が終了する。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.12499999976716936, + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.13749999995343387, + 0.5000000004656613, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.1500000001396984, + 0.5000000004656613, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.1625000003259629, + 0.5000000004656613, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.17499999981373549, + 0.5000000004656613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.1875, + 0.5000000004656613, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.20312500023283064, + 0.5000000004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.2187500004656613, + 0.5000000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.23437500069849193, + 0.5000000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.25000000023283064, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.26250000041909516, + 0.5000000004656613, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.27499999990686774, + 0.5000000004656613, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.28750000009313226, + 0.5000000004656613, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.3000000002793968, + 0.5000000004656613, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.3125000004656613, + 0.5000000004656613, + 2 + ] + } + } + }, + "111204": { + "Id": 111204, + "Name": "ピッグ・マーケット!?", + "Desc": "戦闘開始時にカブを召喚する。カブの初期速度は#1[i]。カブが行動すると追加攻撃を行い、「負債証明」状態の敵単体にトパーズの攻撃力#2[i]%分の炎属性ダメージを与える。\\n「負債証明」状態の敵が味方の追加攻撃を受けた時、カブの行動順が#3[i]%早まる。カブ自身のターンでは、行動順を早める効果は発動できない。\\nトパーズが戦闘不能状態になるとカブは消える。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 80, + 0.7500000006984919, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 80, + 0.8250000004190952, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 80, + 0.9000000008381903, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 80, + 0.9750000005587935, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 80, + 1.0500000000465661, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 80, + 1.1249999997671694, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 80, + 1.2187500004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 80, + 1.3125000004656613, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 80, + 1.4062500004656613, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 80, + 1.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 80, + 1.5750000001862645, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 80, + 1.6500000006053597, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 80, + 1.725000000325963, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 80, + 1.800000000745058, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 80, + 1.8750000004656613, + 0.5000000004656613 + ] + } + } + }, + "111206": { + "Id": 111206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111207": { + "Id": 111207, + "Name": "{RUBY_B#こうてきしえんきん}公的支援金{RUBY_E#}", + "Desc": "操作キャラクターをトパーズに切り替えた時、カブを召喚する。カブは一定範囲内の普通の戦利品とプーマンを自動で捜索する。\\n秘技を使用すると、次の戦闘でカブが初めて攻撃を行った後、トパーズのEPを#1[i]回復する。\\n秘技を使用してマップ内の敵との戦闘に勝利した後、トパーズがパーティに編入されている場合、信用ポイントを獲得する時に追加で少量の信用ポイントを獲得する。この方法を通して、1日に最大で#2[i]信用ポイントを追加獲得できる。\\n秘技を使用して模擬宇宙、階差宇宙の敵との戦闘に勝利した後、追加で少量の宇宙の欠片を獲得し、低確率でランダムな奇物を1つ獲得できる。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 60, + 10000 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Maze.png", + "LevelUpSkillID": [ + 111207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112101, + "PointName": "{RUBY_B#かしこし}貸越{RUBY_E#}", + "PointDesc": "トパーズが通常攻撃でダメージを与える時、追加攻撃を行うと見なされる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1112102, + "PointName": "{RUBY_B#きんゆうふあん}金融不安{RUBY_E#}", + "PointDesc": "トパーズとカブの、炎属性が弱点の敵に対する与ダメージ+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1112103, + "PointName": "{RUBY_B#ぎじゅつてきちょうせい}技術的調整{RUBY_E#}", + "PointDesc": "「心躍る上昇幅!」状態のカブが攻撃を行った後、さらにトパーズのEPを#1[i]回復する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112201, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1112101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112203, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1112202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112205, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1112102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1112205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112207, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1112103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1112208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112210, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1112208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "炎属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 56.10000000009313, + "DefenceAdd": 2.8050000004004687, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 78.54000000050291, + "DefenceAdd": 2.8050000004004687, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 100.9800000009127, + "DefenceAdd": 2.8050000004004687, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 123.42000000039116, + "DefenceAdd": 2.8050000004004687, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 145.86000000080094, + "DefenceAdd": 2.8050000004004687, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.8050000004004687, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 190.74000000068918, + "DefenceAdd": 2.8050000004004687, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1112, + "Set4IDList": [ + 115, + 107, + 117 + ], + "Set2IDList": [ + 318, + 306, + 315 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1201": { + "Name": "{RUBY_B#セイジャク}青雀{RUBY_E#}", + "Desc": "仙舟「羅浮」の太卜司の卜者、兼書庫の管理員。\\n普段から仕事をサボっているため、これ以上降格の余地がなく、じきに「門番」になる予定。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 79, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 80, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 81, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "qingque", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 120101, + "Name": "{RUBY_B#ヤオユイ}幺魚{RUBY_E#}と{RUBY_B#たわむ}戯{RUBY_E#}れる{RUBY_B#こへい}孤兵{RUBY_E#}", + "Desc": "必殺技によるダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 120102, + "Name": "{RUBY_B#ごばん}碁盤{RUBY_E#}は{RUBY_B#まくら}枕{RUBY_E#}、{RUBY_B#かいみん}快眠{RUBY_E#}の{RUBY_B#たす}助{RUBY_E#}け", + "Desc": "青雀は牌を取るたびにEPを#1[i]回復する。", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 120103, + "Name": "{RUBY_B#むがむちゅう}無我夢中{RUBY_E#}に{RUBY_B#メンゼンチン}門前清{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 120104, + "Name": "{RUBY_B#じごく}地獄{RUBY_E#}{RUBY_B#ま}待{RUBY_E#}ちも{RUBY_B#おだ}穏{RUBY_E#}やかに", + "Desc": "戦闘スキルを発動した後、#1[i]%固定確率で「門前ツモ」状態に入る、このターンが終了するまで継続。\\n「門前ツモ」状態では、通常攻撃または強化通常攻撃を行った後に追加攻撃を1回行い、敵にその通常攻撃または強化通常攻撃ダメージ100%分の量子属性ダメージを与える。", + "ParamList": [ + 0.24000000022351742 + ] + }, + "5": { + "Id": 120105, + "Name": "{RUBY_B#よわた}世渡{RUBY_E#}りは{RUBY_B#ごううん}豪運{RUBY_E#}{RUBY_B#まか}任{RUBY_E#}せ", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 120106, + "Name": "{RUBY_B#ゆうちょう}悠長{RUBY_E#}に{RUBY_B#かま}構{RUBY_E#}えて{RUBY_B#なが}流{RUBY_E#}れを{RUBY_B#ま}待{RUBY_E#}つ", + "Desc": "強化通常攻撃を行った後、SPを1回復する。", + "ParamList": [] + } + }, + "Skills": { + "120101": { + "Id": 120101, + "Name": "{RUBY_B#メンゼンチン}門前清{RUBY_E#}", + "Desc": "数が一番少ない絵柄の美玉牌を1枚使用し、指定した敵単体に青雀の攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120102": { + "Id": 120102, + "Name": "{RUBY_B#ハイテイラオユエ}海底撈月{RUBY_E#}", + "Desc": "牌を#1[i]枚取り、自身の与ダメージ+#2[i]%、このターンが終了するまで継続。この効果は最大で#3[i]層累積できる。この戦闘スキルを発動した後、ターンは終了しない。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.14000000013038516, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.1539999998640269, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.16799999959766865, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.18200000002980232, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.19599999976344407, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.21000000019557774, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.2275000000372529, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.24499999987892807, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.26250000041909516, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.2800000002607703, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.29399999999441206, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.3079999997280538, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.3220000001601875, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.3359999998938292, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.3500000003259629, + 4 + ] + } + } + }, + "120103": { + "Id": 120103, + "Name": "{RUBY_B#ヤオユイアン}幺魚暗{RUBY_E#}カン?アガリ!", + "Desc": "敵全体に青雀の攻撃力#1[i]%分の量子属性ダメージを与え、同じ絵柄の美玉牌を4枚獲得する。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529 + ] + } + } + }, + "120104": { + "Id": 120104, + "Name": "{RUBY_B#ていえんびぎょく}帝垣美玉{RUBY_E#}", + "Desc": "味方のターンが回ってきた時、青雀は3つの絵柄の美玉牌の中からランダムに1枚取る、手持ちの美玉牌は最大で4枚まで。\\n青雀のターンが回ってきた時、手持ちに同じ絵柄の美玉牌が4枚ある場合、青雀はすべての美玉牌を消費して「暗カン」状態に入る。\\n「暗カン」状態の時は戦闘スキルを発動できず、自身の攻撃力+#1[i]%、通常攻撃「門前清」が「嶺上開花!」に強化される。「暗カン」状態は「嶺上開花!」を発動した後に終了する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "120106": { + "Id": 120106, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120107": { + "Id": 120107, + "Name": "{RUBY_B#どくえき}独奕{RUBY_E#}の{RUBY_B#たの}楽{RUBY_E#}しみ", + "Desc": "秘技を使用した後、戦闘に入る時、青雀は美玉牌を#1[i]枚取る。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + }, + "120108": { + "Id": 120108, + "Name": "{RUBY_B#リンシャンカイホウ}嶺上開花{RUBY_E#}!", + "Desc": "指定した敵単体に青雀の攻撃力#1[i]%分の量子属性ダメージを与え、隣接する敵に青雀の攻撃力#2[i]%分の量子属性ダメージを与える。\\n「嶺上開花!」はSPを回復できない。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.440000000409782, + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9200000008568168, + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.6400000005960464, + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.1200000001117587, + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.360000000335276, + 1.400000000372529 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Maze.png", + "LevelUpSkillID": [ + 120107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201101, + "PointName": "{RUBY_B#そうはん}争番{RUBY_E#}", + "PointDesc": "戦闘スキルを発動した時、SPを1回復する。この効果は一度の戦闘で1回まで発動できる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1201102, + "PointName": "{RUBY_B#テンパイ}聴牌{RUBY_E#}", + "PointDesc": "戦闘スキルによる、自身の与ダメージアップ効果がさらに#1[i]%アップする。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1201103, + "PointName": "チャンカン", + "PointDesc": "強化通常攻撃を行った後、青雀の速度+#1[i]%、1ターン継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201202, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1201101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1201202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1201202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1201102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201206, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1201205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1201205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1201103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201209, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1201103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 88.80000000074506, + "AttackAdd": 4.440000000409782, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 124.32000000029802, + "AttackAdd": 4.440000000409782, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 159.8400000007823, + "AttackAdd": 4.440000000409782, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 195.36000000033528, + "AttackAdd": 4.440000000409782, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 230.88000000081956, + "AttackAdd": 4.440000000409782, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 266.40000000037253, + "AttackAdd": 4.440000000409782, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 301.9200000008568, + "AttackAdd": 4.440000000409782, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1201, + "Set4IDList": [ + 108, + 102, + 111 + ], + "Set2IDList": [ + 309, + 305, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1202": { + "Name": "{RUBY_B#テイウン}停雲{RUBY_E#}", + "Desc": "仙舟「羅浮」の天舶司の接渡使。\\n商団と共に多くの世界に足を運び、貿易関係や同盟を結んでいる。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "tingyun", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 120201, + "Name": "{RUBY_B#はるかぜ}春風{RUBY_E#}{RUBY_B#ふ}吹{RUBY_E#}きて{RUBY_B#じうん}時運{RUBY_E#}{RUBY_B#めぐ}巡{RUBY_E#}る", + "Desc": "「賜福」を与えられた味方単体は、必殺技を発動した後に速度+#1[i]%、1ターン継続。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 120202, + "Name": "{RUBY_B#くんし}君子{RUBY_E#}の{RUBY_B#おんけい}恩恵{RUBY_E#}\\n{RUBY_B#ほほえ}微笑{RUBY_E#}みを{RUBY_B#もっ}以{RUBY_E#}て{RUBY_B#うけたまわ}承{RUBY_E#}るべき", + "Desc": "「賜福」を与えられた味方単体は、敵を倒した時にEPを#1[i]回復する、この効果はターンが回ってくるたびに1回まで発動できる。", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 120203, + "Name": "{RUBY_B#せいきゅう}青丘{RUBY_E#}の{RUBY_B#いおん}遺恩{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 120204, + "Name": "{RUBY_B#じょうせい}情勢{RUBY_E#}を{RUBY_B#よ}読{RUBY_E#}み\\n{RUBY_B#へんか}変化{RUBY_E#}せし{RUBY_B#めいか}鳴火{RUBY_E#}", + "Desc": "「賜福」の付加ダメージ倍率+#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 120205, + "Name": "{RUBY_B#やす}綏{RUBY_E#}んずる{RUBY_B#こび}狐魅{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 120206, + "Name": "{RUBY_B#わきしょうざい}和気生財{RUBY_E#}", + "Desc": "必殺技で味方のEPをさらに#1[i]回復する。", + "ParamList": [ + 10 + ] + } + }, + "Skills": { + "120201": { + "Id": 120201, + "Name": "{RUBY_B#ちくきゃくれい}逐客令{RUBY_E#}", + "Desc": "指定した敵単体に停雲の攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120202": { + "Id": 120202, + "Name": "{RUBY_B#しょうおんわいん}祥音和韻{RUBY_E#}", + "Desc": "指定した味方単体に「賜福」を付与し、その味方の攻撃力+#2[i]%、攻撃力アップ量は停雲の現在の攻撃力の#4[i]%を超えない。\\n「賜福」を付与された味方が攻撃を行った後、敵にその味方の攻撃力#1[i]%分の雷属性付加ダメージを1回与える。\\n「賜福」は#3[i]ターン継続し、停雲の戦闘スキルで最後に指定したターゲットにのみ効果を発揮する。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064, + 3, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.27499999990686774, + 3, + 0.1600000001490116 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.3000000002793968, + 3, + 0.17000000015832484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.32499999995343387, + 3, + 0.18000000016763806 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.3500000003259629, + 3, + 0.1900000001769513 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375, + 3, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.4062500004656613, + 3, + 0.21250000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.43750000023283064, + 3, + 0.2249999998603016 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.46875000069849193, + 3, + 0.23750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 3, + 0.25000000023283064 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.5250000001396984, + 3, + 0.26000000024214387 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.5500000005122274, + 3, + 0.2700000002514571 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.5750000001862645, + 3, + 0.2800000002607703 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.6000000005587935, + 3, + 0.29000000027008355 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.6250000002328306, + 3, + 0.3000000002793968 + ] + } + } + }, + "120203": { + "Id": 120203, + "Name": "{RUBY_B#けいうんこうふうぎとう}慶雲光覆儀祷{RUBY_E#}", + "Desc": "指定した味方単体のEPを#1[i]回復し、その味方の与ダメージ+#3[i]%#2[i]ターン継続。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 50, + 2, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 50, + 2, + 0.2300000002142042 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 50, + 2, + 0.26000000024214387 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 50, + 2, + 0.29000000027008355 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 50, + 2, + 0.3200000002980232 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 50, + 2, + 0.3500000003259629 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 50, + 2, + 0.3875000001862645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 50, + 2, + 0.42500000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 50, + 2, + 0.4625000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 50, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 50, + 2, + 0.530000000493601 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 50, + 2, + 0.5600000005215406 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 50, + 2, + 0.5900000005494803 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 50, + 2, + 0.62000000057742 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 50, + 2, + 0.6500000006053597 + ] + } + } + }, + "120204": { + "Id": 120204, + "Name": "{RUBY_B#ゆ}揺{RUBY_E#}れる{RUBY_B#しでん}紫電{RUBY_E#}", + "Desc": "敵が停雲の攻撃を受けた後、「賜福」を付与された味方が、その敵に自身の攻撃力#1[i]%分の雷属性付加ダメージを与える。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919 + ] + } + } + }, + "120206": { + "Id": 120206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120207": { + "Id": 120207, + "Name": "{RUBY_B#けいふうわちょう}恵風和暢{RUBY_E#}", + "Desc": "秘技を使用した後、自身のEPを#1[i]回復する。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 50 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Maze.png", + "LevelUpSkillID": [ + 120207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1202101, + "PointName": "{RUBY_B#りゅうせい}留晴{RUBY_E#}", + "PointDesc": "戦闘スキルを発動した時、停雲の速度+#1[i]%、1ターン継続。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1202103, + "PointName": "{RUBY_B#こうつう}亨通{RUBY_E#}", + "PointDesc": "停雲は自身のターンが回ってきた時、EPを#1[i]回復する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202202, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1202101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1202202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202204, + "PointName": "ダメージ強化・雷", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1202201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "雷属性ダメージ" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1202102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202206, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1202205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1202201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202208, + "PointName": "ダメージ強化・雷", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1202103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "雷属性ダメージ" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202209, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1202208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1202208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903 + ], + "PointID": 1202102, + "PointName": "{RUBY_B#じょさい}除災{RUBY_E#}", + "PointDesc": "通常攻撃によるダメージ+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 72, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 115.20000000018626, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 100.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 161.28000000026077, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 129.6000000005588, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 207.36000000033528, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 158.40000000037253, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 253.44000000040978, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 187.20000000018626, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 299.5200000004843, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 216, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 345.6000000005588, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 244.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 391.6800000006333, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1202, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 308, + 312, + 302 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 318, + 263 + ] + } + }, + "1203": { + "Name": "{RUBY_B#ラセツ}羅刹{RUBY_E#}", + "Desc": "棺を肌身離さず持ち歩いている、空の彼方からやってきた殊俗の行商人。\\n優れた医療技術を持つ。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "luocha", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 120301, + "Name": "{RUBY_B#しょうじゃ}生者{RUBY_E#}の{RUBY_B#じょうか}浄化{RUBY_E#}", + "Desc": "結界が展開されている間、味方全体の攻撃力+#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 120302, + "Name": "{RUBY_B#じゅんてい}純庭{RUBY_E#}の{RUBY_B#れいし}礼賜{RUBY_E#}", + "Desc": "戦闘スキルの効果が発動された時、指定した味方の残りHPが50%未満の場合、羅刹の治癒量+#1[i]%。指定した味方の残りHPが50%以上の場合、その味方に羅刹の攻撃力#2[i]%+#3[i]の耐久値を持つバリアを付与する、#4[i]ターン継続。", + "ParamList": [ + 0.3000000002793968, + 0.18000000016763806, + 240, + 2 + ] + }, + "3": { + "Id": 120303, + "Name": "{RUBY_B#ぐしゃ}愚者{RUBY_E#}の{RUBY_B#もさく}模索{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 120304, + "Name": "{RUBY_B#いばら}荊{RUBY_E#}の{RUBY_B#しんぱん}審判{RUBY_E#}", + "Desc": "結界が展開されている間、敵を虚弱状態にし、敵の与ダメージ-#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 120305, + "Name": "{RUBY_B#じゅなん}受難{RUBY_E#}の{RUBY_B#あと}痕{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 120306, + "Name": "{RUBY_B#みなかいじん}皆灰燼{RUBY_E#}に{RUBY_B#き}帰{RUBY_E#}す", + "Desc": "必殺技を発動した時、#1[i]%固定確率で敵全体の全属性耐性-#2[i]%#3[i]ターン継続。", + "ParamList": [ + 1, + 0.20000000018626451, + 2 + ] + } + }, + "Skills": { + "120301": { + "Id": 120301, + "Name": "{RUBY_B#こくえん}黒淵{RUBY_E#}の{RUBY_B#とげ}棘{RUBY_E#}", + "Desc": "指定した敵単体に羅刹の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120302": { + "Id": 120302, + "Name": "{RUBY_B#びゃっか}白花{RUBY_E#}の{RUBY_B#きぼう}祈望{RUBY_E#}", + "Desc": "戦闘スキルを発動した後、指定した味方単体のHPを、羅刹の攻撃力#1[i]%+#2[i]回復し、羅刹は「白花の刻」を1層獲得する。\\n任意の味方単体の残りHPが#3[i]%以下の時、その味方をターゲットとして、羅刹の戦闘スキルと同等の効果が1回発動される、この行動はSPを消費しない。この効果は#4[i]ターン後に再度発動できる。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 200, + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.42500000004656613, + 320, + 0.5000000004656613, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.45000000041909516, + 410, + 0.5000000004656613, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.47500000009313226, + 500, + 0.5000000004656613, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 560, + 0.5000000004656613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5200000004842877, + 620, + 0.5000000004656613, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5400000005029142, + 665, + 0.5000000004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5600000005215406, + 710, + 0.5000000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5800000005401671, + 755, + 0.5000000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 800, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.62000000057742, + 845, + 0.5000000004656613, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6400000005960464, + 890, + 0.5000000004656613, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6600000006146729, + 935, + 0.5000000004656613, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6800000006332994, + 980, + 0.5000000004656613, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7000000006519258, + 1025, + 0.5000000004656613, + 2 + ] + } + } + }, + "120303": { + "Id": 120303, + "Name": "{RUBY_B#きそう}帰葬{RUBY_E#}の{RUBY_B#じょうじゅ}成就{RUBY_E#}", + "Desc": "敵全体のバフ#2[i]つ解除し、敵全体に羅刹の攻撃力#1[i]%分の虚数属性ダメージを与える。羅刹は「白花の刻」を1層獲得する。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529, + 1 + ] + } + } + }, + "120304": { + "Id": 120304, + "Name": "{RUBY_B#いのち}生命{RUBY_E#}の{RUBY_B#りんね}輪廻{RUBY_E#}", + "Desc": "「白花の刻」が#1[i]層に達した時、羅刹が「白花の刻」をすべて消費し、結界を展開する。\\n結界内の任意の敵が攻撃を受けた後、攻撃を行った味方は羅刹の攻撃力#2[f1]%+#4[i]のHPを回復する。\\n結界は#3[i]ターン継続する。羅刹が戦闘不能状態になった時、結界は解除される。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.12000000011175871, + 2, + 60 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.12749999994412065, + 2, + 96 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.13499999977648258, + 2, + 123 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.14250000030733645, + 2, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.1500000001396984, + 2, + 168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.15599999972619116, + 2, + 186 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.16200000001117587, + 2, + 199.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.16799999959766865, + 2, + 213 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.17399999988265336, + 2, + 226.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.18000000016763806, + 2, + 240 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.18599999975413084, + 2, + 253.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.19200000003911555, + 2, + 267 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.19799999962560833, + 2, + 280.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.20399999991059303, + 2, + 294 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.21000000019557774, + 2, + 307.50000000046566 + ] + } + } + }, + "120306": { + "Id": 120306, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120307": { + "Id": 120307, + "Name": "{RUBY_B#ぐしゃ}愚者{RUBY_E#}の{RUBY_B#ひあい}悲哀{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、天賦を発動する。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Maze.png", + "LevelUpSkillID": [ + 120307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1203101, + "PointName": "{RUBY_B#てきすいそせい}滴水蘇生{RUBY_E#}", + "PointDesc": "戦闘スキルの効果が発動された時、ターゲットとなった味方単体のデバフ#1[i]つ解除する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1203101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1203202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1203203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1203102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1203205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1203206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1203103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1203103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.07000000006519258, + 93 + ], + "PointID": 1203102, + "PointName": "{RUBY_B#きよ}清{RUBY_E#}めし{RUBY_B#ちり}塵{RUBY_E#}の{RUBY_B#み}身{RUBY_E#}", + "PointDesc": "結界内の任意の敵が味方の攻撃を受けた後、攻撃者以外の味方も羅刹の攻撃力#1[f1]%+#2[i]のHPを回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7000000006519258 + ], + "PointID": 1203103, + "PointName": "{RUBY_B#ゆうこく}幽谷{RUBY_E#}を{RUBY_B#こ}越{RUBY_E#}え", + "PointDesc": "行動制限系デバフに抵抗する確率+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 174.24000000022352, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 243.93600000045262, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 313.6320000004489, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 383.3279999997467, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 453.02399999974295, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 522.7200000006706, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 592.4159999999683, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1203, + "Set4IDList": [ + 101, + 121, + 102 + ], + "Set2IDList": [ + 301, + 317, + 308 + ], + "PropertyList3": [ + "HealRatioBase", + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 322, + 266 + ] + } + }, + "1204": { + "Name": "{RUBY_B#ケイゲン}景元{RUBY_E#}", + "Desc": "仙舟同盟帝弓七天将の1人。仙舟「羅浮」の雲騎軍を率いる「神策将軍」。\\n先代の「羅浮」剣首に師事していたが、武力で名をはせてはいない。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 31, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jingyuan", + "SPNeed": 130, + "BaseType": "Mage", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 120401, + "Name": "{RUBY_B#りゅうせいらいてい}流星雷霆{RUBY_E#}\\n{RUBY_B#やま}山{RUBY_E#}をも{RUBY_B#くだ}砕{RUBY_E#}く", + "Desc": "「神君」が攻撃を行う時、指定した敵単体に隣接する敵に対するダメージ倍率が、メインターゲットに対するダメージ倍率#1[i]%分アップする。", + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Id": 120402, + "Name": "{RUBY_B#ふ}振{RUBY_E#}るいし{RUBY_B#ほこ}矛{RUBY_E#}\\n{RUBY_B#ちうご}地動{RUBY_E#}かし{RUBY_B#てんひら}天開{RUBY_E#}く", + "Desc": "「神君」が行動した後、景元の通常攻撃、戦闘スキル、および必殺技によるダメージ+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "3": { + "Id": 120403, + "Name": "{RUBY_B#みね}峰{RUBY_E#}を{RUBY_B#うつ}移{RUBY_E#}りし{RUBY_B#げきらい}激雷{RUBY_E#}\\n{RUBY_B#てんうが}天穿{RUBY_E#}つ", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 120404, + "Name": "{RUBY_B#やいば}刃{RUBY_E#}、{RUBY_B#くも}雲{RUBY_E#}を{RUBY_B#ま}巻{RUBY_E#}き\\n{RUBY_B#ぎょくさ}玉沙{RUBY_E#}に{RUBY_B#お}落{RUBY_E#}ちる", + "Desc": "「神君」が1段の攻撃を行うたび、景元はEPを#1[i]回復する。", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 120405, + "Name": "{RUBY_B#ひゃくせんへ}百戦経{RUBY_E#}て{RUBY_B#す}捨{RUBY_E#}てし{RUBY_B#み}躯{RUBY_E#}\\n{RUBY_B#せいしかろ}生死軽{RUBY_E#}んず", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 120406, + "Name": "{RUBY_B#いこうまと}威光纏{RUBY_E#}う{RUBY_B#しんれい}神霊{RUBY_E#}\\n{RUBY_B#てきほふ}敵屠{RUBY_E#}る", + "Desc": "「神君」が1段の攻撃を行うたびに、メインターゲットを被ダメージアップ状態にする。\\n被ダメージアップ状態の敵の受けるダメージ+#1[i]%、「神君」のその回の攻撃が終了するまで継続、最大で#2[i]回累積できる。", + "ParamList": [ + 0.12000000011175871, + 3 + ] + } + }, + "Skills": { + "120401": { + "Id": 120401, + "Name": "{RUBY_B#でんこうせっか}電光石火{RUBY_E#}", + "Desc": "指定した敵単体に景元の攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120402": { + "Id": 120402, + "Name": "{RUBY_B#ししょう}紫霄{RUBY_E#}の{RUBY_B#らいめい}雷鳴{RUBY_E#}", + "Desc": "敵全体に景元の攻撃力#1[i]%分の雷属性ダメージを与え、「神君」の次ターンの攻撃段数+#2[i]。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 2 + ] + } + } + }, + "120403": { + "Id": 120403, + "Name": "{RUBY_B#わ}我{RUBY_E#}が{RUBY_B#み}身{RUBY_E#}の{RUBY_B#かがや}輝{RUBY_E#}き", + "Desc": "敵全体に景元の攻撃力#1[i]%分の雷属性ダメージを与え、「神君」の次ターンの攻撃段数+#2[i]。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529, + 3 + ] + } + } + }, + "120404": { + "Id": 120404, + "Name": "{RUBY_B#たいま}退魔{RUBY_E#}の{RUBY_B#けいしん}形神{RUBY_E#}", + "Desc": "戦闘開始時に「神君」を召喚する。「神君」の初期速度は#1[i]、初期攻撃段数は#4[i]。「神君」が行動すると追加攻撃を行い、1段の攻撃でランダムな敵単体に景元の攻撃力#2[i]%分の雷属性ダメージを与え、隣接する敵にメインターゲットに対する#5[i]%分の雷属性ダメージを与える。\\n「神君」の攻撃段数は最大で#6[i]段。攻撃段数が1増えるごとに速度+#3[i]。神君の行動終了後、速度と攻撃段数が初期状態に戻る。\\n景元が戦闘不能状態になると「神君」は消える。\\n景元が行動制限系デバフを受けている間、「神君」も行動できない。", + "Type": null, + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 60, + 0.33000000030733645, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 60, + 0.3630000001285225, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 60, + 0.3959999999497086, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 60, + 0.42899999977089465, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 60, + 0.46200000029057264, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 60, + 0.4950000001117587, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 60, + 0.5362500005867332, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 60, + 0.5775000003632158, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 60, + 0.6187500008381903, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 60, + 0.6600000006146729, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 60, + 0.693000000435859, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 60, + 0.726000000257045, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 60, + 0.7590000000782311, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 60, + 0.7920000005979091, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 60, + 0.8250000004190952, + 10, + 3, + 0.25000000023283064, + 10 + ] + } + } + }, + "120406": { + "Id": 120406, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120407": { + "Id": 120407, + "Name": "{RUBY_B#せっしょういれい}摂召威霊{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、「神君」の1ターン目の攻撃段数+#1[i]。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Maze.png", + "LevelUpSkillID": [ + 120407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1204101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1204202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1204202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1204102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1204205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1204205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1204103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1204103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 6, + 0.25000000023283064 + ], + "PointID": 1204101, + "PointName": "{RUBY_B#はじん}破陣{RUBY_E#}", + "PointDesc": "「神君」の次のターンの攻撃段数が#1[i]以上の場合、神君の次のターンの会心ダメージ+#2[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1204102, + "PointName": "{RUBY_B#せんけん}先見{RUBY_E#}", + "PointDesc": "戦闘開始時、EPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1204103, + "PointName": "{RUBY_B#けんしょう}遣将{RUBY_E#}", + "PointDesc": "戦闘スキルを発動した後、会心率+#1[i]%#2[i]ターン継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1204, + "Set4IDList": [ + 115, + 109, + 122 + ], + "Set2IDList": [ + 318, + 306, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1205": { + "Name": "{RUBY_B#ジン}刃{RUBY_E#}", + "Desc": "「星核ハンター」のメンバー。己が身を顧みず、刃にさらす剣客。\\n「運命の奴隷」に仕え、怖ろしい自己回復力を持つ。", + "CharaInfo": { + "Camp": "星核ハンター", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "blade", + "SPNeed": 130, + "BaseType": "Warrior", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 120501, + "Name": "{RUBY_B#けいじゅしる}形寿記{RUBY_E#}せし{RUBY_B#けんしん}剣身{RUBY_E#}\\n{RUBY_B#じごくへん}地獄変{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}く", + "Desc": "指定した敵単体に対する必殺技によるダメージが、刃の戦闘中失ったHPの累計#1[i]%分アップする。\\n戦闘中失ったHPの累計のカウントは、刃の最大HPの#2[i]%を超えず、必殺技を発動した後にリセットされる。", + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Id": 120502, + "Name": "{RUBY_B#しり}支離{RUBY_E#}の{RUBY_B#ゆめ}旧夢{RUBY_E#}\\n{RUBY_B#ばんじ}万事{RUBY_E#}が{RUBY_B#いこん}遺恨{RUBY_E#}", + "Desc": "刃が「地獄変」状態の時、会心率+#1[i]%。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "Id": 120503, + "Name": "{RUBY_B#たんぞう}鍛造{RUBY_E#}されし{RUBY_B#げんこう}玄鋼{RUBY_E#}\\n{RUBY_B#かんこうはな}寒光放{RUBY_E#}つ", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 120504, + "Name": "{RUBY_B#めいふ}冥府{RUBY_E#}の{RUBY_B#きろこ}岐路越{RUBY_E#}え\\n{RUBY_B#かいせい}回生{RUBY_E#}せし{RUBY_B#むくろ}骸{RUBY_E#}", + "Desc": "残りHPが50%を超える状態から、50%以下になった時、最大HP+#1[i]%、この効果は最大で#2[i]層累積できる。", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "5": { + "Id": 120505, + "Name": "{RUBY_B#じゅうおう}十王{RUBY_E#}の{RUBY_B#たいへき}大辟{RUBY_E#}\\n{RUBY_B#か}懸{RUBY_E#}かり{RUBY_B#て}照{RUBY_E#}らす{RUBY_B#ごうきょう}業鏡{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 120506, + "Name": "{RUBY_B#か}涸{RUBY_E#}れし{RUBY_B#こんぱく}魂魄{RUBY_E#}\\n{RUBY_B#とど}留{RUBY_E#}まりて{RUBY_B#こ}此{RUBY_E#}の{RUBY_B#み}身{RUBY_E#}に{RUBY_B#もど}戻{RUBY_E#}る", + "Desc": "チャージ層数の上限が4層になる。天賦による追加攻撃ダメージが、さらに刃の最大HP#1[i]%分アップする。", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "120501": { + "Id": 120501, + "Name": "{RUBY_B#しりけん}支離剣{RUBY_E#}", + "Desc": "指定した敵単体に刃の攻撃力#1[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120502": { + "Id": 120502, + "Name": "{RUBY_B#じごくへん}地獄変{RUBY_E#}", + "Desc": "刃のHPを最大HP#1[i]%分消費して「地獄変」状態に入る。\\n「地獄変」状態では戦闘スキルを発動できず、自身の与ダメージ+#4[i]%、通常攻撃「支離剣」が「無間剣樹」に強化される、#2[i]ターン継続。\\n残りHPが足りない場合、戦闘スキルを発動した時、刃の残りHPが1になる。\\nこの戦闘スキルはEPを回復できない。この戦闘スキルを発動した後、ターンは終了しない。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.1479999995790422 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.17599999974481761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.20399999991059303 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.23200000007636845 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.26000000024214387 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.2949999999254942 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.33000000030733645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.3649999999906868 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.4279999998398125 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.45600000000558794 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.48400000017136335 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5120000003371388 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5400000005029142 + ] + } + } + }, + "120503": { + "Id": 120503, + "Name": "{RUBY_B#たいへきばんし}大辟万死{RUBY_E#}", + "Desc": "刃の残りHPを最大HPの50%にし、敵単体に刃の攻撃力#1[i]%+最大HP#2[i]%+戦闘中失ったHPの累計#5[i]%分の風属性ダメージを与え、隣接する敵に刃の攻撃力#3[f1]%+最大HP#4[i]%+戦闘中失ったHPの累計#6[i]%分の風属性ダメージを与える。\\n戦闘中失ったHPの累計のカウントは、刃の最大HPの#7[i]%を超えず、必殺技を発動した後にリセットされる。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 0.6000000005587935, + 0.09599999967031181, + 0.24000000022351742, + 0.6000000005587935, + 0.24000000022351742, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.2559999998193234, + 0.6400000005960464, + 0.10240000020712614, + 0.2559999998193234, + 0.6400000005960464, + 0.2559999998193234, + 0.9000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.27200000011362135, + 0.6800000006332994, + 0.10880000004544854, + 0.27200000011362135, + 0.6800000006332994, + 0.27200000011362135, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 0.7200000006705523, + 0.11519999988377094, + 0.28799999970942736, + 0.7200000006705523, + 0.28799999970942736, + 0.9000000008381903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3040000000037253, + 0.7600000007078052, + 0.12160000042058527, + 0.3040000000037253, + 0.7600000007078052, + 0.3040000000037253, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3200000002980232, + 0.8000000007450581, + 0.12799999956041574, + 0.3200000002980232, + 0.8000000007450581, + 0.3200000002980232, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3400000003166497, + 0.8500000007916242, + 0.1359999997075647, + 0.3400000003166497, + 0.8500000007916242, + 0.3400000003166497, + 0.9000000008381903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3600000003352761, + 0.9000000008381903, + 0.14399999985471368, + 0.3600000003352761, + 0.9000000008381903, + 0.3600000003352761, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3800000003539026, + 0.9500000008847564, + 0.15200000000186265, + 0.3800000003539026, + 0.9500000008847564, + 0.3800000003539026, + 0.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 1, + 0.1600000001490116, + 0.40000000037252903, + 1, + 0.40000000037252903, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.41599999996833503, + 1.040000000037253, + 0.166399999987334, + 0.41599999996833503, + 1.040000000037253, + 0.41599999996833503, + 0.9000000008381903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.43200000026263297, + 1.0800000000745058, + 0.17280000052414834, + 0.43200000026263297, + 1.0800000000745058, + 0.43200000026263297, + 0.9000000008381903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.44799999985843897, + 1.1200000001117587, + 0.17919999966397882, + 0.44799999985843897, + 1.1200000001117587, + 0.44799999985843897, + 0.9000000008381903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.4640000001527369, + 1.1600000001490116, + 0.18560000020079315, + 0.4640000001527369, + 1.1600000001490116, + 0.4640000001527369, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.48000000044703484, + 1.2000000001862645, + 0.19200000003911555, + 0.48000000044703484, + 1.2000000001862645, + 0.48000000044703484, + 0.9000000008381903 + ] + } + } + }, + "120504": { + "Id": 120504, + "Name": "{RUBY_B#しゅっこつ}倏忽{RUBY_E#}の{RUBY_B#おんし}恩賜{RUBY_E#}", + "Desc": "刃がダメージを受ける、またはHPを消費した時、チャージを1層獲得する。チャージは最大で5層累積できる。この効果は攻撃を1回受けるたびに1層まで累積できる。\\nチャージが上限に達した時、敵全体に追加攻撃を1回行い、刃の攻撃力#2[i]%+最大HP#4[i]%分の風属性ダメージを与え、刃の最大HP#3[i]%分のHPを回復する。追加攻撃を行った後、すべてのチャージを消費する。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.22000000020489097, + 0.25000000023283064, + 0.5500000005122274 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.24200000008568168, + 0.25000000023283064, + 0.6050000002142042 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.2639999999664724, + 0.25000000023283064, + 0.6600000006146729 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.2859999998472631, + 0.25000000023283064, + 0.7150000003166497 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.3079999997280538, + 0.25000000023283064, + 0.7700000007171184 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.33000000030733645, + 0.25000000023283064, + 0.8250000004190952 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.35750000015832484, + 0.25000000023283064, + 0.89375000144355 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.3850000000093132, + 0.25000000023283064, + 0.962500001071021 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.41250000055879354, + 0.25000000023283064, + 1.0312500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.44000000040978193, + 0.25000000023283064, + 1.1000000000931323 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.46200000029057264, + 0.25000000023283064, + 1.154999999795109 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.48400000017136335, + 0.25000000023283064, + 1.2100000001955777 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.5060000000521541, + 0.25000000023283064, + 1.2649999998975545 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.5279999999329448, + 0.25000000023283064, + 1.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.5500000005122274, + 0.25000000023283064, + 1.375 + ] + } + } + }, + "120506": { + "Id": 120506, + "Name": "攻撃", + "Desc": "敵を攻撃、戦闘突入後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120507": { + "Id": 120507, + "Name": "{RUBY_B#ごうとふう}業途風{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、刃の最大HP#2[i]%分のHPを消費し、敵全体に刃の最大HP#1[i]%分の風属性ダメージを与える。\\n残りHPが足りない場合、秘技を発動した時、刃の残りHPが1になる。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "120508": { + "Id": 120508, + "Name": "{RUBY_B#むげんけんじゅ}無間剣樹{RUBY_E#}", + "Desc": "刃のHPを最大HP#1[i]%分消費し、指定した敵単体に刃の攻撃力#2[i]%+最大HP#4[i]%分の風属性ダメージを与え、隣接する敵に刃の攻撃力#3[i]%+最大HP#5[i]%分の風属性ダメージを与える。\\n残りHPが足りない場合、「無間剣樹」を発動した時、刃の残りHPが1になる。\\n「無間剣樹」はSPを回復できない。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 0.0800000000745058, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 0.24000000022351742, + 0.09599999967031181, + 0.6000000005587935, + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 0.2800000002607703, + 0.11199999996460974, + 0.7000000006519258, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 0.3200000002980232, + 0.12799999956041574, + 0.8000000007450581, + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 0.3600000003352761, + 0.14399999985471368, + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 0.40000000037252903, + 0.1600000001490116, + 1, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 0.44000000040978193, + 0.17599999974481761, + 1.1000000000931323, + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 0.48000000044703484, + 0.19200000003911555, + 1.2000000001862645, + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 0.5200000004842877, + 0.20799999963492155, + 1.3000000002793968, + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.5600000005215406, + 0.22399999992921948, + 1.400000000372529, + 0.5600000005215406 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Maze.png", + "LevelUpSkillID": [ + 120507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1205101, + "PointName": "{RUBY_B#むじんけいじゅ}無尽形寿{RUBY_E#}", + "PointDesc": "刃の残りHPが50%以下の時、治癒を受けた時の回復量+#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 100 + ], + "PointID": 1205102, + "PointName": "{RUBY_B#ひゃくしたいにん}百死耐忍{RUBY_E#}", + "PointDesc": "「無間剣樹」を発動した後、弱点撃破状態の敵に命中した場合、刃は自身の最大HP#1[i]%+#2[i]のHPを回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1205103, + "PointName": "{RUBY_B#えこうめつぼう}壊劫滅亡{RUBY_E#}", + "PointDesc": "天賦による追加攻撃ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205201, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1205101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205203, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1205202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1205203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205205, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1205102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1205205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205207, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1205206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1205103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205210, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1120501, + "Name": "{RUBY_B#けいじゅしる}形寿記{RUBY_E#}せし{RUBY_B#けんしん}剣身{RUBY_E#}\\n{RUBY_B#じごくへん}地獄変{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}く", + "Desc": "指定した敵単体に対する強化通常攻撃と必殺技によるダメージが、刃の戦闘中失ったHPの累計#1[i]%分アップする。\\n戦闘中失ったHPの累計のカウントは、刃の最大HPの#2[i]%を超えず、必殺技を発動した後にリセットされる。", + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Id": 1120502, + "Name": "{RUBY_B#しり}支離{RUBY_E#}の{RUBY_B#ゆめ}旧夢{RUBY_E#}\\n{RUBY_B#ばんじ}万事{RUBY_E#}が{RUBY_B#いこん}遺恨{RUBY_E#}", + "Desc": "刃が「地獄変」状態の時、会心率+#1[i]%。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "Id": 1120503, + "Name": "{RUBY_B#たんぞう}鍛造{RUBY_E#}されし{RUBY_B#げんこう}玄鋼{RUBY_E#}\\n{RUBY_B#かんこうはな}寒光放{RUBY_E#}つ", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 1120504, + "Name": "{RUBY_B#めいふ}冥府{RUBY_E#}の{RUBY_B#きろこ}岐路越{RUBY_E#}え\\n{RUBY_B#かいせい}回生{RUBY_E#}せし{RUBY_B#むくろ}骸{RUBY_E#}", + "Desc": "残りHPが50%を超える状態から、50%以下になった時、最大HP+#1[i]%、この効果は最大で#2[i]層累積できる。", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "5": { + "Id": 1120505, + "Name": "{RUBY_B#じゅうおう}十王{RUBY_E#}の{RUBY_B#たいへき}大辟{RUBY_E#}\\n{RUBY_B#か}懸{RUBY_E#}かり{RUBY_B#て}照{RUBY_E#}らす{RUBY_B#ごうきょう}業鏡{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 1120506, + "Name": "{RUBY_B#か}涸{RUBY_E#}れし{RUBY_B#こんぱく}魂魄{RUBY_E#}\\n{RUBY_B#とど}留{RUBY_E#}まりて{RUBY_B#こ}此{RUBY_E#}の{RUBY_B#み}身{RUBY_E#}に{RUBY_B#もど}戻{RUBY_E#}る", + "Desc": "チャージ層数の上限が4層になる。天賦による追加攻撃ダメージが、さらに刃の最大HP#1[i]%分アップする。", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "1120501": { + "Id": 1120501, + "Name": "{RUBY_B#しりけん}支離剣{RUBY_E#}", + "Desc": "指定した敵単体に刃の最大HP#1[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "1120502": { + "Id": 1120502, + "Name": "{RUBY_B#じごくへん}地獄変{RUBY_E#}", + "Desc": "刃の最大HPの#1[i]%分消費し、「地獄変」状態に入る。\\n「地獄変」状態では戦闘スキルを発動できず、自身の与ダメージ+#4[i]%、敵に攻撃される確率が大幅に上がり、通常攻撃「支離剣」が「無間剣樹」に強化される、#2[i]ターン継続。\\n残りHPが足りない場合、戦闘スキルを発動した時、刃の残りHPが1になる。\\nこの戦闘スキルはEPを回復しない。この戦闘スキルを発動した後、ターンは終了しない。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.12000000011175871, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.1479999995790422, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.17599999974481761, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.20399999991059303, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.23200000007636845, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.26000000024214387, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.2949999999254942, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.33000000030733645, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.3649999999906868, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.40000000037252903, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.4279999998398125, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.45600000000558794, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.48400000017136335, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5120000003371388, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5400000005029142, + 5 + ] + } + } + }, + "1120503": { + "Id": 1120503, + "Name": "{RUBY_B#たいへきばんし}大辟万死{RUBY_E#}", + "Desc": "刃の残りHPを最大HPの50%にし、敵単体に刃の最大HPの#1[i]%+戦闘中失った累計HPの#5[i]%分の風属性ダメージを与え、隣接する敵に刃の最大HPの#1[i]%+戦闘中失った累計HPの#5[i]%分の風属性ダメージを与える。\\n戦闘中失ったHPの累計カウントは、刃の最大HPの#7[i]%を超えず、必殺技を発動した後にリセットされる。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.6000000005587935, + 0.3600000003352761, + 0.3000000002793968, + 0.6000000005587935, + 0.3000000002793968, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.6400000005960464, + 0.3840000000782311, + 0.3200000002980232, + 0.6400000005960464, + 0.3200000002980232, + 0.9000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.6800000006332994, + 0.40799999982118607, + 0.3400000003166497, + 0.6800000006332994, + 0.3400000003166497, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.7200000006705523, + 0.43200000026263297, + 0.3600000003352761, + 0.7200000006705523, + 0.3600000003352761, + 0.9000000008381903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.7600000007078052, + 0.45600000000558794, + 0.3800000003539026, + 0.7600000007078052, + 0.3800000003539026, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.8000000007450581, + 0.48000000044703484, + 0.40000000037252903, + 0.8000000007450581, + 0.40000000037252903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.8500000007916242, + 0.5100000004749745, + 0.42500000004656613, + 0.8500000007916242, + 0.42500000004656613, + 0.9000000008381903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.9000000008381903, + 0.5400000005029142, + 0.45000000041909516, + 0.9000000008381903, + 0.45000000041909516, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.9500000008847564, + 0.5700000005308539, + 0.47500000009313226, + 0.9500000008847564, + 0.47500000009313226, + 0.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1, + 0.6000000005587935, + 0.5000000004656613, + 1, + 0.5000000004656613, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 1.040000000037253, + 0.6240000003017485, + 0.5200000004842877, + 1.040000000037253, + 0.5200000004842877, + 0.9000000008381903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 1.0800000000745058, + 0.6480000000447035, + 0.5400000005029142, + 1.0800000000745058, + 0.5400000005029142, + 0.9000000008381903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 1.1200000001117587, + 0.6720000004861504, + 0.5600000005215406, + 1.1200000001117587, + 0.5600000005215406, + 0.9000000008381903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 1.1600000001490116, + 0.6960000002291054, + 0.5800000005401671, + 1.1600000001490116, + 0.5800000005401671, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 1.2000000001862645, + 0.7200000006705523, + 0.6000000005587935, + 1.2000000001862645, + 0.6000000005587935, + 0.9000000008381903 + ] + } + } + }, + "1120504": { + "Id": 1120504, + "Name": "{RUBY_B#しゅっこつ}倏忽{RUBY_E#}の{RUBY_B#おんし}恩賜{RUBY_E#}", + "Desc": "刃がダメージを受ける、またはHPを消費した時、チャージを1層獲得し、最大で5層まで累積できる。1回の攻撃では1層までしか累積できない。\\nチャージが上限に達した時、敵全体に追加攻撃を1回行い、刃の最大HP#2[i]%分の風属性ダメージを与え、刃の最大HP#3[i]%分のHPを回復する。追加攻撃を行った後、すべてのチャージは消費される。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.6500000006053597, + 0.25000000023283064, + 0.6500000006053597 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.7150000003166497, + 0.25000000023283064, + 0.7150000003166497 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.7800000007264316, + 0.25000000023283064, + 0.7800000007264316 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.8450000004377216, + 0.25000000023283064, + 0.8450000004377216 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.9100000008475035, + 0.25000000023283064, + 0.9100000008475035 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.9750000005587935, + 0.25000000023283064, + 0.9750000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1.0562500001396984, + 0.25000000023283064, + 1.0562500001396984 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1.1374999999534339, + 0.25000000023283064, + 1.1374999999534339 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1.2187500004656613, + 0.25000000023283064, + 1.2187500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.3000000002793968, + 0.25000000023283064, + 1.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1.3649999999906868, + 0.25000000023283064, + 1.3649999999906868 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1.4300000004004687, + 0.25000000023283064, + 1.4300000004004687 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1.4950000001117587, + 0.25000000023283064, + 1.4950000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1.5600000005215406, + 0.25000000023283064, + 1.5600000005215406 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1.6250000002328306, + 0.25000000023283064, + 1.6250000002328306 + ] + } + } + }, + "1120506": { + "Id": 1120506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1120507": { + "Id": 1120507, + "Name": "{RUBY_B#ごうとふう}業途風{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、刃の最大HP#2[i]%分のHPを消費し、敵全体に刃の最大HP#1[i]%分の風属性ダメージを与える。\\n残りHPが足りない場合、秘技を発動した時、刃の残りHPが1になる。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "1120508": { + "Id": 1120508, + "Name": "{RUBY_B#むげんけんじゅ}無間剣樹{RUBY_E#}", + "Desc": "刃のHPを最大HP#1[i]%分消費し、指定した敵単体に刃の最大HP#2[i]%分の風属性ダメージを与え、隣接する敵に刃の最大HP#3[i]%分の風属性ダメージを与える。\\n残りHPが足りない場合、「無間剣樹」を発動した時、刃の残りHPが1になる。\\n「無間剣樹」はSPを回復できない。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.6500000006053597, + 0.26000000024214387, + 0.6500000006053597, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 0.7800000007264316, + 0.31200000015087426, + 0.7800000007264316, + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 0.9100000008475035, + 0.36400000005960464, + 0.9100000008475035, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 1.040000000037253, + 0.41599999996833503, + 1.040000000037253, + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 1.1700000001583248, + 0.4679999998770654, + 1.1700000001583248, + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 1.3000000002793968, + 0.5200000004842877, + 1.3000000002793968, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 1.4300000004004687, + 0.5720000003930181, + 1.4300000004004687, + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 1.5600000005215406, + 0.6240000003017485, + 1.5600000005215406, + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 1.6900000006426126, + 0.6760000002104789, + 1.6900000006426126, + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 1.8200000007636845, + 0.7280000001192093, + 1.8200000007636845, + 0.5600000005215406 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Maze.png", + "LevelUpSkillID": [ + 1120507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 11205101, + "PointName": "{RUBY_B#むじんけいじゅ}無尽形寿{RUBY_E#}", + "PointDesc": "刃の残りHPが50%以下の時、治癒を受けた時の回復量+#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 100 + ], + "PointID": 11205102, + "PointName": "{RUBY_B#ひゃくしたいにん}百死耐忍{RUBY_E#}", + "PointDesc": "「無間剣樹」を発動した後、弱点撃破状態の敵に命中した場合、刃は自身の最大HP#1[i]%+#2[i]のHPを回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 15 + ], + "PointID": 11205103, + "PointName": "{RUBY_B#えこうめつぼう}壊劫滅亡{RUBY_E#}", + "PointDesc": "天賦による追加攻撃ダメージ+#1[i]%、さらにEPを#2[i]回復する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205201, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11205101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205203, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11205202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11205203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205205, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11205102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11205205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205207, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11205206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11205103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205210, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1205, + "Set4IDList": [ + 113, + 110, + 102 + ], + "Set2IDList": [ + 306, + 309, + 302 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1206": { + "Name": "{RUBY_B#スショウ}素裳{RUBY_E#}", + "Desc": "仙舟「曜青」で生まれ、「羅浮」の雲騎軍で訓練を受けている新兵。\\n彼女は母から贈られた家伝の剣を手に、これから訪れる未来に期待を膨らませている。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 31, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 32, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "sushang", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 120601, + "Name": "{RUBY_B#ゆうじんゆうよ}游刃有余{RUBY_E#}", + "Desc": "弱点撃破状態の敵に対して戦闘スキルを発動した後、SPを1回復する。", + "ParamList": [] + }, + "2": { + "Id": 120602, + "Name": "{RUBY_B#そ}其{RUBY_E#}の{RUBY_B#み}身{RUBY_E#}、{RUBY_B#ひゃくれん}百煉{RUBY_E#}", + "Desc": "「剣勢」発動後、素裳の被ダメージ-#1[i]%、1ターン継続。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 120603, + "Name": "{RUBY_B#でんこけんりゅう}伝古剣流{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 120604, + "Name": "{RUBY_B#そ}其{RUBY_E#}の{RUBY_B#こころ}心{RUBY_E#}、{RUBY_B#ひゃくへき}百闢{RUBY_E#}", + "Desc": "素裳の撃破特効+#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Id": 120605, + "Name": "{RUBY_B#たいきょしんい}太虚神意{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 120606, + "Name": "{RUBY_B#じょうぜんじゃくすい}上善若水{RUBY_E#}", + "Desc": "天賦の加速効果が累積できるようになる、最大で2層累積できる。戦闘に入った後、素裳は天賦の加速効果を1層獲得する。", + "ParamList": [] + } + }, + "Skills": { + "120601": { + "Id": 120601, + "Name": "{RUBY_B#うんきけんきょう}雲騎剣経{RUBY_E#}・{RUBY_B#げっこう}月虹{RUBY_E#}", + "Desc": "指定した敵単体に素裳の攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120602": { + "Id": 120602, + "Name": "{RUBY_B#うんきけんきょう}雲騎剣経{RUBY_E#}・{RUBY_B#さんけい}山傾{RUBY_E#}", + "Desc": "指定した敵単体に素裳の攻撃力#1[i]%分の物理属性ダメージを与える。最後の1ヒットの後に#3[i]%の確率で「剣勢」を発動し、敵に素裳の攻撃力#2[i]%分の物理属性付加ダメージを与える。\\n敵が弱点撃破状態である場合、「剣勢」は必ず発動する。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0500000000465661, + 0.5000000004656613, + 0.33000000030733645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.154999999795109, + 0.5500000005122274, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2600000002421439, + 0.6000000005587935, + 0.33000000030733645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3649999999906868, + 0.6500000006053597, + 0.33000000030733645 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.4700000004377216, + 0.7000000006519258, + 0.33000000030733645 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5750000001862645, + 0.7500000006984919, + 0.33000000030733645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.706250000745058, + 0.8125000009313226, + 0.33000000030733645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.8375000006053597, + 0.8750000004656613, + 0.33000000030733645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9687500011641532, + 0.9375000006984919, + 0.33000000030733645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 1, + 0.33000000030733645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.204999999841675, + 1.0500000000465661, + 0.33000000030733645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.31000000028871, + 1.1000000000931323, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.415000000037253, + 1.1500000001396984, + 0.33000000030733645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5200000004842877, + 1.2000000001862645, + 0.33000000030733645 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6250000002328306, + 1.2500000002328306, + 0.33000000030733645 + ] + } + } + }, + "120603": { + "Id": 120603, + "Name": "{RUBY_B#たいきょけいうん}太虚形蘊{RUBY_E#}・{RUBY_B#しょくや}燭夜{RUBY_E#}", + "Desc": "指定した敵単体に素裳の攻撃力#1[i]%分の物理属性ダメージを与え、素裳が即座に行動する。素裳の攻撃力+#4[i]%、戦闘スキルを発動した時に「剣勢」発動の判定回数+2、#2[i]ターン継続。\\n追加の判定で発動した「剣勢」のダメージは、本来のダメージの#3[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9200000008568168, + 2, + 0.5000000004656613, + 0.18000000016763806 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.04799999948591, + 2, + 0.5000000004656613, + 0.19200000003911555 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.1759999997448176, + 2, + 0.5000000004656613, + 0.20399999991059303 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.3040000000037253, + 2, + 0.5000000004656613, + 0.21599999978207052 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.432000000262633, + 2, + 0.5000000004656613, + 0.227999999653548 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5600000005215406, + 2, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.7200000006705523, + 2, + 0.5000000004656613, + 0.2549999998882413 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 2, + 0.5000000004656613, + 0.2700000002514571 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.040000000037253, + 2, + 0.5000000004656613, + 0.28499999991618097 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.2000000001862645, + 2, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.3279999997466803, + 2, + 0.5000000004656613, + 0.31200000015087426 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.456000000005588, + 2, + 0.5000000004656613, + 0.32400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.5840000002644956, + 2, + 0.5000000004656613, + 0.3359999998938292 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.7120000005234033, + 2, + 0.5000000004656613, + 0.3479999997653067 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.840000000782311, + 2, + 0.5000000004656613, + 0.3600000003352761 + ] + } + } + }, + "120604": { + "Id": 120604, + "Name": "{RUBY_B#ゆうじんじゃくすい}游刃若水{RUBY_E#}", + "Desc": "フィールド上の敵が弱点撃破された時、素裳の速度+#1[f2]%#2[i]ターン継続。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 2 + ] + } + } + }, + "120606": { + "Id": 120606, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120607": { + "Id": 120607, + "Name": "{RUBY_B#うんきけんきょう}雲騎剣経{RUBY_E#}・{RUBY_B#こうじん}叩陣{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、敵全体に素裳の攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Maze.png", + "LevelUpSkillID": [ + 120607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1206101, + "PointName": "{RUBY_B#じゅんしん}純真{RUBY_E#}", + "PointDesc": "残りHPが#1[i]%以下の場合、敵に攻撃される確率がダウンする。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0249999996740371, + 10 + ], + "PointID": 1206102, + "PointName": "{RUBY_B#ちくこう}逐寇{RUBY_E#}", + "PointDesc": "「剣勢」を発動するたび、「剣勢」ダメージ+#1[i]%、最大で#2[i]回累積できる。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1206103, + "PointName": "{RUBY_B#はてき}破敵{RUBY_E#}", + "PointDesc": "通常攻撃または戦闘スキルを発動した後、フィールド上に弱点撃破状態の敵が存在する場合、素裳の行動順#1[i]%早まる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1206101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1206202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1206102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1206205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1206103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1206208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1206208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 57, + "DefenceAdd": 2.850000000791624, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 79.80000000074506, + "DefenceAdd": 2.850000000791624, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 102.6000000005588, + "DefenceAdd": 2.850000000791624, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 125.40000000037253, + "DefenceAdd": 2.850000000791624, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 148.20000000018626, + "DefenceAdd": 2.850000000791624, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 171, + "DefenceAdd": 2.850000000791624, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 193.80000000074506, + "DefenceAdd": 2.850000000791624, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1206, + "Set4IDList": [ + 105, + 111, + 119 + ], + "Set2IDList": [ + 311, + 307, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 353, + 298 + ] + } + }, + "1207": { + "Name": "{RUBY_B#ギョクウ}御空{RUBY_E#}", + "Desc": "仙舟「羅浮」の天舶司のリーダー。百戦錬磨の飛行士で弓の使い手。\\nだが今は膨大な公務に追われ、忙しくしている。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "yukong", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 120701, + "Name": "{RUBY_B#てんしゅう}天舟{RUBY_E#}の{RUBY_B#ひしょう}飛将{RUBY_E#}\\n{RUBY_B#ゆみま}弓枕{RUBY_E#}き{RUBY_B#いくさ}戦{RUBY_E#}を{RUBY_B#ま}待{RUBY_E#}つ", + "Desc": "戦闘に入る時、味方全体の速度+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Id": 120702, + "Name": "{RUBY_B#せいしょう}青霄{RUBY_E#}を{RUBY_B#か}駆{RUBY_E#}け\\n{RUBY_B#そうきゅう}蒼穹{RUBY_E#}を{RUBY_B#ぎょ}御{RUBY_E#}す", + "Desc": "任意の味方のEPが満タンの時、御空はさらにEPを#1[i]回復する。この効果は味方1名につき1回まで発動できる。御空が必殺技を発動した後、この効果の発動可能回数がリセットされる。", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 120703, + "Name": "{RUBY_B#だんぜつ}断絶{RUBY_E#}せぬ{RUBY_B#ききゅう}危弓{RUBY_E#}\\n{RUBY_B#や}止{RUBY_E#}まぬ{RUBY_B#ひし}飛矢{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 120704, + "Name": "{RUBY_B#ひゃくり}百里{RUBY_E#}の{RUBY_B#かぜひろ}風拾{RUBY_E#}い\\n{RUBY_B#きゅうきょく}九曲{RUBY_E#}の{RUBY_B#かぶらな}鏑鳴{RUBY_E#}らす", + "Desc": "「鳴弦号令」がある時、御空の与ダメージ+#1[i]%。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 120705, + "Name": "{RUBY_B#せいぎ}井儀{RUBY_E#}の{RUBY_B#よつや}四矢{RUBY_E#}\\n{RUBY_B#さんれん}参連{RUBY_E#}の{RUBY_B#しつう}疾羽{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 120706, + "Name": "{RUBY_B#いかづち}雷{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}き{RUBY_B#ゆみづる}弓弦{RUBY_E#}\\n{RUBY_B#げきどう}激動{RUBY_E#}する{RUBY_B#つくゆみ}銑弓{RUBY_E#}", + "Desc": "御空が必殺技を発動した時、先に「鳴弦号令」を#1[i]層獲得する。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "120701": { + "Id": 120701, + "Name": "{RUBY_B#りゅうてき}流鏑{RUBY_E#}", + "Desc": "指定した敵単体に御空の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120702": { + "Id": 120702, + "Name": "{RUBY_B#てんきゅう}天宮{RUBY_E#}に{RUBY_B#な}鳴{RUBY_E#}り{RUBY_B#とよ}響{RUBY_E#}む{RUBY_B#つる}弦{RUBY_E#}", + "Desc": "「鳴弦号令」を#1[i]層獲得する。「鳴弦号令」は最大で2層累積できる。御空に「鳴弦号令」がある時、味方全体の攻撃力+#2[i]%。味方のターンが終了するたびに、御空の「鳴弦号令」が1層減る。\\n御空が戦闘スキルで「鳴弦号令」を獲得したターン、「鳴弦号令」は減らない。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "120703": { + "Id": 120703, + "Name": "{RUBY_B#かんうんせん}貫雲箭{RUBY_E#}", + "Desc": "必殺技を発動した時、御空に「鳴弦号令」がある場合、さらに味方全体の会心率+#2[f1]%、会心ダメージ+#3[i]%。指定した敵単体に御空の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.21000000019557774, + 0.3900000003632158 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.21699999971315265, + 0.41599999996833503 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.22399999992921948, + 0.4420000002719462 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.23100000014528632, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.23799999966286123, + 0.4940000001806766 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 0.24499999987892807, + 0.5200000004842877 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 0.25375000084750354, + 0.5525000006891787 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 0.26250000041909516, + 0.5850000001955777 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 0.2712500006891787, + 0.6175000004004687 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 0.2800000002607703, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 0.2869999997783452, + 0.6760000002104789 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 0.29399999999441206, + 0.7020000005140901 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 0.3010000002104789, + 0.7280000001192093 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 0.3079999997280538, + 0.7540000004228204 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 0.31499999994412065, + 0.7800000007264316 + ] + } + } + }, + "120704": { + "Id": 120704, + "Name": "{RUBY_B#てっさつや}徹札矢{RUBY_E#}", + "Desc": "通常攻撃を行うと、追加で御空の攻撃力#1[i]%分の虚数属性ダメージを与え、その回の攻撃の削靭値+#2[i]%。この効果は#3[i]ターン後に再度発動できる。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1, + 1 + ] + } + } + }, + "120706": { + "Id": 120706, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120707": { + "Id": 120707, + "Name": "{RUBY_B#かぜ}風{RUBY_E#}{RUBY_B#お}追{RUBY_E#}う{RUBY_B#うんえん}雲鳶{RUBY_E#}", + "Desc": "秘技を使用した後、#1[i]秒の疾走状態に入る。疾走状態では、自身の移動速度+#2[i]%、敵を先制攻撃して戦闘に入る時、御空は「鳴弦号令」を#3[i]層獲得する。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.3500000003259629, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Maze.png", + "LevelUpSkillID": [ + 120707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1207101, + "PointName": "{RUBY_B#じょうせき}襄尺{RUBY_E#}", + "PointDesc": "デバフを付与された時、御空はそれを1回抵抗できる。この効果は#1[i]ターン後に再度発動できる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.12000000011175871 + ], + "PointID": 1207102, + "PointName": "{RUBY_B#ちい}遅彝{RUBY_E#}", + "PointDesc": "御空がフィールド上にいる時、味方全体の虚数属性ダメージ+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1207103, + "PointName": "{RUBY_B#きそう}気壮{RUBY_E#}", + "PointDesc": "「鳴弦号令」がある時、味方が行動した後、御空はEPを#1[i]回復する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207201, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1207101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207203, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1207202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207204, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1207201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207205, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1207102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1207205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207207, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1207201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207208, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1207103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1207208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207210, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1207208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 51, + "DefenceAdd": 2.5500000005122274, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 71.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 91.80000000074506, + "DefenceAdd": 2.5500000005122274, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 112.20000000018626, + "DefenceAdd": 2.5500000005122274, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 132.6000000005588, + "DefenceAdd": 2.5500000005122274, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 153, + "DefenceAdd": 2.5500000005122274, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 173.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1207, + "Set4IDList": [ + 102, + 112, + 111 + ], + "Set2IDList": [ + 302, + 312, + 308 + ], + "PropertyList3": [ + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 350, + 294 + ], + "LocalCriticalChance": 0.2800000002607703 + } + }, + "1208": { + "Name": "{RUBY_B#フゲン}符玄{RUBY_E#}", + "Desc": "仙舟「羅浮」太卜司の長。\\n第三の目と窮観の陣を用いて、仙舟の航路を占い、物事の吉凶を予見する。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "fuxuan", + "SPNeed": 135, + "BaseType": "Knight", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 120801, + "Name": "{RUBY_B#しき}司危{RUBY_E#}", + "Desc": "「鑑知」状態の味方の会心ダメージ+#1[i]%。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Id": 120802, + "Name": "{RUBY_B#じゅうちょう}柔兆{RUBY_E#}", + "Desc": "「窮観の陣」が起動している時、味方がHPが0になるダメージを受けても、今回の行動でHPが0になるダメージを受けたすべての味方は戦闘不能状態にならず、自身の最大HP#1[i]%分のHPを回復する。この効果は一度の戦闘で1回まで発動できる。", + "ParamList": [ + 0.7000000006519258 + ] + }, + "3": { + "Id": 120803, + "Name": "{RUBY_B#ちょくふ}直符{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 120804, + "Name": "{RUBY_B#こうたく}格澤{RUBY_E#}", + "Desc": "「窮観の陣」の中にいる符玄以外の味方が攻撃を受けた後、符玄はEPを#1[i]回復する。", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 120805, + "Name": "{RUBY_B#けいしん}計神{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 120806, + "Name": "{RUBY_B#しゅりょう}種陵{RUBY_E#}", + "Desc": "「窮観の陣」が起動している時、味方全体が戦闘中失った累計HPをカウントする。符玄の必殺技によるダメージが、戦闘中失った累計HP#1[i]%分アップする。\\n戦闘中失った累計HPのカウントは、符玄の最大HPの#2[i]%を超えず、必殺技を発動した後にリセットされる。", + "ParamList": [ + 2, + 1.2000000001862645 + ] + } + }, + "Skills": { + "120801": { + "Id": 120801, + "Name": "{RUBY_B#しげきさいせい}始撃歳星{RUBY_E#}", + "Desc": "指定した敵単体に符玄の最大HPの#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "120802": { + "Id": 120802, + "Name": "{RUBY_B#たいび}太微{RUBY_E#}の{RUBY_B#ぎょうき}行棋{RUBY_E#}、{RUBY_B#かげ}影{RUBY_E#}{RUBY_B#しめ}示{RUBY_E#}す{RUBY_B#れいだい}霊台{RUBY_E#}", + "Desc": "「窮観の陣」を起動し、符玄以外の味方が受ける、バリアに防がれる前のダメージの#1[i]%を符玄が分担する、#3[i]ターン継続。\\n「窮観の陣」の中にいる味方全体は「鑑知」を得る。「鑑知」状態の味方は、最大HPが符玄の最大HPの#4[f1]%分アップし、会心率+#5[f1]%。\\n符玄が戦闘不能状態になった時、「窮観の陣」は解除される。", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.032999999821186066, + 0.06599999964237213 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.035999999614432454, + 0.07199999992735684 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.03899999940767884, + 0.07799999951384962 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04199999989941716, + 0.08399999979883432 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04499999969266355, + 0.09000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04875000030733645, + 0.09749999991618097 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.05250000022351742, + 0.1049999997485429 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.056250000139698386, + 0.11250000027939677 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06299999984912574, + 0.12599999969825149 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06599999964237213, + 0.1319999999832362 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06899999943561852, + 0.13799999956972897 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.07499999972060323, + 0.1500000001396984 + ] + } + } + }, + "120803": { + "Id": 120803, + "Name": "{RUBY_B#てんりつたいえん}天律大衍{RUBY_E#}、{RUBY_B#れきごうきいつ}歴劫帰一{RUBY_E#}", + "Desc": "敵全体に符玄の最大HPの#1[i]%分の量子属性ダメージを与え、天賦によるHP回復の発動回数+1。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6400000005960464 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6800000006332994 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7600000007078052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8500000007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9500000008847564 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.040000000037253 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.0800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1200000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2000000001862645 + ] + } + } + }, + "120804": { + "Id": 120804, + "Name": "{RUBY_B#けんこんせいい}乾坤清夷{RUBY_E#}、{RUBY_B#いちようらいふく}一陽来復{RUBY_E#}", + "Desc": "符玄が戦闘可能状態の時、味方全体に「避邪」を付与する。「避邪」状態の味方の受けるダメージ-#1[f1]%。\\n符玄の残りHP割合が#2[i]%以下になった時、自身の失ったHP#3[i]%分のHPを回復する。HPが0になる攻撃を受けた時、この効果は発動できない。この効果の初期の発動可能回数は1回、最大で2回まで累積できる。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1079999995417893, + 0.5000000004656613, + 0.8100000007543713 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.11599999968893826, + 0.5000000004656613, + 0.8200000007636845 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.12399999983608723, + 0.5000000004656613, + 0.8300000007729977 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1319999999832362, + 0.5000000004656613, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 0.8500000007916242 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.8625000009778887 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.8750000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.17000000015832484, + 0.5000000004656613, + 0.8875000006519258 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1879999996162951, + 0.5000000004656613, + 0.9100000008475035 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.19599999976344407, + 0.5000000004656613, + 0.9200000008568168 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20399999991059303, + 0.5000000004656613, + 0.93000000086613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.212000000057742, + 0.5000000004656613, + 0.9400000008754432 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 0.9500000008847564 + ] + } + } + }, + "120806": { + "Id": 120806, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120807": { + "Id": 120807, + "Name": "{RUBY_B#ひたいしる}否泰記{RUBY_E#}す{RUBY_B#しかくこ}四郭固{RUBY_E#}", + "Desc": "秘技を使用した後、味方全体は#1[i]秒間継続するバリアを獲得する。このバリアは敵のすべての攻撃を防ぎ、敵の攻撃を受けても戦闘に入らない。バリア継続期間中、戦闘に入る時、符玄は自動で「窮観の陣」を起動する、#2[i]ターン継続。", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Maze.png", + "LevelUpSkillID": [ + 120807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 20 + ], + "PointID": 1208101, + "PointName": "{RUBY_B#たいいつしんすう}太乙神数{RUBY_E#}", + "PointDesc": "「窮観の陣」が起動している時、符玄が戦闘スキルを発動すると、さらにEPを#1[i]回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1208201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 133 + ], + "PointID": 1208102, + "PointName": "{RUBY_B#きもんとんこう}奇門遁甲{RUBY_E#}", + "PointDesc": "必殺技を発動した時、符玄以外の味方のHPを、符玄の最大HPの#1[i]%分+#2[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1208201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208103, + "PointName": "{RUBY_B#りくじんしんか}六壬神課{RUBY_E#}", + "PointDesc": "「窮観の陣」が起動している時、敵が味方に行動制限系デバフを付与する場合、味方全体がその行動中に付与されるすべての行動制限系デバフに抵抗する。この効果は1回まで発動できる。再度「窮観の陣」を起動すると、発動可能回数がリセットされる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208201, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1208101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208203, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1208202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208205, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1208102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1208205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208207, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1208103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1208208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208210, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1208208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 63.360000000335276, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 200.64000000059605, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 88.70400000037625, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 280.89600000041537, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 114.04799999948591, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 361.15200000000186, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 139.39200000022538, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 441.4079999998212, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 164.73600000026636, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 521.664000000339, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 190.0800000000745, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 601.9200000008568, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 215.42400000011548, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 682.1759999997448, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1208, + "Set4IDList": [ + 113, + 106, + 108 + ], + "Set2IDList": [ + 302, + 310, + 308 + ], + "PropertyList3": [ + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "DefenceAddedRatio", + "StatusResistanceBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 328, + 280 + ], + "LocalCriticalChance": 0.12000000011175871 + } + }, + "1209": { + "Name": "{RUBY_B#ゲンキョウ}彦卿{RUBY_E#}", + "Desc": "将軍景元の護衛であり、まだ総角の歳に過ぎない剣の天才。\\n剣を手にすれば無敵である。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "yanqing", + "SPNeed": 140, + "BaseType": "Rogue", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 120901, + "Name": "{RUBY_B#そじん}素刃{RUBY_E#}", + "Desc": "彦卿が敵に攻撃を行う時、その敵が凍結状態の場合、敵に彦卿の攻撃力#1[i]%分の氷属性付加ダメージを与える。", + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Id": 120902, + "Name": "{RUBY_B#くうめい}空明{RUBY_E#}", + "Desc": "彦卿に「智剣連心」がある場合、さらにEP回復効率+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "3": { + "Id": 120903, + "Name": "{RUBY_B#けんたい}剣胎{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 120904, + "Name": "{RUBY_B#そうれい}霜厲{RUBY_E#}", + "Desc": "残りHPが#1[i]%以上の時、自身の氷属性耐性貫通+#2[i]%。", + "ParamList": [ + 0.8000000007450581, + 0.12000000011175871 + ] + }, + "5": { + "Id": 120905, + "Name": "{RUBY_B#ぶこつ}武骨{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 120906, + "Name": "{RUBY_B#じざい}自在{RUBY_E#}", + "Desc": "敵を倒した時、「智剣連心」または必殺技のバフがある場合、それらの継続時間+1ターン。", + "ParamList": [] + } + }, + "Skills": { + "120901": { + "Id": 120901, + "Name": "{RUBY_B#かんこう}寒光{RUBY_E#}{RUBY_B#さ}刺{RUBY_E#}す{RUBY_B#そうほう}霜鋒{RUBY_E#}", + "Desc": "指定した敵単体に彦卿の攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120902": { + "Id": 120902, + "Name": "{RUBY_B#さんじゃくしゅうすい}三尺秋水{RUBY_E#}", + "Desc": "指定した敵単体に彦卿の攻撃力#1[i]%分の氷属性ダメージを与え、彦卿に「智剣連心」を付与する、1ターン継続。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2100000001955777 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3200000002980232 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5400000005029142 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7875000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9250000005122274 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.0625000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.31000000028871 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4200000003911555 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.6400000005960464 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.750000000698492 + ] + } + } + }, + "120903": { + "Id": 120903, + "Name": "{RUBY_B#かいう}快雨{RUBY_E#}に{RUBY_B#たわむ}戯{RUBY_E#}れる{RUBY_B#つばめ}燕{RUBY_E#}", + "Desc": "自身の会心率+#1[i]%、彦卿に「智剣連心」がある場合、さらに会心ダメージ+#2[i]%バフは1ターン継続。その後、指定した敵単体に彦卿の攻撃力#3[i]%分の氷属性ダメージを与える。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 2.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 0.3200000002980232, + 2.2400000002235174 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.3400000003166497, + 2.3800000003539026 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6000000005587935, + 0.3600000003352761, + 2.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6000000005587935, + 0.3800000003539026, + 2.660000000614673 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903, + 2.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6000000005587935, + 0.42500000004656613, + 2.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935, + 0.45000000041909516, + 3.1500000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6000000005587935, + 0.47500000009313226, + 3.324999999953434 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 3.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6000000005587935, + 0.5200000004842877, + 3.6400000005960464 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6000000005587935, + 0.5400000005029142, + 3.7800000007264316 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6000000005587935, + 0.5600000005215406, + 3.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 0.5800000005401671, + 4.060000000055879 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935, + 4.2000000001862645 + ] + } + } + }, + "120904": { + "Id": 120904, + "Name": "{RUBY_B#こえいけん}呼影剣{RUBY_E#}", + "Desc": "彦卿に「智剣連心」がある場合、攻撃を受ける確率ダウン、自身の会心率+#1[f1]%、会心ダメージ+#2[i]%。敵に攻撃を行った後、#3[i]%固定確率追加攻撃を行い、敵に彦卿の攻撃力#4[i]%分の氷属性ダメージを与え、#6[i]%基礎確率で敵を凍結状態にする、1ターン継続。\\n凍結状態の敵は行動できず、ターンが回ってくるたびに彦卿の攻撃力#5[i]%分の氷属性付加ダメージを受ける。\\n彦卿がダメージを受けると「智剣連心」が解除される。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 0.5000000004656613, + 0.25000000023283064, + 0.25000000023283064, + 0.6500000006053597 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 0.16499999980442226, + 0.5100000004749745, + 0.27499999990686774, + 0.27499999990686774, + 0.6500000006053597 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 0.18000000016763806, + 0.5200000004842877, + 0.3000000002793968, + 0.3000000002793968, + 0.6500000006053597 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 0.19499999983236194, + 0.530000000493601, + 0.32499999995343387, + 0.32499999995343387, + 0.6500000006053597 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 0.21000000019557774, + 0.5400000005029142, + 0.3500000003259629, + 0.3500000003259629, + 0.6500000006053597 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 0.2249999998603016, + 0.5500000005122274, + 0.375, + 0.375, + 0.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 0.24375000083819032, + 0.5625000006984919, + 0.4062500004656613, + 0.4062500004656613, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 0.26250000041909516, + 0.5750000001862645, + 0.43750000023283064, + 0.43750000023283064, + 0.6500000006053597 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 0.28125000069849193, + 0.587500000372529, + 0.46875000069849193, + 0.46875000069849193, + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613, + 0.5000000004656613, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 0.31499999994412065, + 0.6100000005681068, + 0.5250000001396984, + 0.5250000001396984, + 0.6500000006053597 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 0.33000000030733645, + 0.62000000057742, + 0.5500000005122274, + 0.5500000005122274, + 0.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 0.3449999999720603, + 0.6300000005867332, + 0.5750000001862645, + 0.5750000001862645, + 0.6500000006053597 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 0.3600000003352761, + 0.6400000005960464, + 0.6000000005587935, + 0.6000000005587935, + 0.6500000006053597 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 0.375, + 0.6500000006053597, + 0.6250000002328306, + 0.6250000002328306, + 0.6500000006053597 + ] + } + } + }, + "120906": { + "Id": 120906, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120907": { + "Id": 120907, + "Name": "{RUBY_B#ぎょけんしんけつ}御剣真訣{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、残りHPが#1[i]%以上の敵に対して、彦卿の与ダメージ+#2[i]%#3[i]ターン継続。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Maze.png", + "LevelUpSkillID": [ + 120907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1209101, + "PointName": "{RUBY_B#はんぴょう}頒氷{RUBY_E#}", + "PointDesc": "攻撃を行った後、氷属性の弱点がある敵に、彦卿の攻撃力#1[i]%分の氷属性付加ダメージを与える。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1209102, + "PointName": "{RUBY_B#りょうそう}凌霜{RUBY_E#}", + "PointDesc": "「智剣連心」がある場合、効果抵抗+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1209103, + "PointName": "{RUBY_B#けいりょ}軽呂{RUBY_E#}", + "PointDesc": "会心が発生した時、速度+#1[i]%#2[i]ターン継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209202, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1209101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1209202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1209102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209206, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1209205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1209103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209209, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1209208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1209208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 56.10000000009313, + "DefenceAdd": 2.8050000004004687, + "HPBase": 121.44000000040978, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 78.54000000050291, + "DefenceAdd": 2.8050000004004687, + "HPBase": 170.0159999995958, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 100.9800000009127, + "DefenceAdd": 2.8050000004004687, + "HPBase": 218.59200000041164, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 123.42000000039116, + "DefenceAdd": 2.8050000004004687, + "HPBase": 267.16799999959767, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.86000000080094, + "DefenceAdd": 2.8050000004004687, + "HPBase": 315.7440000004135, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.8050000004004687, + "HPBase": 364.320000000298, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 190.74000000068918, + "DefenceAdd": 2.8050000004004687, + "HPBase": 412.89600000041537, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1209, + "Set4IDList": [ + 104, + 117, + 122 + ], + "Set2IDList": [ + 311, + 301, + 306 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1210": { + "Name": "{RUBY_B#ケイナイフン}桂乃芬{RUBY_E#}", + "Desc": "仙舟「羅浮」に滞在するパフォーマンスアーティスト——あるいは、大道芸人。\\n衣食住を賄うついでに、羅浮での新生活を送っている。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "guinaifen", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 121001, + "Name": "{RUBY_B#さかだ}逆立{RUBY_E#}ち{RUBY_B#めんく}麺食{RUBY_E#}い", + "Desc": "戦闘スキルを発動した時、#1[i]%基礎確率で攻撃を受けた敵の効果抵抗-#2[i]%#3[i]ターン継続。", + "ParamList": [ + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Id": 121002, + "Name": "{RUBY_B#は}歯{RUBY_E#}を{RUBY_B#みが}磨{RUBY_E#}きながら{RUBY_B#くちぶえ}口笛{RUBY_E#}を{RUBY_B#ふ}吹{RUBY_E#}く", + "Desc": "敵が燃焼状態の時、桂乃芬の通常攻撃と戦闘スキルがその敵に付与する燃焼状態のダメージ倍率+#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 121003, + "Name": "{RUBY_B#むなもと}胸元{RUBY_E#}で{RUBY_B#いわくだ}岩砕{RUBY_E#}き", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 121004, + "Name": "{RUBY_B#のどもと}喉元{RUBY_E#}で{RUBY_B#やりさきう}槍先受{RUBY_E#}け{RUBY_B#と}止{RUBY_E#}め", + "Desc": "桂乃芬が付与した燃焼状態がダメージを与えるたびに、桂乃芬のEPを#1[i]回復する。", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 121005, + "Name": "{RUBY_B#けんの}剣呑{RUBY_E#}み", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 121006, + "Name": "{RUBY_B#すで}素手{RUBY_E#}で{RUBY_B#じゅうだん}銃弾{RUBY_E#}つかみ", + "Desc": "「火喰い」の累積可能層数+#1[i]。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "121001": { + "Id": 121001, + "Name": "{RUBY_B#かっさいまんじょう}喝采満場{RUBY_E#}", + "Desc": "指定した敵単体に桂乃芬の攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121002": { + "Id": 121002, + "Name": "{RUBY_B#で}出{RUBY_E#}だし{RUBY_B#こうちょう}好調{RUBY_E#}", + "Desc": "指定した敵単体に桂乃芬の攻撃力#1[i]%分の炎属性ダメージを与え、隣接する敵に桂乃芬の攻撃力#2[i]%分の炎属性ダメージを与える。#3[i]%基礎確率で指定した敵とその隣接する敵に燃焼状態を付与する。燃焼状態の敵は、ターンが回ってくるたびに桂乃芬の攻撃力#4[i]%分の炎属性持続ダメージを受ける、#5[i]ターン継続。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.20000000018626451, + 1, + 0.8390400004573166, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.22000000020489097, + 1, + 0.9229800018947572, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.24000000022351742, + 1, + 1.0069200003053993, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.26000000024214387, + 1, + 1.0908600010443479, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.2800000002607703, + 1, + 1.1748000003863126, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968, + 1, + 1.3007100007962435, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.32499999995343387, + 1, + 1.4685900008771569, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.3500000003259629, + 1, + 1.6784400006290525, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.375, + 1, + 1.9302600014489144, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903, + 1, + 2.182080000638962, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.4200000003911555, + 1, + 2.2912020003423095, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.44000000040978193, + 1, + 2.400324000744149, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.4600000004284084, + 1, + 2.5094460004474968, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.48000000044703484, + 1, + 2.6185680008493364, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613, + 1, + 2.727690001251176, + 2 + ] + } + } + }, + "121003": { + "Id": 121003, + "Name": "{RUBY_B#おはこ}十八番{RUBY_E#}を{RUBY_B#ひろう}披露{RUBY_E#}するね", + "Desc": "敵全体に桂乃芬の攻撃力#1[f1]%分の炎属性ダメージを与える。敵が燃焼状態の場合、付与された燃焼状態が本来のダメージ#2[i]%分のダメージを発生する。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622, + 0.7400000006891787 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641, + 0.7600000007078052 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678, + 0.8000000007450581 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697, + 0.8200000007636845 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265, + 0.8450000004377216 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 0.8700000008102506 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852, + 0.8950000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.9200000008568168 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745, + 0.9400000008754432 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763, + 0.9600000008940697 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782, + 0.9800000009126961 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782, + 1.0200000000186265 + ] + } + } + }, + "121004": { + "Id": 121004, + "Name": "{RUBY_B#こらい}古来{RUBY_E#}、{RUBY_B#げいにん}芸人{RUBY_E#}は{RUBY_B#くんし}君子{RUBY_E#}に{RUBY_B#たよ}頼{RUBY_E#}る", + "Desc": "桂乃芬がフィールド上にいる時、敵が燃焼状態によるダメージを受けた後、#1[i]%基礎確率で「火喰い」状態になる。「火喰い」状態の敵の受けるダメージ+#4[f1]%#5[i]ターン継続。最大で#6[i]層累積できる。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0, + 0, + 0.0400000000372529, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0, + 0, + 0.04299999983049929, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0, + 0, + 0.04599999962374568, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0, + 0, + 0.04899999941699207, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0, + 0, + 0.05199999990873039, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0, + 0, + 0.054999999701976776, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0, + 0, + 0.058750000316649675, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0, + 0, + 0.06250000023283064, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0, + 0, + 0.06625000014901161, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0, + 0, + 0.07000000006519258, + 3, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0, + 0, + 0.07299999985843897, + 3, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0, + 0, + 0.07599999965168536, + 3, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0, + 0, + 0.07899999944493175, + 3, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0, + 0, + 0.08199999993667006, + 3, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0, + 0, + 0.08499999972991645, + 3, + 3 + ] + } + } + }, + "121006": { + "Id": 121006, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121007": { + "Id": 121007, + "Name": "{RUBY_B#だいどうげい}大道芸{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、敵にダメージを#2[i]回与える。1ヒットごとにランダムな敵単体に桂乃芬の攻撃力#1[i]%分の炎属性ダメージを与え、#3[i]%基礎確率でその敵を「火喰い」状態にする。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 4, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Maze.png", + "LevelUpSkillID": [ + 121007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 1210101, + "PointName": "{RUBY_B#えんかん}縁竿{RUBY_E#}", + "PointDesc": "通常攻撃は#1[i]%基礎確率で敵を戦闘スキルが与えるものと同じ燃焼状態にする。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1210102, + "PointName": "{RUBY_B#やいば}刃{RUBY_E#}の{RUBY_B#わ}輪{RUBY_E#}くぐり", + "PointDesc": "戦闘開始時、桂乃芬の行動順#1[i]%早まる。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1210103, + "PointName": "{RUBY_B#はだしとうとう}裸足踏刀{RUBY_E#}", + "PointDesc": "燃焼状態の敵に対する与ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210201, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210202, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1210101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210203, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1210202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210204, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1210203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210205, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1210102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210206, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1210205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210207, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1210206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210208, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1210103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210209, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1210103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "撃破特効" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210210, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1210201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "炎属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 120, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 168, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 216, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 264, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 312, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 360, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 408, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1210, + "Set4IDList": [ + 116, + 102, + 107 + ], + "Set2IDList": [ + 301, + 303, + 307 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 321, + 270 + ] + } + }, + "1211": { + "Name": "{RUBY_B#ビャクロ}白露{RUBY_E#}", + "Desc": "仙舟「羅浮」の持明族の尊長、「啣薬の龍女」と称される医士。\\n彼女は独自の医療知識と、龍脈を持つ者にしか行えない「医療手段」で人々の傷や病を治している。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "bailu", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 121101, + "Name": "{RUBY_B#ひゃくみゃくしず}百脈静{RUBY_E#}める{RUBY_B#かんろ}甘露{RUBY_E#}", + "Desc": "「生生」効果が終了する時、味方のHPが満タンの場合、さらにEPを#1[i]回復させる。", + "ParamList": [ + 8 + ] + }, + "2": { + "Id": 121102, + "Name": "{RUBY_B#こちゅう}壺中{RUBY_E#}の{RUBY_B#てん}天{RUBY_E#}には{RUBY_B#うんりゅうねむ}雲龍眠{RUBY_E#}る", + "Desc": "必殺技を発動した後、白露の治癒量+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "3": { + "Id": 121103, + "Name": "{RUBY_B#ここちやす}心地安{RUBY_E#}らぐ{RUBY_B#かいしゅん}回春{RUBY_E#}の{RUBY_B#みょうしゅ}妙手{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 121104, + "Name": "{RUBY_B#がいしょういや}外傷癒{RUBY_E#}す{RUBY_B#ちゅうご}肘後{RUBY_E#}の{RUBY_B#びきゅう}備急{RUBY_E#}", + "Desc": "戦闘スキルによる治癒を受けるたび、その味方の与ダメージ+#1[i]%、最大で#2[i]層累積できる、#3[i]ターン継続。", + "ParamList": [ + 0.10000000009313226, + 3, + 2 + ] + }, + "5": { + "Id": 121105, + "Name": "{RUBY_B#ぞくじんすす}俗塵濯{RUBY_E#}ぐ{RUBY_B#じう}慈雨{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 121106, + "Name": "{RUBY_B#りゅうぜんせんやく}龍涎仙薬{RUBY_E#}、{RUBY_B#きんたん}金丹{RUBY_E#}に{RUBY_B#まさ}勝{RUBY_E#}る", + "Desc": "一度の戦闘で、白露がHPが0になる攻撃を受けた味方を治癒する効果の発動可能回数+#1[i]。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "121101": { + "Id": 121101, + "Name": "{RUBY_B#ぼう}望{RUBY_E#}・{RUBY_B#ぶん}聞{RUBY_E#}・{RUBY_B#もん}問{RUBY_E#}…{RUBY_B#けり}蹴{RUBY_E#}!", + "Desc": "指定した敵単体に白露の攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121102": { + "Id": 121102, + "Name": "{RUBY_B#うんぎんさぜん}雲吟乍然{RUBY_E#}、{RUBY_B#こぼ}零{RUBY_E#}れる{RUBY_B#しゅろ}珠露{RUBY_E#}", + "Desc": "指定した味方単体のHPを白露の最大HP#1[f1]%+#2[i]回復し、さらに#4[i]回、ランダムに味方単体を治癒する。治癒するたびに、次の治癒で回復するHP-#3[i]%。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07799999951384962, + 78, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.08287500101141632, + 124.80000000074506, + 0.1500000001396984, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08775000041350722, + 159.9000000008382, + 0.1500000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09262500051409006, + 195, + 0.1500000001396984, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.09749999991618097, + 218.40000000037253, + 0.1500000001396984, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10140000027604401, + 241.80000000074506, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10529999993741512, + 259.35000000032596, + 0.1500000001396984, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10919999959878623, + 276.9000000008382, + 0.1500000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11309999995864928, + 294.4500000004191, + 0.1500000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.11699999962002039, + 312, + 0.1500000001396984, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12090000067837536, + 329.5500000005122, + 0.1500000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.12480000033974648, + 347.10000000009313, + 0.1500000001396984, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.1287000000011176, + 364.65000000060536, + 0.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.13260000036098063, + 382.20000000018626, + 0.1500000001396984, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.13650000002235174, + 399.7500000006985, + 0.1500000001396984, + 2 + ] + } + } + }, + "121103": { + "Id": 121103, + "Name": "{RUBY_B#らいめい}雷鳴{RUBY_E#}{RUBY_B#ひき}率{RUBY_E#}いる{RUBY_B#やくえん}躍渊{RUBY_E#}の{RUBY_B#こうりゅう}蛟龍{RUBY_E#}", + "Desc": "味方全体のHPを白露の最大HP#1[f1]%+#2[i]回復する。\\n「生生」が付与されていない味方に「生生」を付与する。「生生」が付与されている味方の「生生」の継続時間+1ターン。\\n「生生」は#3[i]ターン継続でき、効果は累積できない。", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09000000008381903, + 90, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.09562500030733645, + 144, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10125000053085387, + 184.50000000046566, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10687500075437129, + 225, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11250000027939677, + 252, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.11699999962002039, + 279, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.12150000035762787, + 299.25000000023283, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.12599999969825149, + 319.50000000046566, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13050000043585896, + 339.7500000006985, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.13499999977648258, + 360, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.13949999981559813, + 380.25000000023283, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.14399999985471368, + 400.50000000046566, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.14849999989382923, + 420.7500000006985, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.15299999993294477, + 441, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.15749999997206032, + 461.25000000023283, + 2 + ] + } + } + }, + "121104": { + "Id": 121104, + "Name": "{RUBY_B#けんこさいせい}懸壺済世{RUBY_E#}", + "Desc": "「生生」を持つ味方が攻撃を受けた後、HPを白露の最大HP#1[f1]%+#2[i]回復する、この効果は#5[i]回発動できる。\\n白露以外の味方は、HPが0になる攻撃を受けても戦闘不能状態にならず、白露がその味方を治癒し、白露の最大HP#3[f1]%+#4[i]のHPを回復させる。この効果は一度の戦闘で1回発動できる。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.035999999614432454, + 36, + 0.12000000011175871, + 120, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.038249999983236194, + 57.60000000055879, + 0.12749999994412065, + 192, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04050000035203993, + 73.80000000074506, + 0.13499999977648258, + 246, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04275000072084367, + 90, + 0.14250000030733645, + 300, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.04499999969266355, + 100.80000000074506, + 0.1500000001396984, + 336, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.04680000012740493, + 111.6000000005588, + 0.15599999972619116, + 372, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.048599999863654375, + 119.70000000065193, + 0.16200000001117587, + 399, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.05040000029839575, + 127.80000000074506, + 0.16799999959766865, + 426, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.0522000000346452, + 135.9000000008382, + 0.17399999988265336, + 453, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.05399999977089465, + 144, + 0.18000000016763806, + 480, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.055800000205636024, + 152.10000000009313, + 0.18599999975413084, + 507, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.05759999994188547, + 160.20000000018626, + 0.19200000003911555, + 534, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.05939999967813492, + 168.3000000002794, + 0.19799999962560833, + 561, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.061200000112876296, + 176.40000000037253, + 0.20399999991059303, + 588, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.06299999984912574, + 184.50000000046566, + 0.21000000019557774, + 615, + 2 + ] + } + } + }, + "121106": { + "Id": 121106, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121107": { + "Id": 121107, + "Name": "{RUBY_B#ようびょう}恙病{RUBY_E#}を{RUBY_B#ふっしょく}払拭{RUBY_E#}せし、{RUBY_B#しょうよう}徜徉{RUBY_E#}する{RUBY_B#れいたく}霊澤{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、味方全体に「生生」を付与、#1[i]ターン継続。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Maze.png", + "LevelUpSkillID": [ + 121107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1211101, + "PointName": "{RUBY_B#きこうせいぎ}岐黄精義{RUBY_E#}", + "PointDesc": "白露が味方に最大HPを超える治癒を行った時、その味方の最大HP+#1[i]%#2[i]ターン継続。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1211102, + "PointName": "{RUBY_B#じみょう}持明{RUBY_E#}の{RUBY_B#りゅうみゃく}龍脈{RUBY_E#}", + "PointDesc": "「生生」効果の発動可能回数+#1[i]。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1211103, + "PointName": "{RUBY_B#りんえん}鱗淵{RUBY_E#}の{RUBY_B#おんたく}恩沢{RUBY_E#}", + "PointDesc": "「生生」を付与されたキャラの受けるダメージ-#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211201, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211202, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1211101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211203, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1211202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1211203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211205, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1211102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211206, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1211205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211207, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1211206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1211103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211209, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1211103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211210, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 179.5200000004843, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 251.32799999974668, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 323.13599999970756, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 394.9440000005998, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 466.75200000056066, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 610.3679999997839, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1211, + "Set4IDList": [ + 101, + 114, + 106 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1212": { + "Name": "{RUBY_B#ケイリュウ}鏡流{RUBY_E#}", + "Desc": "かつての羅浮の剣首、雲騎常勝の伝説を築いた者。\\nしかし今、その名は抹消され、魔陰の境を歩く仙舟の裏切り者となっている。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 79, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jingliu", + "SPNeed": 140, + "BaseType": "Warrior", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 121201, + "Name": "{RUBY_B#てんかん}天関{RUBY_E#}を{RUBY_B#おか}犯{RUBY_E#}す{RUBY_B#つき}月{RUBY_E#}", + "Desc": "必殺技または強化戦闘スキルを発動した時、鏡流の会心ダメージ+#1[i]%#3[i]ターン継続。敵1体のみを攻撃した場合、さらにその敵に鏡流の攻撃力#2[i]%分の氷属性ダメージを1回与える。", + "ParamList": [ + 0.24000000022351742, + 1, + 1 + ] + }, + "2": { + "Id": 121202, + "Name": "{RUBY_B#げつうん}月暈{RUBY_E#}に{RUBY_B#しちせい}七星{RUBY_E#}", + "Desc": "必殺技を発動した後、次の強化戦闘スキルによるダメージ+#1[i]%。", + "ParamList": [ + 0.8000000007450581 + ] + }, + "3": { + "Id": 121203, + "Name": "{RUBY_B#もちづき}望月{RUBY_E#}に{RUBY_B#せま}迫{RUBY_E#}る{RUBY_B#はんぺき}半璧{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 121204, + "Name": "{RUBY_B#てのひら}掌{RUBY_E#}の{RUBY_B#げっこう}月光{RUBY_E#}", + "Desc": "「転魄」状態で味方のHPを消費して獲得する攻撃力が、さらに味方全体が消費したHPの#1[i]%分アップする。獲得できる攻撃力の上限+#2[i]%。", + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "5": { + "Id": 121205, + "Name": "{RUBY_B#さんだい}三台{RUBY_E#}を{RUBY_B#むしば}蝕{RUBY_E#}む{RUBY_B#ぎょくきょう}玉鏡{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 121206, + "Name": "{RUBY_B#ろうしゅく}婁宿{RUBY_E#}を{RUBY_B#むしば}蝕{RUBY_E#}む{RUBY_B#ひょうりん}氷輪{RUBY_E#}", + "Desc": "鏡流が「転魄」状態に入った時、「朔望」の上限+1層、鏡流がさらに「朔望」を#1[i]層獲得する。「転魄」状態の時、会心ダメージ+#2[i]%。", + "ParamList": [ + 1, + 0.5000000004656613 + ] + } + }, + "Skills": { + "121201": { + "Id": 121201, + "Name": "{RUBY_B#りゅうえいせん}流影穿{RUBY_E#}", + "Desc": "指定した敵単体に鏡流の攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121202": { + "Id": 121202, + "Name": "{RUBY_B#むか}無罅{RUBY_E#}の{RUBY_B#ひこう}飛光{RUBY_E#}", + "Desc": "指定した敵単体に鏡流の攻撃力#1[i]%分の氷属性ダメージを与え、「朔望」を#2[i]層獲得する。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "121203": { + "Id": 121203, + "Name": "{RUBY_B#どんげしょうめつ}曇華生滅{RUBY_E#}、{RUBY_B#ゆめくだ}夢瀉{RUBY_E#}す{RUBY_B#てんが}天河{RUBY_E#}", + "Desc": "指定した敵単体に鏡流の攻撃力#1[i]%分の氷属性ダメージを与え、隣接する敵に鏡流の攻撃力#3[i]%分の氷属性ダメージを与える。攻撃を行った後に「朔望」を#2[i]層獲得する。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.9200000008568168, + 1, + 0.9600000008940697, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.040000000037253, + 1, + 1.0200000000186265, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.1600000001490116, + 1, + 1.0800000000745058, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2800000002607703, + 1, + 1.1400000001303852, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1, + 1.2000000001862645, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.5500000005122274, + 1, + 1.2749999999068677, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.700000000651926, + 1, + 1.350000000325963, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.850000000791624, + 1, + 1.4250000000465661, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 1.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1200000001117587, + 1, + 1.5600000005215406, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.2400000002235174, + 1, + 1.62000000057742, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.360000000335276, + 1, + 1.6800000006332994, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.480000000447035, + 1, + 1.7400000006891787, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.6000000005587935, + 1, + 1.800000000745058, + 1 + ] + } + } + }, + "121204": { + "Id": 121204, + "Name": "{RUBY_B#たんげつてんはく}淡月転魄{RUBY_E#}", + "Desc": "「朔望」を#5[i]層所持する時、鏡流は「転魄」状態に入り、会心率+#7[i]%。同時に行動順を#6[i]%早め、戦闘スキル「無罅の飛光」が「寒川映月」に強化される。「転魄」状態の鏡流はこの強化戦闘スキルのみを使用できる。「転魄」状態で攻撃を行った時、自身以外の味方のHPをそれぞれの最大HP#2[i]%分消費し(残りHPが足りない場合、攻撃を行った時、自身以外の味方の残りHPが1になる)、鏡流の攻撃力が、その回に消費したHP#3[i]%分アップする。攻撃力アップ量は鏡流の基礎攻撃力の#4[i]%を超えず、その回の攻撃が終了するまで継続。「転魄」状態が終了するまで、再度「転魄」状態に入ることはできない。「朔望」は最大で3層累積できる。「朔望」が0層になると、「転魄」状態が解除される。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 0.9000000008381903, + 2, + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 0.9900000009220093, + 2, + 1, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.0800000000745058, + 2, + 1, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.1700000001583248, + 2, + 1, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.2600000002421439, + 2, + 1, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.350000000325963, + 2, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.4625000006053597, + 2, + 1, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.5750000001862645, + 2, + 1, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.6875000004656613, + 2, + 1, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.800000000745058, + 2, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.890000000828877, + 2, + 1, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.9800000009126961, + 2, + 1, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.0700000000651926, + 2, + 1, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.1600000001490116, + 2, + 1, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.2500000002328306, + 2, + 1, + 0.5500000005122274 + ] + } + } + }, + "121206": { + "Id": 121206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121207": { + "Id": 121207, + "Name": "{RUBY_B#しんしきて}神識照{RUBY_E#}らす{RUBY_B#げつえい}月影{RUBY_E#}", + "Desc": "秘技を使用した後、自身の周囲に#3[i]秒間継続する特殊領域を作り出す。特殊領域内の敵は凍結状態になる。特殊領域内の敵と戦闘に入った後、自身のEPを#6[i]回復し、「朔望」を#1[i]層獲得して#2[i]%基礎確率で敵を凍結状態にする、#4[i]ターン継続。凍結状態の敵は行動できず、ターンが回ってくるたびに鏡流の攻撃力#5[i]%分の氷属性付加ダメージを受ける。味方が作り出した領域は1つまで存在できる。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 20, + 1, + 0.8000000007450581, + 15 + ] + } + } + }, + "121209": { + "Id": 121209, + "Name": "{RUBY_B#かんせんえいげつ}寒川映月{RUBY_E#}", + "Desc": "指定した敵単体に鏡流の攻撃力#1[i]%分の氷属性ダメージを与え、隣接する敵に鏡流の攻撃力#3[i]%分の氷属性ダメージを与える。「朔望」を#2[i]層消費する。このスキルを使用してもSPは消費されない。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 1, + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.375, + 1, + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5000000004656613, + 1, + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6250000002328306, + 1, + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.750000000698492, + 1, + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.8750000004656613, + 1, + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.0312500004656613, + 1, + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1875, + 1, + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.3437500009313226, + 1, + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.5000000004656613, + 1, + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.6250000002328306, + 1, + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.750000000698492, + 1, + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.8750000004656613, + 1, + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1249999997671694, + 1, + 1.562500000698492 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Maze.png", + "LevelUpSkillID": [ + 121207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1212101, + "PointName": "{RUBY_B#しきょう}死境{RUBY_E#}", + "PointDesc": "「転魄」状態の時、効果抵抗+#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1212102, + "PointName": "{RUBY_B#けんしゅ}剣首{RUBY_E#}", + "PointDesc": "「無罅の飛光」を発動した後、次の行動順#1[i]%早まる。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1212103, + "PointName": "{RUBY_B#そうはく}霜魄{RUBY_E#}", + "PointDesc": "「転魄」状態の時、必殺技によるダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212201, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212202, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1212101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212203, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1212202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1212203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212205, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1212102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212206, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1212205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212207, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1212206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1212103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212209, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212210, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1121201, + "Name": "{RUBY_B#てんかん}天関{RUBY_E#}を{RUBY_B#おか}犯{RUBY_E#}す{RUBY_B#つき}月{RUBY_E#}", + "Desc": "必殺技または強化戦闘スキルを発動した時、鏡流の会心ダメージ+#1[i]%#3[i]ターン継続。さらにその敵に鏡流の最大HPの#2[i]%分の氷属性ダメージを1回与える。", + "ParamList": [ + 0.3600000003352761, + 0.8000000007450581, + 1 + ] + }, + "2": { + "Id": 1121202, + "Name": "{RUBY_B#げつうん}月暈{RUBY_E#}に{RUBY_B#しちせい}七星{RUBY_E#}", + "Desc": "必殺技を発動した後、次の強化戦闘スキルによるダメージ+#1[i]%。", + "ParamList": [ + 0.8000000007450581 + ] + }, + "3": { + "Id": 1121203, + "Name": "{RUBY_B#もちづき}望月{RUBY_E#}に{RUBY_B#せま}迫{RUBY_E#}る{RUBY_B#はんぺき}半璧{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 1121204, + "Name": "{RUBY_B#てのひら}掌{RUBY_E#}の{RUBY_B#げっこう}月光{RUBY_E#}", + "Desc": "「転魄」状態の時、「月光」1層につき、さらに会心ダメージ+#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 1121205, + "Name": "{RUBY_B#さんだい}三台{RUBY_E#}を{RUBY_B#むしば}蝕{RUBY_E#}む{RUBY_B#ぎょくきょう}玉鏡{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 1121206, + "Name": "{RUBY_B#ろうしゅく}婁宿{RUBY_E#}を{RUBY_B#むしば}蝕{RUBY_E#}む{RUBY_B#ひょうりん}氷輪{RUBY_E#}", + "Desc": "鏡流が「転魄」状態に入った時、「朔望」の上限+1層、鏡流がさらに「朔望」を#1[i]層獲得する。「転魄」状態の時、氷属性の耐性貫通+#2[i]%。", + "ParamList": [ + 1, + 0.20000000018626451 + ] + } + }, + "Skills": { + "1121201": { + "Id": 1121201, + "Name": "{RUBY_B#りゅうえいせん}流影穿{RUBY_E#}", + "Desc": "指定した敵単体に鏡流の最大HP#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "1121202": { + "Id": 1121202, + "Name": "{RUBY_B#むか}無罅{RUBY_E#}の{RUBY_B#ひこう}飛光{RUBY_E#}", + "Desc": "指定した敵単体に鏡流の最大HP#1[i]%分の氷属性ダメージを与え、「朔望」を#2[i]層獲得する。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1 + ] + } + } + }, + "1121203": { + "Id": 1121203, + "Name": "{RUBY_B#どんげしょうめつ}曇華生滅{RUBY_E#}、{RUBY_B#ゆめくだ}夢瀉{RUBY_E#}す{RUBY_B#てんが}天河{RUBY_E#}", + "Desc": "指定した敵単体に鏡流の最大HP#1[i]%分の氷属性ダメージを与え、隣接する敵に鏡流の最大HP#3[i]%分の氷属性ダメージを与える。攻撃を行った後に「朔望」を#2[i]層獲得する。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 1, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 1, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 1, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 1, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 1, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 1, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 1, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 1, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 1, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.890000000828877, + 1, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.9800000009126961, + 1, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.0700000000651926, + 1, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.1600000001490116, + 1, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.2500000002328306, + 1, + 1.1249999997671694, + 1 + ] + } + } + }, + "1121204": { + "Id": 1121204, + "Name": "{RUBY_B#たんげつてんはく}淡月転魄{RUBY_E#}", + "Desc": "「朔望」を#5[i]層所持する時、鏡流は「転魄」状態に入り、追加で「朔望」を1層獲得し、会心率+#7[i]%と同時に行動順が#6[i]%早まる。、戦闘スキル「無罅の飛光」が「寒川映月」に強化され、「転魄」状態の鏡流はこの強化戦闘スキルのみを使用できる。また、「転魄」状態で攻撃を行った時、自身以外の味方のHPをそれぞれの最大HP#2[i]%分消費し(残りHPが足りない場合、攻撃を行った時、自身以外の味方の残りHPが1になる)、鏡流は「月光」を1層獲得する。獲得した「月光」1層につき、鏡流の会心ダメージは+#3[i]%、最大#4[i]層まで所持することが可能。「転魄」状態が終了するまで、再度「転魄」状態に入ることはできない。「朔望」は最大で3層累積できる。「朔望」が0層になると、「転魄」状態が解除される。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.22000000020489097, + 5, + 2, + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.24200000008568168, + 5, + 2, + 1, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.2639999999664724, + 5, + 2, + 1, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.2859999998472631, + 5, + 2, + 1, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.3079999997280538, + 5, + 2, + 1, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.33000000030733645, + 5, + 2, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.35750000015832484, + 5, + 2, + 1, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.3850000000093132, + 5, + 2, + 1, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.41250000055879354, + 5, + 2, + 1, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.44000000040978193, + 5, + 2, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.46200000029057264, + 5, + 2, + 1, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.48400000017136335, + 5, + 2, + 1, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5060000000521541, + 5, + 2, + 1, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5279999999329448, + 5, + 2, + 1, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5500000005122274, + 5, + 2, + 1, + 0.5500000005122274 + ] + } + } + }, + "1121206": { + "Id": 1121206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1121207": { + "Id": 1121207, + "Name": "{RUBY_B#しんしきて}神識照{RUBY_E#}らす{RUBY_B#げつえい}月影{RUBY_E#}", + "Desc": "秘技を使用した後、自身の周囲に#3[i]秒間継続する特殊領域を作り出す。特殊領域内の敵は凍結状態になる。特殊領域内の敵と戦闘に入った後、自身のEPを#6[i]回復し、「朔望」を#1[i]層獲得して#2[i]%基礎確率で敵を凍結状態にする、#4[i]ターン継続。凍結状態の敵は行動できず、ターンが回ってくるたびに鏡流の最大HP#5[i]%分の氷属性付加ダメージを受ける。味方が作り出した領域は1つまで存在できる。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 20, + 1, + 0.8000000007450581, + 15 + ] + } + } + }, + "1121209": { + "Id": 1121209, + "Name": "{RUBY_B#かんせんえいげつ}寒川映月{RUBY_E#}", + "Desc": "指定した敵単体に鏡流の最大HP#1[i]%分の氷属性ダメージを与え、隣接する敵に鏡流の最大HP#3[i]%分の氷属性ダメージを与える。「朔望」を#2[i]層消費する。このスキルを使用してもSPは消費されない。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 1, + 0.375 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 1, + 0.41250000055879354 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 1, + 0.45000000041909516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 1, + 0.4875000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 1, + 0.5250000001396984 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 1, + 0.5625000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 1, + 0.6093750006984919 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 1, + 0.6562500006984919 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 1, + 0.7031250006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1, + 0.7500000006984919 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 1, + 0.7875000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 1, + 0.8250000004190952 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1, + 0.8625000009778887 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1, + 0.9375000006984919 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Maze.png", + "LevelUpSkillID": [ + 1121207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 11212101, + "PointName": "{RUBY_B#しきょう}死境{RUBY_E#}", + "PointDesc": "「転魄」状態の時、効果抵抗+#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 11212102, + "PointName": "{RUBY_B#けんしゅ}剣首{RUBY_E#}", + "PointDesc": "「無罅の飛光」を発動した後、さらにEPが#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 11212103, + "PointName": "{RUBY_B#そうはく}霜魄{RUBY_E#}", + "PointDesc": "「転魄」状態の時、必殺技によるダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212201, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212202, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11212101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212203, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11212202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11212203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212205, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11212102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212206, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11212205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212207, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11212206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11212103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212209, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212210, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 195.36000000033528, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 273.50400000019, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 351.6480000000447, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 429.7920000005979, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 507.9360000004526, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 586.0800000000745, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 664.2239999999292, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1212, + "Set4IDList": [ + 122, + 104, + 108 + ], + "Set2IDList": [ + 319, + 309, + 306 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 338, + 280 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1213": { + "Name": "{RUBY_B#タンコウ}丹恒{RUBY_E#}・{RUBY_B#インゲツ}飲月{RUBY_E#}", + "Desc": "持明族としての丹恒の本相、その前世である「飲月君」が残した力。\\n崢嶸たる角冠を受け継いだ以上、咎人の功罪をすべて受け継がなければならない。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "danhengil", + "SPNeed": 140, + "BaseType": "Warrior", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 121301, + "Name": "{RUBY_B#きゅうてん}九天{RUBY_E#}", + "Desc": "「亢心」の累積可能層数+#1[i]。1段の攻撃を行うたび、さらに「亢心」を1層獲得する。", + "ParamList": [ + 4 + ] + }, + "2": { + "Id": 121302, + "Name": "{RUBY_B#きゅうりゅう}九旒{RUBY_E#}", + "Desc": "必殺技を発動した後、丹恒・飲月の行動順100%早まり、さらに「逆鱗」を1獲得する。", + "ParamList": [] + }, + "3": { + "Id": 121303, + "Name": "{RUBY_B#うんき}雲旗{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 121304, + "Name": "{RUBY_B#ちょうふう}嘲風{RUBY_E#}", + "Desc": "「叱咤」のバフ効果が、自身の次のターンが終了するまで継続するようになる。", + "ParamList": [] + }, + "5": { + "Id": 121305, + "Name": "{RUBY_B#りょううん}凌雲{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 121306, + "Name": "{RUBY_B#こうりゅう}黄龍{RUBY_E#}", + "Desc": "丹恒・飲月以外の味方が必殺技を発動した後、丹恒・飲月が発動する次の「躍動せし耀鱗」の虚数属性耐性貫通+#1[i]%。この効果は最大で#2[i]層累積できる。", + "ParamList": [ + 0.20000000018626451, + 3 + ] + } + }, + "Skills": { + "121301": { + "Id": 121301, + "Name": "{RUBY_B#すいか}水華{RUBY_E#}", + "Desc": "2段の攻撃を行い、指定した敵単体に丹恒・飲月の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121302": { + "Id": 121302, + "Name": "{RUBY_B#りゅうりきじざい}龍力自在{RUBY_E#}", + "Desc": "このスキルは通常攻撃を強化できる。このスキルを使用してもSPは消費されず、戦闘スキルを発動したとも見なされない。強化通常攻撃を行った後に、SPが消費される。通常攻撃は最大で3回まで強化できる。\\n1回強化、「水華」が「瞬華」に強化される。\\n2回強化、「水華」が「天矢陰」に強化される。\\n3回強化、「水華」が「躍動せし耀鱗」に強化される。\\n「天矢陰」または「躍動せし耀鱗」を発動した時、4段目以降の攻撃の前に、それぞれ「叱咤」を1層獲得し、丹恒・飲月の会心ダメージ+#1[f1]%。この効果は最大で#2[i]層累積でき、自身のターンが終了するまで継続。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06599999964237213, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07199999992735684, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07799999951384962, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08399999979883432, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09749999991618097, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1049999997485429, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11250000027939677, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.12000000011175871, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12599999969825149, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1319999999832362, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.13799999956972897, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.14399999985471368, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 4 + ] + } + } + }, + "121303": { + "Id": 121303, + "Name": "{RUBY_B#ごうげい}傲睨{RUBY_E#}せし{RUBY_B#そうりゅう}蒼龍{RUBY_E#}、{RUBY_B#よ}世{RUBY_E#}を{RUBY_B#そそ}濯{RUBY_E#}ぐ{RUBY_B#ごうすい}劫水{RUBY_E#}", + "Desc": "3段の攻撃を行い、指定した敵単体に丹恒・飲月の攻撃力#1[i]%分の虚数属性ダメージを与え、隣接する敵に丹恒・飲月の攻撃力#2[i]%分の虚数属性ダメージを与える。自身は「逆鱗」を#3[i]獲得する。\\n「逆鱗」は最大で#4[i]まで所持でき、丹恒・飲月のSPの代わりとして消費できる。また、「逆鱗」の消費はSP消費と見なされる。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 0.840000000782311, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.9200000008568168, + 0.8960000004153699, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.040000000037253, + 0.9520000007469207, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.1600000001490116, + 1.007999999448657, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2800000002607703, + 1.0639999997802079, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1.1200000001117587, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.5500000005122274, + 1.1900000001769513, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.700000000651926, + 1.2600000002421439, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.850000000791624, + 1.3300000003073364, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.400000000372529, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1200000001117587, + 1.456000000005588, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.2400000002235174, + 1.5120000003371388, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.360000000335276, + 1.5679999999701977, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.480000000447035, + 1.6240000003017485, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.6000000005587935, + 1.6800000006332994, + 2, + 3 + ] + } + } + }, + "121304": { + "Id": 121304, + "Name": "{RUBY_B#こうしん}亢心{RUBY_E#}", + "Desc": "丹恒・飲月は1段の攻撃を行うたびに「亢心」を1層獲得する。「亢心」1層につき自身の与ダメージ+#1[f1]%、この効果は最大で#2[i]層獲得できる。「亢心」の効果は自身のターンが終了するまで継続。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 6 + ] + } + } + }, + "121306": { + "Id": 121306, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121307": { + "Id": 121307, + "Name": "{RUBY_B#せいくう}掣空{RUBY_E#}、{RUBY_B#にじ}虹{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}し", + "Desc": "秘技を使用した後、#2[i]秒間継続する「遊龍」状態に入る。「遊龍」状態で攻撃すると、素早く前方に一定距離移動し、触れた敵を攻撃する。その間、敵のすべての攻撃を防げる。「遊龍」状態で敵を先制攻撃して戦闘に入った後、敵全体に丹恒・飲月の攻撃力#3[i]%分の虚数属性ダメージを与え、自身は「逆鱗」を#1[i]獲得する。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 20, + 1.2000000001862645 + ] + } + } + }, + "121308": { + "Id": 121308, + "Name": "{RUBY_B#しゅんか}瞬華{RUBY_E#}", + "Desc": "3段の攻撃を行い、指定した敵単体に丹恒・飲月の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5600000005215406 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.8200000007636845 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.080000000074506 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.3400000003166497 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.8600000008009374 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.1200000001117587 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.3800000003539026 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.6400000005960464 + ] + } + } + }, + "121309": { + "Id": 121309, + "Name": "キャンセル", + "Desc": "強化をキャンセルする。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121310": { + "Id": 121310, + "Name": "{RUBY_B#てんしいん}天矢陰{RUBY_E#}", + "Desc": "5段の攻撃を行い、指定した敵単体に丹恒・飲月の攻撃力#1[i]%分の虚数属性ダメージを与える。4段目以降の攻撃は隣接する敵にも丹恒・飲月の攻撃力#2[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 35, + "BPNeed": 2, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9000000008381903, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.2800000002607703, + 0.3600000003352761 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.660000000614673, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.040000000037253, + 0.48000000044703484 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.4200000003911555, + 0.5400000005029142 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.800000000745058, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4.180000000167638, + 0.6600000006146729 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.560000000521541, + 0.7200000006705523 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.940000000875443, + 0.7800000007264316 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5.320000000298023, + 0.840000000782311 + ] + } + } + }, + "121312": { + "Id": 121312, + "Name": "{RUBY_B#やくどう}躍動{RUBY_E#}せし{RUBY_B#ようりん}耀鱗{RUBY_E#}", + "Desc": "7段の攻撃を行い、指定した敵単体に丹恒・飲月の攻撃力#1[i]%分の虚数属性ダメージを与える。4段目以降の攻撃は隣接する敵にも丹恒・飲月の攻撃力#2[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 40, + "BPNeed": 3, + "BPAdd": null, + "ShowStanceList": [ + 120, + 0, + 60 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1.0800000000745058 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.5000000004656613, + 1.2600000002421439 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4.500000000465661, + 1.62000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5.500000000465661, + 1.9800000009126961 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 6, + 2.1600000001490116 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 6.500000000465661, + 2.3400000003166497 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 2.5200000004842877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Maze.png", + "LevelUpSkillID": [ + 121307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1213101, + "PointName": "{RUBY_B#ふくしん}伏辰{RUBY_E#}", + "PointDesc": "戦闘開始時、EPを#1[i]回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1213102, + "PointName": "{RUBY_B#しゅうう}修禹{RUBY_E#}", + "PointDesc": "行動制限系デバフに抵抗する確率+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.24000000022351742 + ], + "PointID": 1213103, + "PointName": "{RUBY_B#けいちつ}啓蟄{RUBY_E#}", + "PointDesc": "虚数属性が弱点の敵にダメージを与える時、会心ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213201, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1213101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213203, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1213202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1213203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213205, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1213102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1213205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213207, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1213206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1213103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1213208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213210, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1213208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1213, + "Set4IDList": [ + 102, + 112, + 117 + ], + "Set2IDList": [ + 309, + 305, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1214": { + "Name": "{RUBY_B#セツイ}雪衣{RUBY_E#}", + "Desc": "仙舟「羅浮」で生死を監察する機構「十王司」の判官。\\nその身が死んでから長い時が経つが、人形の体を借りて「還陽」し、使命を全うする。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "xueyi", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 121401, + "Name": "{RUBY_B#しんましば}心魔縛{RUBY_E#}り", + "Desc": "天賦による追加攻撃ダメージ+#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "2": { + "Id": 121402, + "Name": "{RUBY_B#ごじんやぶ}五塵破{RUBY_E#}り", + "Desc": "天賦の追加攻撃は敵の弱点属性を無視して靭性を削り、自身の最大HP#1[i]%分のHPを回復する。敵を弱点撃破した時、量子属性の弱点撃破効果を発動する。", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 121403, + "Name": "{RUBY_B#くたい}苦諦{RUBY_E#}{RUBY_B#とど}止{RUBY_E#}め", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 121404, + "Name": "{RUBY_B#ごうこんた}業根断{RUBY_E#}ち", + "Desc": "必殺技を発動した時、撃破特効+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.40000000037252903, + 2 + ] + }, + "5": { + "Id": 121405, + "Name": "{RUBY_B#れいじんとら}霊神囚{RUBY_E#}え", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 121406, + "Name": "{RUBY_B#せいしつかさど}生死司{RUBY_E#}る", + "Desc": "「悪業」の累積上限が#1[i]層になる。", + "ParamList": [ + 6 + ] + } + }, + "Skills": { + "121401": { + "Id": 121401, + "Name": "{RUBY_B#はますい}破魔錐{RUBY_E#}", + "Desc": "指定した敵単体に雪衣の攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121402": { + "Id": 121402, + "Name": "{RUBY_B#しょあくしょうふく}諸悪摂伏{RUBY_E#}", + "Desc": "指定した敵単体に雪衣の攻撃力#1[i]%分の量子属性ダメージを与え、隣接する敵に雪衣の攻撃力#2[i]%分の量子属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 0.3850000000093132 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 0.4550000000745058 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 0.49000000045634806 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 0.5687500007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 0.6125000007450581 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 0.6562500006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 0.7350000003352761 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 0.7700000007171184 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 0.8050000004004687 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 0.840000000782311 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613 + ] + } + } + }, + "121403": { + "Id": 121403, + "Name": "{RUBY_B#み}身{RUBY_E#}を{RUBY_B#つらぬ}貫{RUBY_E#}く{RUBY_B#てんばつ}天罰{RUBY_E#}", + "Desc": "指定した敵単体に雪衣の攻撃力#1[i]%分の量子属性ダメージを与え、弱点属性を無視して敵の靭性を削る。敵を弱点撃破した時、量子属性の弱点撃破効果を触発する。\\n削った靭性が多いほど、その回の攻撃の与ダメージがアップする、最大で与ダメージ+#3[f1]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 120, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.09000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.6000000005587935, + 0.09599999967031181, + 0.3840000000782311 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.7000000006519258, + 0.10199999995529652, + 0.40799999982118607 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.800000000745058, + 0.1079999995417893, + 0.43200000026263297 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9000000008381903, + 0.113999999826774, + 0.45600000000558794 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.12000000011175871, + 0.48000000044703484 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.1249999997671694, + 0.12749999994412065, + 0.5100000004749745 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.2500000002328306, + 0.13499999977648258, + 0.5400000005029142 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.375, + 0.14250000030733645, + 0.5700000005308539 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.5000000004656613, + 0.1500000001396984, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.6000000005587935, + 0.15599999972619116, + 0.6240000003017485 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.700000000651926, + 0.16200000001117587, + 0.6480000000447035 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.800000000745058, + 0.16799999959766865, + 0.6720000004861504 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.9000000008381903, + 0.17399999988265336, + 0.6960000002291054 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.18000000016763806, + 0.7200000006705523 + ] + } + } + }, + "121404": { + "Id": 121404, + "Name": "{RUBY_B#じゅうおう}十王{RUBY_E#}の{RUBY_B#せいさい}聖裁{RUBY_E#}、{RUBY_B#ごうほう}業報{RUBY_E#}は{RUBY_B#つね}常{RUBY_E#}に{RUBY_B#あ}在{RUBY_E#}り", + "Desc": "雪衣が攻撃を行って敵の靭性を削った時、「悪業」を獲得する。削った靭性が多いほど、獲得する「悪業」層数がアップする、最大で#1[i]層獲得できる。\\n雪衣以外の味方が攻撃を行って敵の靭性を削った後、雪衣は「悪業」を#3[i]層獲得する。\\n「悪業」が上限に達した時、すべての「悪業」を消費して敵に追加攻撃を行い、3ヒットする。1ヒットごとにランダムな敵単体に雪衣の攻撃力#2[i]%分の量子属性ダメージを与える。この追加攻撃で「悪業」を獲得することはできない。", + "Type": null, + "Tag": "Bounce", + "SPBase": 2, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 8, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 8, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 8, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 8, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 8, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 8, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 8, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 8, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 8, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 8, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 8, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 8, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 8, + 1.1249999997671694, + 1 + ] + } + } + }, + "121406": { + "Id": 121406, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121407": { + "Id": 121407, + "Name": "{RUBY_B#ざん}斬{RUBY_E#}、{RUBY_B#そっけつ}即決{RUBY_E#}", + "Desc": "敵を攻撃。戦闘開始後、敵全体に雪衣の攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Maze.png", + "LevelUpSkillID": [ + 121407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 2.400000000372529 + ], + "PointID": 1214101, + "PointName": "{RUBY_B#よちょう}予兆{RUBY_E#}の{RUBY_B#からく}絡繰{RUBY_E#}り", + "PointDesc": "自身の与ダメージを、撃破特効の#1[i]%分アップする、最大で与ダメージ+#2[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.10000000009313226 + ], + "PointID": 1214102, + "PointName": "{RUBY_B#さいほう}砕鋒{RUBY_E#}の{RUBY_B#じくうけ}軸受{RUBY_E#}", + "PointDesc": "必殺技を発動した時、残り靭性が最大靭性#1[i]%以上の敵への与ダメージ+#2[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 6 + ], + "PointID": 1214103, + "PointName": "{RUBY_B#きかい}機会{RUBY_E#}を{RUBY_B#うかが}伺{RUBY_E#}う{RUBY_B#ちゅうすう}中枢{RUBY_E#}", + "PointDesc": "雪衣は累積上限を超えた「悪業」層数をカウントする、最大で#1[i]層カウントできる。雪衣が天賦を発動した後、超過分の「悪業」層数を獲得する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214201, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1214101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214203, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1214202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214204, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1214203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214205, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1214102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1214205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214207, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1214206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214208, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1214103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1214208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214210, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1214208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "撃破特効" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1214, + "Set4IDList": [ + 108, + 111, + 119 + ], + "Set2IDList": [ + 307, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 348, + 293 + ] + } + }, + "1215": { + "Name": "{RUBY_B#カンア}寒鴉{RUBY_E#}", + "Desc": "仙舟「羅浮」十王司の判官の一人。\\n十王の命を受け、冥兆天筆を使って様々な罪業を読み取り、判決を下す。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "hanya", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 121501, + "Name": "{RUBY_B#いっしん}一心{RUBY_E#}", + "Desc": "寒鴉の必殺技のバフを持つ味方が敵を倒した時、寒鴉の行動順#1[i]%早まる。この効果はターンが回ってくるたびに#2[i]回まで発動できる。", + "ParamList": [ + 0.1500000001396984, + 1 + ] + }, + "2": { + "Id": 121502, + "Name": "{RUBY_B#にかん}二観{RUBY_E#}", + "Desc": "戦闘スキルを発動した後、速度+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 121503, + "Name": "{RUBY_B#さんじん}三塵{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 121504, + "Name": "{RUBY_B#したい}四諦{RUBY_E#}", + "Desc": "必殺技の継続時間+#1[i]ターン。", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 121505, + "Name": "{RUBY_B#ごおん}五陰{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 121506, + "Name": "{RUBY_B#ろくしょう}六正{RUBY_E#}", + "Desc": "天賦のダメージアップ効果がさらに#1[i]%アップ。", + "ParamList": [ + 0.10000000009313226 + ] + } + }, + "Skills": { + "121501": { + "Id": 121501, + "Name": "{RUBY_B#めいちょうてんひつ}冥兆天筆{RUBY_E#}", + "Desc": "指定した敵単体に寒鴉の攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121502": { + "Id": 121502, + "Name": "{RUBY_B#しょうめつほばく}生滅捕縛{RUBY_E#}", + "Desc": "敵単体に「承負」状態を付与して、寒鴉の攻撃力#1[i]%分の物理属性ダメージを与える。\\n味方が「承負」状態の敵に通常攻撃、戦闘スキル、または必殺技のうち任意のスキルを合わせて2回発動するたびに、SPを1回復する。「承負」は最後に付与されたターゲットにのみ効果を発揮し、SP回復効果が#2[i]回発動した後に自動で解除される。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 17, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 2 + ] + } + } + }, + "121503": { + "Id": 121503, + "Name": "{RUBY_B#じゅうおう}十王{RUBY_E#}の{RUBY_B#ちょくれい}勅令{RUBY_E#}、{RUBY_B#あまね}遍{RUBY_E#}く{RUBY_B#じゅんこう}遵行{RUBY_E#}せよ", + "Desc": "指定した味方の速度を、寒鴉の速度の#3[f1]%分アップし、その味方の攻撃力+#1[i]%#2[i]ターン継続。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 28, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 2, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 2, + 0.15499999979510903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 2, + 0.1600000001490116 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 2, + 0.16499999980442226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 2, + 0.17000000015832484 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 2, + 0.17499999981373549 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 2, + 0.18125000060535967 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 2, + 0.1875 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 2, + 0.1937500007916242 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 2, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 2, + 0.20499999984167516 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 2, + 0.21000000019557774 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 2, + 0.2149999998509884 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 2, + 0.22000000020489097 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 2, + 0.2249999998603016 + ] + } + } + }, + "121504": { + "Id": 121504, + "Name": "{RUBY_B#ちょうあく}懲悪{RUBY_E#}", + "Desc": "味方が「承負」状態の敵に通常攻撃、戦闘スキル、または必殺技を発動した時、与ダメージ+#1[i]%#2[i]ターン継続。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 2 + ] + } + } + }, + "121506": { + "Id": 121506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121507": { + "Id": 121507, + "Name": "{RUBY_B#はんめい}判冥{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、ランダムな敵単体に戦闘スキルが与えるものと同じ「承負」状態を付与する。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Maze.png", + "LevelUpSkillID": [ + 121507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 1 + ], + "PointID": 1215101, + "PointName": "{RUBY_B#ろくじ}録事{RUBY_E#}", + "PointDesc": "「承負」によるSP回復効果を発動させた味方の攻撃力+#1[i]%#2[i]ターン継続。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 1215102, + "PointName": "{RUBY_B#ゆうふ}幽府{RUBY_E#}", + "PointDesc": "「承負」を持つ敵が倒された時、その敵が持つ「承負」によるSP回復効果の発動回数が#1[i]回以下の場合、さらにSPを#2[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1215103, + "PointName": "{RUBY_B#かんよう}還陽{RUBY_E#}", + "PointDesc": "「承負」によるSP回復効果が発動された時、自身のEPを#1[i]回復する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215202, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1215101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1215202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1215201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1215102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215206, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1215205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1215201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1215103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215209, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1215208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1215208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1215, + "Set4IDList": [ + 114, + 102, + 121 + ], + "Set2IDList": [ + 317, + 308, + 310 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 254, + 208 + ] + } + }, + "1217": { + "Name": "フォフォ", + "Desc": "仙舟「羅浮」の十王司見習い判官。歳陽に取り憑かれた狐族の少女。\\n怪異を恐れる臆病で不憫な女の子だが、邪悪なるものを捕える責任を担っている。", + "CharaInfo": { + "Camp": "仙舟「羅浮」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "huohuo", + "SPNeed": 140, + "BaseType": "Priest", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 121701, + "Name": "{RUBY_B#さいよう}歳陽{RUBY_E#}の{RUBY_B#よ}拠{RUBY_E#}り{RUBY_B#どころ}所{RUBY_E#}", + "Desc": "天賦による「厄払い」の継続時間+#2[i]ターン。フォフォに「厄払い」がある時、味方全体の速度+#1[i]%。", + "ParamList": [ + 0.12000000011175871, + 1 + ] + }, + "2": { + "Id": 121702, + "Name": "{RUBY_B#じゃれい}邪霊{RUBY_E#}を{RUBY_B#やど}宿{RUBY_E#}した{RUBY_B#しっぽ}尻尾{RUBY_E#}", + "Desc": "フォフォに「厄払い」がある時、味方はHPが0になるダメージを受けても戦闘不能状態にならず、自身の最大HP#1[i]%分のHPを回復する。この効果を発動した後、「厄払い」の継続時間-1ターン。この効果は一度の戦闘で#2[i]回まで発動できる。", + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "3": { + "Id": 121703, + "Name": "{RUBY_B#ていきょう}貞凶{RUBY_E#}の{RUBY_B#しょっか}燭火{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 121704, + "Name": "{RUBY_B#はな}離{RUBY_E#}れぬ{RUBY_B#あっき}悪鬼{RUBY_E#}\\n{RUBY_B#た}絶{RUBY_E#}えぬ{RUBY_B#も}揉{RUBY_E#}め{RUBY_B#ごと}事{RUBY_E#}", + "Desc": "戦闘スキルまたは天賦を発動し、味方に治癒を行った時、その味方の残りHPが少ないほど治癒量がアップする、最大でフォフォの治癒量+#1[i]%。", + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Id": 121705, + "Name": "{RUBY_B#ちょくれい}勅令{RUBY_E#}のままに{RUBY_B#ようまたいじ}妖魔退治{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 121706, + "Name": "{RUBY_B#くらく}苦楽{RUBY_E#}を{RUBY_B#とも}共{RUBY_E#}にする{RUBY_B#なかま}仲間{RUBY_E#}", + "Desc": "味方に治癒を行った時、その味方の与ダメージ+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.5000000004656613, + 2 + ] + } + }, + "Skills": { + "121701": { + "Id": 121701, + "Name": "{RUBY_B#れいき}令旗{RUBY_E#}・{RUBY_B#ふううしょうらい}風雨招来{RUBY_E#}", + "Desc": "指定した敵単体にフォフォの最大HP#1[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "121702": { + "Id": 121702, + "Name": "{RUBY_B#れいふ}霊符{RUBY_E#}・{RUBY_B#ごしん}護身{RUBY_E#}", + "Desc": "指定した味方単体のデバフ#5[i]つ解除し、フォフォの最大HP#1[f1]%+#2[i]のHPを回復する。同時にターゲットに隣接する味方のHPをフォフォの最大HP#3[f1]%+#4[i]回復する。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14000000013038516, + 140, + 0.11199999996460974, + 112, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1487500004004687, + 224, + 0.11899999948218465, + 179.20000000018626, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.15749999997206032, + 287, + 0.12599999969825149, + 229.6000000005588, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16625000024214387, + 350, + 0.13299999991431832, + 280, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17499999981373549, + 392, + 0.14000000013038516, + 313.6000000005588, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18200000002980232, + 434, + 0.14560000016354024, + 347.20000000018626, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18899999954737723, + 465.50000000046566, + 0.15120000019669533, + 372.40000000037253, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.19599999976344407, + 497, + 0.1568000002298504, + 397.6000000005588, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2029999999795109, + 528.5000000004657, + 0.1624000002630055, + 422.80000000074506, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.21000000019557774, + 560, + 0.16799999959766865, + 448, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21699999971315265, + 591.5000000004657, + 0.17360000032931566, + 473.20000000018626, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22399999992921948, + 623, + 0.17919999966397882, + 498.40000000037253, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.23100000014528632, + 654.5000000004657, + 0.18480000039562583, + 523.6000000005588, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.23799999966286123, + 686, + 0.1904000004287809, + 548.8000000007451, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.24499999987892807, + 717.5000000004657, + 0.19599999976344407, + 574, + 1 + ] + } + } + }, + "121703": { + "Id": 121703, + "Name": "シッポ・{RUBY_B#しんきしえき}神鬼使役{RUBY_E#}", + "Desc": "自身以外の味方のEPをそれぞれの最大EP#1[f1]%分回復し、それら味方の攻撃力+#2[f1]%#3[i]ターン継続。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.24000000022351742, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 0.2559999998193234, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 0.27200000011362135, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 0.28799999970942736, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 0.3040000000037253, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 0.3200000002980232, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 0.3400000003166497, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 0.3600000003352761, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 0.3800000003539026, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 0.41599999996833503, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 0.43200000026263297, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 0.44799999985843897, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 0.4640000001527369, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 0.48000000044703484, + 2 + ] + } + } + }, + "121704": { + "Id": 121704, + "Name": "{RUBY_B#ひょうい}憑依{RUBY_E#}・{RUBY_B#しんきつうてん}真気通天{RUBY_E#}", + "Desc": "戦闘スキルを発動した後、フォフォは#1[i]ターン継続する「厄払い」を獲得する。フォフォのターンが回ってくるたびに「厄払い」の継続時間-1ターン。フォフォに「厄払い」がある場合、味方のターンが回ってきた時、または味方が必殺技を発動した時に、その味方のHPをフォフォの最大HP#3[f1]%+#5[i]回復する。同時に、残りHPが#6[i]%以下の味方それぞれに回復効果を1回発動する。\\n「厄払い」が発動され、味方が治癒された時、その味方に付与されたデバフ#2[i]つ解除する。この効果は#7[i]回発動できる。再度戦闘スキルを発動すると、発動可能回数がリセットされる。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1, + 0.030000000027939677, + 0, + 30, + 0.5000000004656613, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 1, + 0.03187500103376806, + 0, + 48, + 0.5000000004656613, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 1, + 0.033750000642612576, + 0, + 61.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 1, + 0.035625000251457095, + 0, + 75, + 0.5000000004656613, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 1, + 0.037499999860301614, + 0, + 84, + 0.5000000004656613, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 1, + 0.03899999940767884, + 0, + 93, + 0.5000000004656613, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 1, + 0.04050000035203993, + 0, + 99.75000000069849, + 0.5000000004656613, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 1, + 0.04199999989941716, + 0, + 106.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 1, + 0.04350000014528632, + 0, + 113.25000000023283, + 0.5000000004656613, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.04499999969266355, + 0, + 120, + 0.5000000004656613, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 1, + 0.04649999993853271, + 0, + 126.75000000069849, + 0.5000000004656613, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 1, + 0.04799999948590994, + 0, + 133.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 1, + 0.0494999997317791, + 0, + 140.25000000023283, + 0.5000000004656613, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 1, + 0.05099999997764826, + 0, + 147, + 0.5000000004656613, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 1, + 0.05250000022351742, + 0, + 153.7500000006985, + 0.5000000004656613, + 6 + ] + } + } + }, + "121706": { + "Id": 121706, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121707": { + "Id": 121707, + "Name": "{RUBY_B#きょうそう}凶相{RUBY_E#}・{RUBY_B#きぶつあっぷく}鬼物圧伏{RUBY_E#}", + "Desc": "フォフォが周囲の敵を威嚇し、敵を「魂魄飛散」状態にする。「魂魄飛散」状態の敵はフォフォの反対方向に向けて逃げる、#4[i]秒継続。「魂魄飛散」状態の敵と戦闘に入った後、#1[i]%基礎確率で敵それぞれの攻撃力-#2[i]%#3[i]ターン継続。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.25000000023283064, + 2, + 10 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Maze.png", + "LevelUpSkillID": [ + 121707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1217101, + "PointName": "{RUBY_B#いちぞん}一存{RUBY_E#}では{RUBY_B#うご}動{RUBY_E#}けない", + "PointDesc": "戦闘開始時、フォフォは「厄払い」を獲得する、#1[i]ターン継続。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1217102, + "PointName": "{RUBY_B#ていきょう}貞凶{RUBY_E#}の{RUBY_B#めい}命{RUBY_E#}", + "PointDesc": "行動制限系デバフに抵抗する確率+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1217103, + "PointName": "{RUBY_B#おくびょうもの}臆病者{RUBY_E#}のストレス{RUBY_B#はんのう}反応{RUBY_E#}", + "PointDesc": "天賦を発動して味方に治癒を行った時、フォフォのEPを#1[i]回復する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217201, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217202, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1217101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217203, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1217202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217204, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1217203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217205, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1217102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217206, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1217205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217207, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1217206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217208, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1217103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217209, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1217103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "効果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217210, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1217, + "Set4IDList": [ + 101, + 114, + 110 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1218": { + "Name": "{RUBY_B#ショウキュウ}椒丘{RUBY_E#}", + "Desc": "仙舟「曜青」の狐族。医士であり、策士でもある。いつも笑顔で人に接するが、実際はかなり狡猾。\\n丹鼎司の名家の出。一時は心が折れ医士を辞めたが、「天撃将軍」飛霄を治療するため、再び表舞台に舞い戻った。\\n医食同源の丹方の研究に精通しており、特に人に痛みを与える辛味においての造詣が深い。「九宮格」という名の火鍋薬を発明している。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jiaoqiu", + "SPNeed": 100, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 121801, + "Name": "{RUBY_B#ごみごぞう}五味五臓{RUBY_E#}", + "Desc": "「焼尽」状態の敵に対する味方の与ダメージ+#1[i]%。天賦を発動して敵に「焼尽」状態を付与する時、さらにその回に付与する「焼尽」状態層数+#2[i]層。", + "ParamList": [ + 0.40000000037252903, + 1 + ] + }, + "2": { + "Id": 121802, + "Name": "{RUBY_B#こうみ}厚味{RUBY_E#}、{RUBY_B#まんびょう}万病{RUBY_E#}の{RUBY_B#もと}元{RUBY_E#}", + "Desc": "敵が「焼尽」状態にある時、「焼尽」状態による炎属性持続ダメージの倍率+#1[i]%。", + "ParamList": [ + 3 + ] + }, + "3": { + "Id": 121803, + "Name": "{RUBY_B#わごう}和合{RUBY_E#}の{RUBY_B#しんずい}神髄{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 121804, + "Name": "{RUBY_B#きけつじゅういつ}気血充溢{RUBY_E#}", + "Desc": "結界が展開されている間、敵の攻撃力-#1[i]%。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 121805, + "Name": "{RUBY_B#めぐ}巡{RUBY_E#}らせる{RUBY_B#きさく}奇策{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 121806, + "Name": "{RUBY_B#きゅうふつきゅうへん}九沸九変{RUBY_E#}", + "Desc": "敵が倒される時、その敵にある「焼尽」状態の層数が、フィールド上の「焼尽」状態層数が最も低い敵に移る。「焼尽」状態の累積上限が#2[i]層にアップする。「焼尽」1層につき、敵の全属性耐性-#3[i]%。", + "ParamList": [ + 1, + 9, + 0.030000000027939677 + ] + } + }, + "Skills": { + "121801": { + "Id": 121801, + "Name": "{RUBY_B#しんかけい}心火計{RUBY_E#}", + "Desc": "指定した敵単体に椒丘の攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121802": { + "Id": 121802, + "Name": "{RUBY_B#りょうげんほんしゅう}燎原奔襲{RUBY_E#}", + "Desc": "指定した敵単体に椒丘の攻撃力#1[i]%分の炎属性ダメージを与え、隣接する敵に椒丘の攻撃力#2[i]%分の炎属性ダメージを与える。#3[i]%基礎確率で指定した敵単体に「焼尽」を1層付与する。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1.1249999997671694, + 1 + ] + } + } + }, + "121803": { + "Id": 121803, + "Name": "{RUBY_B#すいじんみょうほう}炊陣妙法{RUBY_E#}、{RUBY_B#きせいそうせい}詭正相生{RUBY_E#}", + "Desc": "敵それぞれにある「焼尽」状態の層数を、フィールド上で最高層数の「焼尽」状態の層数と同じにする。その後、結界を展開し、敵全体に椒丘の攻撃力#1[i]%分の炎属性ダメージを与える。\\n結界が展開されている間、敵の受ける必殺技ダメージ+#3[f1]%。敵が行動する時、#2[i]%基礎確率で「焼尽」状態を1層付与される。この効果は結界が展開されている間、#5[i]回まで発動でき、敵それぞれにつき、その敵のターンが回ってくるたびに1回まで発動できる。椒丘が必殺技を発動するたびに、この効果の発動可能回数がリセットされる。\\n結界は#4[i]ターン継続する。椒丘のターンが回ってくるたびに結界の継続時間-1ターン。椒丘が戦闘不能状態になった時、結界は解除される。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 0.09000000008381903, + 3, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6400000005960464, + 0.5100000004749745, + 0.09599999967031181, + 3, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6800000006332994, + 0.5200000004842877, + 0.10199999995529652, + 3, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523, + 0.530000000493601, + 0.1079999995417893, + 3, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7600000007078052, + 0.5400000005029142, + 0.113999999826774, + 3, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581, + 0.5500000005122274, + 0.12000000011175871, + 3, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8500000007916242, + 0.5625000006984919, + 0.12749999994412065, + 3, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9000000008381903, + 0.5750000001862645, + 0.13499999977648258, + 3, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9500000008847564, + 0.587500000372529, + 0.14250000030733645, + 3, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.6000000005587935, + 0.1500000001396984, + 3, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.040000000037253, + 0.6100000005681068, + 0.15599999972619116, + 3, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.0800000000745058, + 0.62000000057742, + 0.16200000001117587, + 3, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1200000001117587, + 0.6300000005867332, + 0.16799999959766865, + 3, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.1600000001490116, + 0.6400000005960464, + 0.17399999988265336, + 3, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2000000001862645, + 0.6500000006053597, + 0.18000000016763806, + 3, + 6 + ] + } + } + }, + "121804": { + "Id": 121804, + "Name": "{RUBY_B#きせいてんぺん}詭正転変{RUBY_E#}、{RUBY_B#しびせいみょう}至微精妙{RUBY_E#}", + "Desc": "椒丘の通常攻撃、戦闘スキルまたは必殺技が敵に命中した時、#1[i]%基礎確率でその敵に「焼尽」状態を1層付与する。「焼尽」状態は最大で#4[i]層累積でき、#5[i]ターン継続する。\\n「焼尽」状態が1層の時、敵の受けるダメージ+#2[f1]%。2層目から、「焼尽」状態1層につき、敵の受けるダメージ+#3[f1]%。\\n「焼尽」状態にある敵は、燃焼状態と見なされ、ターンが回ってくるたびに、椒丘の攻撃力#6[i]%分の炎属性持続ダメージを受ける。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.07499999972060323, + 0.0249999996740371, + 5, + 2, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.0825000002514571, + 0.027499999850988388, + 5, + 2, + 0.9900000009220093 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.09000000008381903, + 0.030000000027939677, + 5, + 2, + 1.0800000000745058 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.09749999991618097, + 0.032500000204890966, + 5, + 2, + 1.1700000001583248 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.1049999997485429, + 0.034999999683350325, + 5, + 2, + 1.2600000002421439 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.11250000027939677, + 0.037499999860301614, + 5, + 2, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.12187500111758709, + 0.040625000605359674, + 5, + 2, + 1.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.13125000055879354, + 0.0437500006519258, + 5, + 2, + 1.5750000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.14062500069849193, + 0.04687500069849193, + 5, + 2, + 1.6875000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.1500000001396984, + 0.05000000004656613, + 5, + 2, + 1.800000000745058 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.15749999997206032, + 0.05250000022351742, + 5, + 2, + 1.890000000828877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.16499999980442226, + 0.054999999701976776, + 5, + 2, + 1.9800000009126961 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.17250000033527613, + 0.057499999878928065, + 5, + 2, + 2.0700000000651926 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.18000000016763806, + 0.060000000055879354, + 5, + 2, + 2.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.1875, + 0.06250000023283064, + 5, + 2, + 2.2500000002328306 + ] + } + } + }, + "121806": { + "Id": 121806, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121807": { + "Id": 121807, + "Name": "{RUBY_B#おうかきゃくらん}旺火却乱{RUBY_E#}", + "Desc": "秘技を使用した後、#2[i]秒間継続する特殊領域を作り出す。特殊領域内にいる敵と戦闘に入った後、敵全体に椒丘の攻撃力#1[i]%分の炎属性ダメージを与え、#3[i]%基礎確率で「焼尽」を1層付与する。味方が作り出した領域は1つまで存在できる。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 15, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Maze.png", + "LevelUpSkillID": [ + 121807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1218101, + "PointName": "{RUBY_B#ひばら}火祓{RUBY_E#}い", + "PointDesc": "戦闘開始時、EPを#1[i]回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984, + 0.6000000005587935, + 2.400000000372529 + ], + "PointID": 1218102, + "PointName": "{RUBY_B#すいじ}炊事{RUBY_E#}", + "PointDesc": "椒丘の効果命中が#1[i]%を超えた時、超過した効果命中#2[i]%につき、攻撃力+#3[i]%、最大で+#4[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1218103, + "PointName": "{RUBY_B#しゃこう}炙香{RUBY_E#}", + "PointDesc": "結界が展開されている間、敵が戦闘に入る際に「焼尽」状態が付与される。付与される「焼尽」状態の層数は、結界展開中に最高層数の「焼尽」状態の敵の層数と同じ。最低で#1[i]層付与される。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218201, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218202, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1218101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218203, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1218202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218204, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1218203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218205, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1218102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218206, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1218205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218207, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1218206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218208, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1218103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218209, + "PointName": "ダメージ強化・炎", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1218103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "炎属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218210, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1218201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "効果命中" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1218, + "Set4IDList": [ + 116, + 110, + 106 + ], + "Set2IDList": [ + 303, + 302, + 308 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "StatusProbabilityBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 328, + 273 + ] + } + }, + "1220": { + "Name": "{RUBY_B#ヒショウ}飛霄{RUBY_E#}", + "Desc": "仙舟「曜青」の天撃将軍、帝弓七天将の1人。形式にとらわれない、真っ直ぐでさっぱりとした武人。\\n武芸百般を修め、その身体を極限まで鍛え上げた彼女は、「大捷将軍」という名で仙舟の人々に慕われている。\\nしかし、飛霄は「月狂い」の病を患っている——残された時間の中で、果たして彼女は忌み物を狩り尽くせるのだろうか。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "feixiao", + "SPNeed": 12, + "BaseType": "Rogue", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 122001, + "Name": "{RUBY_B#きょくちちんてい}極地鎮定{RUBY_E#}", + "Desc": "「閃裂刃舞」または「斧貫衝天」を発動した後、飛霄の与える必殺技ダメージがさらに本来のダメージの#1[i]%分アップする。最大#2[i]層累積でき、必殺技の行動終了まで継続する。", + "ParamList": [ + 0.10000000009313226, + 5 + ] + }, + "2": { + "Id": 122002, + "Name": "{RUBY_B#げっけいらいさん}月桂礼賛{RUBY_E#}", + "Desc": "天賦効果が強化される。味方の行った攻撃が追加攻撃だった場合、飛霄は直接「飛黄」を1層獲得する。この効果はターンが回ってくるたびに#1[i]回まで発動できる。", + "ParamList": [ + 6 + ] + }, + "3": { + "Id": 122003, + "Name": "{RUBY_B#うつ}移{RUBY_E#}ろいゆく{RUBY_B#けいせい}景星{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 122004, + "Name": "{RUBY_B#たんだいしんしょう}胆大心小{RUBY_E#}", + "Desc": "天賦による追加攻撃の削靭値+#1[i]%。天賦による追加攻撃を行う時、自身の速度+#2[i]%#3[i]ターン継続。", + "ParamList": [ + 1, + 0.0800000000745058, + 2 + ] + }, + "5": { + "Id": 122005, + "Name": "{RUBY_B#せいてんとうは}星天踏破{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 122006, + "Name": "{RUBY_B#こししゅきゅう}狐死首丘{RUBY_E#}", + "Desc": "飛霄が与える必殺技ダメージの全属性耐性貫通+#1[i]%。天賦による追加攻撃ダメージが同時に必殺技ダメージと見なされ、ダメージ倍率+#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 1.400000000372529 + ] + } + }, + "Skills": { + "122001": { + "Id": 122001, + "Name": "{RUBY_B#せんれつ}閃裂{RUBY_E#}", + "Desc": "指定した敵単体に飛霄の攻撃力#1[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122002": { + "Id": 122002, + "Name": "{RUBY_B#ふかん}斧貫{RUBY_E#}", + "Desc": "指定した敵単体に飛霄の攻撃力#1[i]%分の風属性ダメージを与え、その後、その敵に天賦による追加攻撃を即座に1回発動する。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613 + ] + } + } + }, + "122003": { + "Id": 122003, + "Name": "{RUBY_B#だいこうめっぱさい}大荒滅破砕{RUBY_E#}", + "Desc": "指定した敵単体に最大で飛霄の攻撃力#4[i]%分の風属性ダメージを与える。必殺技発動中は弱点属性を無視して敵の靭性を削る。敵が弱点撃破状態にない時、飛霄の弱点撃破効率+#2[i]%。\\n飛霄はターゲットの敵に「閃裂刃舞」または「斧貫衝天」を合計で#3[i]回発動し、最後に飛霄の攻撃力#1[i]%分の風属性ダメージを与える。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 1, + 6, + 4.0200000000186265 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 1, + 6, + 4.317999999737367 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 1, + 6, + 4.6160000001545995 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 1, + 6, + 4.914000000571832 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 1, + 6, + 5.212000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 1, + 6, + 5.5100000004749745 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 1, + 6, + 5.882500000996515 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 1, + 6, + 6.254999999888241 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 1, + 6, + 6.627500000409782 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 6, + 7 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1, + 6, + 7.297999999718741 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1, + 6, + 7.596000000135973 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1, + 6, + 7.894000000553206 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1, + 6, + 8.192000000039116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1, + 6, + 8.490000000456348 + ] + } + } + }, + "122004": { + "Id": 122004, + "Name": "{RUBY_B#らいしゅ}雷狩{RUBY_E#}", + "Desc": "「飛黄」が#3[i]層に達すると必殺技が発動可能になる。「飛黄」は最大で#4[i]層累積できる。味方が#2[i]回攻撃を行うたびに、飛霄は「飛黄」を1層獲得する。なお、飛霄の必殺技での攻撃は回数にカウントされない。\\n飛霄以外の味方が敵に攻撃を行った後、味方のメインターゲットとなった敵に飛霄が追加攻撃を行い、飛霄の攻撃力#1[i]%分の風属性ダメージを与える。攻撃可能なメインターゲットがいない場合、ランダムな敵単体を攻撃する。この効果はターンが回ってくるたびに1回まで発動でき、飛霄のターンが回ってくるたびに発動可能回数がリセットされる。この攻撃を行う時、自身の与ダメージ+#5[i]%#6[i]ターン継続。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 2, + 6, + 12, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6050000002142042, + 2, + 6, + 12, + 0.33000000030733645, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6600000006146729, + 2, + 6, + 12, + 0.3600000003352761, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7150000003166497, + 2, + 6, + 12, + 0.3900000003632158, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7700000007171184, + 2, + 6, + 12, + 0.4200000003911555, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8250000004190952, + 2, + 6, + 12, + 0.45000000041909516, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.89375000144355, + 2, + 6, + 12, + 0.4875000002793968, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.962500001071021, + 2, + 6, + 12, + 0.5250000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.0312500004656613, + 2, + 6, + 12, + 0.5625000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1000000000931323, + 2, + 6, + 12, + 0.6000000005587935, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.154999999795109, + 2, + 6, + 12, + 0.6300000005867332, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2100000001955777, + 2, + 6, + 12, + 0.6600000006146729, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.2649999998975545, + 2, + 6, + 12, + 0.6900000006426126, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.3200000002980232, + 2, + 6, + 12, + 0.7200000006705523, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.375, + 2, + 6, + 12, + 0.7500000006984919, + 2 + ] + } + } + }, + "122006": { + "Id": 122006, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122007": { + "Id": 122007, + "Name": "{RUBY_B#らんしん}嵐身{RUBY_E#}", + "Desc": "秘技を使用した後、#1[i]秒間継続する「陥陣」状態に入る。「陥陣」状態の間は一定範囲内の敵を引き寄せられるほか、自身の移動速度+#2[i]%。戦闘に入った後、「飛黄」を#4[i]層獲得する。\\n「陥陣」状態の時に敵を攻撃すると、引き寄せたすべての敵と戦闘に入る。戦闘開始後、各ウェーブ開始時に敵全体に飛霄の攻撃力#3[i]%分の風属性ダメージを与える。なお、このダメージは必ず会心が発生する。引き寄せた敵の数が1体以上の場合、超過分1体につき、このダメージの倍率+#5[i]%。このダメージ倍率の上限は#6[i]%。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.5000000004656613, + 2, + 1, + 1, + 10 + ] + } + } + }, + "122008": { + "Id": 122008, + "Name": "{RUBY_B#せんれつじんぶ}閃裂刃舞{RUBY_E#}", + "Desc": "指定した敵単体に飛霄の攻撃力#1[i]%分の風属性ダメージを与える。敵が弱点撃破状態にある場合、ダメージ倍率+#2[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 0.375 + ] + } + } + }, + "122009": { + "Id": 122009, + "Name": "{RUBY_B#ふかんしょうてん}斧貫衝天{RUBY_E#}", + "Desc": "指定した敵単体に飛霄の攻撃力#1[i]%分の風属性ダメージを与える。敵が弱点撃破状態でない場合、ダメージ倍率+#2[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 0.375 + ] + } + } + }, + "122014": { + "Id": 122014, + "Name": "{RUBY_B#だいこうめっぱさい}大荒滅破砕{RUBY_E#}", + "Desc": null, + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 1, + 6, + 4.0200000000186265 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 1, + 6, + 4.317999999737367 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 1, + 6, + 4.6160000001545995 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 1, + 6, + 4.914000000571832 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 1, + 6, + 5.212000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 1, + 6, + 5.5100000004749745 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 1, + 6, + 5.882500000996515 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 1, + 6, + 6.254999999888241 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 1, + 6, + 6.627500000409782 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 6, + 7 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1, + 6, + 7.297999999718741 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1, + 6, + 7.596000000135973 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1, + 6, + 7.894000000553206 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1, + 6, + 8.192000000039116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1, + 6, + 8.490000000456348 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Maze.png", + "LevelUpSkillID": [ + 122007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1220101, + "PointName": "{RUBY_B#つうてん}通天{RUBY_E#}", + "PointDesc": "戦闘開始時に「飛黄」を#1[i]層獲得する。\\nターンが回ってきた時、飛霄が1つ前の自身のターンから天賦による追加攻撃を発動していなかった場合、「飛黄」を獲得するのに必要な攻撃回数が1加算される。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3600000003352761 + ], + "PointID": 1220102, + "PointName": "{RUBY_B#かいけい}解形{RUBY_E#}", + "PointDesc": "必殺技を発動して敵にダメージを与える時、追加攻撃を行うと見なされる。追加攻撃の会心ダメージ+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.48000000044703484, + 3 + ], + "PointID": 1220103, + "PointName": "{RUBY_B#しんそく}神速{RUBY_E#}", + "PointDesc": "戦闘スキルを発動する時、攻撃力+#1[i]%#2[i]ターン継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1220101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1220202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1220102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1220205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1220103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1220208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1220208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 52.80000000074506, + "DefenceAdd": 2.6400000005960464, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 73.92000000085682, + "DefenceAdd": 2.6400000005960464, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 95.04000000003725, + "DefenceAdd": 2.6400000005960464, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 116.16000000014901, + "DefenceAdd": 2.6400000005960464, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 137.28000000026077, + "DefenceAdd": 2.6400000005960464, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 158.40000000037253, + "DefenceAdd": 2.6400000005960464, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 179.5200000004843, + "DefenceAdd": 2.6400000005960464, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1220, + "Set4IDList": [ + 120, + 110, + 115 + ], + "Set2IDList": [ + 315, + 306, + 311 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1221": { + "Name": "{RUBY_B#ウンリ}雲璃{RUBY_E#}", + "Desc": "仙舟「朱明」の猟剣士。素直な性格で、「燭淵将軍」懐炎の孫娘。彼の寵愛を一身に受けている。\\n幼い頃から懐炎より剣術と鍛造技術を学び、「焔輪八葉」の中で2番目に若い天才剣士。\\n朱明から流出した魔剣を心底嫌悪しており、「魔剣を狩り尽くす」と誓いを立てている。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "yunli", + "SPNeed": 240, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 122101, + "Name": "{RUBY_B#むく}無垢{RUBY_E#}なる{RUBY_B#れきじん}歴刃{RUBY_E#}", + "Desc": "「看破・斬」の与ダメージと「看破・滅」の与ダメージ+#1[i]%。「看破・滅」の追加のヒット数+#2[i]。", + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "2": { + "Id": 122102, + "Name": "{RUBY_B#あら}新{RUBY_E#}たに{RUBY_B#う}生{RUBY_E#}まれた{RUBY_B#ひかり}光{RUBY_E#}", + "Desc": "カウンターを発動してダメージを与える時、敵の防御力を#1[i]%無視する。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 122103, + "Name": "{RUBY_B#きゅうしゃくうんきん}九尺運斤{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 122104, + "Name": "{RUBY_B#たいしょうげきちん}大匠撃砧{RUBY_E#}", + "Desc": "「看破・斬」または「看破・滅」を発動した後、自身の効果抵抗+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "5": { + "Id": 122105, + "Name": "{RUBY_B#わ}我{RUBY_E#}が{RUBY_B#つるぎ}剣{RUBY_E#}、{RUBY_B#いし}石{RUBY_E#}に{RUBY_B#あら}匪{RUBY_E#}ず", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 122106, + "Name": "{RUBY_B#きんしんけんたん}琴心剣胆{RUBY_E#}", + "Desc": "「構え」状態の間、敵が能動的にスキルを発動する時、雲璃を攻撃していなくても雲璃は「看破・滅」を発動し、「構え」状態を解除する。「看破・斬」または「看破・滅」を発動してダメージを与える時、会心率+#1[i]%、物理属性耐性貫通+#2[i]%。", + "ParamList": [ + 0.1500000001396984, + 0.20000000018626451 + ] + } + }, + "Skills": { + "122101": { + "Id": 122101, + "Name": "{RUBY_B#しんてんどうち}震天動地{RUBY_E#}", + "Desc": "指定した敵単体に雲璃の攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122102": { + "Id": 122102, + "Name": "{RUBY_B#てんいこうこう}天威煌々{RUBY_E#}", + "Desc": "雲璃の攻撃力#3[f1]%+#4[i]のHPを回復し、指定した敵単体に雲璃の攻撃力#1[i]%分の物理属性ダメージを与え、隣接する敵に雲璃の攻撃力#2[i]%分の物理属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.20000000018626451, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.33000000030733645, + 0.21250000037252903, + 80 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.3600000003352761, + 0.2249999998603016, + 102.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.3900000003632158, + 0.23750000004656613, + 125 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.25000000023283064, + 140 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 0.26000000024214387, + 155 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 0.2700000002514571, + 166.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 0.2800000002607703, + 177.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 0.29000000027008355, + 188.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.3000000002793968, + 200 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.6300000005867332, + 0.31000000028871, + 211.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 0.3200000002980232, + 222.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.6900000006426126, + 0.33000000030733645, + 233.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.7200000006705523, + 0.3400000003166497, + 245 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.3500000003259629, + 256.25000000023283 + ] + } + } + }, + "122103": { + "Id": 122103, + "Name": "{RUBY_B#てん}天{RUBY_E#}を{RUBY_B#ゆ}揺{RUBY_E#}るがす{RUBY_B#だいち}大地{RUBY_E#}の{RUBY_B#つるぎ}剣{RUBY_E#}", + "Desc": "EPを#8[i]消費し、雲璃が「構え」状態に入り、敵全体を挑発状態にする。次に行動する味方または敵のターンが終了する時まで継続。雲璃の次のカウンターダメージの会心ダメージ+#2[i]%。\\n天賦によるカウンターを発動する時、代わりにカウンター「看破・滅」を発動し、「構え」状態を解除する。「構え」状態の間、カウンターを発動しなかった場合、「構え」状態が解除される時、雲璃はランダムな敵にカウンター「看破・斬」を発動する。\\n\\n「看破・斬」:敵に雲璃の攻撃力#1[i]%分の物理属性ダメージを与え、隣接する敵に雲璃の攻撃力#6[i]%分の物理属性ダメージを与える。\\n「看破・滅」:敵に雲璃の攻撃力#1[i]%分の物理属性ダメージを与え、隣接する敵に雲璃の攻撃力#6[i]%分の物理属性ダメージを与える。その後、追加で#4[i]ヒットする。1ヒットにつき、ランダムな敵単体に雲璃の攻撃力#7[i]%分の物理属性ダメージを与える。\\n\\n雲璃がこのスキルでダメージを与える時、必殺技ダメージを与えると見なされる。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3200000002980232, + 0.6000000005587935, + 0, + 6, + 0, + 0.6600000006146729, + 0.43200000026263297, + 120 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.407999999821186, + 0.6400000005960464, + 0, + 6, + 0, + 0.7040000003762543, + 0.46080000093206763, + 120 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.4960000000428408, + 0.6800000006332994, + 0, + 6, + 0, + 0.7480000001378357, + 0.48960000020451844, + 120 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5840000002644956, + 0.7200000006705523, + 0, + 6, + 0, + 0.7920000005979091, + 0.5184000001754612, + 120 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6720000004861504, + 0.7600000007078052, + 0, + 6, + 0, + 0.8360000003594905, + 0.5472000001464039, + 120 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.7600000007078052, + 0.8000000007450581, + 0, + 6, + 0, + 0.8800000008195639, + 0.5760000001173466, + 120 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.8700000008102506, + 0.8500000007916242, + 0, + 6, + 0, + 0.9350000005215406, + 0.612000000430271, + 120 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9800000009126961, + 0.9000000008381903, + 0, + 6, + 0, + 0.9900000009220093, + 0.6480000000447035, + 120 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.090000000083819, + 0.9500000008847564, + 0, + 6, + 0, + 1.0449999996926636, + 0.6840000003576279, + 120 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645, + 1, + 0, + 6, + 0, + 1.1000000000931323, + 0.7200000006705523, + 120 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.2879999997094274, + 1.040000000037253, + 0, + 6, + 0, + 1.1439999998547137, + 0.748800000641495, + 120 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.375999999931082, + 1.0800000000745058, + 0, + 6, + 0, + 1.187999999616295, + 0.7776000006124377, + 120 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.464000000152737, + 1.1200000001117587, + 0, + 6, + 0, + 1.2320000000763685, + 0.8064000005833805, + 120 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5520000003743917, + 1.1600000001490116, + 0, + 6, + 0, + 1.2759999998379499, + 0.8352000005543232, + 120 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6400000005960464, + 1.2000000001862645, + 0, + 6, + 0, + 1.3200000002980232, + 0.8640000005252659, + 120 + ] + } + } + }, + "122104": { + "Id": 122104, + "Name": "{RUBY_B#せんよう}閃熔{RUBY_E#}", + "Desc": "雲璃が敵の攻撃を受けた後、さらにEPを#3[i]回復し、即座に攻撃者にカウンターを発動し、雲璃の攻撃力#1[i]%分の物理属性ダメージを与え、隣接する敵に雲璃の攻撃力#2[i]%分の物理属性ダメージを与える。\\nカウンターの対象となるはずの敵がすでにいない場合、ランダムな敵にカウンターを発動する。", + "Type": null, + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 15 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.33000000030733645, + 15 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.3600000003352761, + 15 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.3900000003632158, + 15 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 15 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 15 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 15 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 15 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 15 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 15 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.6300000005867332, + 15 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 15 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.6900000006426126, + 15 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.7200000006705523, + 15 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 15 + ] + } + } + }, + "122106": { + "Id": 122106, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122107": { + "Id": 122107, + "Name": "{RUBY_B#ご}後{RUBY_E#}の{RUBY_B#せん}先{RUBY_E#}", + "Desc": "自身に「迎撃」状態を付与する、#2[i]秒継続。効果期間中、敵を先制攻撃、または攻撃を受けて戦闘に入った後、即座にランダムな敵単体に「看破・滅」を発動する。その回の攻撃の与ダメージ+#1[i]%。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Maze.png", + "LevelUpSkillID": [ + 122107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221101, + "PointName": "{RUBY_B#えんりん}炎輪{RUBY_E#}", + "PointDesc": "「看破・斬」を1回発動した後、次の「看破・斬」は「看破・滅」に変わる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1221102, + "PointName": "{RUBY_B#きゃくじゃ}却邪{RUBY_E#}", + "PointDesc": "「構え」状態の時、行動制限系デバフに抵抗し、受けるダメージ-#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1221103, + "PointName": "{RUBY_B#しんこう}真鋼{RUBY_E#}", + "PointDesc": "カウンターを発動する時、雲璃の攻撃力+#1[i]%、1ターン継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1221101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1221202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221204, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1221203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1221102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1221205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1221206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221208, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1221103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1221208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1221208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1221, + "Set4IDList": [ + 120, + 117, + 105 + ], + "Set2IDList": [ + 315, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 337, + 283 + ] + } + }, + "1222": { + "Name": "{RUBY_B#レイサ}霊砂{RUBY_E#}", + "Desc": "新しく仙舟「羅浮」丹鼎司の司鼎に就任した、美しく聡明な医士。\\n鋭い嗅覚で病を突き止め、薫香で患者を落ち着かせる。\\n複雑な人間関係の中でも上手く立ち回るのが得意。たとえ心の奥が激しい怒りに燃えていようと、表面上は平静を保ち、他人に隙を見せることはない。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "lingsha", + "SPNeed": 110, + "BaseType": "Priest", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 122201, + "Name": "{RUBY_B#はじゃ}破邪{RUBY_E#}の{RUBY_B#かお}香{RUBY_E#}り", + "Desc": "霊砂の弱点撃破効率+#2[i]%。敵が弱点撃破される時、その敵の防御力-#1[i]%。", + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + }, + "2": { + "Id": 122202, + "Name": "{RUBY_B#しだ}垂{RUBY_E#}れ{RUBY_B#ぐも}雲{RUBY_E#}に{RUBY_B#べにこうろ}紅香炉{RUBY_E#}", + "Desc": "必殺技を発動する時、味方全体の撃破特効+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.40000000037252903, + 3 + ] + }, + "3": { + "Id": 122203, + "Name": "{RUBY_B#いちる}一縷{RUBY_E#}の{RUBY_B#しんめ}新芽{RUBY_E#}、\\n{RUBY_B#のうこう}濃香{RUBY_E#}なる{RUBY_B#はな}華{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 122204, + "Name": "{RUBY_B#とばり}帳{RUBY_E#}を{RUBY_B#な}撫{RUBY_E#}でる{RUBY_B#しゅえん}朱煙{RUBY_E#}", + "Desc": "「浮元」が行動する時、残りHPが最も低い味方のHPを、霊砂の攻撃力#1[i]%分回復する。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Id": 122205, + "Name": "{RUBY_B#ゆ}揺{RUBY_E#}るがぬ{RUBY_B#きく}規矩{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 122206, + "Name": "{RUBY_B#しゅんらん}春蘭{RUBY_E#}の{RUBY_B#しゅくこう}宿香{RUBY_E#}", + "Desc": "「浮元」がフィールド上に存在する時、敵全体の全属性耐性-#1[i]%。「浮元」が攻撃を行う時、さらに#2[i]ヒットする。\\n1ヒットにつき、ランダムな敵単体に霊砂の攻撃力#3[i]%分の炎属性ダメージを与える。この時、「浮元」は炎属性弱点を持ち、かつ残り靭性値が0より大きい敵を優先的にターゲットにする。なお、このダメージの削靭値は1ヒットにつき#4[i]。", + "ParamList": [ + 0.20000000018626451, + 4, + 0.5000000004656613, + 5 + ] + } + }, + "Skills": { + "122201": { + "Id": 122201, + "Name": "{RUBY_B#ぐこう}供香{RUBY_E#}", + "Desc": "指定した敵単体に霊砂の攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122202": { + "Id": 122202, + "Name": "{RUBY_B#さいえん}彩煙{RUBY_E#}", + "Desc": "敵全体に霊砂の攻撃力#1[i]%分の炎属性ダメージを与え、味方全体のHPを霊砂の攻撃力#2[f1]%+#3[i]回復する。また、「浮元」の行動順#4[i]%早める。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.10000000009313226, + 105, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 0.1049999997485429, + 168, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 0.11000000010244548, + 215.25000000023283, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 0.11499999975785613, + 262.50000000046566, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 0.12000000011175871, + 294, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.12399999983608723, + 325.50000000046566, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0.12799999956041574, + 349.12499999976717, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 0.1319999999832362, + 372.7500000006985, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 0.1359999997075647, + 396.375, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 420, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 0.14399999985471368, + 443.62500000023283, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 0.1479999995790422, + 467.25000000023283, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 0.15200000000186265, + 490.87500000046566, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 0.15599999972619116, + 514.5000000004657, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.1600000001490116, + 538.1249999997672, + 0.20000000018626451 + ] + } + } + }, + "122203": { + "Id": 122203, + "Name": "{RUBY_B#さいうん}彩雲{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}く{RUBY_B#めぐ}巡{RUBY_E#}る{RUBY_B#かすみ}霞{RUBY_E#}", + "Desc": "敵全体を「芳酔」状態にする。「芳酔」状態の敵が受ける弱点撃破ダメージ+#4[i]%#5[i]ターン継続。\\n敵全体に霊砂の攻撃力#1[i]%分の炎属性ダメージを与え、同時に味方全体のHPを霊砂の攻撃力#2[f1]%+#3[i]回復する。また、「浮元」の行動順#6[i]%早める。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.0800000000745058, + 90, + 0.1500000001396984, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.08499999972991645, + 144, + 0.1600000001490116, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.09000000008381903, + 184.50000000046566, + 0.17000000015832484, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.09499999973922968, + 225, + 0.18000000016763806, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.10000000009313226, + 252, + 0.1900000001769513, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.10399999981746078, + 279, + 0.20000000018626451, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.1079999995417893, + 299.25000000023283, + 0.21250000037252903, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.11199999996460974, + 319.50000000046566, + 0.2249999998603016, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.11599999968893826, + 339.7500000006985, + 0.23750000004656613, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.12000000011175871, + 360, + 0.25000000023283064, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.12399999983608723, + 380.25000000023283, + 0.26000000024214387, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.12799999956041574, + 400.50000000046566, + 0.2700000002514571, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.1319999999832362, + 420.7500000006985, + 0.2800000002607703, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.1359999997075647, + 441, + 0.29000000027008355, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.14000000013038516, + 461.25000000023283, + 0.3000000002793968, + 2, + 1 + ] + } + } + }, + "122204": { + "Id": 122204, + "Name": "{RUBY_B#べにぎり}紅霧{RUBY_E#}より{RUBY_B#い}出{RUBY_E#}づる{RUBY_B#えんじゅう}煙獣{RUBY_E#}", + "Desc": "戦闘スキルを発動する時、「浮元」を召喚する。「浮元」の初期速度は#1[i]、初期行動可能回数は#7[i]回。\\n行動時、「浮元」は敵全体に追加攻撃を行い、霊砂の攻撃力#2[i]%分の炎属性ダメージを与える。\\nさらに、ランダムな敵単体に霊砂の攻撃力#8[i]%分の炎属性ダメージを与える。この時、「浮元」は炎属性弱点を持ち、かつ残り靭性値が0より大きいいずれかの敵を優先的にターゲットにする。\\nまた、味方それぞれのデバフ#6[i]つ解除すると同時に、霊砂の攻撃力#3[f1]%+#4[i]のHPを回復する。\\n「浮元」の行動可能回数は最大で#5[i]回まで累積できる。行動可能回数が0になる、または霊砂が戦闘不能状態になると「浮元」は消える。\\n「浮元」がフィールド上にいる時に戦闘スキルを発動すると、「浮元」の行動可能回数+#7[i]回。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 90, + 0.375, + 0.0800000000745058, + 90, + 5, + 1, + 3, + 0.375 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 90, + 0.41250000055879354, + 0.08499999972991645, + 144, + 5, + 1, + 3, + 0.41250000055879354 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 90, + 0.45000000041909516, + 0.09000000008381903, + 184.50000000046566, + 5, + 1, + 3, + 0.45000000041909516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 90, + 0.4875000002793968, + 0.09499999973922968, + 225, + 5, + 1, + 3, + 0.4875000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 90, + 0.5250000001396984, + 0.10000000009313226, + 252, + 5, + 1, + 3, + 0.5250000001396984 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 90, + 0.5625000006984919, + 0.10399999981746078, + 279, + 5, + 1, + 3, + 0.5625000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 90, + 0.6093750006984919, + 0.1079999995417893, + 299.25000000023283, + 5, + 1, + 3, + 0.6093750006984919 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 90, + 0.6562500006984919, + 0.11199999996460974, + 319.50000000046566, + 5, + 1, + 3, + 0.6562500006984919 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 90, + 0.7031250006984919, + 0.11599999968893826, + 339.7500000006985, + 5, + 1, + 3, + 0.7031250006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 90, + 0.7500000006984919, + 0.12000000011175871, + 360, + 5, + 1, + 3, + 0.7500000006984919 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 90, + 0.7875000005587935, + 0.12399999983608723, + 380.25000000023283, + 5, + 1, + 3, + 0.7875000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 90, + 0.8250000004190952, + 0.12799999956041574, + 400.50000000046566, + 5, + 1, + 3, + 0.8250000004190952 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 90, + 0.8625000009778887, + 0.1319999999832362, + 420.7500000006985, + 5, + 1, + 3, + 0.8625000009778887 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 90, + 0.9000000008381903, + 0.1359999997075647, + 441, + 5, + 1, + 3, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 90, + 0.9375000006984919, + 0.14000000013038516, + 461.25000000023283, + 5, + 1, + 3, + 0.9375000006984919 + ] + } + } + }, + "122206": { + "Id": 122206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122207": { + "Id": 122207, + "Name": "{RUBY_B#りゅうすいさんうん}流翠散雲{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時に即座に「浮元」を召喚し、敵全体を「芳酔」状態にする、#1[i]ターン継続。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Maze.png", + "LevelUpSkillID": [ + 122207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064, + 0.10000000009313226, + 0.5000000004656613, + 0.20000000018626451 + ], + "PointID": 1222101, + "PointName": "{RUBY_B#しゅえん}朱炎{RUBY_E#}", + "PointDesc": "自身の攻撃力を撃破特効#1[i]%分アップする、最大で攻撃力+#3[i]%。また、自身の治癒量を撃破特効#2[i]%分アップする、最大で治癒量+#4[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1222102, + "PointName": "{RUBY_B#ゆうこう}幽香{RUBY_E#}", + "PointDesc": "通常攻撃を行う時、さらにEPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 2 + ], + "PointID": 1222103, + "PointName": "{RUBY_B#よこう}余香{RUBY_E#}", + "PointDesc": "「浮元」がフィールド上に存在する時、任意の味方キャラがダメージを受ける、またはHPを消費する時、パーティに残りHP割合が#1[i]%以下のキャラがいる場合、「浮元」が即座に天賦による追加攻撃を行う。この追加攻撃は「浮元」の行動可能回数を消費せず、#2[i]ターン後に再度発動できる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222201, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1222101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222203, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1222202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222204, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1222203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222205, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1222102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1222205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222207, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1222206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222208, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1222103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1222103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222210, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "撃破特効" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1222, + "Set4IDList": [ + 119, + 111, + 101 + ], + "Set2IDList": [ + 316, + 307, + 302 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 344, + 297 + ] + } + }, + "1223": { + "Name": "モゼ", + "Desc": "仙舟「曜青」の影護衛、寡黙な一匹狼。\\n情報工作など公にはできない仕事を担っているため、人前には滅多に姿を現さない。モゼが武器を抜く時は、敵が死ぬ時でもある。\\nあらゆる暗殺術に精通している彼は、清潔であること、規則的であることに並々ならぬこだわりを持っているようだ。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "moze", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 122301, + "Name": "{RUBY_B#りっし}立志{RUBY_E#}", + "Desc": "戦闘に入った後、モゼはEPを#2[i]回復する。天賦による付加ダメージを1回発動するたびに、EPを#1[i]回復する。", + "ParamList": [ + 2, + 20 + ] + }, + "2": { + "Id": 122302, + "Name": "{RUBY_B#ちょうばつ}懲罰{RUBY_E#}", + "Desc": "味方が「獲物」状態の敵にダメージを与える時、会心ダメージ+#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 122303, + "Name": "{RUBY_B#ついげき}追撃{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 122304, + "Name": "{RUBY_B#おんみつ}隠密{RUBY_E#}", + "Desc": "必殺技を発動する時、モゼの与ダメージ+#1[f1]%#2[i]ターン継続。", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "5": { + "Id": 122305, + "Name": "{RUBY_B#ぎまん}欺瞞{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 122306, + "Name": "{RUBY_B#ちゅうせい}忠誠{RUBY_E#}", + "Desc": "天賦による追加攻撃のダメージ倍率+#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + } + }, + "Skills": { + "122301": { + "Id": 122301, + "Name": "{RUBY_B#あんき}暗器{RUBY_E#}", + "Desc": "指定した敵単体にモゼの攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122302": { + "Id": 122302, + "Name": "{RUBY_B#きゅうしゅう}急襲{RUBY_E#}する{RUBY_B#じんう}迅羽{RUBY_E#}", + "Desc": "指定した敵単体を「獲物」状態にし、モゼの攻撃力#1[i]%分の雷属性ダメージを与え、チャージを#2[i]獲得する。\\nフィールド上に戦闘可能な他の味方キャラがいない時、モゼは戦闘スキルを発動できず、敵の「獲物」状態も解除される。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 9 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 9 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 9 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 9 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 9 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 9 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 9 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 9 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 9 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 9 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 9 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 9 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 9 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 9 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 9 + ] + } + } + }, + "122303": { + "Id": 122303, + "Name": "{RUBY_B#ひそ}潜{RUBY_E#}む{RUBY_B#やいば}刃{RUBY_E#}、{RUBY_B#するど}鋭{RUBY_E#}い{RUBY_B#かげ}影{RUBY_E#}", + "Desc": "指定した敵単体にモゼの攻撃力#1[i]%分の雷属性ダメージを与え、天賦による追加攻撃を行う。この回の追加攻撃を行う前にターゲットが倒された場合、ランダムな敵単体に追加攻撃を行う。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.62000000057742 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.7280000001192093 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.8360000003594905 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9440000005997717 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.0519999999087304 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1600000001490116 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.294999999925494 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4300000004004687 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.5650000001769513 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.808000000193715 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.9160000004339963 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.023999999742955 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.131999999983236 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.2400000002235174 + ] + } + } + }, + "122304": { + "Id": 122304, + "Name": "{RUBY_B#つばさ}翼{RUBY_E#}を{RUBY_B#お}折{RUBY_E#}りて{RUBY_B#ほうぼう}鋒鋩{RUBY_E#}とす", + "Desc": "フィールド上に「獲物」状態の敵がいる時、モゼは一時離脱状態に入る。\\n味方が「獲物」状態の敵を攻撃した後、モゼはその敵に自身の攻撃力#1[i]%分の雷属性付加ダメージを与え、チャージを1消費する。チャージを#2[i]消費するたびに、モゼは「獲物」状態の敵に対して追加攻撃を1回行い、自身の攻撃力#3[i]%分の雷属性ダメージを与える。チャージが0になると敵の「獲物」状態が解除され、追加攻撃発動に必要なチャージ数がリセットされる。なお、天賦による追加攻撃はチャージを消費しない。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 3, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 3, + 0.8800000008195639 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 3, + 0.9600000008940697 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 3, + 1.040000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 3, + 1.1200000001117587 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 3, + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 3, + 1.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 3, + 1.400000000372529 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 3, + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 3, + 1.6800000006332994 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 3, + 1.7600000007078052 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 3, + 1.840000000782311 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 3, + 1.9200000008568168 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 3, + 2 + ] + } + } + }, + "122306": { + "Id": 122306, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122307": { + "Id": 122307, + "Name": "{RUBY_B#み}見{RUBY_E#}えざる{RUBY_B#きょうい}脅威{RUBY_E#}", + "Desc": "秘技を使用した後、#1[i]秒間継続するステルス状態に入る。ステルス状態の間は敵に発見されない。ステルス状態のモゼが敵を先制攻撃して戦闘に入った時、与ダメージ+#2[i]%#3[i]ターン継続。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Maze.png", + "LevelUpSkillID": [ + 122307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 1223101, + "PointName": "{RUBY_B#からすば}烏羽{RUBY_E#}の{RUBY_B#ころも}衣{RUBY_E#}", + "PointDesc": "天賦による追加攻撃を行った後、SPを#1[i]回復する。この効果は#2[i]ターン後に再度発動できる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968 + ], + "PointID": 1223102, + "PointName": "{RUBY_B#しの}忍{RUBY_E#}び{RUBY_B#よ}寄{RUBY_E#}る{RUBY_B#あいくち}匕首{RUBY_E#}", + "PointDesc": "モゼの一時離脱状態が解除される時、行動順+#1[i]%。各ウェーブ開始時、モゼの行動順+#2[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1223103, + "PointName": "その{RUBY_B#かげ}影{RUBY_E#}、{RUBY_B#ほうけん}宝剣{RUBY_E#}と{RUBY_B#とも}共{RUBY_E#}に{RUBY_B#あ}在{RUBY_E#}り", + "PointDesc": "必殺技を発動してダメージを与える時、追加攻撃を行うと見なされる。「獲物」状態の敵が受ける追加攻撃ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223201, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1223101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223203, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1223202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223205, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1223102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223206, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1223205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223207, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1223103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223209, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1223208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223210, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1223208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 110.40000000037253, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 154.56000000052154, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 198.72000000067055, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 242.88000000081956, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 287.04000000003725, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 331.20000000018626, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 375.3600000003353, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1223, + "Set4IDList": [ + 117, + 109, + 120 + ], + "Set2IDList": [ + 315, + 314, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 283 + ] + } + }, + "1224": { + "Name": "{RUBY_B#みつき}三月{RUBY_E#}なのか", + "Desc": "仙舟の服に着替え、剣を扱う武侠少女となった三月なのか。\\n雲璃と彦卿に弟子入りして剣術を学び、仙舟でたくさんのいい「思い出」を作ろうと張り切っている。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "mar7th2", + "SPNeed": 110, + "BaseType": "Rogue", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 122401, + "Name": "{RUBY_B#りゅうせい}流星{RUBY_E#}を{RUBY_B#ふ}振{RUBY_E#}るう{RUBY_B#しゅんか}春花{RUBY_E#}", + "Desc": "フィールド上に「師匠」が存在する時、三月なのかの速度+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 122402, + "Name": "{RUBY_B#せっぱく}雪白{RUBY_E#}の{RUBY_B#やいば}刃{RUBY_E#}は{RUBY_B#どとう}怒涛{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}く", + "Desc": "「師匠」が通常攻撃または戦闘スキルを発動して敵に攻撃を行った後、三月なのかは追加攻撃を行い、その回の攻撃のメインターゲットに三月なのかの攻撃力#1[i]%分の虚数属性ダメージを与え、「師匠」の運命に応じた戦闘スキル効果を発動し、チャージを#3[i]獲得する。攻撃できるメインターゲットが存在しない場合、ランダムな敵単体に攻撃を行う。この効果はターンが回ってくるたびに1回まで発動できる。", + "ParamList": [ + 0.6000000005587935, + 5, + 1, + 15 + ] + }, + "3": { + "Id": 122403, + "Name": "{RUBY_B#さ}冴{RUBY_E#}えた{RUBY_B#あたま}頭{RUBY_E#}と{RUBY_B#すぐ}優{RUBY_E#}れた{RUBY_B#うでまえ}腕前{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 122404, + "Name": "{RUBY_B#りょうしょうほうし}竜章鳳姿{RUBY_E#}", + "Desc": "ターンが回ってきた時、EPを#1[i]回復する。", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 122405, + "Name": "{RUBY_B#けいこ}稽古{RUBY_E#}を{RUBY_B#ふ}増{RUBY_E#}やして\\n{RUBY_B#かんみ}甘味{RUBY_E#}は{RUBY_B#ひか}控{RUBY_E#}える", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 122406, + "Name": "ウチが{RUBY_B#せかいいち}世界一{RUBY_E#}!", + "Desc": "必殺技を発動した後、次の強化通常攻撃「一に眉間、二に心臓」によるダメージの会心ダメージ+#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "122401": { + "Id": 122401, + "Name": "{RUBY_B#ようま}妖魔{RUBY_E#}を{RUBY_B#はら}祓{RUBY_E#}う{RUBY_B#るりけん}瑠璃剣{RUBY_E#}", + "Desc": "指定した敵単体に三月なのかの攻撃力#1[i]%分の虚数属性ダメージを与え、チャージを#2[i]獲得する。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1 + ] + } + } + }, + "122402": { + "Id": 122402, + "Name": "{RUBY_B#ししょう}師匠{RUBY_E#}、お{RUBY_B#ちゃ}茶{RUBY_E#}をどうぞ!", + "Desc": "指定した自身以外の味方単体を「師匠」にする。「師匠」の速度+#1[f1]%。戦闘スキルで最後に指定したターゲットのみ、三月なのかの「師匠」と見なされる。\\n通常攻撃を行う、または強化通常攻撃「一に眉間、二に心臓」によるダメージを1段与える時、フィールド上に特定の運命を歩む「師匠」が存在する場合、「師匠」の歩む運命に応じて特定の効果を発動する。\\n\\n「師匠」の歩む運命が「知恵」、「壊滅」、「巡狩」または「記憶」の場合:三月なのかの攻撃力#2[i]%分の、「師匠」の属性に応じた付加ダメージを与える。\\n\\n「師匠」の歩む運命が「調和」、「虚無」、「存護」または「豊穣」の場合:その回の攻撃の削靭値+#3[i]%。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.10000000009313226, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06399999978020787, + 0.11000000010244548, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.06799999950453639, + 0.12000000011175871, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07199999992735684, + 0.13000000012107193, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07599999965168536, + 0.14000000013038516, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0800000000745058, + 0.1500000001396984, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08499999972991645, + 0.1625000003259629, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09000000008381903, + 0.17499999981373549, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09499999973922968, + 0.1875, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10399999981746078, + 0.21000000019557774, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1079999995417893, + 0.22000000020489097, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11199999996460974, + 0.2300000002142042, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.11599999968893826, + 0.24000000022351742, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12000000011175871, + 0.25000000023283064, + 1 + ] + } + } + }, + "122403": { + "Id": 122403, + "Name": "{RUBY_B#がいせい}蓋世{RUBY_E#}の{RUBY_B#けつぶつ}傑物{RUBY_E#}、{RUBY_B#みつき}三月{RUBY_E#}なのか", + "Desc": "指定した敵単体に三月なのかの攻撃力#1[i]%分の虚数属性ダメージを与える。\\n次の強化通常攻撃「一に眉間、二に心臓」の初期攻撃段数+#2[i]。また、攻撃段数が増加する固定確率+#3[i]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.440000000409782, + 2, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5360000000800937, + 2, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6320000004488975, + 2, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7280000001192093, + 2, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.824000000488013, + 2, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9200000008568168, + 2, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.040000000037253, + 2, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1600000001490116, + 2, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2800000002607703, + 2, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.496000000042841, + 2, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.5920000004116446, + 2, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.6880000000819564, + 2, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.78400000045076, + 2, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.880000000819564, + 2, + 0.20000000018626451 + ] + } + } + }, + "122404": { + "Id": 122404, + "Name": "{RUBY_B#ししょう}師匠{RUBY_E#}、わかりました!", + "Desc": "「師匠」が攻撃を行う、または必殺技を発動した後、三月なのかは一度に最大でチャージを1獲得する。\\nチャージが#1[i]以上の時、三月なのかは即座に行動し、与ダメージ+#2[i]%。通常攻撃が「一に眉間、二に心臓」に強化され、戦闘スキルが発動できなくなる。強化通常攻撃を行った後、チャージを#1[i]消費する。チャージの上限は#3[i]。", + "Type": null, + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7, + 0.40000000037252903, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7, + 0.44000000040978193, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 7, + 0.48000000044703484, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 7, + 0.5200000004842877, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7, + 0.5600000005215406, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7, + 0.6000000005587935, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7, + 0.6500000006053597, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 7, + 0.7000000006519258, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 7, + 0.7500000006984919, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 0.8000000007450581, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 7, + 0.840000000782311, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 7, + 0.8800000008195639, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 7, + 0.9200000008568168, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 7, + 0.9600000008940697, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 7, + 1, + 10 + ] + } + } + }, + "122406": { + "Id": 122406, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122407": { + "Id": 122407, + "Name": "{RUBY_B#いっき}一気{RUBY_E#}に{RUBY_B#さんしょく}三食{RUBY_E#}", + "Desc": "三月なのかがパーティに編成されている場合、三月なのか以外の味方が秘技を使用した回数1回につき、次の戦闘開始時、三月なのかはチャージを1獲得する、最大で#1[i]獲得できる。\\n三月なのかが秘技を使用した後、次の戦闘開始時、三月なのかはEPを#2[i]回復する。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 30 + ] + } + } + }, + "122408": { + "Id": 122408, + "Name": "{RUBY_B#いち}一{RUBY_E#}に{RUBY_B#みけん}眉間{RUBY_E#}、{RUBY_B#に}二{RUBY_E#}に{RUBY_B#しんぞう}心臓{RUBY_E#}", + "Desc": "初期攻撃段数は#4[i]。1段の攻撃につき、指定した敵単体に三月なのかの攻撃力#1[i]%分の虚数属性ダメージを与える。最後の1段の攻撃を行うたびに、#2[i]%固定確率でさらに1段の攻撃を行う、追加で行える攻撃は最大#3[i]段まで。攻撃段数の増加は、強化通常攻撃によるEP回復に影響しない。\\nまた、強化通常攻撃はSPを回復できない。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.6000000005587935, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.48000000044703484, + 0.6000000005587935, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5600000005215406, + 0.6000000005587935, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6400000005960464, + 0.6000000005587935, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7200000006705523, + 0.6000000005587935, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8800000008195639, + 0.6000000005587935, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9600000008940697, + 0.6000000005587935, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.040000000037253, + 0.6000000005587935, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1200000001117587, + 0.6000000005587935, + 3, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Maze.png", + "LevelUpSkillID": [ + 122407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1224101, + "PointName": "{RUBY_B#きょうこう}驚鴻{RUBY_E#}", + "PointDesc": "戦闘開始時、三月なのかの行動順#1[i]%早まる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224102, + "PointName": "{RUBY_B#れいろう}玲瓏{RUBY_E#}", + "PointDesc": "三月なのかは「師匠」の属性に応じる弱点属性を持つ敵の靭性を削れる。敵を弱点撃破する時、虚数属性の弱点撃破効果が触発される。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 0.3600000003352761, + 2 + ], + "PointID": 1224103, + "PointName": "{RUBY_B#はろう}破浪{RUBY_E#}", + "PointDesc": "強化通常攻撃を行った後、「師匠」の会心ダメージ+#1[i]%、撃破特効+#2[i]%#3[i]ターン継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224202, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1224101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1224202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1224102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224206, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1224205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1224103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224209, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1224208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1224208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1224, + "Set4IDList": [ + 102, + 112, + 117 + ], + "Set2IDList": [ + 309, + 314, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 349, + 292 + ] + } + }, + "1225": { + "Name": "{RUBY_B#きぼう}帰忘{RUBY_E#}の{RUBY_B#さすらいびと}流離人{RUBY_E#}", + "Desc": "八方美人な狐族の少女。外見も名前も、身分さえも奪われてしまった。\\n運命は彼女にわずかな生の可能性を残したが、「壊滅」の烙印は今も燻っている。\\n死の淵から蘇り生まれ変わった帰忘の流離人は、いつ故郷に帰ることができるのだろうか?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "fugue", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 122501, + "Name": "{RUBY_B#こじん}狐塵{RUBY_E#}とうに{RUBY_B#ち}散{RUBY_E#}り、{RUBY_B#くも}雲{RUBY_E#}を{RUBY_B#が}駕{RUBY_E#}とすればその{RUBY_B#き}期{RUBY_E#}あり", + "Desc": "「狐の祈り」状態の味方の弱点撃破効率+#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Id": 122502, + "Name": "{RUBY_B#ずいおう}瑞応{RUBY_E#}{RUBY_B#きた}来{RUBY_E#}れば、{RUBY_B#かなら}必{RUBY_E#}ず{RUBY_B#ゆうとく}有徳{RUBY_E#}を{RUBY_B#あ}明{RUBY_E#}かす", + "Desc": "敵が弱点撃破された時、帰忘の流離人はEPを#1[i]回復する。必殺技を発動した後、味方全体の行動順#2[i]%早まる。", + "ParamList": [ + 3, + 0.24000000022351742 + ] + }, + "3": { + "Id": 122503, + "Name": "{RUBY_B#せいしょく}正色{RUBY_E#}の{RUBY_B#こうじゅ}鴻寿{RUBY_E#}、\\n{RUBY_B#しんし}神思{RUBY_E#}は{RUBY_B#か}化{RUBY_E#}して{RUBY_B#う}伐{RUBY_E#}つ", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 122504, + "Name": "{RUBY_B#じがかたち}自我形{RUBY_E#}を{RUBY_B#はな}離{RUBY_E#}れ、\\n{RUBY_B#いま}今{RUBY_E#}や{RUBY_B#あまた}数多{RUBY_E#}の{RUBY_B#せい}姓{RUBY_E#}となる", + "Desc": "「狐の祈り」状態の味方の弱点撃破ダメージ+#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 122505, + "Name": "{RUBY_B#ごしき}五色{RUBY_E#}の{RUBY_B#くも}雲{RUBY_E#}、\\n{RUBY_B#そうきゅう}蒼穹{RUBY_E#}は{RUBY_B#あと}後{RUBY_E#}を{RUBY_B#ほどこ}施{RUBY_E#}す", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 122506, + "Name": "{RUBY_B#はじ}肇{RUBY_E#}めて{RUBY_B#みらい}未来{RUBY_E#}を{RUBY_B#さと}悟{RUBY_E#}り、\\n{RUBY_B#めいあん}明暗{RUBY_E#}の{RUBY_B#こうぼう}興亡{RUBY_E#}を{RUBY_B#し}知{RUBY_E#}る", + "Desc": "帰忘の流離人の弱点撃破効率+#1[i]%。帰忘の流離人が「灼熱」状態の時、「狐の祈り」が味方全体に効果を発揮するようになる。", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "122501": { + "Id": 122501, + "Name": "{RUBY_B#さんぜん}燦然{RUBY_E#}たる{RUBY_B#じつげつ}日月{RUBY_E#}の{RUBY_B#お}尾{RUBY_E#}", + "Desc": "指定した敵単体に帰忘の流離人の攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122502": { + "Id": 122502, + "Name": "{RUBY_B#ぎ}義{RUBY_E#}を{RUBY_B#ゆう}有{RUBY_E#}せば{RUBY_B#きっちょう}吉兆{RUBY_E#}を{RUBY_B#まね}招{RUBY_E#}く", + "Desc": "指定した味方単体に「狐の祈り」を付与し、自身は「灼熱」状態になる、#1[i]ターン継続。帰忘の流離人のターンが回ってくるたびに継続時間-1ターン。「狐の祈り」は最後に指定したスキルターゲットにのみ効果を発揮する。\\n「狐の祈り」が付与されている味方の撃破特効+#2[i]%、かつ攻撃を行う際、対応する弱点属性を持たない敵の靭性値を、本来の削靭値#6[i]%分削る。この効果は、他の弱点属性を無視して靭性を削る効果と重ね掛けできない。\\n帰忘の流離人が「灼熱」状態の時、通常攻撃「燦然たる日月の尾」が「緩緩たる熾炎」に強化される。「狐の祈り」が付与されている味方が攻撃を行う時、#3[i]%基礎確率で攻撃を受ける敵の防御力-#4[i]%#5[i]ターン継続。なお、防御力ダウン効果の付与は帰忘の流離人が行ったものとして扱う。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.1500000001396984, + 1, + 0.0800000000745058, + 2, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.16499999980442226, + 1, + 0.09000000008381903, + 2, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.18000000016763806, + 1, + 0.10000000009313226, + 2, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.19499999983236194, + 1, + 0.11000000010244548, + 2, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.21000000019557774, + 1, + 0.12000000011175871, + 2, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.2249999998603016, + 1, + 0.13000000012107193, + 2, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.24375000083819032, + 1, + 0.14250000030733645, + 2, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.26250000041909516, + 1, + 0.15499999979510903, + 2, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.28125000069849193, + 1, + 0.16749999998137355, + 2, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.3000000002793968, + 1, + 0.18000000016763806, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.31499999994412065, + 1, + 0.1900000001769513, + 2, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.33000000030733645, + 1, + 0.20000000018626451, + 2, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.3449999999720603, + 1, + 0.21000000019557774, + 2, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.3600000003352761, + 1, + 0.22000000020489097, + 2, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.375, + 1, + 0.2300000002142042, + 2, + 0.5000000004656613 + ] + } + } + }, + "122503": { + "Id": 122503, + "Name": "{RUBY_B#きょくよう}極陽{RUBY_E#}は{RUBY_B#あまね}遍{RUBY_E#}く{RUBY_B#よ}世{RUBY_E#}を{RUBY_B#て}照{RUBY_E#}らす", + "Desc": "敵全体に帰忘の流離人の攻撃力#1[i]%分の炎属性ダメージを与え、弱点属性を無視して敵全体の靭性を削る。敵を弱点撃破する時、炎属性の弱点撃破効果を発動する。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613 + ] + } + } + }, + "122504": { + "Id": 122504, + "Name": "{RUBY_B#ぜん}善{RUBY_E#}{RUBY_B#み}満{RUBY_E#}ちる{RUBY_B#ところふくき}所福来{RUBY_E#}たる", + "Desc": "帰忘の流離人がフィールド上にいる時、敵は自身の最大靭性値#2[i]%分の「雲火昭瑞」を付与される。初期靭性が0まで削られた後、引き続き「雲火昭瑞」が削られる。「雲火昭瑞」が0まで削られた時、敵は再度弱点撃破ダメージを受ける。\\n帰忘の流離人がフィールド上にいる時、味方が弱点撃破状態の敵に攻撃を行った後、その回の攻撃の削靭値を1回の#1[i]%分の超撃破ダメージに転換する。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 0.40000000037252903 + ] + } + } + }, + "122506": { + "Id": 122506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122507": { + "Id": 122507, + "Name": "{RUBY_B#しょうしょう}照照{RUBY_E#}たる{RUBY_B#こうき}光輝{RUBY_E#}", + "Desc": "秘技を使用した後、一定範囲内の敵を#1[i]秒間の目眩状態にする。目眩状態の敵は味方を攻撃しない。\\n目眩状態の敵を先制攻撃して戦闘に入った後、帰忘の流離人は行動順が#4[i]%早まる。また、#2[i]%基礎確率で敵それぞれに帰忘の流離人の戦闘スキルと同じ防御力ダウン状態を付与する。#3[i]ターン継続。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 2, + 0.40000000037252903 + ] + } + } + }, + "122508": { + "Id": 122508, + "Name": "{RUBY_B#かんかん}緩緩{RUBY_E#}たる{RUBY_B#しえん}熾炎{RUBY_E#}", + "Desc": "指定した敵単体に帰忘の流離人の攻撃力#1[i]%分の炎属性ダメージを与え、隣接する敵に帰忘の流離人の攻撃力#2[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Maze.png", + "LevelUpSkillID": [ + 122507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1225101, + "PointName": "{RUBY_B#せいきゅう}青丘{RUBY_E#}の{RUBY_B#じゅうこう}重光{RUBY_E#}", + "PointDesc": "味方が敵を弱点撃破した後、さらに敵の行動順#1[i]%遅延させる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 1 + ], + "PointID": 1225102, + "PointName": "{RUBY_B#とざん}塗山{RUBY_E#}の{RUBY_B#げんせき}玄設{RUBY_E#}", + "PointDesc": "自身の撃破特効+#1[i]%、初めて戦闘スキルを発動した後、SPを#2[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.060000000055879354, + 2, + 2, + 2.2000000001862645, + 0.12000000011175871 + ], + "PointID": 1225103, + "PointName": "{RUBY_B#せいき}璣星{RUBY_E#}の{RUBY_B#たいそ}太素{RUBY_E#}", + "PointDesc": "敵が弱点撃破される時、自身以外の味方キャラの撃破特効+#1[i]%。帰忘の流離人の撃破特効が#4[i]%以上の場合、撃破特効アップの効果がさらに+#5[i]%。この効果は#2[i]ターン継続、最大で#3[i]層累積できる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225201, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225202, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1225101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225203, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1225202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1225203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225205, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1225102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225206, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1225205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225207, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1225206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1225103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225209, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1225103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "撃破特効" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225210, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1225201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 75.90000000083819, + "DefenceAdd": 3.7950000003911555, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 106.26000000024214, + "DefenceAdd": 3.7950000003911555, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 136.62000000057742, + "DefenceAdd": 3.7950000003911555, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 166.9800000009127, + "DefenceAdd": 3.7950000003911555, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 197.34000000031665, + "DefenceAdd": 3.7950000003911555, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 227.70000000065193, + "DefenceAdd": 3.7950000003911555, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 258.0600000000559, + "DefenceAdd": 3.7950000003911555, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1225, + "Set4IDList": [ + 119, + 111, + 118 + ], + "Set2IDList": [ + 316, + 308, + 307 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 271, + 213 + ] + } + }, + "1301": { + "Name": "ギャラガー", + "Desc": "ピノコニーのハウンド家の保安官。来賓には礼儀正しく接しているが、常に警戒心を持っている。何やら複雑な過去があるようだが、自分からそれについて言及することはない。", + "CharaInfo": { + "Camp": "ピノコニー", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "gallagher", + "SPNeed": 110, + "BaseType": "Priest", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 130101, + "Name": "ソルティ・ドッグ", + "Desc": "戦闘に入った後、ギャラガーはEPを#1[i]回復する。同時にギャラガーの効果抵抗+#2[i]%。", + "ParamList": [ + 20, + 0.5000000004656613 + ] + }, + "2": { + "Id": 130102, + "Name": "レオ・ザ・ライオン", + "Desc": "戦闘スキルを発動した時、指定した味方単体のデバフ#1[i]つ解除し、その味方の効果抵抗+#2[i]%#3[i]ターン継続。", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 130103, + "Name": "コープス・リバイバー", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 130104, + "Name": "ラスト・ワード", + "Desc": "ギャラガーの必殺技が付与する「酩酊」状態の継続時間+#1[i]ターン。", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 130105, + "Name": "デス・イン・ジ・\\nアフタヌーン", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 130106, + "Name": "ブラッド・アンド・\\nサンド", + "Desc": "ギャラガーの撃破特効+#1[i]%、弱点撃破効率+#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + } + }, + "Skills": { + "130101": { + "Id": 130101, + "Name": "{RUBY_B#も}持{RUBY_E#}ち{RUBY_B#こ}込{RUBY_E#}み{RUBY_B#りょう}料{RUBY_E#}", + "Desc": "指定した敵単体にギャラガーの攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130102": { + "Id": 130102, + "Name": "{RUBY_B#とくせい}特製{RUBY_E#}ドリンク", + "Desc": "指定した味方単体のHPを#1[i]回復する。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 200 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 340 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 480 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 676 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 830 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1138 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1292 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1446 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1600 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1684 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1768 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1852 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1936 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2020 + ] + } + } + }, + "130103": { + "Id": 130103, + "Name": "シャンパン・マナー", + "Desc": "敵全体を「酩酊」状態にする、#2[i]ターン継続。敵全体にギャラガーの攻撃力#1[i]%分の炎属性ダメージを与え、次の通常攻撃を「極上の泡立ち」に強化する。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 2 + ] + } + } + }, + "130104": { + "Id": 130104, + "Name": "{RUBY_B#の}飲{RUBY_E#}み{RUBY_B#くら}比{RUBY_E#}べ", + "Desc": "「酩酊」状態の敵が受ける弱点撃破ダメージ+#1[f1]%。「酩酊」状態の敵が味方の攻撃を受けるたびに、攻撃者のHPを#2[i]回復する。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 80 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06599999964237213, + 136 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07199999992735684, + 192 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07799999951384962, + 270.40000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08399999979883432, + 332 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 393.6000000005588 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09749999991618097, + 455.20000000018626 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1049999997485429, + 516.8000000007451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11250000027939677, + 578.4000000003725 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.12000000011175871, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12599999969825149, + 673.6000000005588 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1319999999832362, + 707.2000000001863 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.13799999956972897, + 740.8000000007451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.14399999985471368, + 774.4000000003725 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 808 + ] + } + } + }, + "130106": { + "Id": 130106, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130107": { + "Id": 130107, + "Name": "ヴィンテージ{RUBY_B#かいふう}開封{RUBY_E#}", + "Desc": "敵を攻撃。戦闘に入った後、敵全体を「酩酊」状態にする、#1[i]ターン継続。敵全体にギャラガーの攻撃力#2[i]%分の炎属性ダメージを与える。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.5000000004656613 + ] + } + } + }, + "130108": { + "Id": 130108, + "Name": "{RUBY_B#ごくじょう}極上{RUBY_E#}の{RUBY_B#あわだ}泡立{RUBY_E#}ち", + "Desc": "指定した敵単体にギャラガーの攻撃力#1[i]%分の炎属性ダメージを与える。その敵の攻撃力-#2[f1]%#3[i]ターン継続。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5000000004656613, + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.750000000698492, + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2500000002328306, + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5000000004656613, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.750000000698492, + 0.1600000001490116, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.17000000015832484, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.2500000002328306, + 0.18000000016763806, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.5000000004656613, + 0.1900000001769513, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Maze.png", + "LevelUpSkillID": [ + 130107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ], + "PointID": 1301101, + "PointName": "{RUBY_B#しん}新{RUBY_E#}レシピ", + "PointDesc": "自身の治癒量が、撃破特効#1[i]%分アップする。最大で治癒量+#2[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301102, + "PointName": "{RUBY_B#てんねんこうぼ}天然酵母{RUBY_E#}", + "PointDesc": "必殺技を発動した後、自身の行動順100%早める。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301103, + "PointName": "{RUBY_B#かんぱい}乾杯{RUBY_E#}!", + "PointDesc": "ギャラガーが「極上の泡立ち」で「酩酊」状態の敵を攻撃する時、その回の天賦によるHP回復効果は自身以外の味方にも有効になる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301201, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301202, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1301101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301203, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1301202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1301203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301205, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1301102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301206, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1301205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301207, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1301206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1301103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301209, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1301103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "効果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301210, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 72, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 177.6000000005588, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 100.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 248.64000000059605, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 129.6000000005588, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 319.6800000006333, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 158.40000000037253, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 390.72000000067055, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 187.20000000018626, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 461.7600000007078, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 216, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 532.8000000007451, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 244.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 603.8400000007823, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1301, + "Set4IDList": [ + 119, + 111, + 101 + ], + "Set2IDList": [ + 316, + 307, + 302 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "BreakDamageAddedRatioBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 309, + 254 + ] + } + }, + "1302": { + "Name": "アルジェンティ", + "Desc": "「純美の騎士団」の古典的な騎士。行方不明になっている「純美」の星神イドリラを敬虔に慕っていた。\\n正直で、堂々とした性格の人。宇宙を漫遊し、イドリラの名を広めている。", + "CharaInfo": { + "Camp": "純美の騎士団", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "argenti", + "SPNeed": 180, + "BaseType": "Mage", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 130201, + "Name": "{RUBY_B#しんびおうこく}審美王国{RUBY_E#}の{RUBY_B#けっかん}欠陥{RUBY_E#}", + "Desc": "「栄達」1層につき、さらに会心ダメージ+#1[i]%。", + "ParamList": [ + 0.0400000000372529 + ] + }, + "2": { + "Id": 130202, + "Name": "メノウの{RUBY_B#けんそん}謙遜{RUBY_E#}", + "Desc": "必殺技を発動した時、フィールド上の敵が#1[i]体以上の場合、攻撃力+#2[i]%#3[i]ターン継続。", + "ParamList": [ + 3, + 0.40000000037252903, + 1 + ] + }, + "3": { + "Id": 130203, + "Name": "{RUBY_B#いばら}荊棘{RUBY_E#}の{RUBY_B#みち}道{RUBY_E#}の{RUBY_B#えいこう}栄光{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 130204, + "Name": "トランペットの{RUBY_B#ほうけん}奉献{RUBY_E#}", + "Desc": "戦闘開始時、「栄達」を#1[i]層獲得し、天賦の累積可能層数+#2[i]。", + "ParamList": [ + 2, + 2 + ] + }, + "5": { + "Id": 130205, + "Name": "{RUBY_B#うちゅう}宇宙{RUBY_E#}のどこかで{RUBY_B#ふ}降{RUBY_E#}る{RUBY_B#ゆき}雪{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 130206, + "Name": "「{RUBY_B#あなた}貴女{RUBY_E#}」の{RUBY_B#かがや}輝{RUBY_E#}き", + "Desc": "必殺技を発動した時、敵の防御力を#1[i]%無視する。", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "130201": { + "Id": 130201, + "Name": "{RUBY_B#せつな}刹那{RUBY_E#}の{RUBY_B#ふんぽう}芬芳{RUBY_E#}", + "Desc": "指定した敵単体にアルジェンティの攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130202": { + "Id": 130202, + "Name": "{RUBY_B#こうせい}公正{RUBY_E#}、ここに{RUBY_B#さ}咲{RUBY_E#}き{RUBY_B#ほこ}誇{RUBY_E#}る", + "Desc": "敵全体にアルジェンティの攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613 + ] + } + } + }, + "130203": { + "Id": 130203, + "Name": "{RUBY_B#はなぞの}花園{RUBY_E#}にて{RUBY_B#ささ}捧{RUBY_E#}げる{RUBY_B#び}美{RUBY_E#}の{RUBY_B#さいげん}際限{RUBY_E#}", + "Desc": "EPを#2[i]消費し、敵全体にアルジェンティの攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 90 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 90 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 90 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 90 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 90 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 90 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 90 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 90 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 90 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 90 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 90 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 90 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 90 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 90 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 90 + ] + } + } + }, + "130204": { + "Id": 130204, + "Name": "{RUBY_B#すうこう}崇高{RUBY_E#}なる{RUBY_B#きゃくたい}客体{RUBY_E#}", + "Desc": "通常攻撃、戦闘スキル、または必殺技を発動した時、攻撃が敵1体に命中するごとにアルジェンティのEPを#1[i]回復し、「栄達」を1層獲得する。「栄達」1層につき、アルジェンティの会心率+#2[f1]%、この効果は最大で#3[i]層累積できる。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.010000000009313226, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.011500000255182385, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.012999999802559614, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.014500000048428774, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.015999999595806003, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.017499999841675162, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.019375000149011612, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.02125000045634806, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.02312500006519258, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.0249999996740371, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.02649999991990626, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.027999999467283487, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.029499999713152647, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.030999999959021807, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.032500000204890966, + 10 + ] + } + } + }, + "130206": { + "Id": 130206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130207": { + "Id": 130207, + "Name": "{RUBY_B#じゅんすい}純粋{RUBY_E#}で{RUBY_B#こうけつ}高潔{RUBY_E#}なる{RUBY_B#せんげん}宣言{RUBY_E#}", + "Desc": "秘技を使用した後、一定区域内の敵を#1[i]秒間の目眩状態にする。目眩状態の敵は味方を攻撃しない。\\n目眩状態の敵を先制攻撃して戦闘に入った時、敵全体にアルジェンティの攻撃力#2[i]%分の物理属性ダメージを与え、アルジェンティのEPを#3[i]回復する。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.8000000007450581, + 15 + ] + } + } + }, + "130214": { + "Id": 130214, + "Name": "「{RUBY_B#われ}我{RUBY_E#}」が{RUBY_B#さず}授{RUBY_E#}けし{RUBY_B#しじょう}至上{RUBY_E#}の{RUBY_B#くんしょう}勲章{RUBY_E#}", + "Desc": "EPを#4[i]消費し、敵全体にアルジェンティの攻撃力#1[i]%分の物理属性ダメージを与え、さらに#2[i]ヒットする。1ヒットごとに、ランダムな敵単体にアルジェンティの攻撃力#3[i]%分の物理属性ダメージを与える。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.6800000006332994, + 6, + 0.5700000005308539, + 180 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.792000000597909, + 6, + 0.6080000000074506, + 180 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9040000005625188, + 6, + 0.6460000001825392, + 180 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.015999999595806, + 6, + 0.6840000003576279, + 180 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1279999995604157, + 6, + 0.7220000005327165, + 180 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2400000002235174, + 6, + 0.7600000007078052, + 180 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3800000003539026, + 6, + 0.80750000057742, + 180 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.5200000004842877, + 6, + 0.8550000004470348, + 180 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.660000000614673, + 6, + 0.9025000010151416, + 180 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 6, + 0.9500000008847564, + 180 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.912000000709668, + 6, + 0.9880000003613532, + 180 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.023999999742955, + 6, + 1.0259999996051192, + 180 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.1359999997075647, + 6, + 1.0639999997802079, + 180 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.2479999996721745, + 6, + 1.1019999999552965, + 180 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.360000000335276, + 6, + 1.1400000001303852, + 180 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Maze.png", + "LevelUpSkillID": [ + 130207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1302101, + "PointName": "{RUBY_B#けいけん}敬虔{RUBY_E#}", + "PointDesc": "ターンが回ってきた時、「栄達」を#1[i]層獲得する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1302102, + "PointName": "{RUBY_B#こうがい}慷慨{RUBY_E#}", + "PointDesc": "敵が戦闘に入った時、自身のEPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ], + "PointID": 1302103, + "PointName": "{RUBY_B#ゆうき}勇気{RUBY_E#}", + "PointDesc": "残りHPが#1[i]%以下の敵に対して与ダメージ+#2[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302202, + "PointName": "ダメージ強化・物理", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1302101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.031999999890103936, + "Name": "物理属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1302202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1302202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1302102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302206, + "PointName": "ダメージ強化・物理", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1302205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.04799999948590994, + "Name": "物理属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1302205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1302103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302209, + "PointName": "ダメージ強化・物理", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1302103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.06399999978020787, + "Name": "物理属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 100.32000000029802, + "AttackAdd": 5.015999999595806, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 140.44799999985844, + "AttackAdd": 5.015999999595806, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 180.57600000011735, + "AttackAdd": 5.015999999595806, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 220.70400000037625, + "AttackAdd": 5.015999999595806, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 260.83200000063516, + "AttackAdd": 5.015999999595806, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 300.96000000089407, + "AttackAdd": 5.015999999595806, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 341.08799999952316, + "AttackAdd": 5.015999999595806, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1302, + "Set4IDList": [ + 122, + 105, + 108 + ], + "Set2IDList": [ + 306, + 313, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1303": { + "Name": "ルアン・メェイ", + "Desc": "天才クラブのメンバー、生命科学の専門家。ヘルタたちと協力して模擬宇宙を開発した。", + "CharaInfo": { + "Camp": "宇宙ステーション「ヘルタ」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "ruanmei", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 130301, + "Name": "{RUBY_B#しんけいししゅうず}神経刺繍図{RUBY_E#}", + "Desc": "必殺技の結界が展開されている間、味方全体がダメージを与える時、敵の防御力を#1[i]%無視する。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 130302, + "Name": "{RUBY_B#とお}通{RUBY_E#}りし{RUBY_B#すすき}芒{RUBY_E#}の{RUBY_B#みち}道{RUBY_E#}", + "Desc": "ルアン・メェイがフィールド上にいる場合、弱点撃破状態の敵に対する味方全体の攻撃力+#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 130303, + "Name": "{RUBY_B#えんさん}煙衫{RUBY_E#}を{RUBY_B#あやど}綾取{RUBY_E#}る{RUBY_B#りょくい}緑意{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 130304, + "Name": "{RUBY_B#どうきょうまえ}銅鏡前{RUBY_E#}にて{RUBY_B#かみ}神{RUBY_E#}を{RUBY_B#さが}探{RUBY_E#}す", + "Desc": "敵が弱点撃破された時、ルアン・メェイの撃破特効+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 1, + 3 + ] + }, + "5": { + "Id": 130305, + "Name": "{RUBY_B#けだる}気怠{RUBY_E#}く{RUBY_B#いじ}弄{RUBY_E#}る{RUBY_B#れいろうさい}玲瓏釵{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 130306, + "Name": "{RUBY_B#さきんぬ}紗巾脱{RUBY_E#}ぎかけ\\n{RUBY_B#うちわ}団扇{RUBY_E#}に{RUBY_B#お}落{RUBY_E#}ちる", + "Desc": "必殺技を発動して展開する結界の継続時間+#1[i]ターン。天賦による弱点撃破ダメージ倍率+#2[i]%。", + "ParamList": [ + 1, + 2 + ] + } + }, + "Skills": { + "130301": { + "Id": 130301, + "Name": "{RUBY_B#ゆうらん}幽蘭{RUBY_E#}の{RUBY_B#しら}調{RUBY_E#}べ", + "Desc": "指定した敵単体にルアン・メェイの攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130302": { + "Id": 130302, + "Name": "{RUBY_B#ゆる}緩{RUBY_E#}く{RUBY_B#ひね}捻{RUBY_E#}りて", + "Desc": "戦闘スキルを発動した後、ルアン・メェイは#3[i]ターン継続する「弦外の音」を獲得する。ルアン・メェイのターンが回ってくるたびに、「弦外の音」の継続時間-1ターン。ルアン・メェイに「弦外の音」がある時、味方全体の与ダメージ+#1[f1]%、弱点撃破効率+#2[i]%。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.17599999974481761, + 0.5000000004656613, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.19200000003911555, + 0.5000000004656613, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.20799999963492155, + 0.5000000004656613, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.22399999992921948, + 0.5000000004656613, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3200000002980232, + 0.5000000004656613, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3359999998938292, + 0.5000000004656613, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.35200000018812716, + 0.5000000004656613, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.36799999978393316, + 0.5000000004656613, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3840000000782311, + 0.5000000004656613, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 3 + ] + } + } + }, + "130303": { + "Id": 130303, + "Name": "{RUBY_B#はな}花{RUBY_E#}に{RUBY_B#ぬ}濡{RUBY_E#}れても{RUBY_B#しずく}雫{RUBY_E#}は{RUBY_B#はら}払{RUBY_E#}わず", + "Desc": "ルアン・メェイが結界を展開する、#2[i]ターン継続。ルアン・メェイのターンが回ってくるたびに結界の継続時間-1ターン。\\n結界が展開されている間、味方全体の全属性耐性貫通+#1[f1]%、かつ味方が攻撃を行った後、敵に「残梅」を付与する。\\n敵が弱点撃破状態から回復しようとする時に「残梅」が発動する。敵の弱点撃破状態延長し、行動順をルアン・メェイの撃破特効#3[i]%+#4[i]%遅延させ、ルアン・メェイの氷属性弱点撃破ダメージ#5[i]%分の弱点撃破ダメージを与える。\\n敵が弱点撃破状態から回復するまで、再度「残梅」を付与することはできない。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1600000001490116, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.17000000015832484, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3400000003166497 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.18000000016763806, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3600000003352761 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1900000001769513, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3800000003539026 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21250000037252903, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.42500000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2249999998603016, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.45000000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23750000004656613, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.47500000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.26000000024214387, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2700000002514571, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5400000005029142 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2800000002607703, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5600000005215406 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.29000000027008355, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5800000005401671 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.6000000005587935 + ] + } + } + }, + "130304": { + "Id": 130304, + "Name": "フラクタルの{RUBY_B#らせん}螺旋{RUBY_E#}", + "Desc": "自身を除く味方全体の速度+#1[f1]%。敵を弱点撃破した後、その敵にルアン・メェイの氷属性弱点撃破ダメージ#2[f1]%分の弱点撃破ダメージを与える。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0800000000745058, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.08199999993667006, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.08599999966099858, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08799999952316284, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09250000026077032, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09499999973922968, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09749999991618097, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10199999995529652, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.10399999981746078, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.10599999967962503, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1079999995417893, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.11000000010244548, + 1.5000000004656613 + ] + } + } + }, + "130306": { + "Id": 130306, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130307": { + "Id": 130307, + "Name": "{RUBY_B#ことぬぐ}琴拭{RUBY_E#}い、{RUBY_B#げいしょうな}霓裳撫{RUBY_E#}でる", + "Desc": "秘技を使用した後、「琴拭い、霓裳撫でる」を獲得し、次の戦闘開始時に自動で戦闘スキルを#1[i]回発動する。この効果発動はSPを消費しない。\\n模擬宇宙、階差宇宙の中で、ルアン・メェイが「琴拭い、霓裳撫でる」を所有し、味方が敵を先制攻撃して戦闘に入った場合、弱点属性を攻撃して戦闘に入ったと見なされる。また、その回の攻撃は弱点属性を無視して敵全体の靭性を削る。敵を弱点撃破した場合、攻撃者の属性に対応する弱点撃破効果を触発する。所持する祝福1つにつき、さらにその回の攻撃の削靭値+#2[i]%、敵を弱点撃破した後、さらにルアン・メェイの氷属性弱点撃破ダメージ#3[i]%分の弱点撃破ダメージを与える。祝福は最大で#4[i]つまでカウントされる。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 1, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Maze.png", + "LevelUpSkillID": [ + 130307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1303101, + "PointName": "{RUBY_B#こきゅう}呼吸{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}", + "PointDesc": "味方全体の撃破特効+#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1303102, + "PointName": "{RUBY_B#ひろ}広{RUBY_E#}がる{RUBY_B#そうぞう}想像{RUBY_E#}", + "PointDesc": "ルアン・メェイのターンが回ってきた時、自身のEPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.2000000001862645, + 0.10000000009313226, + 0.060000000055879354, + 0.3600000003352761 + ], + "PointID": 1303103, + "PointName": "{RUBY_B#すいめん}水面{RUBY_E#}を{RUBY_B#て}照{RUBY_E#}らす{RUBY_B#しょっか}燭火{RUBY_E#}", + "PointDesc": "戦闘中、ルアン・メェイの撃破特効が#1[i]%を超えた時、超過した撃破特効#2[i]%につき、戦闘スキルによる味方全体の与ダメージアップ効果+#3[i]%、最大で+#4[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303201, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303202, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1303101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303203, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1303202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303204, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1303201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303205, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1303102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303206, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1303205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303207, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1303201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303208, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1303103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303209, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1303208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303210, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1303208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "撃破特効" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1303, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 312, + 308 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 241, + 187 + ] + } + }, + "1304": { + "Name": "アベンチュリン", + "Desc": "スターピースカンパニー「戦略投資部」の幹部。\\nリスクを好む性格で、常に笑顔を絶やさないが、その本心を人に見せることはない。", + "CharaInfo": { + "Camp": "スターピースカンパニー", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "aventurine", + "SPNeed": 110, + "BaseType": "Knight", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 130401, + "Name": "{RUBY_B#しゅうじん}囚人{RUBY_E#}のジレンマ", + "Desc": "「堅固なチップ」を持つ味方の会心ダメージ+#1[i]%。必殺技を発動した後、味方全体に「堅固なチップ」バリアを付与する、#3[i]ターン継続。バリア耐久値は戦闘スキルで付与できるバリア耐久値の#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 1, + 3 + ] + }, + "2": { + "Id": 130402, + "Name": "{RUBY_B#げんていごうりせい}限定合理性{RUBY_E#}", + "Desc": "通常攻撃を行う時、ターゲットの全属性耐性-#2[i]%#3[i]ターン継続。", + "ParamList": [ + 1.2000000001862645, + 0.12000000011175871, + 3 + ] + }, + "3": { + "Id": 130403, + "Name": "{RUBY_B#さいこうばいりつ}最高倍率{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 130404, + "Name": "{RUBY_B#よき}予期{RUBY_E#}せぬ{RUBY_B#こうしゅけい}絞首刑{RUBY_E#}", + "Desc": "天賦の追加攻撃を発動する前にアベンチュリンの防御力+#1[i]%#2[i]ターン継続。さらに天賦の追加攻撃の攻撃段数+#3[i]。", + "ParamList": [ + 0.40000000037252903, + 2, + 3 + ] + }, + "5": { + "Id": 130405, + "Name": "{RUBY_B#あいまいせいきひ}曖昧性忌避{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 130406, + "Name": "スタグハントゲーム", + "Desc": "バリアを持つ自身以外の味方1名につき、アベンチュリンの与ダメージ+#1[i]%、最大で+#2[i]%。", + "ParamList": [ + 0.5000000004656613, + 1.5000000004656613 + ] + } + }, + "Skills": { + "130401": { + "Id": 130401, + "Name": "ストレートべット", + "Desc": "指定した敵単体にアベンチュリンの防御力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130402": { + "Id": 130402, + "Name": "{RUBY_B#はんえい}繁栄{RUBY_E#}の{RUBY_B#きせき}基石{RUBY_E#}", + "Desc": "味方全体にアベンチュリンの防御力#1[f1]%+#2[i]の耐久値を持つ「堅固なチップ」バリアを付与する、#3[i]ターン継続。「堅固なチップ」を重複して獲得する時、バリア耐久値は累積される。「堅固なチップ」の耐久値は、戦闘スキルが付与できるバリア耐久値の#4[i]%を超えない。", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1600000001490116, + 80, + 3, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.17000000015832484, + 128, + 3, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 164, + 3, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1900000001769513, + 200, + 3, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.20000000018626451, + 224, + 3, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20799999963492155, + 248, + 3, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21599999978207052, + 266, + 3, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.22399999992921948, + 284, + 3, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23200000007636845, + 302, + 3, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 320, + 3, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24799999967217445, + 338, + 3, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2559999998193234, + 356, + 3, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2639999999664724, + 374, + 3, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27200000011362135, + 392, + 3, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2800000002607703, + 410, + 3, + 2 + ] + } + } + }, + "130403": { + "Id": 130403, + "Name": "ロード・オブ・ルーレット", + "Desc": "ランダムで「ブラインドベット」を1~#1[i]獲得し、指定した敵単体を「動揺」状態にする、#4[i]ターン継続。指定した敵単体にアベンチュリンの防御力#2[i]%分の虚数属性ダメージを与える。味方の攻撃が「動揺」状態の敵に命中する時、会心ダメージ+#3[f1]%。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7, + 1.62000000057742, + 0.09000000008381903, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7, + 1.7280000001192093, + 0.09599999967031181, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 7, + 1.8360000003594905, + 0.10199999995529652, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 7, + 1.9440000005997717, + 0.1079999995417893, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7, + 2.0519999999087304, + 0.113999999826774, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7, + 2.1600000001490116, + 0.12000000011175871, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7, + 2.294999999925494, + 0.12749999994412065, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 7, + 2.4300000004004687, + 0.13499999977648258, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 7, + 2.5650000001769513, + 0.14250000030733645, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 2.700000000651926, + 0.1500000001396984, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 7, + 2.808000000193715, + 0.15599999972619116, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 7, + 2.9160000004339963, + 0.16200000001117587, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 7, + 3.023999999742955, + 0.16799999959766865, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 7, + 3.131999999983236, + 0.17399999988265336, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 7, + 3.2400000002235174, + 0.18000000016763806, + 3 + ] + } + } + }, + "130404": { + "Id": 130404, + "Name": "{RUBY_B#じゅうこう}銃口{RUBY_E#}の{RUBY_B#みぎ}右{RUBY_E#}には…", + "Desc": "「堅固なチップ」を持つ味方単体の効果抵抗+#4[f1]%、攻撃を受けた後にアベンチュリンの「ブラインドベット」+1。\\nアベンチュリンに「堅固なチップ」がある時、行動制限系デバフに1回抵抗できる。この効果は#5[i]ターン後に再度発動できる。また、アベンチュリンが攻撃を受けた後、さらに「ブラインドベット」+#1[i]。\\n「ブラインドベット」が7に到達した後、アベンチュリンは「ブラインドベット」を7消費して#2[i]段の追加攻撃を行い、1段の攻撃につき、ランダムな敵単体にアベンチュリンの防御力#3[i]%分の虚数属性ダメージを与える。「ブラインドベット」の上限は10。", + "Type": null, + "Tag": "Bounce", + "SPBase": 1, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 10, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 7, + 0.12499999976716936, + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 7, + 0.13749999995343387, + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 7, + 0.1500000001396984, + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 7, + 0.1625000003259629, + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 7, + 0.17499999981373549, + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 7, + 0.1875, + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 7, + 0.20312500023283064, + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 7, + 0.2187500004656613, + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 7, + 0.23437500069849193, + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 7, + 0.25000000023283064, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 7, + 0.26250000041909516, + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 7, + 0.27499999990686774, + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 7, + 0.28750000009313226, + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 7, + 0.3000000002793968, + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 7, + 0.3125000004656613, + 0.6250000002328306, + 2 + ] + } + } + }, + "130406": { + "Id": 130406, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130407": { + "Id": 130407, + "Name": "{RUBY_B#あか}赤{RUBY_E#}と{RUBY_B#くろ}黒{RUBY_E#}の{RUBY_B#はざま}狭間{RUBY_E#}で", + "Desc": "秘技を使用すると以下の効果の中からランダムで1つ獲得する:\\n確率で防御力+#1[i]%。\\n高確率で防御力+#2[i]%。\\n低確率で防御力+#3[i]%。\\n繰り返し使用した時、獲得した最高数値の効果のみ保留される。\\n次の戦闘開始時、味方全体の防御力を対応する数値分アップさせる、#4[i]ターン継続。", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 0.6000000005587935, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Maze.png", + "LevelUpSkillID": [ + 130407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.02000000001862645, + 0.48000000044703484, + 1600 + ], + "PointID": 1304101, + "PointName": "レバレッジ", + "PointDesc": "アベンチュリンの防御力が#3[i]を超えた場合、超過した防御力100につき、自身の会心率+#1[i]%、最大で+#2[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1304201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 1 + ], + "PointID": 1304102, + "PointName": "ホットハンド", + "PointDesc": "戦闘開始時、味方全体に「堅固なチップ」バリアを付与する、#1[i]ターン継続。バリア耐久値は戦闘スキルで付与できるバリア耐久値の#2[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1304201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.07199999992735684, + 96, + 3, + 0.07199999992735684, + 96 + ], + "PointID": 1304103, + "PointName": "ビンゴ!", + "PointDesc": "「堅固なチップ」を持つ自身以外の味方が追加攻撃を行った後、アベンチュリンは「ブラインドベット」を1獲得する。この効果は最大で#3[i]回発動できる。アベンチュリンのターンが回ってきた時に、この効果の発動可能回数がリセットされる。\\nアベンチュリンが天賦の追加攻撃を行った後、味方全体にアベンチュリンの防御力#1[i]%+#2[i]の耐久値を持つ「堅固なチップ」を付与し、さらにバリア耐久値が最も低い味方にアベンチュリンの防御力#4[i]%+#5[i]の耐久値を持つ「堅固なチップ」を付与する、3ターン継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304201, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304202, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1304101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304203, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1304202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304205, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1304102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304206, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1304205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304207, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1304103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304209, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1304208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304210, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1304208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 4.455000000074506, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 4.455000000074506, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 160.3800000003539, + "DefenceAdd": 4.455000000074506, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 196.02000000001863, + "DefenceAdd": 4.455000000074506, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 231.66000000061467, + "DefenceAdd": 4.455000000074506, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 267.3000000002794, + "DefenceAdd": 4.455000000074506, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 302.94000000087544, + "DefenceAdd": 4.455000000074506, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1304, + "Set4IDList": [ + 103, + 117, + 120 + ], + "Set2IDList": [ + 306, + 304, + 310 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "DefenceAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 301, + 247 + ], + "LocalCriticalChance": 0.48000000044703484 + } + }, + "1305": { + "Name": "Dr.レイシオ", + "Desc": "博識学会の学者。\\n\\n変わった性格をしていて、毒舌だが立ち振る舞いはエレガントである。\\n奇異な石膏頭の下の容貌は意外にも美しい。", + "CharaInfo": { + "Camp": "博識学会", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "drratio", + "SPNeed": 140, + "BaseType": "Rogue", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 130501, + "Name": "{RUBY_B#ごうまん}傲慢{RUBY_E#}は{RUBY_B#わざわ}災{RUBY_E#}いを{RUBY_B#う}生{RUBY_E#}む", + "Desc": "軌跡「帰納」の累積可能層数+#1[i]。戦闘開始時、「帰納」を#2[i]層獲得する。先に軌跡「帰納」を覚醒する必要あり。", + "ParamList": [ + 4, + 4 + ] + }, + "2": { + "Id": 130502, + "Name": "{RUBY_B#び}微{RUBY_E#}を{RUBY_B#あらわ}顕{RUBY_E#}にして{RUBY_B#ゆう}幽{RUBY_E#}を{RUBY_B#ひら}闡{RUBY_E#}く", + "Desc": "天賦の追加攻撃が命中した時、敵にあるデバフ1つにつき、さらにDr.レイシオの攻撃力#1[i]%の虚数属性付加ダメージを与える。この効果は1回の追加攻撃#2[i]回まで発動できる。", + "ParamList": [ + 0.20000000018626451, + 4 + ] + }, + "3": { + "Id": 130503, + "Name": "{RUBY_B#おのれ}己{RUBY_E#}を{RUBY_B#し}知{RUBY_E#}れ", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 130504, + "Name": "{RUBY_B#むち}無知{RUBY_E#}は{RUBY_B#ぐしゃ}愚者{RUBY_E#}を{RUBY_B#つく}造{RUBY_E#}る", + "Desc": "天賦を発動する時、さらにDr.レイシオのEPを#1[i]回復する。", + "ParamList": [ + 15 + ] + }, + "5": { + "Id": 130505, + "Name": "{RUBY_B#かい}櫂{RUBY_E#}なき{RUBY_B#ふね}舟{RUBY_E#}に{RUBY_B#うみ}海{RUBY_E#}は{RUBY_B#わた}渡{RUBY_E#}れず", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 130506, + "Name": "ただ{RUBY_B#しんり}真理{RUBY_E#}のみが{RUBY_B#えいえん}永遠{RUBY_E#}", + "Desc": "「智者の短慮」の効果の発動可能回数+#1[i]。天賦による追加攻撃ダメージ+#2[i]%。", + "ParamList": [ + 1, + 0.5000000004656613 + ] + } + }, + "Skills": { + "130501": { + "Id": 130501, + "Name": "{RUBY_B#ちしき}知識{RUBY_E#}は{RUBY_B#ちから}力{RUBY_E#}なり", + "Desc": "指定した敵単体にDr.レイシオの攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130502": { + "Id": 130502, + "Name": "{RUBY_B#さんばじゅつ}産婆術{RUBY_E#}", + "Desc": "指定した敵単体にDr.レイシオの攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613 + ] + } + } + }, + "130503": { + "Id": 130503, + "Name": "{RUBY_B#さんだんかい}三段階{RUBY_E#}のパラドックス", + "Desc": "指定した敵単体にDr.レイシオの攻撃力#1[i]%分の虚数属性ダメージを与え、「智者の短慮」を付与する。Dr.レイシオ以外の味方が「智者の短慮」を持つ敵に攻撃を行う時、Dr.レイシオはその敵に天賦の追加攻撃を1回行う。\\n「智者の短慮」の効果は#2[i]回まで発動でき、Dr.レイシオの必殺技の最後のターゲットにのみ効果を発揮する。必殺技を発動した後にこの効果の発動可能回数がリセットされる。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5360000000800937, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6320000004488975, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7280000001192093, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.824000000488013, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9200000008568168, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.040000000037253, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1600000001490116, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2800000002607703, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.496000000042841, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.5920000004116446, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.6880000000819564, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.78400000045076, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.880000000819564, + 2 + ] + } + } + }, + "130504": { + "Id": 130504, + "Name": "{RUBY_B#われおも}我思{RUBY_E#}う、{RUBY_B#ゆえ}故{RUBY_E#}に{RUBY_B#われ}我{RUBY_E#}あり", + "Desc": "戦闘スキルを発動する時、#2[i]%固定確率でターゲットに追加攻撃を1回行い、Dr.レイシオの攻撃力#1[i]%分の虚数属性ダメージを与える。敵にあるデバフ1つにつき、追加攻撃を行う固定確率+#3[i]%追加攻撃を行う前にターゲットが倒された場合、ランダムな敵単体に追加攻撃を行う。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.350000000325963, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4850000001024455, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.62000000057742, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7550000003539026, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.890000000828877, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.024999999674037, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.193750000791624, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.3625000005122274, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.5312500009313226, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.8350000004284084, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.970000000903383, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.104999999748543, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.2400000002235174, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.375, + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "130506": { + "Id": 130506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130507": { + "Id": 130507, + "Name": "{RUBY_B#ぐうぞう}偶像{RUBY_E#}の{RUBY_B#たんじょう}誕生{RUBY_E#}", + "Desc": "秘技を使用した後、#1[i]秒間継続する敵を挑発できる特殊領域を作り出す。特殊領域内の敵と戦闘に入った後、#2[i]%基礎確率で敵それぞれの速度-#3[i]%#4[i]ターン継続。味方が作り出した領域は1つまで存在できる。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 0.1500000001396984, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Maze.png", + "LevelUpSkillID": [ + 130507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0249999996740371, + 0.05000000004656613, + 6 + ], + "PointID": 1305101, + "PointName": "{RUBY_B#きのう}帰納{RUBY_E#}", + "PointDesc": "戦闘スキルを発動する時、ターゲットにあるデバフ1つにつき、Dr.レイシオの会心率+#1[f1]%、会心ダメージ+#2[i]%、最大で#3[i]層累積できる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.10000000009313226, + 2 + ], + "PointID": 1305102, + "PointName": "{RUBY_B#えんえき}演繹{RUBY_E#}", + "PointDesc": "戦闘スキルを発動した後、#1[i]%基礎確率で攻撃を受けた敵の効果抵抗-#2[i]%#3[i]ターン継続。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.10000000009313226, + 0.5000000004656613 + ], + "PointID": 1305103, + "PointName": "{RUBY_B#すいろん}推論{RUBY_E#}", + "PointDesc": "ダメージを与える時、敵にあるデバフ#1[i]つ以上の場合、デバフ1つにつき、その敵に対するDr.レイシオの与ダメージ+#2[i]%、最大で+#3[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1305101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1305202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1305102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1305205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1305103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1305208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1305208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 105.6000000005588, + "AttackAdd": 5.28000000026077, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 147.8400000007823, + "AttackAdd": 5.28000000026077, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 190.0800000000745, + "AttackAdd": 5.28000000026077, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 232.32000000029802, + "AttackAdd": 5.28000000026077, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 274.56000000052154, + "AttackAdd": 5.28000000026077, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 316.80000000074506, + "AttackAdd": 5.28000000026077, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 359.04000000003725, + "AttackAdd": 5.28000000026077, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1305, + "Set4IDList": [ + 117, + 112, + 115 + ], + "Set2IDList": [ + 315, + 306, + 311 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1306": { + "Name": "{RUBY_B#はなび}花火{RUBY_E#}", + "Desc": "「仮面の愚者」の1人。つかみどころがなく、手段を選ばない人物。\\n危険な演劇のマスターで、役作りに夢中になっている。千の仮面を持ち、万の顔を演じることができる。\\n富、地位、権力…これらは花火にとって重要ではない。彼女を動かせるのは「愉しいこと」だけである。", + "CharaInfo": { + "Camp": "仮面の愚者", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sparkle", + "SPNeed": 110, + "BaseType": "Shaman", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 130601, + "Name": "{RUBY_B#す}捨{RUBY_E#}て{RUBY_B#お}置{RUBY_E#}かれた{RUBY_B#ぎねん}疑念{RUBY_E#}", + "Desc": "必殺技が付与する「奇怪な謎」の継続時間+1ターン。「奇怪な謎」を持つ味方の攻撃力+#1[i]%。", + "ParamList": [ + 0.40000000037252903 + ] + }, + "2": { + "Id": 130602, + "Name": "{RUBY_B#いわ}謂{RUBY_E#}れなき{RUBY_B#きょこう}虚構{RUBY_E#}", + "Desc": "天賦の効果1層につき、味方がダメージを与える時、さらに敵の防御力を#1[i]%無視する。", + "ParamList": [ + 0.0800000000745058 + ] + }, + "3": { + "Id": 130603, + "Name": "{RUBY_B#むげんほうよう}夢幻泡影{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 130604, + "Name": "{RUBY_B#ぞくせゆうきょう}俗世遊興{RUBY_E#}", + "Desc": "必殺技がさらにSPを1回復する。天賦の最大SPアップ効果がさらに1アップする。", + "ParamList": [] + }, + "5": { + "Id": 130605, + "Name": "{RUBY_B#うらおもて}裏表{RUBY_E#}の{RUBY_B#しんそう}真相{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 130606, + "Name": "{RUBY_B#かさ}重{RUBY_E#}なる{RUBY_B#かいとう}解答{RUBY_E#}", + "Desc": "戦闘スキルの会心ダメージアップ効果が、さらに花火の会心ダメージ#1[i]%分アップする。花火が戦闘スキルを発動する時、戦闘スキルの会心ダメージアップ効果が、「奇怪な謎」を持つすべての味方に対して有効になる。花火が必殺技を発動する時、花火の戦闘スキルによる会心ダメージアップ効果を持つ味方が存在する場合、「奇怪な謎」を持つ味方にその効果を拡散する。", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "130601": { + "Id": 130601, + "Name": "{RUBY_B#ひと}独{RUBY_E#}り{RUBY_B#しばい}芝居{RUBY_E#}", + "Desc": "指定した敵単体に花火の攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130602": { + "Id": 130602, + "Name": "{RUBY_B#ゆめ}夢{RUBY_E#}を{RUBY_B#およ}泳{RUBY_E#}ぐ{RUBY_B#さかな}魚{RUBY_E#}", + "Desc": "指定した味方単体の会心ダメージを、花火の会心ダメージ#1[f1]%分+#2[f1]%アップする、#3[i]ターン継続。その味方の行動順を#4[i]%早める。\\n自身に対してこのスキルを発動した時、行動順を早める効果は発動しない。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 0.2700000002514571, + 1, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1319999999832362, + 0.28799999970942736, + 1, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14399999985471368, + 0.30599999986588955, + 1, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.15599999972619116, + 0.32400000002235174, + 1, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.16799999959766865, + 0.34200000017881393, + 1, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19499999983236194, + 0.38250000053085387, + 1, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21000000019557774, + 0.4050000000279397, + 1, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2249999998603016, + 0.4275000002235174, + 1, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.45000000041909516, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2520000000949949, + 0.4679999998770654, + 1, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2639999999664724, + 0.4860000000335276, + 1, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.27599999983794987, + 0.5040000001899898, + 1, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.28799999970942736, + 0.522000000346452, + 1, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.5400000005029142, + 1, + 0.5000000004656613 + ] + } + } + }, + "130603": { + "Id": 130603, + "Name": "{RUBY_B#ひとりせんやく}一人千役{RUBY_E#}", + "Desc": "SPを#2[i]回復し、味方全体に「奇怪な謎」を付与する。「奇怪な謎」が付与されている味方は、花火の天賦の与ダメージアップ効果がさらに各層#3[f1]%アップする、#4[i]ターン継続。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 4, + 0.060000000055879354, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 4, + 0.06399999978020787, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 4, + 0.06799999950453639, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 4, + 0.07199999992735684, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 4, + 0.07599999965168536, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 4, + 0.0800000000745058, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 4, + 0.08499999972991645, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 4, + 0.09000000008381903, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 4, + 0.09499999973922968, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 4, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 4, + 0.10399999981746078, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 4, + 0.1079999995417893, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 4, + 0.11199999996460974, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 4, + 0.11599999968893826, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 4, + 0.12000000011175871, + 2 + ] + } + } + }, + "130604": { + "Id": 130604, + "Name": "{RUBY_B#じょじゅつ}叙述{RUBY_E#}トリック", + "Desc": "花火がフィールド上にいる時、最大SP+#3[i]。味方がSPを1消費するたびに、味方全体の与ダメージ+#2[f1]%#1[i]ターン継続、最大で#4[i]層累積できる。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.030000000027939677, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.032999999821186066, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.035999999614432454, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.03899999940767884, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.04199999989941716, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.04499999969266355, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.04875000030733645, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.05250000022351742, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.056250000139698386, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.060000000055879354, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.06299999984912574, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.06599999964237213, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.06899999943561852, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.07199999992735684, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.07499999972060323, + 2, + 3 + ] + } + } + }, + "130606": { + "Id": 130606, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130607": { + "Id": 130607, + "Name": "{RUBY_B#しんよう}信用{RUBY_E#}できない{RUBY_B#かた}語{RUBY_E#}り{RUBY_B#て}手{RUBY_E#}", + "Desc": "秘技を使用した後、味方全体は#2[i]秒の「ミスリード」状態になる。「ミスリード」状態になると敵に発見されなくなり、敵を先制攻撃して戦闘に入る時、SPを#1[i]回復する。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Maze.png", + "LevelUpSkillID": [ + 130607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1306101, + "PointName": "{RUBY_B#さいじき}歳時記{RUBY_E#}", + "PointDesc": "通常攻撃を行う時、EPを#1[i]回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306102, + "PointName": "{RUBY_B#じんぞう}人造{RUBY_E#}の{RUBY_B#はな}花{RUBY_E#}", + "PointDesc": "戦闘スキルの会心ダメージアップ効果の継続時間が、ターゲットの次のターンが回ってくるまで延長される。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 0.1500000001396984, + 0.3000000002793968, + 0.1500000001396984 + ], + "PointID": 1306103, + "PointName": "{RUBY_B#やそうきょく}夜想曲{RUBY_E#}", + "PointDesc": "味方全体の攻撃力+#4[i]%。パーティに量子属性キャラが1名/2名/3名いる時、さらに味方量子属性キャラの攻撃力+#1[i]%/#2[i]%/#3[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306201, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306202, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1306101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306203, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1306202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1306201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306205, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1306102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306206, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1306205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306207, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1306201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1306103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306209, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1306208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306210, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1306208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 190.0800000000745, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 342.1439999998547, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 418.1759999997448, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 494.2079999996349, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 570.2400000002235, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 646.2720000001136, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1306, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 317, + 310, + 312 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 187 + ], + "LocalCriticalChance": 1 + } + }, + "1307": { + "Name": "ブラックスワン", + "Desc": "「ガーデン・オブ・リコレクション」のメモキーパーで、気だるげで謎めいた雰囲気の占い師。\\n他人の「記憶」に辛抱強く耳を傾け、その運命をすべて掌握している。", + "CharaInfo": { + "Camp": "ガーデン・オブ・リコレクション", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "blackswan", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 130701, + "Name": "{RUBY_B#ちえ}知恵{RUBY_E#}の{RUBY_B#ななはしら}七柱{RUBY_E#}", + "Desc": "ブラックスワンが戦闘可能状態の時、風化、裂創、燃焼、感電状態の敵の対応する風、物理、炎、雷属性の耐性がそれぞれ#1[i]%ダウンする。", + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Id": 130702, + "Name": "{RUBY_B#こひつじ}子羊{RUBY_E#}よ、\\n{RUBY_B#わたし}私{RUBY_E#}のために{RUBY_B#な}泣{RUBY_E#}くなかれ", + "Desc": "「アルカナ」状態の敵が倒された時、#1[i]%基礎確率で隣接する敵に「アルカナ」を#2[i]層付与する。", + "ParamList": [ + 1, + 6 + ] + }, + "3": { + "Id": 130703, + "Name": "{RUBY_B#げかい}下界{RUBY_E#}は{RUBY_B#じょうかい}上界{RUBY_E#}に{RUBY_B#なら}倣{RUBY_E#}う", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 130704, + "Name": "{RUBY_B#なみだ}涙{RUBY_E#}もまた{RUBY_B#おく}贈{RUBY_E#}り{RUBY_B#もの}物{RUBY_E#}", + "Desc": "「開示」状態の敵の効果抵抗-#1[i]%。「開示」状態の敵のターンが回ってきた時、または倒された時、ブラックスワンのEPを#2[i]回復する。EP回復効果は「開示」状態の継続時間内に1回まで発動できる。再度「開示」状態を付与すると、発動可能回数がリセットされる。", + "ParamList": [ + 0.10000000009313226, + 8 + ] + }, + "5": { + "Id": 130705, + "Name": "{RUBY_B#わた}渡{RUBY_E#}り{RUBY_B#どり}鳥{RUBY_E#}の{RUBY_B#みち}道{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 130706, + "Name": "{RUBY_B#かみ}神{RUBY_E#}は{RUBY_B#ぜん}善{RUBY_E#}、\\n{RUBY_B#くえきしゃ}苦役者{RUBY_E#}は{RUBY_B#いま}未{RUBY_E#}だ{RUBY_B#し}知{RUBY_E#}らず", + "Desc": "ブラックスワン以外の味方が敵に攻撃を行った後、ブラックスワンは#2[i]%基礎確率で敵に「アルカナ」を1層付与する。\\nブラックスワンが敵に「アルカナ」を付与する時、#1[i]%固定確率でその回に付与する「アルカナ」の層数+#3[i]層。", + "ParamList": [ + 0.5000000004656613, + 0.6500000006053597, + 1 + ] + } + }, + "Skills": { + "130701": { + "Id": 130701, + "Name": "{RUBY_B#どうさつ}洞察{RUBY_E#}、{RUBY_B#かんもく}緘黙{RUBY_E#}の{RUBY_B#れいめい}黎明{RUBY_E#}", + "Desc": "指定した敵単体にブラックスワンの攻撃力#1[i]%分の風属性ダメージを与え、#2[i]%基礎確率で「アルカナ」を1層付与する。風化、裂創、燃焼、または感電状態の敵に攻撃を行った後、それぞれ#3[i]%基礎確率でさらに「アルカナ」を1層付与する。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3600000003352761, + 0.530000000493601, + 0.530000000493601 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 0.5600000005215406, + 0.5600000005215406 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.48000000044703484, + 0.5900000005494803, + 0.5900000005494803 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5400000005029142, + 0.62000000057742, + 0.62000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.6500000006053597, + 0.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6600000006146729, + 0.6800000006332994, + 0.6800000006332994 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 0.710000000661239, + 0.710000000661239 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7800000007264316, + 0.7400000006891787, + 0.7400000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.840000000782311, + 0.7700000007171184, + 0.7700000007171184 + ] + } + } + }, + "130702": { + "Id": 130702, + "Name": "{RUBY_B#しっつい}失墜{RUBY_E#}、{RUBY_B#ぎしん}偽神{RUBY_E#}の{RUBY_B#たそがれ}黄昏{RUBY_E#}", + "Desc": "指定した敵単体、および隣接する敵にブラックスワンの攻撃力#1[i]%分の風属性ダメージを与え、#2[i]%基礎確率でターゲット、および隣接する敵に「アルカナ」を1層付与する。さらに、#3[i]%基礎確率でターゲット、および隣接する敵の防御力-#4[f1]%#5[i]ターン継続。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 1, + 1, + 0.1479999995790422, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.4950000001117587, + 1, + 1, + 0.1539999998640269, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5400000005029142, + 1, + 1, + 0.1600000001490116, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5850000001955777, + 1, + 1, + 0.1659999997355044, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6300000005867332, + 1, + 1, + 0.1720000000204891, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6750000002793968, + 1, + 1, + 0.17799999960698187, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.7312500011175871, + 1, + 1, + 0.18550000013783574, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7875000005587935, + 1, + 1, + 0.19299999997019768, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.8437500013969839, + 1, + 1, + 0.20050000050105155, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.9000000008381903, + 1, + 1, + 0.20799999963492155, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.9450000005308539, + 1, + 1, + 0.21399999991990626, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.9900000009220093, + 1, + 1, + 0.22000000020489097, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.0349999996833503, + 1, + 1, + 0.22599999979138374, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.0800000000745058, + 1, + 1, + 0.23200000007636845, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.1249999997671694, + 1, + 1, + 0.23799999966286123, + 3 + ] + } + } + }, + "130703": { + "Id": 130703, + "Name": "{RUBY_B#かなた}彼方{RUBY_E#}の{RUBY_B#ほうよう}抱擁{RUBY_E#}に{RUBY_B#よ}酔{RUBY_E#}いしれて", + "Desc": "敵全体に「開示」状態を付与する、#2[i]ターン継続。\\n「開示」状態の敵は、自身のターンでの受けるダメージ+#3[i]%。また同時に「アルカナ」状態にある場合、風化、裂創、燃焼、感電をすべて付与されていると見なされ、「アルカナ」がターン開始時にダメージを発生した後、層数がリセットされなくなる。「アルカナ」の層数をリセットしない効果は、「開示」状態の継続時間内に#4[i]回まで発動できる。再度「開示」状態を付与すると、発動可能回数がリセットされる。\\n敵全体にブラックスワンの攻撃力#1[i]%分の風属性ダメージを与える。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523, + 2, + 0.1500000001396984, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622, + 2, + 0.1600000001490116, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641, + 2, + 0.17000000015832484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659, + 2, + 0.18000000016763806, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678, + 2, + 0.1900000001769513, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697, + 2, + 0.20000000018626451, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265, + 2, + 0.21250000037252903, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 2, + 0.2249999998603016, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852, + 2, + 0.23750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 2, + 0.25000000023283064, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745, + 2, + 0.26000000024214387, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763, + 2, + 0.2700000002514571, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782, + 2, + 0.2800000002607703, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538, + 2, + 0.29000000027008355, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782, + 2, + 0.3000000002793968, + 1 + ] + } + } + }, + "130704": { + "Id": 130704, + "Name": "{RUBY_B#は}果{RUBY_E#}てなき{RUBY_B#さだめ}運命{RUBY_E#}の{RUBY_B#はたお}機織{RUBY_E#}り", + "Desc": "敵のターンが回ってきた時、その敵は持続ダメージを1回受けるたびに、#2[i]%基礎確率で「アルカナ」を1層付与される。\\n「アルカナ」状態の敵はターンが回ってくるたびにブラックスワンの攻撃力#1[i]%分の風属性持続ダメージを受ける、「アルカナ」1層につき、ダメージ倍率+#3[f1]%。持続ダメージが発生した後、「アルカナ」は1層にリセットされる。「アルカナ」は最大で#8[i]層累積できる。\\n敵のターンが回って「アルカナ」がダメージを発生した時にのみ、ブラックスワンはその敵が持つ「アルカナ」層数に応じて追加効果を発動する:\\n#4[i]層以上:隣接する敵にブラックスワンの攻撃力#5[i]%分の風属性持続ダメージを与え、#2[i]%基礎確率で「アルカナ」を1層付与する。\\n#6[i]層以上:今回発生する持続ダメージが、ターゲットおよび隣接する敵の防御力を#7[i]%無視する。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.5000000004656613, + 0.04799999948590994, + 3, + 0.7200000006705523, + 7, + 0.20000000018626451, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1183999998029321, + 0.5150000001303852, + 0.0559200004208833, + 3, + 0.838800000725314, + 7, + 0.20000000018626451, + 50 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2768000003416091, + 0.530000000493601, + 0.06384000065736473, + 3, + 0.9576000007800758, + 7, + 0.20000000018626451, + 50 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4352000001817942, + 0.5450000001583248, + 0.07176000089384615, + 3, + 1.076399999903515, + 7, + 0.20000000018626451, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5936000007204711, + 0.5600000005215406, + 0.07968000043183565, + 3, + 1.1951999999582767, + 7, + 0.20000000018626451, + 50 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.7520000005606562, + 0.5750000001862645, + 0.08759999996982515, + 3, + 1.3140000000130385, + 7, + 0.20000000018626451, + 50 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.8960000004153699, + 0.5937500011641532, + 0.0948000003118068, + 3, + 1.4220000002533197, + 7, + 0.20000000018626451, + 50 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.040000000037253, + 0.6125000007450581, + 0.10199999995529652, + 3, + 1.530000000493601, + 7, + 0.20000000018626451, + 50 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.220000000204891, + 0.6312500010244548, + 0.11100000003352761, + 3, + 1.6650000002700835, + 7, + 0.20000000018626451, + 50 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.6500000006053597, + 0.12000000011175871, + 3, + 1.800000000745058, + 7, + 0.20000000018626451, + 50 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.6650000002700835, + 0.12599999969825149, + 3, + 1.890000000828877, + 7, + 0.20000000018626451, + 50 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.6800000006332994, + 0.1319999999832362, + 3, + 1.9800000009126961, + 7, + 0.20000000018626451, + 50 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.6950000002980232, + 0.13799999956972897, + 3, + 2.0700000000651926, + 7, + 0.20000000018626451, + 50 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.710000000661239, + 0.14399999985471368, + 3, + 2.1600000001490116, + 7, + 0.20000000018626451, + 50 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.7250000003259629, + 0.1500000001396984, + 3, + 2.2500000002328306, + 7, + 0.20000000018626451, + 50 + ] + } + } + }, + "130706": { + "Id": 130706, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130707": { + "Id": 130707, + "Name": "{RUBY_B#しんそう}真相{RUBY_E#}を{RUBY_B#と}取{RUBY_E#}り、{RUBY_B#ひょうしょう}表象{RUBY_E#}を{RUBY_B#す}捨{RUBY_E#}てる", + "Desc": "秘技を使用した後、次の戦闘開始時、#1[i]%基礎確率で敵それぞれに「アルカナ」を1層付与する。また、「アルカナ」の付与が成功した敵に、さらに「アルカナ」を1層付与する。その敵への「アルカナ」の付与は、失敗するまで繰り返される。付与が成功するたび、次に「アルカナ」を付与する基礎確率が前回の#2[i]%になる(敵それぞれで分けて計算される)。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Maze.png", + "LevelUpSkillID": [ + 130707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6500000006053597 + ], + "PointID": 1307101, + "PointName": "{RUBY_B#うごめ}蠢{RUBY_E#}く{RUBY_B#ないぞう}内臓{RUBY_E#}", + "PointDesc": "風化、裂創、燃焼、または感電状態の敵単体に戦闘スキルを発動した後、それぞれ#1[i]%基礎確率でさらに「アルカナ」を1層付与する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6500000006053597, + 3 + ], + "PointID": 1307102, + "PointName": "チャリスの{RUBY_B#そこ}底{RUBY_E#}の{RUBY_B#てんまつ}顛末{RUBY_E#}", + "PointDesc": "戦闘に入る時、#1[i]%基礎確率で敵に「アルカナ」を1層付与する。\\n敵が味方単体の攻撃中に持続ダメージを1回受けるたびに、#1[i]%基礎確率で「アルカナ」が1層付与される。1回の攻撃で最大で#2[i]層付与される。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 0.7200000006705523 + ], + "PointID": 1307103, + "PointName": "ロウソクの{RUBY_B#かげ}影{RUBY_E#}が{RUBY_B#しめ}示{RUBY_E#}す{RUBY_B#よちょう}予兆{RUBY_E#}", + "PointDesc": "自身の与ダメージが、効果命中の#1[i]%分アップする。最大で与ダメージ+#2[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307202, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1307101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1307202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307204, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1307203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1307102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307206, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1307205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1307206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307208, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1307103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307209, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1307103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1307201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1307, + "Set4IDList": [ + 116, + 110, + 102 + ], + "Set2IDList": [ + 303, + 322, + 301 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "StatusProbabilityBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 323, + 268 + ] + } + }, + "1308": { + "Name": "{RUBY_B#よみ}黄泉{RUBY_E#}", + "Desc": "「巡海レンジャー」を自称する旅人、本名は不明。\\n長い刀を携え、1人で銀河を旅している。", + "CharaInfo": { + "Camp": "巡海レンジャー", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "acheron", + "SPNeed": 9, + "BaseType": "Warlock", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 130801, + "Name": "{RUBY_B#こうてんりょうらく}高天寥落{RUBY_E#}、\\n{RUBY_B#しんごん}真言{RUBY_E#}{RUBY_B#はじ}始{RUBY_E#}まる", + "Desc": "デバフ状態の敵にダメージを与える時、会心率+#1[i]%。", + "ParamList": [ + 0.18000000016763806 + ] + }, + "2": { + "Id": 130802, + "Name": "{RUBY_B#らいてい}雷霆{RUBY_E#}{RUBY_B#しず}静{RUBY_E#}まり、{RUBY_B#あきかぜ}秋風{RUBY_E#}{RUBY_B#や}止む{RUBY_E#}", + "Desc": "軌跡「奈落」の効果の最大値に達するために必要な「虚無」の運命を歩むキャラクターの数-1名。自身のターンが回ってきた時、「残夢」を1層獲得し、「集真赤」が最も多い敵に「集真赤」を1層付与する。", + "ParamList": [] + }, + "3": { + "Id": 130803, + "Name": "{RUBY_B#えいちつ}永蟄{RUBY_E#}を{RUBY_B#おびや}脅{RUBY_E#}かす{RUBY_B#かんぷう}寒風{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 130804, + "Name": "{RUBY_B#きょうちゅう}鏡中{RUBY_E#}を{RUBY_B#て}照{RUBY_E#}らす{RUBY_B#えいえん}永焔{RUBY_E#}", + "Desc": "戦闘に入った敵は、必殺技被ダメージアップ状態になり、受ける必殺技ダメージ+#1[i]%。", + "ParamList": [ + 0.0800000000745058 + ] + }, + "5": { + "Id": 130805, + "Name": "{RUBY_B#ばんじゃくほうらく}盤石崩落{RUBY_E#}、{RUBY_B#せんしんひょうらく}千身漂落{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 130806, + "Name": "{RUBY_B#そくばく}束縛{RUBY_E#}を{RUBY_B#と}解{RUBY_E#}く{RUBY_B#わざわ}災{RUBY_E#}い", + "Desc": "黄泉が与える必殺技ダメージの全属性耐性貫通+#1[i]%。通常攻撃ダメージ、戦闘スキルダメージが同時に必殺技ダメージと見なされ、弱点属性を無視して敵の靭性を削る。敵を弱点撃破した時、雷属性の弱点撃破効果を触発する。", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "130801": { + "Id": 130801, + "Name": "{RUBY_B#さんず}三途{RUBY_E#}の{RUBY_B#こぼく}枯木{RUBY_E#}", + "Desc": "指定した敵単体に黄泉の攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130802": { + "Id": 130802, + "Name": "{RUBY_B#はちらい}八雷{RUBY_E#}{RUBY_B#わた}渡{RUBY_E#}り", + "Desc": "「残夢」を#3[i]層獲得する。指定した敵単体に「集真赤」を#3[i]層付与し、黄泉の攻撃力#1[i]%分の雷属性ダメージを与え、隣接する敵に黄泉の攻撃力#2[i]%分の雷属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.3000000002793968, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.33000000030733645, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.3600000003352761, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.3900000003632158, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.4200000003911555, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.45000000041909516, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.4875000002793968, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.5250000001396984, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.5625000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.6000000005587935, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.6300000005867332, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.6600000006146729, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.6900000006426126, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.7200000006705523, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.7500000006984919, + 1 + ] + } + } + }, + "130803": { + "Id": 130803, + "Name": "{RUBY_B#ざんむ}残夢{RUBY_E#}{RUBY_B#そ}染{RUBY_E#}める{RUBY_B#りょうらん}繚乱{RUBY_E#}の{RUBY_B#ひとたち}一太刀{RUBY_E#}", + "Desc": "「啼沢斬り」を3回、「黄泉返り」を1回の順で発動し、指定した敵単体に最大で黄泉の攻撃力#6[i]%分の雷属性ダメージを与え、その他の敵に最大で黄泉の攻撃力#7[i]%分の雷属性ダメージを与える。\\n「啼沢斬り」:指定した敵単体に黄泉の攻撃力#1[f1]%分の雷属性ダメージを与え、その敵にある「集真赤」を最大で3層消去する。「集真赤」が消去された時、敵全体に黄泉の攻撃力#2[f1]%分の雷属性ダメージを与える。消去した「集真赤」1層につき、ダメージ倍率がさらにアップする、最大で+#5[f1]%。\\n「黄泉返り」:敵全体に黄泉の攻撃力#3[i]%分の雷属性ダメージを与え、すべての「集真赤」をクリアする。\\n必殺技の間、敵に「集真赤」を付与することはできない。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523, + 9, + 0.3600000003352761, + 2.2320000000763685, + 1.800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622, + 9, + 0.3840000000782311, + 2.380800000857562, + 1.9200000008568168 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641, + 9, + 0.40799999982118607, + 2.5296000002417713, + 2.040000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659, + 9, + 0.43200000026263297, + 2.678400000324473, + 2.1600000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678, + 9, + 0.45600000000558794, + 2.8272000004071742, + 2.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697, + 9, + 0.48000000044703484, + 2.9760000004898757, + 2.400000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265, + 9, + 0.5100000004749745, + 3.162000000011176, + 2.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058, + 9, + 0.5400000005029142, + 3.3479999997653067, + 2.700000000651926 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852, + 9, + 0.5700000005308539, + 3.5340000002179295, + 2.850000000791624 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645, + 9, + 0.6000000005587935, + 3.7200000006705523, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745, + 9, + 0.6240000003017485, + 3.8688000007532537, + 3.1200000001117587 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763, + 9, + 0.6480000000447035, + 4.017599999904633, + 3.2400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782, + 9, + 0.6720000004861504, + 4.166399999987334, + 3.360000000335276 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538, + 9, + 0.6960000002291054, + 4.3152000000700355, + 3.480000000447035 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782, + 9, + 0.7200000006705523, + 4.464000000152737, + 3.6000000005587935 + ] + } + } + }, + "130804": { + "Id": 130804, + "Name": "{RUBY_B#もみじ}紅葉{RUBY_E#}に{RUBY_B#しぐれ}時雨{RUBY_E#}、{RUBY_B#ばんり}万里{RUBY_E#}の{RUBY_B#そら}空{RUBY_E#}", + "Desc": "「残夢」が#1[i]層に達すると必殺技を発動できる。必殺技の発動中は弱点属性を無視して敵の靭性を削ることができ、敵全体の全属性耐性-#2[i]%、必殺技が終了するまで継続。\\n任意のユニットがスキルを発動した際に敵にデバフを付与すると、黄泉は「残夢」を1層獲得し、敵に「集真赤」を1層付与する。複数の敵にデバフを与えた場合、そのうちの「集真赤」が最も多い敵に「集真赤」を1層付与する。この効果はスキルを発動するたびに1回まで発動できる。\\n黄泉がフィールド上にいる時、敵が退場するか、または任意のユニットに倒されると、その敵が持つ「集真赤」はフィールド上にいる「集真赤」の最も多い敵に引き継がれる。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 9, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 9, + 0.11000000010244548 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 9, + 0.12000000011175871 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 9, + 0.13000000012107193 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 9, + 0.14000000013038516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 9, + 0.1500000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 9, + 0.1625000003259629 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 9, + 0.17499999981373549 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9, + 0.1875 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 9, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 9, + 0.21000000019557774 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 9, + 0.22000000020489097 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 9, + 0.2300000002142042 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 9, + 0.24000000022351742 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 9, + 0.25000000023283064 + ] + } + } + }, + "130806": { + "Id": 130806, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130807": { + "Id": 130807, + "Name": "{RUBY_B#しそうだんが}四相断我{RUBY_E#}", + "Desc": "敵を攻撃。各ウェーブ開始時、「四相断我」を獲得し、敵全体に黄泉の攻撃力#1[i]%分の雷属性ダメージを与え、弱点属性を無視して靭性を削る。敵を弱点撃破した時、雷属性の弱点撃破効果を触発する。\\n「四相断我」:黄泉が必殺技を発動した後、「残夢」を#2[i]層獲得し、同時にランダムな敵単体に「集真赤」を#2[i]層付与する。\\n通常エネミーを攻撃した場合、戦闘には入らず即座にターゲットを撃破する。敵に命中しなかった場合、秘技ポイントは消費されない。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "130814": { + "Id": 130814, + "Name": "啼沢斬り", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130815": { + "Id": 130815, + "Name": "啼沢斬り", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130816": { + "Id": 130816, + "Name": "啼沢斬り", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130817": { + "Id": 130817, + "Name": "黄泉返り", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Maze.png", + "LevelUpSkillID": [ + 130807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 3 + ], + "PointID": 1308101, + "PointName": "{RUBY_B#あかおに}赤鬼{RUBY_E#}", + "PointDesc": "戦闘開始時、「残夢」を#1[i]層獲得し、ランダムな敵1体に「集真赤」を#1[i]層付与する。「残夢」が上限値まで蓄積された後、「残夢」を1層獲得するごとに「四相断我」を1層獲得する。「四相断我」は#2[i]層まで蓄積できるようになる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.1500000001396984, + 1.6000000005587935 + ], + "PointID": 1308102, + "PointName": "{RUBY_B#ならく}奈落{RUBY_E#}", + "PointDesc": "パーティ内に黄泉以外の「虚無」の運命を歩むキャラクターが1名/2名存在する場合、黄泉の通常攻撃、戦闘スキル、および必殺技によるダメージが本来の#1[i]%/#2[i]%になる。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 3, + 6, + 0.25000000023283064 + ], + "PointID": 1308103, + "PointName": "{RUBY_B#らいしん}雷心{RUBY_E#}", + "PointDesc": "必殺技の「啼沢斬り」が「集真赤」を持つ敵に命中する時、黄泉の与ダメージ+#1[i]%、この効果は最大で#2[i]層累積でき、#3[i]ターン継続。また、「黄泉返り」を発動する時、さらに#4[i]ヒットする。1ヒットごとにランダムな敵単体に黄泉の攻撃力#5[i]%分の雷属性ダメージを与える、このダメージは必殺技ダメージと見なされる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308202, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1308101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1308202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308204, + "PointName": "ダメージ強化・雷", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1308203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "雷属性ダメージ" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1308102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308206, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1308205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1308206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308208, + "PointName": "ダメージ強化・雷", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1308103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "雷属性ダメージ" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308209, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1308103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1308201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1308, + "Set4IDList": [ + 117, + 122, + 109 + ], + "Set2IDList": [ + 314, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1309": { + "Name": "ロビン", + "Desc": "銀河に名を馳せるピノコニー出身の天環族の歌手。優雅で落ち着いた雰囲気の少女。\\n今回はファミリーの招待を受け、故郷に戻り「調和セレモニー」で歌を披露することになった。\\n「調和」の力で歌声を届け、ファンだけでなく世界中の生命に「共感」を与えることができる。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "robin", + "SPNeed": 160, + "BaseType": "Shaman", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 130901, + "Name": "{RUBY_B#ほほえ}微笑{RUBY_E#}みの{RUBY_B#くに}国{RUBY_E#}", + "Desc": "「協奏」状態の時、味方全体の全属性耐性貫通+#1[i]%。", + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "Id": 130902, + "Name": "{RUBY_B#ふたり}2人{RUBY_E#}のアフタヌーンティー", + "Desc": "「協奏」状態の時、味方全体の速度+#1[i]%、天賦のEP回復効果がさらに#2[i]アップする。", + "ParamList": [ + 0.1600000001490116, + 1 + ] + }, + "3": { + "Id": 130903, + "Name": "{RUBY_B#さか}逆{RUBY_E#}さまの{RUBY_B#しゅおん}主音{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。必殺技のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 130904, + "Name": "{RUBY_B#あまつぶ}雨粒{RUBY_E#}のカギ", + "Desc": "必殺技を発動する時、味方全体の行動制限系デバフを解除する。ロビンが「協奏」状態の時、味方全体の効果抵抗+#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 130905, + "Name": "{RUBY_B#こどく}孤独{RUBY_E#}な{RUBY_B#ほし}星{RUBY_E#}の{RUBY_B#なみだ}涙{RUBY_E#}", + "Desc": "通常攻撃のLv.+1、最大Lv.10まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 130906, + "Name": "{RUBY_B#つきごも}月隠{RUBY_E#}りの{RUBY_B#まよなか}真夜中{RUBY_E#}", + "Desc": "「協奏」状態の時、必殺技による物理属性付加ダメージの会心ダメージ+#2[i]%。「月隠りの真夜中」の効果は#1[i]回まで発動できる。必殺技を発動すると、この効果の発動可能回数がリセットされる。", + "ParamList": [ + 8, + 4.500000000465661 + ] + } + }, + "Skills": { + "130901": { + "Id": 130901, + "Name": "{RUBY_B#は}羽{RUBY_E#}ばたくホワイトノイズ", + "Desc": "指定した敵単体にロビンの攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130902": { + "Id": 130902, + "Name": "{RUBY_B#ひしょう}飛翔{RUBY_E#}のアリア", + "Desc": "味方全体の与ダメージ+#1[i]%#2[i]ターン継続。ロビンのターンが回ってくるたびに継続時間-1ターン。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 3 + ] + } + } + }, + "130903": { + "Id": 130903, + "Name": "{RUBY_B#せん}千{RUBY_E#}の{RUBY_B#おと}音{RUBY_E#}で、{RUBY_B#ぐんせい}群星{RUBY_E#}にフーガを", + "Desc": "ロビンが「協奏」状態に入り、自身以外の味方を即座に行動させる。\\n「協奏」状態の時、味方全体の攻撃力を、ロビンの攻撃力#1[f1]%分+#3[i]アップする。また、味方が攻撃を行った後、ロビンは自身の攻撃力#4[i]%分の物理属性付加ダメージを敵に1回与える、このダメージの会心率は#5[i]%、会心ダメージは#6[i]%に固定される。\\n「協奏」状態の時、ロビンは行動制限系デバフに抵抗できる。ロビンは「協奏」状態が終了するまで自身のターンに入らず、行動できない。\\nアクションバーに「協奏」のカウントダウンが出現する。カウントダウンのターンが回ってきた時、ロビンは「協奏」状態を解除し、即座に行動する。カウントダウンの速度は#2[i]に固定される。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.15200000000186265, + 90, + 50, + 0.7200000006705523, + 1, + 1.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.159599999897182, + 90, + 65, + 0.7680000001564622, + 1, + 1.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.16719999979250133, + 90, + 80, + 0.8160000003408641, + 1, + 1.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1748000003863126, + 90, + 95, + 0.8640000005252659, + 1, + 1.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 90, + 110, + 0.9120000007096678, + 1, + 1.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1900000001769513, + 90, + 125, + 0.9600000008940697, + 1, + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19949999987147748, + 90, + 143.7500000006985, + 1.0200000000186265, + 1, + 1.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.20899999956600368, + 90, + 162.50000000046566, + 1.0800000000745058, + 1, + 1.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2184999999590218, + 90, + 181.25000000023283, + 1.1400000001303852, + 1, + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.227999999653548, + 90, + 200, + 1.2000000001862645, + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.23560000024735928, + 90, + 215, + 1.2479999996721745, + 1, + 1.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.24320000014267862, + 90, + 230, + 1.2959999998565763, + 1, + 1.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2508000007364899, + 90, + 245, + 1.3440000000409782, + 1, + 1.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.2583999999333173, + 90, + 260, + 1.39200000022538, + 1, + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.26599999982863665, + 90, + 275, + 1.440000000409782, + 1, + 1.5000000004656613 + ] + } + } + }, + "130904": { + "Id": 130904, + "Name": "{RUBY_B#ちょうわ}調和{RUBY_E#}の{RUBY_B#じゅんせいりつ}純正律{RUBY_E#}", + "Desc": "味方全体の会心ダメージ+#1[f1]%。味方が敵に攻撃を行った後、ロビンは自身のEPを#2[i]回復する。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06499999971129, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.0800000000745058, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09499999973922968, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12499999976716936, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.14375000074505806, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.18125000060535967, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2149999998509884, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.24499999987892807, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.26000000024214387, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.27499999990686774, + 2 + ] + } + } + }, + "130906": { + "Id": 130906, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130907": { + "Id": 130907, + "Name": "{RUBY_B#めいてい}酩酊{RUBY_E#}のオーバーチュア", + "Desc": "秘技を発動した後、自身の周囲に#1[i]秒間継続する特殊領域を作り出す。特殊領域内の敵はロビンを攻撃せず、領域が存在する間はロビンに追随する。領域展開中に戦闘に入った後、各ウェーブ開始時にロビンはEPを#2[i]回復する。味方が作り出した領域は1つまで存在できる。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 5 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Maze.png", + "LevelUpSkillID": [ + 130907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1309101, + "PointName": "{RUBY_B#かさい}華彩{RUBY_E#}のコロラトゥーラ", + "PointDesc": "戦闘開始時、自身の行動順#1[i]%早まる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1309102, + "PointName": "アドリブの{RUBY_B#そうしょくきょく}装飾曲{RUBY_E#}", + "PointDesc": "「協奏」状態の時、味方全体の追加攻撃ダメージの会心ダメージ+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1309103, + "PointName": "{RUBY_B#はんぷく}反復{RUBY_E#}するピリオド", + "PointDesc": "戦闘スキルを発動する時、さらにEPを#1[i]回復する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1309101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1309202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309204, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1309201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1309102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1309205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1309201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309208, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1309103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1309208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1309208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 174.24000000022352, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 243.93600000045262, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 313.6320000004489, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 383.3279999997467, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 453.02399999974295, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 522.7200000006706, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 592.4159999999683, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1309, + "Set4IDList": [ + 102, + 105, + 116 + ], + "Set2IDList": [ + 302, + 301, + 308 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "AttackAddedRatio", + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "AttackDelta", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 313, + 272 + ] + } + }, + "1310": { + "Name": "ホタル", + "Desc": "星核ハンターの一員、装甲「サム」を身に纏って戦う。任務に忠実で、粘り強い性格。\\nスウォームに打ち勝つための兵器として生まれた彼女は、成長速度が一般人とは異なり、寿命が非常に短い。\\n「生」を求めて星核ハンターに加わり、運命に抗う方法を探している。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sam", + "SPNeed": 240, + "BaseType": "Warrior", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 131001, + "Name": "かつて{RUBY_B#あんみん}安眠{RUBY_E#}せし\\n{RUBY_B#あかぞめ}赤染{RUBY_E#}の{RUBY_B#まゆ}繭{RUBY_E#}", + "Desc": "強化戦闘スキル「ファイアフライ-IV-死星オーバーロード」を発動する時、ターゲットの防御力を#1[i]%無視し、SPを消費しない。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "2": { + "Id": 131002, + "Name": "{RUBY_B#くだ}砕{RUBY_E#}かれし{RUBY_B#そら}空{RUBY_E#}からの{RUBY_B#ついらく}墜落{RUBY_E#}", + "Desc": "「完全燃焼」状態で強化通常攻撃「ファイアフライ-IV-底火斬撃」か強化戦闘スキル「ファイアフライ-IV-死星オーバーロード」を発動して敵を倒す、または敵を弱点撃破状態にする時、装甲「サム」が追加ターンを1獲得する。この効果は#2[i]ターン後に再度発動できる。", + "ParamList": [ + 1, + 1 + ] + }, + "3": { + "Id": 131003, + "Name": "{RUBY_B#しず}静{RUBY_E#}かな{RUBY_B#ほし}星{RUBY_E#}の{RUBY_B#かわ}川{RUBY_E#}で{RUBY_B#ねむ}眠{RUBY_E#}る", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 131004, + "Name": "いつか{RUBY_B#ほたるび}蛍火{RUBY_E#}を\\nこの{RUBY_B#め}目{RUBY_E#}に", + "Desc": "「完全燃焼」状態の時、装甲「サム」の効果抵抗+#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 131005, + "Name": "{RUBY_B#ゆめ}夢{RUBY_E#}なき{RUBY_B#なが}長{RUBY_E#}い{RUBY_B#よる}夜{RUBY_E#}が\\n{RUBY_B#あ}明{RUBY_E#}ける", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 131006, + "Name": "{RUBY_B#お}終{RUBY_E#}わりの{RUBY_B#あす}明日{RUBY_E#}に\\n{RUBY_B#さ}咲{RUBY_E#}き{RUBY_B#ほこ}誇{RUBY_E#}る", + "Desc": "「完全燃焼」状態の時、装甲「サム」の炎属性耐性貫通+#1[i]%。強化通常攻撃「ファイアフライ-IV-底火斬撃」または強化戦闘スキル「ファイアフライ-IV-死星オーバーロード」を発動する時、弱点撃破効率+#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + } + }, + "Skills": { + "131001": { + "Id": 131001, + "Name": "コマンド-フラッシュオーバー{RUBY_B#すいしん}推進{RUBY_E#}", + "Desc": "指定した敵単体に装甲「サム」の攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131002": { + "Id": 131002, + "Name": "コマンド-{RUBY_B#てんかごうげき}天火轟撃{RUBY_E#}", + "Desc": "自身の最大HP#2[i]%分のHPを消費し、自身の最大EP#3[i]%分のEPを固定で回復する。指定した敵単体に装甲「サム」の攻撃力#1[i]%分の炎属性ダメージを与える。残りHPが足りない場合、戦闘スキルを発動する時、装甲「サム」の残りHPが1になる。自身の次の行動順#4[i]%早める。", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903, + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.40000000037252903, + 0.5100000004749745, + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903, + 0.5200000004842877, + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.40000000037252903, + 0.530000000493601, + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.40000000037252903, + 0.5400000005029142, + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.40000000037252903, + 0.5500000005122274, + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.40000000037252903, + 0.5625000006984919, + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.40000000037252903, + 0.5750000001862645, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.40000000037252903, + 0.587500000372529, + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.40000000037252903, + 0.6000000005587935, + 0.25000000023283064 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903, + 0.6100000005681068, + 0.25000000023283064 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.40000000037252903, + 0.62000000057742, + 0.25000000023283064 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.40000000037252903, + 0.6300000005867332, + 0.25000000023283064 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903, + 0.6400000005960464, + 0.25000000023283064 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 0.40000000037252903, + 0.6500000006053597, + 0.25000000023283064 + ] + } + } + }, + "131003": { + "Id": 131003, + "Name": "ファイアフライ-IV-{RUBY_B#かんぜんねんしょう}完全燃焼{RUBY_E#}", + "Desc": "「完全燃焼」状態に入り、自身の行動順を100%早める。また、通常攻撃が「ファイアフライ-IV-底火斬撃」に、戦闘スキルが「ファイアフライ-IV-死星オーバーロード」に強化される。「完全燃焼」状態の時、速度+#3[i]。さらに、強化通常攻撃または強化戦闘スキルを発動する時、自身の弱点撃破効率+#2[i]%、敵が装甲「サム」から受ける弱点撃破ダメージ+#1[f1]%、その回の攻撃が終了するまで継続。\\nアクションバーに「完全燃焼」のカウントダウンが出現する。カウントダウンのターンが回ってきた時、装甲「サム」は「完全燃焼」状態を解除する。カウントダウンの速度は#4[i]に固定される。\\n「完全燃焼」状態の装甲「サム」は必殺技を発動できない。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 30, + 70 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 0.5000000004656613, + 33, + 70 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 36, + 70 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 0.5000000004656613, + 39, + 70 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 42, + 70 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 45, + 70 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 0.5000000004656613, + 48.75000000069849, + 70 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 0.5000000004656613, + 52.50000000046566, + 70 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 0.5000000004656613, + 56.25000000023283, + 70 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 60, + 70 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 0.5000000004656613, + 63, + 70 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 66, + 70 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 0.5000000004656613, + 69, + 70 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 72, + 70 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 75, + 70 + ] + } + } + }, + "131004": { + "Id": 131004, + "Name": "ホタル{RUBY_B#しき}式{RUBY_E#}{RUBY_B#げんかちゅうすう}源火中枢{RUBY_E#}", + "Desc": "残りHPが少ないほど受けるダメージがダウンする。残りHPが#3[i]%以下の時、ダメージ軽減効果が最大値に達する、最大で受けるダメージ-#1[i]%。「完全燃焼」状態の時、ダメージ軽減効果は最大値を維持し、効果抵抗+#4[i]%。\\n戦闘開始時、EPが#2[i]%未満の場合、EPを#2[i]%まで回復する。EPが満タンになる時、自身にあるデバフをすべて解除する。", + "Type": null, + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 0.20000000018626451, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 0.20000000018626451, + 0.12000000011175871 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.20000000018626451, + 0.14000000013038516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613, + 0.20000000018626451, + 0.1600000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 0.20000000018626451, + 0.18000000016763806 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.5000000004656613, + 0.20000000018626451, + 0.2249999998603016 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.5000000004656613, + 0.20000000018626451, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.5000000004656613, + 0.20000000018626451, + 0.27499999990686774 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 0.20000000018626451, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.5000000004656613, + 0.20000000018626451, + 0.3200000002980232 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.5000000004656613, + 0.20000000018626451, + 0.3400000003166497 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.5000000004656613, + 0.20000000018626451, + 0.3600000003352761 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.5000000004656613, + 0.20000000018626451, + 0.3800000003539026 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613, + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "131006": { + "Id": 131006, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131007": { + "Id": 131007, + "Name": "Δコマンド-{RUBY_B#しょうどいんげき}焦土隕撃{RUBY_E#}", + "Desc": "空中に跳び上がり、自由に移動する、#1[i]秒間継続。継続時間終了後、落下攻撃を行い、一定範囲内のすべての敵を攻撃する。継続時間中に攻撃を行うと、直ちに落下攻撃を行うことができる。各ウェーブ開始時、敵全体に炎属性弱点を付与する、#3[i]ターン継続。その後、敵全体に装甲「サム」の攻撃力#2[i]%分の炎属性ダメージを与える。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5, + 2, + 2 + ] + } + } + }, + "131008": { + "Id": 131008, + "Name": "ファイアフライ-IV-{RUBY_B#ていかざんげき}底火斬撃{RUBY_E#}", + "Desc": "自身の最大HP#2[i]%分のHPを回復する。指定した敵単体に装甲「サム」の攻撃力#1[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 45, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2000000001862645, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.400000000372529, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6000000005587935, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.800000000745058, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2000000001862645, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.400000000372529, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6000000005587935, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 0.20000000018626451 + ] + } + } + }, + "131009": { + "Id": 131009, + "Name": "ファイアフライ-IV-{RUBY_B#しせい}死星{RUBY_E#}オーバーロード", + "Desc": "自身の最大HP#3[i]%分のHPを回復する。指定した敵単体に炎属性弱点を付与する、#4[i]ターン継続。その敵に装甲「サム」の攻撃力(#5[f1]×撃破特効+#1[f1]%)分の炎属性ダメージを与え、隣接する敵に装甲「サム」の攻撃力(#6[f1]×撃破特効+#2[f1]%)分の炎属性ダメージを与える。撃破特効は最大で#7[i]%までカウントされる。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 45 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.8125000009313226, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1.0500000000465661, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1.1000000000931323, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1.1500000001396984, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1.2000000001862645, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1.2500000002328306, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Maze.png", + "LevelUpSkillID": [ + 131007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5500000005122274 + ], + "PointID": 1310101, + "PointName": "αモジュール-アンチラグバースト", + "PointDesc": "「完全燃焼」状態の時、炎属性弱点を持たない敵に攻撃を行う場合、本来の削靭値#1[i]%分の靭性を削る。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2, + 3.6000000005587935, + 0.3500000003259629, + 0.5000000004656613 + ], + "PointID": 1310102, + "PointName": "βモジュール-{RUBY_B#じこせいげんそうこう}自己制限装甲{RUBY_E#}", + "PointDesc": "「完全燃焼」状態の時、装甲「サム」の撃破特効が#1[i]%/#2[i]%以上の場合、弱点撃破状態の敵に攻撃を行った後、その回の攻撃の削靭値を#3[i]%/#4[i]%分の超撃破ダメージに転換する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1800, + 10, + 0.007999999448657036 + ], + "PointID": 1310103, + "PointName": "γモジュール-{RUBY_B#かふか}過負荷{RUBY_E#}コア", + "PointDesc": "装甲「サム」の攻撃力が#1[i]を超えた場合、超過した攻撃力#2[i]につき、自身の撃破特効+#3[f1]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310201, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310202, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1310101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310203, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1310202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310204, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1310203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310205, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1310102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310206, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1310205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310207, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1310206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310208, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1310103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310209, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1310208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "効果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310210, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1310208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "撃破特効" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 5.28000000026077, + "HPBase": 110.88000000081956, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 147.8400000007823, + "DefenceAdd": 5.28000000026077, + "HPBase": 155.23200000007637, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 190.0800000000745, + "DefenceAdd": 5.28000000026077, + "HPBase": 199.5840000002645, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 232.32000000029802, + "DefenceAdd": 5.28000000026077, + "HPBase": 243.93600000045262, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 274.56000000052154, + "DefenceAdd": 5.28000000026077, + "HPBase": 288.2879999997094, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 316.80000000074506, + "DefenceAdd": 5.28000000026077, + "HPBase": 332.64000000059605, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 359.04000000003725, + "DefenceAdd": 5.28000000026077, + "HPBase": 376.9920000007842, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1310, + "Set4IDList": [ + 119, + 112, + 107 + ], + "Set2IDList": [ + 316, + 307, + 309 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 246, + 190 + ] + } + }, + "1312": { + "Name": "ミーシャ", + "Desc": "ピノコニーのホテルのドアボーイ。行儀の良い男の子。\\nナナシビトに憧れており、いつの日か旅に出ることを夢見ている。", + "CharaInfo": { + "Camp": "ピノコニー", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "misha", + "SPNeed": 100, + "BaseType": "Warrior", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 131201, + "Name": "{RUBY_B#ゆ}揺{RUBY_E#}らめく{RUBY_B#げんえい}幻影{RUBY_E#}", + "Desc": "必殺技を発動する時、フィールド上にいる敵1体につき、この回の必殺技の攻撃段数+#1[i]、最大で+#2[i]。", + "ParamList": [ + 1, + 5 + ] + }, + "2": { + "Id": 131202, + "Name": "{RUBY_B#せいしゅん}青春{RUBY_E#}の{RUBY_B#かな}悲{RUBY_E#}しい{RUBY_B#ちょうぼう}眺望{RUBY_E#}", + "Desc": "必殺技の各段攻撃の前に、#3[i]%基礎確率で敵の防御力-#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.1600000001490116, + 3, + 0.24000000022351742 + ] + }, + "3": { + "Id": 131203, + "Name": "{RUBY_B#わす}忘{RUBY_E#}れられない{RUBY_B#じだい}時代{RUBY_E#}の{RUBY_B#なごり}名残{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 131204, + "Name": "よく{RUBY_B#し}知{RUBY_E#}る{RUBY_B#おもかげ}面影{RUBY_E#}", + "Desc": "必殺技の各段攻撃のダメージ倍率+#1[i]%。", + "ParamList": [ + 0.060000000055879354 + ] + }, + "5": { + "Id": 131205, + "Name": "{RUBY_B#はじ}初{RUBY_E#}めての{RUBY_B#あいじょう}愛情{RUBY_E#}と{RUBY_B#ゆうじょう}友情{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 131206, + "Name": "{RUBY_B#ひさ}久{RUBY_E#}しく{RUBY_B#わす}忘{RUBY_E#}れていた{RUBY_B#あこが}憧{RUBY_E#}れ", + "Desc": "必殺技を発動する時、自身の与ダメージ+#2[i]%、自身の次のターンが終了するまで継続。次の戦闘スキルを発動した後、SPを#1[i]回復する。", + "ParamList": [ + 1, + 0.3000000002793968 + ] + } + }, + "Skills": { + "131201": { + "Id": 131201, + "Name": "ど…{RUBY_B#ど}退{RUBY_E#}いてくださーい!", + "Desc": "指定した敵単体にミーシャの攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131202": { + "Id": 131202, + "Name": "ル…ルームサービスです!", + "Desc": "ミーシャの次の必殺技の攻撃段数+#3[i]。指定した敵単体にミーシャの攻撃力#1[i]%分の氷属性ダメージを与え、隣接する敵にミーシャの攻撃力#2[i]%分の氷属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.44000000040978193, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.48000000044703484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.5200000004842877, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.5600000005215406, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.7000000006519258, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.7500000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.8800000008195639, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.9200000008568168, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.9600000008940697, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1, + 1 + ] + } + } + }, + "131203": { + "Id": 131203, + "Name": "ち…{RUBY_B#ちこく}遅刻{RUBY_E#}する!", + "Desc": "初期状態の攻撃段数は#1[i]。最初に1段の攻撃を行い、指定した敵単体にミーシャの攻撃力#2[i]%分の氷属性ダメージを与え、以降の各段攻撃は、ランダムな敵単体にミーシャの攻撃力#2[i]%分の氷属性ダメージを与える。各段攻撃の前に、#3[f1]%基礎確率で敵を凍結状態にする、1ターン継続。\\n凍結状態の敵は行動できず、ターンが回ってくるたびにミーシャの攻撃力#4[i]%分の氷属性付加ダメージを受ける。\\n必殺技の最大攻撃段数は#5[i]。必殺技を発動した後、攻撃段数が初期状態にリセットされる。", + "Type": "Ultra", + "Tag": "Bounce", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.3600000003352761, + 0.12000000011175871, + 0.18000000016763806, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.3840000000782311, + 0.12799999956041574, + 0.19200000003911555, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.40799999982118607, + 0.1359999997075647, + 0.20399999991059303, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.43200000026263297, + 0.14399999985471368, + 0.21599999978207052, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.45600000000558794, + 0.15200000000186265, + 0.227999999653548, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.48000000044703484, + 0.1600000001490116, + 0.24000000022351742, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.5100000004749745, + 0.17000000015832484, + 0.2549999998882413, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.5400000005029142, + 0.18000000016763806, + 0.2700000002514571, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.5700000005308539, + 0.1900000001769513, + 0.28499999991618097, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.6000000005587935, + 0.20000000018626451, + 0.3000000002793968, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.6240000003017485, + 0.20799999963492155, + 0.31200000015087426, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.6480000000447035, + 0.21599999978207052, + 0.32400000002235174, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.6720000004861504, + 0.22399999992921948, + 0.3359999998938292, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.6960000002291054, + 0.23200000007636845, + 0.3479999997653067, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.7200000006705523, + 0.24000000022351742, + 0.3600000003352761, + 10 + ] + } + } + }, + "131204": { + "Id": 131204, + "Name": "{RUBY_B#だっしんき}脱進機{RUBY_E#}", + "Desc": "味方がSPを1消費するたびに、ミーシャの次の必殺技の攻撃段数+#2[i]、ミーシャのEPを#1[f1]回復する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "131206": { + "Id": 131206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131207": { + "Id": 131207, + "Name": "{RUBY_B#とき}時{RUBY_E#}よ{RUBY_B#と}止{RUBY_E#}まれ、アナタは{RUBY_B#うつく}美{RUBY_E#}しい", + "Desc": "秘技を使用した後、#1[i]秒間継続する特殊領域を作り出す。特殊領域内にいる敵は「夢の牢屋」を付与される。「夢の牢屋」状態の敵は行動を停止する。「夢の牢屋」状態の敵と戦闘に入った後、ミーシャの次の必殺技の攻撃段数+#2[i]。味方が作り出した領域は1つまで存在できる。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Maze.png", + "LevelUpSkillID": [ + 131207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 1312101, + "PointName": "リリース", + "PointDesc": "必殺技の1段目の攻撃の前に、敵を凍結状態にする基礎確率+#1[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935 + ], + "PointID": 1312102, + "PointName": "インターロック", + "PointDesc": "必殺技を発動する時、効果命中+#1[i]%、その回の必殺技が終了するまで継続。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1312103, + "PointName": "トランスミッション", + "PointDesc": "凍結状態の敵にダメージを与える時、会心ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312201, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312202, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1312101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312203, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1312202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312204, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1312203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312205, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1312102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312206, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1312205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312207, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1312206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312208, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1312103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312209, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1312208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312210, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1312208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "氷属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 172.80000000074506, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 241.92000000085682, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 311.04000000003725, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 380.160000000149, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 449.28000000026077, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 518.4000000003725, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 587.5200000004843, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1312, + "Set4IDList": [ + 104, + 122, + 102 + ], + "Set2IDList": [ + 306, + 301, + 311 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1313": { + "Name": "サンデー", + "Desc": "「秩序」の美しい夢は散ったが、それでも最初の願いを諦めない者がいる。\\n——翼を失い地に落ちた旅人よ、その足で次はどこへ向かう?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sunday", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 131301, + "Name": "{RUBY_B#せんねん}千年{RUBY_E#}の{RUBY_B#せいじゃく}静寂{RUBY_E#}の{RUBY_B#は}果{RUBY_E#}て", + "Desc": "サンデーが戦闘スキルを発動する時、スキルターゲットに以下の効果を付与する。\\nキャラがダメージを与える時、敵の防御力を#2[i]%無視する。召喚物がダメージを与える時、敵の防御力を#3[i]%無視する。#1[i]ターン継続。", + "ParamList": [ + 2, + 0.1600000001490116, + 0.40000000037252903 + ] + }, + "2": { + "Id": 131302, + "Name": "{RUBY_B#かきん}瑕瑾{RUBY_E#}を{RUBY_B#おぎな}補{RUBY_E#}う{RUBY_B#しんこう}信仰{RUBY_E#}", + "Desc": "初めて必殺技を発動した後、SPを#2[i]回復する。「祝福されし者」状態の味方の与ダメージ+#1[i]%。", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 131303, + "Name": "{RUBY_B#せいひつ}静謐{RUBY_E#}な{RUBY_B#いばら}茨{RUBY_E#}の{RUBY_B#かく}隠{RUBY_E#}れ{RUBY_B#が}家{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 131304, + "Name": "{RUBY_B#ちょうぞう}彫像{RUBY_E#}の{RUBY_B#じょげん}序言{RUBY_E#}", + "Desc": "ターンが回ってきた時、EPを#1[i]回復する。", + "ParamList": [ + 8 + ] + }, + "5": { + "Id": 131305, + "Name": "{RUBY_B#ぎんわん}銀湾{RUBY_E#}に{RUBY_B#ただよ}漂{RUBY_E#}う{RUBY_B#かみ}紙{RUBY_E#}の{RUBY_B#ふね}船{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 131306, + "Name": "{RUBY_B#ぐんせいけんそう}群星喧騒{RUBY_E#}の{RUBY_B#れいめい}黎明{RUBY_E#}", + "Desc": "天賦の会心率アップ効果が累積可能になる。最大で#1[i]層。また、天賦効果の継続時間+#3[i]ターン。サンデーが必殺技を発動する時、ターゲットに天賦による会心率アップ効果を付与する。また、天賦による会心率アップ効果が発動する時、ターゲットの会心率が100%を超えている場合、1%超過するごとに会心ダメージが#2[i]%アップする。", + "ParamList": [ + 3, + 0.02000000001862645, + 1 + ] + } + }, + "Skills": { + "131301": { + "Id": 131301, + "Name": "{RUBY_B#ひかり}光{RUBY_E#}を{RUBY_B#まと}纏{RUBY_E#}う{RUBY_B#こくゆ}告諭{RUBY_E#}", + "Desc": "指定した敵単体にサンデーの攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131302": { + "Id": 131302, + "Name": "{RUBY_B#かみ}紙{RUBY_E#}と{RUBY_B#しきてん}式典{RUBY_E#}の{RUBY_B#たまもの}賜物{RUBY_E#}", + "Desc": "指定した味方キャラ単体とその召喚物を即座に行動させ、与ダメージ+#2[i]%。ターゲットが召喚物をすでに召喚していた場合、与ダメージアップ効果がさらに+#4[i]%#3[i]ターン継続。\\n「祝福されし者」状態の味方に戦闘スキルを発動した後、SPを1回復する。\\nなお、「調和」の運命を歩むキャラをターゲットにした場合、即座に行動させる効果は発動しない。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.1500000001396984, + 2, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.16499999980442226, + 2, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.18000000016763806, + 2, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.19499999983236194, + 2, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.21000000019557774, + 2, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.2249999998603016, + 2, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.24375000083819032, + 2, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.26250000041909516, + 2, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.28125000069849193, + 2, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.3000000002793968, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.31499999994412065, + 2, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.33000000030733645, + 2, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.3449999999720603, + 2, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.3600000003352761, + 2, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.375, + 2, + 0.6250000002328306 + ] + } + } + }, + "131303": { + "Id": 131303, + "Name": "{RUBY_B#ほうよう}抱擁{RUBY_E#}と{RUBY_B#しょうこん}傷痕{RUBY_E#}の{RUBY_B#さんか}賛歌{RUBY_E#}", + "Desc": "指定した味方キャラ単体の最大EP#1[f1]%分のEPを回復させ、ターゲットとその召喚物に「祝福されし者」状態を付与する。「祝福されし者」状態の味方の会心ダメージが、サンデーの会心ダメージ#2[f1]%分+#4[f1]%アップする。\\n「祝福されし者」状態は#3[i]ターン継続。サンデー自身のターンが回ってくるたびに「祝福されし者」状態の継続時間-1ターン。\\nまた、スキルの効果は必殺技で最後に指定したサンデー以外のターゲットにのみ発揮される。サンデーが戦闘不能状態になる時、「祝福されし者」状態も解除される。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.12000000011175871, + 3, + 0.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 0.13799999956972897, + 3, + 0.08399999979883432 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.20000000018626451, + 0.15599999972619116, + 3, + 0.08799999952316284 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.20000000018626451, + 0.17399999988265336, + 3, + 0.09199999994598329 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.20000000018626451, + 0.19200000003911555, + 3, + 0.09599999967031181 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.21000000019557774, + 3, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20000000018626451, + 0.23250000039115548, + 3, + 0.1049999997485429 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.20000000018626451, + 0.2549999998882413, + 3, + 0.11000000010244548 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.20000000018626451, + 0.27750000008381903, + 3, + 0.11499999975785613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 3, + 0.12000000011175871 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20000000018626451, + 0.31799999973736703, + 3, + 0.12399999983608723 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.20000000018626451, + 0.3359999998938292, + 3, + 0.12799999956041574 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20000000018626451, + 0.3540000000502914, + 3, + 0.1319999999832362 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.20000000018626451, + 0.3720000002067536, + 3, + 0.1359999997075647 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.20000000018626451, + 0.3900000003632158, + 3, + 0.14000000013038516 + ] + } + } + }, + "131304": { + "Id": 131304, + "Name": "{RUBY_B#にくたい}肉体{RUBY_E#}の{RUBY_B#こっかい}告解{RUBY_E#}", + "Desc": "戦闘スキルを発動する時、ターゲットの会心率+#1[f1]%#2[i]ターン継続。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 3 + ] + } + } + }, + "131306": { + "Id": 131306, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131307": { + "Id": 131307, + "Name": "{RUBY_B#えいこう}栄光{RUBY_E#}の{RUBY_B#ひぎ}秘儀{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘でサンデーが初めて味方にスキルを発動する時、ターゲットの与ダメージ+#1[i]%#2[i]ターン継続。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Maze.png", + "LevelUpSkillID": [ + 131307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 40 + ], + "PointID": 1313101, + "PointName": "{RUBY_B#しゅじつ}主日{RUBY_E#}の{RUBY_B#かつぼう}渇望{RUBY_E#}", + "PointDesc": "必殺技を発動する時、ターゲットが回復するEPが#1[i]未満の場合、回復するEPを#1[i]までアップさせる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 25 + ], + "PointID": 1313102, + "PointName": "{RUBY_B#すうこう}崇高{RUBY_E#}なる{RUBY_B#じょうか}浄化{RUBY_E#}", + "PointDesc": "戦闘開始時、サンデーのEPを#1[i]回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1313103, + "PointName": "{RUBY_B#しょうじょう}掌上{RUBY_E#}の{RUBY_B#あんそく}安息{RUBY_E#}", + "PointDesc": "戦闘スキルを発動した時、ターゲットのデバフ#1[i]つ解除する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313201, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313202, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1313101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313203, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1313202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1313201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313205, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1313102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313206, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1313205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313207, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1313201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1313103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313209, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1313208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "効果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313210, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1313208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 72.6000000005588, + "DefenceAdd": 3.630000000586733, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 101.64000000059605, + "DefenceAdd": 3.630000000586733, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 3.630000000586733, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 159.72000000067055, + "DefenceAdd": 3.630000000586733, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 3.630000000586733, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 3.630000000586733, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 246.8400000007823, + "DefenceAdd": 3.630000000586733, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1313, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 317, + 310, + 308 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 187 + ], + "LocalCriticalChance": 1 + } + }, + "1314": { + "Name": "ジェイド", + "Desc": "スターピースカンパニー「戦略投資部」の高級幹部。「十の石心」の1人で、「貸付の翡翠」という基石を所持している。\\n冷たく優雅な貸金屋で、人の心を読むことが得意。個人の趣味で「ポーンショップヒスイ」を経営している。\\n価値あるものを手に入れるためなら、辛抱強く待つことも厭わない。何も持っていないように見える顧客から「価値」を搾取することに長けている。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jade", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 131401, + "Name": "{RUBY_B#むし}無私{RUBY_E#}?\\nそれは{RUBY_B#こうしょうしだい}交渉次第{RUBY_E#}", + "Desc": "ジェイドの天賦による追加攻撃ダメージ+#1[i]%。「債権回収者」状態の味方キャラが攻撃を行い、命中した敵の数が2体/1体の時、ジェイドはチャージを追加で#2[i]/#3[i]獲得する。", + "ParamList": [ + 0.3200000002980232, + 1, + 2 + ] + }, + "2": { + "Id": 131402, + "Name": "{RUBY_B#どうとく}道徳{RUBY_E#}?\\n{RUBY_B#つつし}謹{RUBY_E#}んで{RUBY_B#なついん}捺印{RUBY_E#}", + "Desc": "「質草」が#1[i]層以上の時、ジェイドの会心率+#2[i]%。", + "ParamList": [ + 15, + 0.18000000016763806 + ] + }, + "3": { + "Id": 131403, + "Name": "{RUBY_B#そっちょく}率直{RUBY_E#}?\\n{RUBY_B#しちい}質入{RUBY_E#}れを{RUBY_B#ま}待{RUBY_E#}つのみ", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 131404, + "Name": "{RUBY_B#せいじつ}誠実{RUBY_E#}?\\n{RUBY_B#けいやく}契約{RUBY_E#}に{RUBY_B#したが}従{RUBY_E#}っただけ", + "Desc": "必殺技を発動する時、ジェイドの与えるダメージが敵の防御力を#1[i]%無視する、#2[i]ターン継続。", + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "5": { + "Id": 131405, + "Name": "{RUBY_B#きぼう}希望{RUBY_E#}?\\nすでに{RUBY_B#う}売{RUBY_E#}り{RUBY_B#わた}渡{RUBY_E#}し{RUBY_B#ず}済{RUBY_E#}み", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 131406, + "Name": "{RUBY_B#こうへい}公平{RUBY_E#}?\\nなおも{RUBY_B#たんぽ}担保{RUBY_E#}が{RUBY_B#ひっす}必須{RUBY_E#}", + "Desc": "フィールド上に「債権回収者」状態のキャラがいる時、ジェイドの量子属性耐性貫通+#1[i]%。同時にジェイドも「債権回収者」状態を獲得する。", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "131401": { + "Id": 131401, + "Name": "むしり{RUBY_B#と}取{RUBY_E#}る{RUBY_B#むちう}鞭打{RUBY_E#}ち", + "Desc": "指定した敵単体にジェイドの攻撃力#1[i]%分の量子属性ダメージを与え、隣接する敵にジェイドの攻撃力#2[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5400000005029142, + 0.18000000016763806 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6300000005867332, + 0.21000000019557774 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523, + 0.24000000022351742 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8100000007543713, + 0.2700000002514571 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9900000009220093, + 0.33000000030733645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 0.3600000003352761 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1700000001583248, + 0.3900000003632158 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2600000002421439, + 0.4200000003911555 + ] + } + } + }, + "131402": { + "Id": 131402, + "Name": "ほしいままに{RUBY_B#の}呑{RUBY_E#}み{RUBY_B#こ}込{RUBY_E#}む{RUBY_B#ばいしゅう}買収{RUBY_E#}", + "Desc": "指定した味方単体を「債権回収者」状態にし、その味方の速度+#1[i]#4[i]ターン継続。\\n「債権回収者」状態の味方単体が攻撃を行った後、命中した敵にジェイドの攻撃力#3[i]%分の量子属性付加ダメージを1回与え、その味方のHPを最大HP#2[i]%分消費する。残りHPが足りない場合、その味方の残りHPが1になる。\\nジェイドが「債権回収者」状態の時、ジェイドは速度アップ効果を獲得せず、攻撃を行った後にHPを消費しない。\\nフィールド上に「債権回収者」状態の味方が存在する時、ジェイドは戦闘スキルを発動できない。ジェイドのターンが回ってくるたびに、「債権回収者」状態の継続時間-1ターン。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1500000001396984, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1600000001490116, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 30, + 0.02000000001862645, + 0.17000000015832484, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 30, + 0.02000000001862645, + 0.18000000016763806, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1900000001769513, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 30, + 0.02000000001862645, + 0.20000000018626451, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 30, + 0.02000000001862645, + 0.21250000037252903, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2249999998603016, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 30, + 0.02000000001862645, + 0.23750000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 30, + 0.02000000001862645, + 0.25000000023283064, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 30, + 0.02000000001862645, + 0.26000000024214387, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2700000002514571, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2800000002607703, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 30, + 0.02000000001862645, + 0.29000000027008355, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 30, + 0.02000000001862645, + 0.3000000002793968, + 3 + ] + } + } + }, + "131403": { + "Id": 131403, + "Name": "{RUBY_B#よくぼう}欲望{RUBY_E#}の{RUBY_B#ふち}淵{RUBY_E#}での{RUBY_B#じごく}地獄{RUBY_E#}の{RUBY_B#ちぎ}契{RUBY_E#}り", + "Desc": "敵全体にジェイドの攻撃力#3[i]%分の量子属性ダメージを与える。ジェイドの天賦の追加攻撃を強化し、追加攻撃のダメージ倍率+#1[i]%、この強化追加攻撃は#2[i]回まで発動できる。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 2, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 2, + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 2, + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 2, + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 2, + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 2, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 2, + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 2, + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 2, + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 2, + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 2, + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 2, + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 2, + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 2, + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 2, + 3 + ] + } + } + }, + "131404": { + "Id": 131404, + "Name": "{RUBY_B#とみ}富{RUBY_E#}を{RUBY_B#そ}削{RUBY_E#}ぐ{RUBY_B#どくが}毒牙{RUBY_E#}", + "Desc": "ジェイドまたは「債権回収者」状態の味方が攻撃を行った後、命中した敵1体につき、チャージを1獲得する。チャージが#3[i]に到達した後、チャージを#3[i]消費して追加攻撃を1回行い、敵全体にジェイドの攻撃力#5[i]%分の量子属性ダメージを与える。この追加攻撃はチャージを獲得しない。\\nジェイドが天賦の追加攻撃を行う時、即座に「質草」を#4[i]層獲得する。「質草」1層につき、会心ダメージ+#1[f1]%、最大で#2[i]層累積できる。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.011999999871477485, + 50, + 8, + 5, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.013199999928474426, + 50, + 8, + 5, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.014399999985471368, + 50, + 8, + 5, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.01560000004246831, + 50, + 8, + 5, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.01680000009946525, + 50, + 8, + 5, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.01799999945797026, + 50, + 8, + 5, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.01949999970383942, + 50, + 8, + 5, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.02099999994970858, + 50, + 8, + 5, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.02250000019557774, + 50, + 8, + 5, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.02399999974295497, + 50, + 8, + 5, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.02519999979995191, + 50, + 8, + 5, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.026399999856948853, + 50, + 8, + 5, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.027599999913945794, + 50, + 8, + 5, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.028799999970942736, + 50, + 8, + 5, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.030000000027939677, + 50, + 8, + 5, + 1.5000000004656613 + ] + } + } + }, + "131406": { + "Id": 131406, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131407": { + "Id": 131407, + "Name": "ハンターの{RUBY_B#しかい}視界{RUBY_E#}", + "Desc": "秘技を使用した後、一定範囲内の敵を#1[i]秒間の「盲従」状態にする。「盲従」状態の敵は味方を攻撃しない。「盲従」状態の敵を先制攻撃すると、すべての「盲従」状態の敵と戦闘に入る。戦闘開始後、敵全体にジェイドの攻撃力#2[i]%分の量子属性ダメージを与え、「質草」を#3[i]層獲得する。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 15 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Maze.png", + "LevelUpSkillID": [ + 131407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 1 + ], + "PointID": 1314101, + "PointName": "リバースレポ", + "PointDesc": "敵が戦闘に入る時、ジェイドは「質草」を#2[i]層獲得する。「債権回収者」状態の味方のターンが回ってくる時、ジェイドは「質草」を#1[i]層獲得する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1314102, + "PointName": "{RUBY_B#しちふだ}質札{RUBY_E#}", + "PointDesc": "戦闘開始時、ジェイドの行動順#1[i]%早まる。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.004999999655410647 + ], + "PointID": 1314103, + "PointName": "{RUBY_B#なが}流{RUBY_E#}れ{RUBY_B#もの}物{RUBY_E#}", + "PointDesc": "「質草」1層につき、ジェイドの攻撃力+#1[f1]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314201, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1314101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314203, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1314202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1314202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314205, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1314102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314206, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1314205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314207, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1314205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1314103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314209, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1314103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314210, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "量子属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1314, + "Set4IDList": [ + 108, + 115, + 102 + ], + "Set2IDList": [ + 313, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1315": { + "Name": "ブートヒル", + "Desc": "宇宙を放浪するサイボーグカウボーイ。かなり楽観的で、自由奔放。\\n「巡海レンジャー」の一員で、悪を懲らしめるためなら手段を選ばない——\\nその派手な行動は、復讐の対象である「スターピースカンパニー」の注意を引くためである。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "boothill", + "SPNeed": 115, + "BaseType": "Rogue", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 131501, + "Name": "{RUBY_B#さじん}砂塵{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}の{RUBY_B#いっとうせい}一等星{RUBY_E#}", + "Desc": "戦闘開始時、「ポケットアドバンテージ」を1層獲得する。ブートヒルがダメージを与える時、敵の防御力を#1[i]%無視する。", + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "Id": 131502, + "Name": "マイルストーン・\\nマンガー", + "Desc": "「九死の決闘」状態で「ポケットアドバンテージ」を獲得する時、SPを#1[i]回復する。同時に撃破特効+#2[i]%#3[i]ターン継続。この効果はターンが回ってくるたびに1回まで発動でき、獲得する「ポケットアドバンテージ」が上限を超える時にも触発される。", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 131503, + "Name": "{RUBY_B#はかもり}墓守{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 131504, + "Name": "{RUBY_B#さ}冷{RUBY_E#}めた{RUBY_B#にく}肉{RUBY_E#}の{RUBY_B#りょうりにん}料理人{RUBY_E#}", + "Desc": "「九死の決闘」状態の敵がブートヒルの攻撃を受ける時、被ダメージアップ効果さらに+#1[i]%。ブートヒルが「九死の決闘」状態の敵の攻撃を受ける時、被ダメージアップ効果-#2[i]%。", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "5": { + "Id": 131505, + "Name": "{RUBY_B#き}切{RUBY_E#}り{RUBY_B#かぶ}株{RUBY_E#}の{RUBY_B#えんぜつか}演説家{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 131506, + "Name": "{RUBY_B#てつごうし}鉄格子{RUBY_E#}ホテルの{RUBY_B#じょうれん}常連{RUBY_E#}", + "Desc": "天賦を触発して弱点撃破ダメージを与える時、ターゲットに対してさらに本来のダメージ倍率#1[i]%分の弱点撃破ダメージを与え、隣接する敵に本来のダメージ倍率#2[i]%分の弱点撃破ダメージを与える。", + "ParamList": [ + 0.40000000037252903, + 0.7000000006519258 + ] + } + }, + "Skills": { + "131501": { + "Id": 131501, + "Name": "スパーズ・クラッシュ", + "Desc": "指定した敵単体にブートヒルの攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131502": { + "Id": 131502, + "Name": "{RUBY_B#ねっさ}熱砂{RUBY_E#}のタンゴ", + "Desc": "指定した敵単体と自身を「九死の決闘」状態にする。この状態のブートヒルは戦闘スキルを発動できず、通常攻撃が「ファニング」に強化される、#3[i]ターン継続。ブートヒルのターンが回ってくるたびに、「九死の決闘」の継続時間-1ターン。\\n「九死の決闘」状態にある敵は、挑発状態と見なされる。その敵がブートヒルの攻撃を受ける時、受けるダメージ+#1[i]%。また、ブートヒルがその敵の攻撃を受ける時、受けるダメージ+#2[i]%。\\nその敵が倒される、または弱点撃破された後、ブートヒルは「ポケットアドバンテージ」を1層獲得し、「九死の決闘」状態を解除する。\\nこの戦闘スキルはEPを回復できない。また、この戦闘スキルを発動した後、ターンは終了しない。", + "Type": "BPSkill", + "Tag": "Impair", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 0.1500000001396984, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 0.1500000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 0.1500000001396984, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 0.1500000001396984, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 0.1500000001396984, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 0.1500000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 0.1500000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 0.1500000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 0.1500000001396984, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 0.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 0.1500000001396984, + 2 + ] + } + } + }, + "131503": { + "Id": 131503, + "Name": "ダストデビル・ダンサー", + "Desc": "指定した敵単体に物理属性弱点を付与する、#3[i]ターン継続。\\nその敵にブートヒルの攻撃力#1[i]%分の物理属性ダメージを与え、行動順#2[i]%遅延させる。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406, + 0.31000000028871, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523, + 0.3200000002980232, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564, + 0.33000000030733645, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253, + 0.3400000003166497, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645, + 0.3500000003259629, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529, + 0.3625000005122274, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935, + 0.375, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058, + 0.3875000001862645, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.40000000037252903, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012, + 0.41000000038184226, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023, + 0.4200000003911555, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035, + 0.4300000004004687, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464, + 0.44000000040978193, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058, + 0.45000000041909516, + 2 + ] + } + } + }, + "131504": { + "Id": 131504, + "Name": "{RUBY_B#ごはつ}5発{RUBY_E#}の{RUBY_B#じゅうだん}銃弾{RUBY_E#}", + "Desc": "「ポケットアドバンテージ」1層につき、「ファニング」の削靭値+#4[i]%、最大で#5[i]累積できる。\\n強化通常攻撃を行っている間、敵が弱点撃破状態の場合、「ポケットアドバンテージ」の層数に応じて、その敵にブートヒルの物理属性弱点撃破ダメージ#1[i]%/#2[i]%/#3[i]%分の弱点撃破ダメージを与える。この弱点撃破ダメージにカウントされる靭性は、通常攻撃「スパーズ・クラッシュ」の基礎削靭値の#6[i]倍を超えない。\\n戦闘に勝利した後、ブートヒルは「ポケットアドバンテージ」を次の戦闘に持ち越せる。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 0.6000000005587935, + 0.8500000007916242, + 0.5000000004656613, + 3, + 16 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 0.6600000006146729, + 0.9350000005215406, + 0.5000000004656613, + 3, + 16 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 0.7200000006705523, + 1.0200000000186265, + 0.5000000004656613, + 3, + 16 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 0.7800000007264316, + 1.104999999748543, + 0.5000000004656613, + 3, + 16 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 0.840000000782311, + 1.1900000001769513, + 0.5000000004656613, + 3, + 16 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 0.9000000008381903, + 1.2749999999068677, + 0.5000000004656613, + 3, + 16 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 0.9750000005587935, + 1.3812500007916242, + 0.5000000004656613, + 3, + 16 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 1.0500000000465661, + 1.4875000002793968, + 0.5000000004656613, + 3, + 16 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 1.1249999997671694, + 1.5937500011641532, + 0.5000000004656613, + 3, + 16 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 1.2000000001862645, + 1.7000000006519258, + 0.5000000004656613, + 3, + 16 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 1.2600000002421439, + 1.7850000003818423, + 0.5000000004656613, + 3, + 16 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 1.3200000002980232, + 1.8700000008102506, + 0.5000000004656613, + 3, + 16 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 1.3800000003539026, + 1.955000000540167, + 0.5000000004656613, + 3, + 16 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 1.440000000409782, + 2.040000000037253, + 0.5000000004656613, + 3, + 16 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 1.5000000004656613, + 2.1249999997671694, + 0.5000000004656613, + 3, + 16 + ] + } + } + }, + "131506": { + "Id": 131506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131507": { + "Id": 131507, + "Name": "ビッグ・スマイル", + "Desc": "秘技を使用した後、次の戦闘で初めて戦闘スキルを発動する時、敵に必殺技が与えるものと同じ物理属性弱点を付与する、#1[i]ターン継続。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + }, + "131508": { + "Id": 131508, + "Name": "ファニング", + "Desc": "指定した敵単体にブートヒルの攻撃力#1[i]%分の物理属性ダメージを与える。\\n強化通常攻撃はSPを回復できず、「九死の決闘」状態の敵のみを攻撃できる。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5400000005029142 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7600000007078052 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9800000009126961 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.4200000003911555 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.6400000005960464 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.8600000008009374 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.080000000074506 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Maze.png", + "LevelUpSkillID": [ + 131507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 0.5000000004656613, + 1.5000000004656613 + ], + "PointID": 1315101, + "PointName": "ゴーストロード", + "PointDesc": "自身の会心率を、撃破特効の#1[i]%分アップする。最大で会心率+#2[i]%。\\n自身の会心ダメージを、撃破特効の#3[i]%分アップする。最大で会心ダメージ+#4[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1315102, + "PointName": "{RUBY_B#しち}死地{RUBY_E#}からの{RUBY_B#だっしゅつ}脱出{RUBY_E#}", + "PointDesc": "ブートヒルが「九死の決闘」状態の場合、「九死の決闘」状態でない敵の攻撃を受ける時、受けるダメージ-#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1315103, + "PointName": "ポイントブランク", + "PointDesc": "「九死の決闘」の状態で「ポケットアドバンテージ」を獲得する時、EPを#1[i]回復する。この効果は獲得する「ポケットアドバンテージ」が上限を超える時にも発動する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315201, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1315101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315203, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1315202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315205, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1315102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315206, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1315205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315207, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1315103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315209, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1315208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315210, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1315208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "撃破特効" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1315, + "Set4IDList": [ + 111, + 119, + 102 + ], + "Set2IDList": [ + 307, + 316, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase" + ], + "ScoreRankList": [ + 280, + 226 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1317": { + "Name": "{RUBY_B#らんは}乱破{RUBY_E#}", + "Desc": "ウシミツ・アワーの閃光弾のようにピノコニーに現れ、この世のすべてを「忍法」に結びつける、自称忍者の不思議な少女。\\n乱破の「忍道」には、シノビ・マントラ(=ラップ)を吟じ、繚乱・忍符(=落書き)を描き、シノビ・マキモノ(=マンガ)を修めることが含まれている。彼女は自らの意志を磨き上げながら銀河を駆け巡る義侠なのだ。\\n「巡海レンジャー」の一員として、「御猿・忍邪」という名の悪党を銀河の果てまで追い続けている。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "rappa", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 131701, + "Name": "{RUBY_B#トコヨ}常世{RUBY_E#}ノ{RUBY_B#ミチ}道{RUBY_E#}、\\n{RUBY_B#サンズ}三途{RUBY_E#}ニ{RUBY_B#ロクモンセンナ}六文銭無{RUBY_E#}シ", + "Desc": "必殺技を発動し「結印」状態となっている間、乱破が与えるダメージは敵の防御力を#1[i]%無視する。また、「結印」状態が終了した後、EPを#2[i]回復する。", + "ParamList": [ + 0.1500000001396984, + 20 + ] + }, + "2": { + "Id": 131702, + "Name": "{RUBY_B#ハイク}俳句{RUBY_E#}ノ{RUBY_B#アンキ}暗記{RUBY_E#}、\\n{RUBY_B#ユウシキ}有識{RUBY_E#}ニ{RUBY_B#ケイゲナ}罣礙無{RUBY_E#}シ", + "Desc": "指定した敵単体に対する、強化通常攻撃の1、2段目の削靭値+#1[i]%。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Id": 131703, + "Name": "{RUBY_B#ガラン}伽藍{RUBY_E#}ノ{RUBY_B#ドウ}堂{RUBY_E#}、\\n{RUBY_B#ムゲンゴク}無間獄{RUBY_E#}ニ{RUBY_B#ショウホウナ}正法無{RUBY_E#}シ", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 131704, + "Name": "{RUBY_B#ケイネンレッカ}経年劣化{RUBY_E#}、\\n{RUBY_B#ニンキョウ}任侠{RUBY_E#}ニ{RUBY_B#ニンギナ}忍義無{RUBY_E#}シ", + "Desc": "「結印」状態の間、味方全体の速度+#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 131705, + "Name": "{RUBY_B#イッシンフラン}一心不乱{RUBY_E#}、\\n{RUBY_B#メイゲン}鳴弦{RUBY_E#}ニ{RUBY_B#アダヤナ}徒矢無{RUBY_E#}シ", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 131706, + "Name": "{RUBY_B#ハジャケンショウ}破邪顕正{RUBY_E#}、\\n{RUBY_B#アクト}悪徒{RUBY_E#}ニ{RUBY_B#ジヒナ}慈悲無{RUBY_E#}シ", + "Desc": "天賦の効果で獲得できるチャージを戦闘開始時に#1[i]獲得し、さらに上限を+#2[i]する。また、「忍具・降魔の花弁」の3段目の攻撃を行った後、チャージ+#1[i]。", + "ParamList": [ + 5, + 5 + ] + } + }, + "Skills": { + "131701": { + "Id": 131701, + "Name": "{RUBY_B#にんぽう}忍法{RUBY_E#}・{RUBY_B#しちてんはっき}七転八起{RUBY_E#}", + "Desc": "指定した敵単体に乱破の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131702": { + "Id": 131702, + "Name": "{RUBY_B#にんせつ}忍切{RUBY_E#}・{RUBY_B#しょしかんてつ}初志貫徹{RUBY_E#}", + "Desc": "敵全体に乱破の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613 + ] + } + } + }, + "131703": { + "Id": 131703, + "Name": "{RUBY_B#にんどう}忍道{RUBY_E#}・{RUBY_B#きわみ}極{RUBY_E#}・{RUBY_B#あいしてる}愛死天流{RUBY_E#}", + "Desc": "「結印」状態に入り、即座に追加ターンを1ターン、「彩墨」を#3[i]獲得する。同時に弱点撃破効率+#1[i]%、撃破特効+#2[i]%。\\n「結印」状態の間、通常攻撃が強化されるが、戦闘スキルおよび必殺技は発動できない。強化通常攻撃を行うと「彩墨」が1消費され、0になると「結印」状態が終了する。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 0.12000000011175871, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 0.14000000013038516, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 0.1600000001490116, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 0.18000000016763806, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 0.2249999998603016, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 0.27499999990686774, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 0.3200000002980232, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 0.3400000003166497, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 0.3600000003352761, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 0.3800000003539026, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903, + 3 + ] + } + } + }, + "131704": { + "Id": 131704, + "Name": "シノビ・サイエンス・{RUBY_B#かんにんぶくろ}堪忍袋{RUBY_E#}", + "Desc": "敵が弱点撃破される時、乱破はチャージを1獲得する。最大で#1[i]まで獲得可能。\\n乱破が次の「忍具・降魔の花弁」による3段目の攻撃を行う時、すべてのチャージを消費し、敵全体に乱破の虚数属性弱点撃破ダメージ#3[i]%分の弱点撃破ダメージを与え、弱点属性を無視して靭性を#4[i]削る。この3段目の攻撃は消費したチャージ1につき、弱点撃破ダメージの倍率+#5[i]%、削靭値+#6[i]。\\n敵を弱点撃破する時、虚数属性の弱点撃破効果を発動する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 6, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0, + 0.3000000002793968, + 2, + 0.25000000023283064, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 10, + 0, + 0.33000000030733645, + 2, + 0.27499999990686774, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 10, + 0, + 0.3600000003352761, + 2, + 0.3000000002793968, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 10, + 0, + 0.3900000003632158, + 2, + 0.32499999995343387, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 10, + 0, + 0.4200000003911555, + 2, + 0.3500000003259629, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 10, + 0, + 0.45000000041909516, + 2, + 0.375, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 10, + 0, + 0.4875000002793968, + 2, + 0.4062500004656613, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 10, + 0, + 0.5250000001396984, + 2, + 0.43750000023283064, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 10, + 0, + 0.5625000006984919, + 2, + 0.46875000069849193, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10, + 0, + 0.6000000005587935, + 2, + 0.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10, + 0, + 0.6300000005867332, + 2, + 0.5250000001396984, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 10, + 0, + 0.6600000006146729, + 2, + 0.5500000005122274, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 10, + 0, + 0.6900000006426126, + 2, + 0.5750000001862645, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 10, + 0, + 0.7200000006705523, + 2, + 0.6000000005587935, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 10, + 0, + 0.7500000006984919, + 2, + 0.6250000002328306, + 1 + ] + } + } + }, + "131706": { + "Id": 131706, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131707": { + "Id": 131707, + "Name": "シノビ・{RUBY_B#ぶっちぎり}歩血義理{RUBY_E#}", + "Desc": "秘技を使用した後、#1[i]秒間継続する「スプラッシュ」状態に入る。「スプラッシュ」状態の間、前方に素早く一定距離移動し、触れた敵を攻撃する。移動中は敵からの攻撃をすべて防ぐことができるが、この状態で攻撃を行うと「スプラッシュ」状態は終了する。敵を先制攻撃して戦闘に入った後、弱点属性を無視して敵それぞれの靭性を#5[i]削り、乱破の虚数属性弱点撃破ダメージ#2[i]%分の弱点撃破ダメージを与え、敵それぞれと隣接する敵に乱破の虚数属性弱点撃破ダメージ#3[i]%分の弱点撃破ダメージを与え、自身のEPを#4[i]回復する。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 2, + 1.800000000745058, + 10, + 30 + ] + } + } + }, + "131708": { + "Id": 131708, + "Name": "{RUBY_B#にんぐ}忍具{RUBY_E#}・{RUBY_B#こうま}降魔{RUBY_E#}の{RUBY_B#かべん}花弁{RUBY_E#}", + "Desc": "「忍具・降魔の花弁」を発動する。1、2段目の攻撃は指定した敵単体に乱破の攻撃力#1[i]%分の虚数属性ダメージを与え、隣接する敵に乱破の攻撃力#2[i]%分の虚数属性ダメージを与える。3段目の攻撃は敵全体に乱破の攻撃力#3[i]%分の虚数属性ダメージを与える。\\n強化通常攻撃はSPを回復できないが、虚数属性弱点を持たない敵に対しても本来の削靭値#4[i]%分の靭性を削ることができる。乱破が敵を弱点撃破する時、虚数属性の弱点撃破効果が発動する。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497, + 0.6800000006332994, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026, + 0.7600000007078052, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.840000000782311, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084, + 0.9200000008568168, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142, + 1.0800000000745058, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671, + 1.1600000001490116, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742, + 1.2400000002235174, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 1.3200000002980232, + 0.5000000004656613 + ] + } + } + }, + "131710": { + "Id": 131710, + "Name": "{RUBY_B#にんぐ}忍具{RUBY_E#}・{RUBY_B#こうま}降魔{RUBY_E#}の{RUBY_B#かべん}花弁{RUBY_E#}", + "Desc": null, + "Type": "Normal", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729 + ] + } + } + }, + "131712": { + "Id": 131712, + "Name": "{RUBY_B#にんぐ}忍具{RUBY_E#}・{RUBY_B#こうま}降魔{RUBY_E#}の{RUBY_B#かべん}花弁{RUBY_E#}", + "Desc": null, + "Type": "Normal", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232 + ] + } + } + }, + "131718": { + "Id": 131718, + "Name": "{RUBY_B#にんぐ}忍具{RUBY_E#}・{RUBY_B#こうま}降魔{RUBY_E#}の{RUBY_B#かべん}花弁{RUBY_E#}", + "Desc": "「忍具・降魔の花弁」を発動する。1、2段目の攻撃は指定した敵単体に乱破の攻撃力#1[i]%分の虚数属性ダメージを与え、隣接する敵に乱破の攻撃力#2[i]%分の虚数属性ダメージを与える。3段目の攻撃は敵全体に乱破の攻撃力#3[i]%分の虚数属性ダメージを与える。\\n強化通常攻撃はSPを回復できないが、虚数属性弱点を持たない敵に対しても本来の削靭値#4[i]%分の靭性を削ることができる。乱破が敵を弱点撃破する時、虚数属性の弱点撃破効果が発動する。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 75, + 0, + 45 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497, + 0.6800000006332994, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026, + 0.7600000007078052, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.840000000782311, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084, + 0.9200000008568168, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142, + 1.0800000000745058, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671, + 1.1600000001490116, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742, + 1.2400000002235174, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 1.3200000002980232, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Maze.png", + "LevelUpSkillID": [ + 131707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 1 + ], + "PointID": 1317101, + "PointName": "{RUBY_B#にんぽうちょう}忍法帖{RUBY_E#}・{RUBY_B#まてん}魔天{RUBY_E#}", + "PointDesc": "精鋭エネミー以上の敵が弱点撃破される時、乱破はさらにチャージを#2[i]獲得し、EPを#1[i]回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935 + ], + "PointID": 1317102, + "PointName": "{RUBY_B#にんぽうちょう}忍法帖{RUBY_E#}・{RUBY_B#かいめい}海鳴{RUBY_E#}", + "PointDesc": "「結印」状態の間、乱破が強化通常攻撃を発動し、弱点撃破状態の敵にダメージを与えた後、その回のダメージの削靭値を#1[i]%分の超撃破ダメージに転換する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.02000000001862645, + 2400, + 0.010000000009313226, + 0.0800000000745058, + 2 + ], + "PointID": 1317103, + "PointName": "{RUBY_B#にんぽうちょう}忍法帖{RUBY_E#}・{RUBY_B#かれは}枯葉{RUBY_E#}", + "PointDesc": "敵が弱点撃破される時に受ける弱点撃破ダメージ+#1[i]%。その際、乱破の攻撃力が#2[i]を超えている場合、超過した攻撃力100につき、敵が受ける弱点撃破ダメージが+#3[i]%、最大で+#4[i]%まで。この効果は#5[i]ターン継続する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317202, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1317101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1317202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317204, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1317202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1317102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317206, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1317205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1317205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317208, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1317103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317209, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1317103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 97.6800000006333, + "AttackAdd": 4.884000000543892, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 136.75200000056066, + "AttackAdd": 4.884000000543892, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 175.824000000488, + "AttackAdd": 4.884000000543892, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 214.89600000041537, + "AttackAdd": 4.884000000543892, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 253.96800000034273, + "AttackAdd": 4.884000000543892, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 293.04000000003725, + "AttackAdd": 4.884000000543892, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 332.1119999999646, + "AttackAdd": 4.884000000543892, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1317, + "Set4IDList": [ + 119, + 111, + 118 + ], + "Set2IDList": [ + 307, + 316, + 301 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 246, + 189 + ] + } + }, + "1401": { + "Name": "マダム・ヘルタ", + "Desc": "尊貴なる「天才クラブ」#83。人類で、女性で、若く、美しく、そして可愛い。\\n噂によると、彼女は銀河の辺境でひっそりと暮らしており、そこから離れることは滅多にないという。そんな彼女が今回姿を現したのは、おそらく——\\n自ら対処しなければならない問題が起きたからだろう。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "theherta", + "SPNeed": 220, + "BaseType": "Mage", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 140101, + "Name": "{RUBY_B#ぐんせい}群星{RUBY_E#}が{RUBY_B#ふ}降{RUBY_E#}る{RUBY_B#よる}夜{RUBY_E#}", + "Desc": "強化戦闘スキルで「解読」の層数を計算する時、スキルのメインターゲットおよび隣接する敵の中で、最も「解読」の層数が多い敵1体の層数#1[i]%分を計算に加える。強化戦闘スキルを発動して「解読」をリセットした時、「解読」の層数は#2[i]層にリセットされる。", + "ParamList": [ + 0.5000000004656613, + 15 + ] + }, + "2": { + "Id": 140102, + "Name": "{RUBY_B#かぎあな}鍵穴{RUBY_E#}を{RUBY_B#ふ}吹{RUBY_E#}き{RUBY_B#ぬ}抜{RUBY_E#}ける{RUBY_B#かぜ}風{RUBY_E#}", + "Desc": "マダム・ヘルタが戦闘に入る、または必殺技を発動した後、追加で「第六感」を1層獲得する。強化戦闘スキルを発動した後、マダム・ヘルタの次の行動順#1[i]%早まる。", + "ParamList": [ + 0.3500000003259629, + 42, + 0.25000000023283064 + ] + }, + "3": { + "Id": 140103, + "Name": "{RUBY_B#まなつ}真夏{RUBY_E#}の{RUBY_B#とびら}扉{RUBY_E#}の{RUBY_B#む}向{RUBY_E#}こう", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 140104, + "Name": "{RUBY_B#じゅうろっぽんめ}十六本目{RUBY_E#}の{RUBY_B#かぎ}鍵{RUBY_E#}", + "Desc": "パーティ内の「知恵」の運命を歩むキャラクターの速度+#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 140105, + "Name": "{RUBY_B#しんじつ}真実{RUBY_E#}は\\n{RUBY_B#りょうやく}良薬{RUBY_E#}のように{RUBY_B#にが}苦{RUBY_E#}い", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 140106, + "Name": "{RUBY_B#こた}答{RUBY_E#}えは\\n{RUBY_B#ゆうわく}誘惑{RUBY_E#}のように{RUBY_B#あま}甘{RUBY_E#}い", + "Desc": "マダム・ヘルタの氷属性耐性貫通+#4[i]%。\\nまた、必殺技のダメージ倍率がフィールド上の敵の数に応じてアップする。\\n敵の数が3体以上の場合、必殺技のダメージ倍率+#1[i]%。\\n敵の数が2体の場合、必殺技のダメージ倍率+#2[i]%。\\n敵の数が1体の場合、必殺技のダメージ倍率+#3[i]%。", + "ParamList": [ + 1.400000000372529, + 2.5000000004656613, + 4, + 0.20000000018626451 + ] + } + }, + "Skills": { + "140101": { + "Id": 140101, + "Name": "これでわかった?", + "Desc": "指定した敵単体にマダム・ヘルタの攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 3, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 3, + 1, + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 3, + 1, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 3, + 1, + 0.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 3, + 1, + 0.3000000002793968 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 3, + 1, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 3, + 1, + 0.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 3, + 1, + 0.3000000002793968 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 3, + 1, + 0.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 3, + 1, + 0.3000000002793968 + ] + } + } + }, + "140102": { + "Id": 140102, + "Name": "{RUBY_B#しや}視野{RUBY_E#}が{RUBY_B#せま}狭{RUBY_E#}いよ", + "Desc": "指定した敵単体にマダム・ヘルタの攻撃力#1[i]%分の氷属性ダメージを与え、「解読」を#2[i]層付与する。\\nその回の戦闘スキルが命中した敵および隣接する敵に、マダム・ヘルタの攻撃力#1[i]%分の氷属性ダメージを与える。2回繰り返す。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 45, + 15, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 1 + ] + } + } + }, + "140103": { + "Id": 140103, + "Name": "{RUBY_B#まほう}魔法{RUBY_E#}だって{RUBY_B#い}言{RUBY_E#}ったでしょ", + "Desc": "敵それぞれが持つ「解読」の層数を並び替える。なお、精鋭エネミー以上の敵にはより多い層数を優先的に転移させる。また、敵全体にマダム・ヘルタの攻撃力#1[i]%分の氷属性ダメージを与える。\\n必殺技を発動する時、マダム・ヘルタの攻撃力+#4[i]%#5[i]ターン継続。\\n必殺技を発動した後、マダム・ヘルタが即座に行動し、「第六感」を1層獲得する。「第六感」は最大で#6[i]層累積できる。「第六感」を持つ時、戦闘スキル「視野が狭いよ」が「大胆なアイデア」に強化される。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 1, + 0.40000000037252903, + 3, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 2, + 1, + 0.44000000040978193, + 3, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 2, + 1, + 0.48000000044703484, + 3, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 2, + 1, + 0.5200000004842877, + 3, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 2, + 1, + 0.5600000005215406, + 3, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 2, + 1, + 0.6000000005587935, + 3, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 2, + 1, + 0.6500000006053597, + 3, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 2, + 1, + 0.7000000006519258, + 3, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 2, + 1, + 0.7500000006984919, + 3, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 2, + 1, + 0.8000000007450581, + 3, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 2, + 1, + 0.840000000782311, + 3, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 2, + 1, + 0.8800000008195639, + 3, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 2, + 1, + 0.9200000008568168, + 3, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 2, + 1, + 0.9600000008940697, + 3, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 2, + 1, + 1, + 3, + 4 + ] + } + } + }, + "140104": { + "Id": 140104, + "Name": "{RUBY_B#わたし}私{RUBY_E#}がもらうね", + "Desc": "敵が戦闘に入る時、マダム・ヘルタはその敵に「解読」を1層付与する。各ウェーブ開始時、ランダムな敵1体に「解読」を#6[i]層付与する。この時、「解読」は精鋭エネミー以上の敵に優先的に付与される。\\n強化戦闘スキルのメインターゲットに「解読」がある時、強化戦闘スキルのダメージ倍率がアップする。「解読」1層につき、メインターゲットに対するダメージ倍率+#1[f1]%、他のターゲットに対するダメージ倍率+#2[f1]%。パーティ内の「知恵」の運命を歩むキャラクターが2名以上の場合、さらに「解読」1層につき、メインターゲットに対するダメージ倍率+#1[f1]%、他のターゲットに対するダメージ倍率+#2[f1]%。\\n「解読」は最大で#3[i]層累積できる。強化戦闘スキルを発動した後、メインターゲットの「解読」層数を1層にリセットし、敵が一時離脱、あるいは任意のユニットに倒された後、「解読」が転移する。なお、「解読」は精鋭エネミー以上の敵を優先して転移する。", + "Type": null, + "Tag": "Enhance", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 0.02000000001862645, + 42, + 1, + 42, + 25 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04399999976158142, + 0.02199999988079071, + 42, + 1, + 42, + 25 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04799999948590994, + 0.02399999974295497, + 42, + 1, + 42, + 25 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.05199999990873039, + 0.02599999960511923, + 42, + 1, + 42, + 25 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.055999999633058906, + 0.027999999467283487, + 42, + 1, + 42, + 25 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.060000000055879354, + 0.030000000027939677, + 42, + 1, + 42, + 25 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06499999971129, + 0.032500000204890966, + 42, + 1, + 42, + 25 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.07000000006519258, + 0.034999999683350325, + 42, + 1, + 42, + 25 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07499999972060323, + 0.037499999860301614, + 42, + 1, + 42, + 25 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529, + 42, + 1, + 42, + 25 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.08399999979883432, + 0.04199999989941716, + 42, + 1, + 42, + 25 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.08799999952316284, + 0.04399999976158142, + 42, + 1, + 42, + 25 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.09199999994598329, + 0.04599999962374568, + 42, + 1, + 42, + 25 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.09599999967031181, + 0.04799999948590994, + 42, + 1, + 42, + 25 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.10000000009313226, + 0.05000000004656613, + 42, + 1, + 42, + 25 + ] + } + } + }, + "140106": { + "Id": 140106, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140107": { + "Id": 140107, + "Name": "{RUBY_B#おもしろ}面白{RUBY_E#}いの{RUBY_B#み}見{RUBY_E#}せてよ", + "Desc": "秘技を使用した後、次の戦闘開始時、マダム・ヘルタの攻撃力+#1[i]%#2[i]ターン継続。\\nマップ内に普通の戦利品がある場合、秘技を使用すると普通の戦利品の位置を最大で#3[i]箇所マークする。\\n模擬宇宙、または階差宇宙で秘技を使用して戦闘に入った後、各ウェーブ開始時に通常エネミーそれぞれに、その敵の最大HP#4[i]%分の確定ダメージを与え、精鋭エネミー以上の敵それぞれに、その敵の最大HP#5[i]%分の確定ダメージを与える。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 2, + 3, + 0.9900000009220093, + 0.3000000002793968, + 25 + ] + } + } + }, + "140109": { + "Id": 140109, + "Name": "{RUBY_B#だいたん}大胆{RUBY_E#}なアイデア", + "Desc": "「第六感」を1層消費し、指定した敵単体にマダム・ヘルタの攻撃力#1[i]%分の氷属性ダメージを与え、「解読」を#2[i]層付与する。\\nその回の戦闘スキルが命中した敵および隣接する敵に、マダム・ヘルタの攻撃力#1[i]%分の氷属性ダメージを与える。2回繰り返す。\\n最後に、敵全体にマダム・ヘルタの攻撃力#3[i]%分の氷属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 15, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1, + 0.22000000020489097 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1, + 0.24000000022351742 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1, + 0.26000000024214387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1, + 0.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1, + 0.32499999995343387 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1, + 0.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1, + 0.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1, + 0.44000000040978193 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1, + 0.4600000004284084 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1, + 0.48000000044703484 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Maze.png", + "LevelUpSkillID": [ + 140107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.5000000004656613 + ], + "PointID": 1401101, + "PointName": "{RUBY_B#つめ}冷{RUBY_E#}たい{RUBY_B#しんじつ}真実{RUBY_E#}", + "PointDesc": "味方が攻撃を行う時、攻撃が命中する敵に「解読」を1層付与する。攻撃を行った後、その回の攻撃で命中した敵1体につき、マダム・ヘルタはEPを固定で#1[i]回復する。カウントされる敵は最大5体まで。\\n強化戦闘スキルを発動する時、メインターゲットの「解読」が42層に達している場合、マダム・ヘルタの与ダメージ+#2[i]%。この強化はその回の攻撃が終了するまで継続する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 3, + 1, + 2 + ], + "PointID": 1401102, + "PointName": "{RUBY_B#きょうかい}境界{RUBY_E#}からの{RUBY_B#たよ}便{RUBY_E#}り", + "PointDesc": "戦闘に入る時、パーティに「知恵」の運命を歩むキャラが2名以上いる場合、以下の効果が発動される。\\n味方全体の会心ダメージ+#1[i]%、軌跡「冷たい真実」で命中した敵の数を計算する時、少なくとも#2[i]体を計算に加える。攻撃を行った後、命中した敵の中で「解読」層数が最も多い敵に「解読」を#3[i]層付与する。攻撃者が「知恵」の運命を歩むキャラクターである場合、追加で「解読」を#4[i]層付与する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.010000000009313226, + 99 + ], + "PointID": 1401103, + "PointName": "{RUBY_B#う}飢{RUBY_E#}えた{RUBY_B#ちけい}地景{RUBY_E#}", + "PointDesc": "敵に「解読」が1層付与されるたびに、マダム・ヘルタは「回答」を1層獲得する、最大で#2[i]層累積できる。必殺技を発動する時、「回答」1層につき、その回の必殺技のダメージ倍率+#1[f1]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401201, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1401101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401203, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1401202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401204, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1401202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401205, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1401102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401206, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1401205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401207, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1401205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "氷属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401208, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1401103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401209, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1401103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401210, + "PointName": "ダメージ強化・氷", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "氷属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1401, + "Set4IDList": [ + 122, + 104, + 102 + ], + "Set2IDList": [ + 314, + 309, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1402": { + "Name": "アグライア", + "Desc": "黎明の光に照らされた聖都で、その織り手は金糸を撫で、運命を紡ぐ。\\n「浪漫」の火種を背負う黄金裔は、この世界の英雄たちを呼び集め、彼らを再び長き旅路へと導く者である。\\n——神々を討ち、神火を手に入れ、滅亡の危機に瀕したオンパロスに新生をもたらすのだ。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "aglaea", + "SPNeed": 350, + "BaseType": "Memory", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 140201, + "Name": "{RUBY_B#きん}金{RUBY_E#}の{RUBY_B#ほし}星{RUBY_E#}の{RUBY_B#きどう}軌道{RUBY_E#}を{RUBY_B#ただよ}漂{RUBY_E#}って", + "Desc": "「隙を縫う糸」状態の敵の受けるダメージ+#1[i]%。アグライアまたは「ラフトラ」が「隙を縫う糸」状態の敵を攻撃した後、さらにEPを#2[i]回復する。", + "ParamList": [ + 0.1500000001396984, + 20 + ] + }, + "2": { + "Id": 140202, + "Name": "{RUBY_B#うんめい}運命{RUBY_E#}の{RUBY_B#まぶた}瞼{RUBY_E#}を{RUBY_B#ゆ}行{RUBY_E#}く{RUBY_B#ふね}舟{RUBY_E#}", + "Desc": "アグライアまたは「ラフトラ」が行動する時、アグライアとラフトラの与えるダメージが敵の防御力を#1[i]%無視する。この効果は最大で#2[i]層累積でき、アグライアとラフトラ以外の任意のユニットがスキルを発動する時まで継続する。", + "ParamList": [ + 0.14000000013038516, + 3 + ] + }, + "3": { + "Id": 140203, + "Name": "{RUBY_B#かれい}華麗{RUBY_E#}な{RUBY_B#つゆ}露{RUBY_E#}の{RUBY_B#たまもの}賜物{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。精霊天賦のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 140204, + "Name": "{RUBY_B#だいりせき}大理石{RUBY_E#}の{RUBY_B#うち}内{RUBY_E#}なる{RUBY_B#かがや}輝{RUBY_E#}き", + "Desc": "精霊天賦の速度アップ効果の累積上限+#1[i]層。「ラフトラ」はアグライアが攻撃を行った後にも、精霊天賦の速度アップ効果を獲得できる。", + "ParamList": [ + 1, + 2 + ] + }, + "5": { + "Id": 140205, + "Name": "{RUBY_B#しっこく}漆黒{RUBY_E#}の{RUBY_B#くなん}苦難{RUBY_E#}の{RUBY_B#お}織{RUBY_E#}り{RUBY_B#て}手{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。精霊スキルのLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 140206, + "Name": "{RUBY_B#くうきょ}空虚{RUBY_E#}で{RUBY_B#むじょう}無常{RUBY_E#}なる{RUBY_B#きんし}金糸{RUBY_E#}", + "Desc": "アグライアが「至高の姿」状態の時、自身と「ラフトラ」の雷属性耐性貫通+#1[i]%。\\nこの状態中、アグライアの速度が160/240/320を超える時、自身の連携攻撃ダメージ+#2[i]%/#3[i]%/#4[i]%。\\nさらに、ラフトラの速度が160/240/320を超える時、自身の連携攻撃ダメージ+#2[i]%/#3[i]%/#4[i]%。", + "ParamList": [ + 0.20000000018626451, + 0.10000000009313226, + 0.3000000002793968, + 0.6000000005587935 + ] + } + }, + "Skills": { + "140201": { + "Id": 140201, + "Name": "サイフォスの{RUBY_B#みつ}蜜{RUBY_E#}", + "Desc": "指定した敵単体にアグライアの攻撃力#1[i]%分の雷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1 + ] + } + } + }, + "140202": { + "Id": 140202, + "Name": "{RUBY_B#かか}掲{RUBY_E#}げよ、{RUBY_B#しょうか}昇華{RUBY_E#}せし{RUBY_B#な}名{RUBY_E#}を", + "Desc": "「ラフトラ」のHPを最大HP#1[i]%分回復する。ラフトラがフィールド上にいない場合、記憶の精霊ラフトラを召喚し、自身が即座に行動する。", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 0, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 0, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 0, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 0, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 0, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 0, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 0, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 0, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 0, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 0, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 0, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 0, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 0, + 5 + ] + } + } + }, + "140203": { + "Id": 140203, + "Name": "{RUBY_B#とも}共{RUBY_E#}に{RUBY_B#ま}舞{RUBY_E#}え、{RUBY_B#うんめい}運命{RUBY_E#}のラフトラ", + "Desc": "記憶の精霊「ラフトラ」を召喚する。なお、ラフトラがすでにフィールド上にいる場合、そのHPを最大値まで回復する。アグライアは「至高の姿」状態に入り、即座に行動する。\\n「至高の姿」状態のアグライアは速度アップ効果を獲得する。この速度アップ効果の層数は、ラフトラの精霊天賦による速度アップ効果の層数と同数になる。1層につき、自身の速度+#1[f1]%。\\n通常攻撃「サイフォスの蜜」が「剣先より千の口付けを」に強化され、戦闘スキルが発動できなくなる。また、ラフトラが行動制限系デバフに抵抗するようになる。\\nアクションバーにカウントダウンが出現する。カウントダウンの速度は#4[i]に固定される。カウントダウンの間に必殺技を発動すると、カウントダウンがリセットされる。カウントダウンのターンが回ってきた時、ラフトラは退場し、アグライアは「至高の姿」状態を解除する。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0, + 0, + 100, + 0, + 0 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1049999997485429, + 0, + 0, + 100, + 0, + 0 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.11000000010244548, + 0, + 0, + 100, + 0, + 0 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.11499999975785613, + 0, + 0, + 100, + 0, + 0 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.12000000011175871, + 0, + 0, + 100, + 0, + 0 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12499999976716936, + 0, + 0, + 100, + 0, + 0 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.13125000055879354, + 0, + 0, + 100, + 0, + 0 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.13749999995343387, + 0, + 0, + 100, + 0, + 0 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.14375000074505806, + 0, + 0, + 100, + 0, + 0 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1500000001396984, + 0, + 0, + 100, + 0, + 0 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.15499999979510903, + 0, + 0, + 100, + 0, + 0 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1600000001490116, + 0, + 0, + 100, + 0, + 0 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.16499999980442226, + 0, + 0, + 100, + 0, + 0 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.17000000015832484, + 0, + 0, + 100, + 0, + 0 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.17499999981373549, + 0, + 0, + 100, + 0, + 0 + ] + } + } + }, + "140204": { + "Id": 140204, + "Name": "{RUBY_B#ばらいろ}薔薇色{RUBY_E#}の{RUBY_B#ゆびさき}指先{RUBY_E#}", + "Desc": "記憶の精霊「ラフトラ」の初期速度は、アグライアの速度の#4[i]%分となり、初期最大HPは、アグライアの最大HP#5[i]%分+#6[i]となる。\\nラフトラがフィールド上にいる場合、アグライアが攻撃を行う時、敵に「隙を縫う糸」状態を付与する。また、「隙を縫う糸」状態の敵を攻撃した後、追加でアグライアの攻撃力#1[i]%分の雷属性付加ダメージを与える。「隙を縫う糸」状態は最後に付与されたターゲットにのみ効果を発揮する。", + "Type": null, + "Tag": "Enhance", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 0, + 0, + 0.3500000003259629, + 0.44000000040978193, + 180 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.13799999956972897, + 0, + 0, + 0.3500000003259629, + 0.4675000002607703, + 247.50000000046566 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.15599999972619116, + 0, + 0, + 0.3500000003259629, + 0.4950000001117587, + 315 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17399999988265336, + 0, + 0, + 0.3500000003259629, + 0.522500000661239, + 382.50000000046566 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.19200000003911555, + 0, + 0, + 0.3500000003259629, + 0.5500000005122274, + 450 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.21000000019557774, + 0, + 0, + 0.3500000003259629, + 0.5720000003930181, + 504 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.23250000039115548, + 0, + 0, + 0.3500000003259629, + 0.5940000002738088, + 558 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2549999998882413, + 0, + 0, + 0.3500000003259629, + 0.6160000001545995, + 612 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.27750000008381903, + 0, + 0, + 0.3500000003259629, + 0.6380000000353903, + 666 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0, + 0, + 0.3500000003259629, + 0.6600000006146729, + 720 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31799999973736703, + 0, + 0, + 0.3500000003259629, + 0.6820000004954636, + 774 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3359999998938292, + 0, + 0, + 0.3500000003259629, + 0.7040000003762543, + 828 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3540000000502914, + 0, + 0, + 0.3500000003259629, + 0.726000000257045, + 882 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3720000002067536, + 0, + 0, + 0.3500000003259629, + 0.7480000001378357, + 936 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3900000003632158, + 0, + 0, + 0.3500000003259629, + 0.7700000007171184, + 990 + ] + } + } + }, + "140206": { + "Id": 140206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140207": { + "Id": 140207, + "Name": "{RUBY_B#ほし}星{RUBY_E#}を{RUBY_B#まと}纏{RUBY_E#}いし{RUBY_B#れっけん}烈剣{RUBY_E#}", + "Desc": "記憶の精霊「ラフトラ」を召喚し、共に攻撃する。戦闘に入った後、EPを#2[i]回復し、敵全体にアグライアの攻撃力#1[i]%分の雷属性ダメージを与え、ランダムな敵に「隙を縫う糸」状態を付与する。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 30 + ] + } + } + }, + "140208": { + "Id": 140208, + "Name": "{RUBY_B#けんさき}剣先{RUBY_E#}より{RUBY_B#せん}千{RUBY_E#}の{RUBY_B#くちづ}口付{RUBY_E#}けを", + "Desc": "アグライアと「ラフトラ」が連携攻撃を行い、指定した敵単体にアグライアの攻撃力#1[f1]%分の雷属性ダメージとラフトラの攻撃力#3[f1]%分の雷属性ダメージを与え、隣接する敵にアグライアの攻撃力#2[i]%分の雷属性ダメージとラフトラの攻撃力#4[i]%分の雷属性ダメージを与える。\\nなお、「剣先より千の口付けを」はSPを回復できない。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.45000000041909516, + 1, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2000000001862645, + 0.5400000005029142, + 1.2000000001862645, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.400000000372529, + 0.6300000005867332, + 1.400000000372529, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6000000005587935, + 0.7200000006705523, + 1.6000000005587935, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.800000000745058, + 0.8100000007543713, + 1.800000000745058, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.9000000008381903, + 2, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2000000001862645, + 0.9900000009220093, + 2.2000000001862645, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.400000000372529, + 1.0800000000745058, + 2.400000000372529, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6000000005587935, + 1.1700000001583248, + 2.6000000005587935, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.2600000002421439, + 2.800000000745058, + 1.2600000002421439 + ] + } + } + }, + "140209": { + "Id": 140209, + "Name": "{RUBY_B#かか}掲{RUBY_E#}げよ、{RUBY_B#しょうか}昇華{RUBY_E#}せし{RUBY_B#な}名{RUBY_E#}を", + "Desc": null, + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Maze.png", + "LevelUpSkillID": [ + 140207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 7.2000000001862645, + 3.6000000005587935 + ], + "PointID": 1402101, + "PointName": "{RUBY_B#たんけん}短見{RUBY_E#}への{RUBY_B#さば}裁{RUBY_E#}き", + "PointDesc": "「至高の姿」状態の時、アグライアおよび「ラフトラ」の攻撃力が、アグライアの速度#1[i]%分+ラフトラの速度#2[i]%分アップする。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1402102, + "PointName": "{RUBY_B#さいご}最後{RUBY_E#}の{RUBY_B#しきうん}織運{RUBY_E#}", + "PointDesc": "「ラフトラ」が退場する時、精霊天賦の速度アップ効果の層数を最大で#1[i]層まで保持する。ラフトラが再度召喚された時、保持していた層数分の速度アップ効果を獲得する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1402103, + "PointName": "{RUBY_B#せつな}刹那{RUBY_E#}の{RUBY_B#ようこう}陽光{RUBY_E#}", + "PointDesc": "戦闘開始時、自身のEPが#1[i]%未満の場合、EPを#2[i]%まで回復する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402201, + "PointName": "ダメージ強化・雷", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "雷属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1402201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402203, + "PointName": "ダメージ強化・雷", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1402201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "雷属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1402101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402205, + "PointName": "ダメージ強化・雷", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1402101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "雷属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1402102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402207, + "PointName": "ダメージ強化・雷", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1402102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "雷属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1402103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1402208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402210, + "PointName": "ダメージ強化・雷", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1402209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.06399999978020787, + "Name": "雷属性ダメージ" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "サイフォスの{RUBY_B#わな}罠{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "サイフォスの{RUBY_B#わな}罠{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "サイフォスの{RUBY_B#わな}罠{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "サイフォスの{RUBY_B#わな}罠{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "サイフォスの{RUBY_B#わな}罠{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "サイフォスの{RUBY_B#わな}罠{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "{RUBY_B#なみだ}涙{RUBY_E#}で{RUBY_B#きた}鍛{RUBY_E#}えし{RUBY_B#たくみ}匠{RUBY_E#}の{RUBY_B#むくろ}躯{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "{RUBY_B#なみだ}涙{RUBY_E#}で{RUBY_B#きた}鍛{RUBY_E#}えし{RUBY_B#たくみ}匠{RUBY_E#}の{RUBY_B#むくろ}躯{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "{RUBY_B#なみだ}涙{RUBY_E#}で{RUBY_B#きた}鍛{RUBY_E#}えし{RUBY_B#たくみ}匠{RUBY_E#}の{RUBY_B#むくろ}躯{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "{RUBY_B#なみだ}涙{RUBY_E#}で{RUBY_B#きた}鍛{RUBY_E#}えし{RUBY_B#たくみ}匠{RUBY_E#}の{RUBY_B#むくろ}躯{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "{RUBY_B#なみだ}涙{RUBY_E#}で{RUBY_B#きた}鍛{RUBY_E#}えし{RUBY_B#たくみ}匠{RUBY_E#}の{RUBY_B#むくろ}躯{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "{RUBY_B#なみだ}涙{RUBY_E#}で{RUBY_B#きた}鍛{RUBY_E#}えし{RUBY_B#たくみ}匠{RUBY_E#}の{RUBY_B#むくろ}躯{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "ラフトラ", + "Icon": "SpriteOutput/ServantIconTeam/11402B.png", + "HPBase": "#6", + "HPInherit": "#5", + "HPSkill": 140204, + "SpeedBase": "0", + "SpeedInherit": "#4", + "SpeedSkill": 140204, + "Aggro": 125, + "Skills": { + "1140201": { + "Name": "サイフォスの{RUBY_B#わな}罠{RUBY_E#}", + "Desc": "敵単体に攻撃力#1[i]%分の雷属性ダメージを与え、隣接する敵に攻撃力#2[i]%分の雷属性ダメージを与える。", + "Type": "Servant", + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 0.33000000030733645, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.3959999999497086, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7700000007171184, + 0.46200000029057264, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8800000008195639, + 0.5279999999329448, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9900000009220093, + 0.5940000002738088, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1000000000931323, + 0.6600000006146729, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2100000001955777, + 0.726000000257045, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3200000002980232, + 0.7920000005979091, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4300000004004687, + 0.8580000002402812, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5400000005029142, + 0.9240000005811453, + 1 + ] + } + } + }, + "1140203": { + "Name": "{RUBY_B#なみだ}涙{RUBY_E#}で{RUBY_B#きた}鍛{RUBY_E#}えし{RUBY_B#たくみ}匠{RUBY_E#}の{RUBY_B#むくろ}躯{RUBY_E#}", + "Desc": "「隙を縫う糸」状態の敵を攻撃した後、自身の速度+#1[i]。この効果は最大で#3[i]層累積できる。\\n「ラフトラ」は行動時に自動で「サイフォスの罠」を発動し、「隙を縫う糸」状態の敵を優先的に攻撃する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 44, + 3, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 46.200000000186265, + 3, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 48.40000000037253, + 3, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 50.60000000055879, + 3, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 52.80000000074506, + 3, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 55, + 3, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 57.200000000186265, + 3, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 59.40000000037253, + 3, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 61.60000000055879, + 3, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 63.80000000074506, + 3, + 6 + ] + } + } + }, + "1140205": { + "Name": "{RUBY_B#す}過{RUBY_E#}ぎ{RUBY_B#さ}去{RUBY_E#}りし{RUBY_B#なつかげ}夏影{RUBY_E#}", + "Desc": "「ラフトラ」が召喚された時、自身の行動順が#1[i]%早まる。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1 + ] + } + } + }, + "1140206": { + "Name": "{RUBY_B#か}枯{RUBY_E#}れ{RUBY_B#くさ}草{RUBY_E#}の{RUBY_B#いぶき}息吹{RUBY_E#}", + "Desc": "「ラフトラ」が退場する時、アグライアのEPを#1[i]回復する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 20 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 20 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 20 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 20 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 20 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 20 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 20 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 20 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1402, + "Set4IDList": [ + 123, + 102, + 109 + ], + "Set2IDList": [ + 318, + 302, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1403": { + "Name": "トリビー", + "Desc": "使者は三相の神託の憐れみを受けた聖地を後にし、無数の破片となって、長い旅路についた。\\nヤヌサポリスの聖女トリスビアス、「門と道」の火種を奪った黄金裔。人々に仕えるために奔走し、救世の便りを大地の隅々まで届ける者である\\n——黄金の血を宿す人の子らを見つけ、この世界で最も暗い闇を打ち砕き、星が煌めく明日に向かって進むのだ。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "tribbie", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140301, + "Name": "{RUBY_B#さとう}砂糖{RUBY_E#}を{RUBY_B#ひろ}拾{RUBY_E#}い{RUBY_B#あ}上{RUBY_E#}げる{RUBY_B#さいてん}祭典{RUBY_E#}", + "Desc": "結界が展開されている間、味方が敵を攻撃した後、結界により付加ダメージを与えられた敵に、その回の攻撃の総ダメージ#1[i]%分の確定ダメージを追加で与える。", + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "Id": 140302, + "Name": "{RUBY_B#すてき}素敵{RUBY_E#}な{RUBY_B#ゆめ}夢{RUBY_E#}への{RUBY_B#あんないにん}案内人{RUBY_E#}", + "Desc": "結界による付加ダメージが本来のダメージの#1[i]%分にアップする。結界による付加ダメージを与える時、さらに#2[i]回付加ダメージを与える。", + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "3": { + "Id": 140303, + "Name": "{RUBY_B#あさや}朝焼{RUBY_E#}けの{RUBY_B#たからもの}宝物{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 140304, + "Name": "{RUBY_B#こころかよ}心通{RUBY_E#}い{RUBY_B#あ}合{RUBY_E#}う{RUBY_B#やす}安{RUBY_E#}らぎ", + "Desc": "「神の啓示」が継続している間、味方全体がダメージを与える時、敵の防御力を#1[i]%無視する。", + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "Id": 140305, + "Name": "{RUBY_B#きせき}奇跡{RUBY_E#}を{RUBY_B#お}起{RUBY_E#}こす{RUBY_B#とけい}時計{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 140306, + "Name": "{RUBY_B#ほし}星{RUBY_E#}が{RUBY_B#きら}煌{RUBY_E#}めく{RUBY_B#あした}明日{RUBY_E#}", + "Desc": "トリビーが必殺技を発動した後、敵全体に天賦による追加攻撃を行う。天賦による追加攻撃ダメージ+#1[i]%。", + "ParamList": [ + 7.2900000002700835 + ] + } + }, + "Skills": { + "140301": { + "Id": 140301, + "Name": "{RUBY_B#ひゃっぱつぶん}百発分{RUBY_E#}のピラヴロス", + "Desc": "指定した敵単体にトリビーの最大HP#1[i]%分の量子属性ダメージを与え、隣接する敵にトリビーの最大HP#2[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.07499999972060323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.21000000019557774, + 0.1049999997485429 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2700000002514571, + 0.13499999977648258 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.33000000030733645, + 0.16499999980442226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3900000003632158, + 0.19499999983236194 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774 + ] + } + } + }, + "140302": { + "Id": 140302, + "Name": "プレゼントはどこ?", + "Desc": "「神の啓示」を獲得する。#2[i]ターン継続。自身のターンが回ってくるたびに、「神の啓示」の継続時間-1ターン。トリビーに「神の啓示」がある時、味方全体の全属性耐性貫通+#1[f1]%。", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1319999999832362, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14399999985471368, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.15599999972619116, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.16799999959766865, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19499999983236194, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2249999998603016, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2520000000949949, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2639999999664724, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.27599999983794987, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.28799999970942736, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3 + ] + } + } + }, + "140303": { + "Id": 140303, + "Name": "ここに{RUBY_B#す}住{RUBY_E#}んでるのは{RUBY_B#だれ}誰{RUBY_E#}でしょう!", + "Desc": "結界を展開し、敵全体にトリビーの最大HP#1[i]%分の量子属性ダメージを与える。\\n結界が展開されている間、敵の受けるダメージ+#2[f1]%。敵が味方の攻撃を受けた後、攻撃を受けた敵1体につき、その敵の中で残りHPが最も高い敵に、トリビーの最大HP#3[f1]%分の量子属性付加ダメージを1回与える。\\n結界は#4[i]ターン継続。自身のターンが回ってくるたびに結界の継続時間-1ターン。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 0.060000000055879354, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 0.16499999980442226, + 0.06599999964237213, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 0.18000000016763806, + 0.07199999992735684, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 0.19499999983236194, + 0.07799999951384962, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 0.21000000019557774, + 0.08399999979883432, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 0.2249999998603016, + 0.09000000008381903, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 0.24375000083819032, + 0.09749999991618097, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 0.26250000041909516, + 0.1049999997485429, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 0.28125000069849193, + 0.11250000027939677, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.12000000011175871, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 0.31499999994412065, + 0.12599999969825149, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 0.33000000030733645, + 0.1319999999832362, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 0.3449999999720603, + 0.13799999956972897, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761, + 0.14399999985471368, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 0.375, + 0.1500000001396984, + 2 + ] + } + } + }, + "140304": { + "Id": 140304, + "Name": "どたばたトリビー", + "Desc": "自身以外の味方キャラが必殺技を発動した後、トリビーが追加攻撃を行い、敵全体にトリビーの最大HPの#1[f1]%分の量子属性ダメージを与える。この効果はトリビーを除いた味方キャラ1人につき1回のみ発動でき、トリビーが必殺技を発動するとこの回数がリセットされる。追加攻撃を行う前に、ターゲットがすでに倒された場合、新たに登場した敵に追加攻撃を発動する。", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.0989999994635582 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1079999995417893 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.11699999962002039 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.12599999969825149 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.13499999977648258 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.14625000022351742 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.15749999997206032 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.16875000041909516 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.18000000016763806 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.18899999954737723 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.19799999962560833 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20699999970383942 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.21599999978207052 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016 + ] + } + } + }, + "140306": { + "Id": 140306, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140307": { + "Id": 140307, + "Name": "{RUBY_B#たの}楽{RUBY_E#}しいなら{RUBY_B#て}手{RUBY_E#}を{RUBY_B#たた}叩{RUBY_E#}こう", + "Desc": "秘技を使用した後、戦闘に入る時に「神の啓示」を獲得する。#1[i]ターン継続。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Maze.png", + "LevelUpSkillID": [ + 140307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7200000006705523, + 3, + 3 + ], + "PointID": 1403101, + "PointName": "{RUBY_B#かべ}壁{RUBY_E#}の{RUBY_B#そと}外{RUBY_E#}の{RUBY_B#こひつじ}子羊{RUBY_E#}…", + "PointDesc": "天賦の追加攻撃を行った後、トリビーの与ダメージ+#1[i]%。この効果は最大で#2[i]層累積できる、#3[i]ターン継続する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.09000000008381903 + ], + "PointID": 1403102, + "PointName": "{RUBY_B#はね}羽{RUBY_E#}の{RUBY_B#は}生{RUBY_E#}えたガラス{RUBY_B#だま}玉{RUBY_E#}!", + "PointDesc": "結界が展開されている間、トリビーの最大HPが味方全体の最大HP合計値#1[i]%分アップする。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 30, + 1.5000000004656613 + ], + "PointID": 1403103, + "PointName": "{RUBY_B#わ}分{RUBY_E#}かれ{RUBY_B#みち}道{RUBY_E#}の{RUBY_B#そば}傍{RUBY_E#}の{RUBY_B#こいし}小石{RUBY_E#}?", + "PointDesc": "戦闘開始時、トリビーがEPを#1[i]回復する。トリビー以外の味方が攻撃を行った後、命中した敵1体につき、トリビーがEPを#2[f1]回復する。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403201, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1403101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403203, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1403202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1403201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403205, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1403102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1403205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403207, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1403201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1403103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1403208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403210, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1403208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 99, + "DefenceAdd": 4.9500000008847564, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 4.9500000008847564, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 4.9500000008847564, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.9500000008847564, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 297, + "DefenceAdd": 4.9500000008847564, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 336.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1403, + "Set4IDList": [ + 124, + 108, + 102 + ], + "Set2IDList": [ + 319, + 302, + 317 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "HPAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio" + ], + "ScoreRankList": [ + 324, + 268 + ] + } + }, + "1404": { + "Name": "モーディス", + "Desc": "霧に包まれた混乱と戦争の都市国家、クレムノス!その王家には親殺しの血が流れており、その神は災厄の名を冠する。\\n不死なるメデイモス、孤高の獅子、「紛争」の火種を追う黄金裔。数多の死を耐え、血を浴びて帰郷し、そして狂気の宿命を1人で背負う者である。\\n——王を殺め王となり、神を殺め神となる。荒野を駆け巡った征戦の鉄蹄は、やがて故郷の血で染めなければならないのだ。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "mydei", + "SPNeed": 160, + "BaseType": "Warrior", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 140401, + "Name": "{RUBY_B#かんぷう}寒風{RUBY_E#}に{RUBY_B#みが}磨{RUBY_E#}かれし\\n{RUBY_B#ふくつ}不屈{RUBY_E#}の{RUBY_B#せきちゅう}脊柱{RUBY_E#}", + "Desc": "「神を殺め神となる」のメインターゲットに対するダメージ倍率+#1[i]%、また、「神を殺め神となる」はメインターゲットに対するダメージ倍率で敵全体に虚数属性ダメージを与えるようになる。", + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Id": 140402, + "Name": "{RUBY_B#ふんそう}紛争{RUBY_E#}が{RUBY_B#みとど}見届{RUBY_E#}けし\\n{RUBY_B#しかばね}屍{RUBY_E#}の{RUBY_B#きょき}歔欷{RUBY_E#}", + "Desc": "「血の報復」状態の間、モーディスが与えるダメージは敵の防御力を#1[i]%無視する。治癒を受けた後、治癒量の#2[i]%分がチャージに変換され、累計で#3[i]まで変換できる。任意のユニットが行動した後、変換できるチャージのカウントはリセットされる。", + "ParamList": [ + 0.1500000001396984, + 0.40000000037252903, + 40 + ] + }, + "3": { + "Id": 140403, + "Name": "{RUBY_B#えいこう}栄光{RUBY_E#}を{RUBY_B#たた}称{RUBY_E#}えし\\n{RUBY_B#ばんごう}万劫{RUBY_E#}の{RUBY_B#きょうえん}饗宴{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 140404, + "Name": "{RUBY_B#つのぶえ}角笛{RUBY_E#}で{RUBY_B#めざ}目覚{RUBY_E#}めし\\n{RUBY_B#ちんもく}沈黙{RUBY_E#}の{RUBY_B#しし}獅子{RUBY_E#}", + "Desc": "「血の報復」状態の間、会心ダメージ+#2[i]%。敵から攻撃を受けた後、自身の最大HP#1[i]%分のHPを回復する。", + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "5": { + "Id": 140405, + "Name": "{RUBY_B#へいか}兵戈{RUBY_E#}で{RUBY_B#きざ}刻{RUBY_E#}まれし\\n{RUBY_B#しんく}身躯{RUBY_E#}の{RUBY_B#れつえん}烈炎{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 140406, + "Name": "{RUBY_B#おうじつ}往日{RUBY_E#}に{RUBY_B#とうはん}登攀{RUBY_E#}せし\\n{RUBY_B#こうけつ}紅血{RUBY_E#}の{RUBY_B#やま}山{RUBY_E#}", + "Desc": "戦闘に入る時、「血の報復」状態に入り、「神を殺め神となる」に必要なチャージが#1[i]になる。", + "ParamList": [ + 100 + ] + } + }, + "Skills": { + "140401": { + "Id": 140401, + "Name": "{RUBY_B#せいととうは}征途踏破{RUBY_E#}の{RUBY_B#ちか}誓{RUBY_E#}い", + "Desc": "指定した敵単体にモーディスの最大HP#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140402": { + "Id": 140402, + "Name": "{RUBY_B#ばんし}万死{RUBY_E#}に{RUBY_B#く}悔{RUBY_E#}いなし", + "Desc": "モーディスの残りHP#3[i]%分のHPを消費し、指定した敵単体にモーディスの最大HP#1[i]%分の虚数属性ダメージを与え、隣接する敵にモーディスの最大HP#2[i]%分の虚数属性ダメージを与える。\\n残りHPが足りない場合、戦闘スキルを発動した時、モーディスの残りHPが1になる。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.4950000001117587, + 0.27499999990686774, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5400000005029142, + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5850000001955777, + 0.32499999995343387, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6300000005867332, + 0.3500000003259629, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6750000002793968, + 0.375, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.7312500011175871, + 0.4062500004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7875000005587935, + 0.43750000023283064, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.8437500013969839, + 0.46875000069849193, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.9000000008381903, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.9450000005308539, + 0.5250000001396984, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.9900000009220093, + 0.5500000005122274, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.0349999996833503, + 0.5750000001862645, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.0800000000745058, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.1249999997671694, + 0.6250000002328306, + 0.5000000004656613 + ] + } + } + }, + "140403": { + "Id": 140403, + "Name": "{RUBY_B#てん}天{RUBY_E#}を{RUBY_B#めっ}滅{RUBY_E#}す{RUBY_B#えんこつ}炎骨{RUBY_E#}の{RUBY_B#おうざ}王座{RUBY_E#}", + "Desc": "モーディスの最大HP#3[f1]%分のHPを回復し、天賦のチャージを#5[i]獲得する。指定した敵単体にモーディスの最大HP#1[i]%分の虚数属性ダメージを与え、隣接する敵にモーディスの最大HP#2[i]%分の虚数属性ダメージを与える。さらに、ターゲットおよび隣接する敵を挑発状態にする、#4[i]ターン継続。なお、次の「神を殺め神となる」はこの攻撃で指定した敵単体を優先的に攻撃する。この効果は最後のターゲットにのみ有効。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.6000000005587935, + 0.1500000001396984, + 2, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 0.6400000005960464, + 0.15499999979510903, + 2, + 20 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 0.6800000006332994, + 0.1600000001490116, + 2, + 20 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 0.7200000006705523, + 0.16499999980442226, + 2, + 20 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 0.7600000007078052, + 0.17000000015832484, + 2, + 20 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 0.8000000007450581, + 0.17499999981373549, + 2, + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 0.8500000007916242, + 0.18125000060535967, + 2, + 20 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 0.9000000008381903, + 0.1875, + 2, + 20 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 0.9500000008847564, + 0.1937500007916242, + 2, + 20 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 0.20000000018626451, + 2, + 20 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1.040000000037253, + 0.20499999984167516, + 2, + 20 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1.0800000000745058, + 0.21000000019557774, + 2, + 20 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1.1200000001117587, + 0.2149999998509884, + 2, + 20 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1.1600000001490116, + 0.22000000020489097, + 2, + 20 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1.2000000001862645, + 0.2249999998603016, + 2, + 20 + ] + } + } + }, + "140404": { + "Id": 140404, + "Name": "{RUBY_B#ち}血{RUBY_E#}を{RUBY_B#も}以{RUBY_E#}って{RUBY_B#ち}血{RUBY_E#}を{RUBY_B#せい}制{RUBY_E#}す", + "Desc": "HPを1%失うごとにチャージを1獲得する、最大200までチャージ可能。チャージが100になると、チャージを100消費して「血の報復」状態に入り、モーディスの最大HP#1[i]%分のHPを回復し、行動順が100%早まる。「血の報復」状態の間、最大HPが現在の最大HPの#5[i]%分アップし、防御力が0に固定される。自身のターンが回ってきた時、自動で「王を殺め王となる」を発動する。\\n「血の報復」状態の間、チャージが#3[i]に達した時、モーディスは追加ターンを1獲得し、「神を殺め神となる」を発動する。\\n「血の報復」状態の間、HPが0になる攻撃を受けた時、戦闘不能状態にならない代わりにチャージをクリアし、「血の報復」状態を解除、最大HPの#4[i]%分を回復する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1600000001490116, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.17000000015832484, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.18000000016763806, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1900000001769513, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21250000037252903, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2249999998603016, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23750000004656613, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.26000000024214387, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2700000002514571, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2800000002607703, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.29000000027008355, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + } + } + }, + "140406": { + "Id": 140406, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140407": { + "Id": 140407, + "Name": "{RUBY_B#さいせつ}砕折{RUBY_E#}の{RUBY_B#ほこ}矛{RUBY_E#}、{RUBY_B#しんぷく}臣服{RUBY_E#}の{RUBY_B#ろうごく}牢獄{RUBY_E#}", + "Desc": "秘技を使用した後、一定範囲内の敵を引き寄せ、#1[i]秒間の目眩状態にする。目眩状態の敵は味方を攻撃しない。\\n目眩状態の敵を先制攻撃して戦闘に入った後、敵全体にモーディスの最大HP#2[i]%分の虚数属性ダメージを与え、敵を挑発状態にする。#4[i]ターン継続。また、自身は天賦のチャージを#5[i]獲得する。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.8000000007450581, + 1, + 1, + 50 + ] + } + } + }, + "140409": { + "Id": 140409, + "Name": "{RUBY_B#おう}王{RUBY_E#}を{RUBY_B#あや}殺{RUBY_E#}め{RUBY_B#おう}王{RUBY_E#}となる", + "Desc": "モーディスの残りHP#3[i]%分のHPを消費する。敵単体にモーディスの最大HP#1[i]%分の虚数属性ダメージを与え、隣接する敵にモーディスの最大HP#2[i]%分の虚数属性ダメージを与える。\\n残りHPが足りない場合、戦闘スキルを発動した時、モーディスの残りHPが1になる。\\nこのスキルは自動で発動する。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 0.33000000030733645, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6050000002142042, + 0.3630000001285225, + 0.3500000003259629 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6600000006146729, + 0.3959999999497086, + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7150000003166497, + 0.42899999977089465, + 0.3500000003259629 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7700000007171184, + 0.46200000029057264, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8250000004190952, + 0.4950000001117587, + 0.3500000003259629 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.89375000144355, + 0.5362500005867332, + 0.3500000003259629 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.962500001071021, + 0.5775000003632158, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.0312500004656613, + 0.6187500008381903, + 0.3500000003259629 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1000000000931323, + 0.6600000006146729, + 0.3500000003259629 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.154999999795109, + 0.693000000435859, + 0.3500000003259629 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2100000001955777, + 0.726000000257045, + 0.3500000003259629 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.2649999998975545, + 0.7590000000782311, + 0.3500000003259629 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.3200000002980232, + 0.7920000005979091, + 0.3500000003259629 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.375, + 0.8250000004190952, + 0.3500000003259629 + ] + } + } + }, + "140411": { + "Id": 140411, + "Name": "{RUBY_B#かみ}神{RUBY_E#}を{RUBY_B#あや}殺{RUBY_E#}め{RUBY_B#かみ}神{RUBY_E#}となる", + "Desc": "チャージを#3[i]消費して、敵単体にモーディスの最大HP#1[i]%分の虚数属性ダメージを与え、隣接する敵にモーディスの最大HP#2[i]%分の虚数属性ダメージを与える。\\nこのスキルは自動で発動し、発動している間はチャージを獲得できなくなる。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 0.840000000782311, + 150 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 0.9240000005811453, + 150 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 1.007999999448657, + 150 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 1.0919999999459833, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 1.1759999997448176, + 150 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 1.2600000002421439, + 150 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 1.3649999999906868, + 150 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 1.4700000004377216, + 150 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1.5750000001862645, + 150 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.6800000006332994, + 150 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1.7640000004321337, + 150 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1.848000000230968, + 150 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1.9320000007282943, + 150 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 2.015999999595806, + 150 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 2.1000000000931323, + 150 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Maze.png", + "LevelUpSkillID": [ + 140407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1404101, + "PointName": "{RUBY_B#つち}土{RUBY_E#}と{RUBY_B#みず}水{RUBY_E#}", + "PointDesc": "「血の報復」状態のモーディスがHPが0になる攻撃を受けても、「血の報復」状態を解除しない。この効果は一度の戦闘で#1[i]回まで発動できる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404102, + "PointName": "{RUBY_B#さんじゅう}三十{RUBY_E#}の{RUBY_B#せんしゅ}僭主{RUBY_E#}", + "PointDesc": "「血の報復」状態のモーディスは行動制限系デバフに抵抗できる。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 4000, + 4000, + 0.011999999871477485, + 0.0249999996740371, + 0.007499999832361937 + ], + "PointID": 1404103, + "PointName": "{RUBY_B#ちぞ}血染{RUBY_E#}めの{RUBY_B#ころも}衣{RUBY_E#}", + "PointDesc": "戦闘開始時、モーディスの最大HPが#1[i]を超えた場合、超過したHP100につき、自身の会心率+#3[f1]%。モーディスが敵からの攻撃でダメージを受けた際に得られるチャージ割合+#4[f1]%、治癒を受けた時の回復量+#5[f2]%。超過したHPは最大で#2[i]までカウントされる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404201, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1404101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404203, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1404202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404204, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1404203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404205, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1404102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1404205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404207, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1404206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404208, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1404103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1404208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404210, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1404208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 58.080000000074506, + "AttackAdd": 2.904000000562519, + "DefenceBase": 26.40000000037253, + "DefenceAdd": 1.3200000002980232, + "HPBase": 211.20000000018626, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 81.31200000015087, + "AttackAdd": 2.904000000562519, + "DefenceBase": 36.96000000089407, + "DefenceAdd": 1.3200000002980232, + "HPBase": 295.6800000006333, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 104.54400000022724, + "AttackAdd": 2.904000000562519, + "DefenceBase": 47.52000000048429, + "DefenceAdd": 1.3200000002980232, + "HPBase": 380.160000000149, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 127.77600000030361, + "AttackAdd": 2.904000000562519, + "DefenceBase": 58.080000000074506, + "DefenceAdd": 1.3200000002980232, + "HPBase": 464.64000000059605, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 151.00799999944866, + "AttackAdd": 2.904000000562519, + "DefenceBase": 68.64000000059605, + "DefenceAdd": 1.3200000002980232, + "HPBase": 549.1200000001118, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 174.24000000022352, + "AttackAdd": 2.904000000562519, + "DefenceBase": 79.20000000018626, + "DefenceAdd": 1.3200000002980232, + "HPBase": 633.6000000005588, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 197.4720000002999, + "AttackAdd": 2.904000000562519, + "DefenceBase": 89.7600000007078, + "DefenceAdd": 1.3200000002980232, + "HPBase": 718.0800000000745, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1404, + "Set4IDList": [ + 122, + 113, + 112 + ], + "Set2IDList": [ + 319, + 309, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "ImaginaryAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 333, + 275 + ], + "LocalCriticalChance": 0.45000000041909516 + } + }, + "1405": { + "Name": "アナイクス", + "Desc": "神悟の樹庭、それは知恵を培う学府であり、哲人を育む揺籃でもある。\\n神を冒涜するアナクサゴラス、「理性」の火種を問いただす黄金裔。汚名を甘受し預言に背き、懐疑の枝を知性の聖樹に突き刺す者である。\\n——「滑稽ですね。偽りに満ちているこの世界でただ1人、私だけが真実なのですよ」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "anaxa", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 140501, + "Name": "{RUBY_B#えんぺい}掩蔽{RUBY_E#}の{RUBY_B#まじゅつし}魔術師{RUBY_E#}", + "Desc": "戦闘スキルを初めて発動した後、SPを#3[i]回復する。戦闘スキルが敵に命中する時、敵の防御力-#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.1600000001490116, + 2, + 1 + ] + }, + "2": { + "Id": 140502, + "Name": "{RUBY_B#しじつ}史実{RUBY_E#}の{RUBY_B#しぜんじん}自然人{RUBY_E#}", + "Desc": "敵が戦闘に入る時、天賦の弱点付与効果を1回発動し、その敵の全属性耐性を#1[i]%ダウンさせる。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 140503, + "Name": "{RUBY_B#しんうちゅう}深宇宙{RUBY_E#}に{RUBY_B#きざ}刻{RUBY_E#}まれた{RUBY_B#ひとみ}瞳{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 140504, + "Name": "{RUBY_B#きょうこく}峡谷{RUBY_E#}に{RUBY_B#お}落{RUBY_E#}ちる{RUBY_B#しゃくねつ}灼熱{RUBY_E#}", + "Desc": "戦闘スキルを発動する時、攻撃力+#1[i]%#2[i]ターン継続。この効果は最大で#3[i]層累積できる。", + "ParamList": [ + 0.3000000002793968, + 2, + 2 + ] + }, + "5": { + "Id": 140505, + "Name": "{RUBY_B#かじょうわんがい}渦状腕外{RUBY_E#}の{RUBY_B#はいしゅ}胚種{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 140506, + "Name": "{RUBY_B#ばんぶつ}万物{RUBY_E#}は{RUBY_B#ばんぶつ}万物{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}", + "Desc": "アナイクスの与ダメージは本来の#1[i]%になる。軌跡「必要な空白」の2つの効果は同時に直接発動するようになり、パーティ内の「知恵」の運命を歩むキャラクターの数に依存しなくなる。", + "ParamList": [ + 1.3000000002793968 + ] + } + }, + "Skills": { + "140501": { + "Id": 140501, + "Name": "{RUBY_B#くつう}苦痛{RUBY_E#}、{RUBY_B#にんしき}認識{RUBY_E#}の{RUBY_B#ぞうせい}造成{RUBY_E#}", + "Desc": "指定した敵単体にアナイクスの攻撃力#1[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140502": { + "Id": 140502, + "Name": "{RUBY_B#ぶんけい}分形{RUBY_E#}、{RUBY_B#ごびゅう}誤謬{RUBY_E#}の{RUBY_B#くちく}駆逐{RUBY_E#}", + "Desc": "指定した敵単体にアナイクスの攻撃力#1[i]%分の風属性ダメージを与え、さらに#2[i]ヒットする。1ヒットごとに、ランダムな敵単体にアナイクスの攻撃力#1[i]%分の風属性ダメージを与える。バウンドはその回の戦闘スキルの攻撃を受けていない敵が優先される。\\n発動時、フィールド上に攻撃可能な敵が1体いるごとに、その回の戦闘スキルによるダメージ+#3[i]%。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 4, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 4, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 4, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 4, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 4, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 4, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 4, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 4, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 4, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 4, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 4, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 4, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 4, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 4, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 4, + 0.20000000018626451 + ] + } + } + }, + "140503": { + "Id": 140503, + "Name": "{RUBY_B#かいく}化育{RUBY_E#}、{RUBY_B#せかい}世界{RUBY_E#}の{RUBY_B#そうぞう}創造{RUBY_E#}", + "Desc": "敵全体を「昇華」状態にした後、アナイクスの攻撃力#1[i]%分の風属性ダメージを与える。\\n「昇華」状態の敵は、物理、炎、氷、雷、風、量子、虚数属性を弱点として付与される。この効果はその敵のターンが回ってくるまで継続。敵が行動制限抵抗を持たない場合、「昇華」状態での行動はできない。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2 + ] + } + } + }, + "140504": { + "Id": 140504, + "Name": "{RUBY_B#しち}四智{RUBY_E#}、{RUBY_B#さんじゅう}三重{RUBY_E#}の{RUBY_B#むじょう}無上{RUBY_E#}", + "Desc": "アナイクスの攻撃が敵に1回命中するたびに、ターゲットに弱点属性をランダムで1つ付与する。#2[i]ターン継続。この時ターゲットが持っていない弱点属性を優先的に付与する。\\nアナイクスがフィールドにいる時、異なる弱点属性を#3[i]つ以上持つ敵は「本質暴露」状態になる。「本質暴露」状態の敵に対して、アナイクスの与ダメージ+#1[i]%。さらにアナイクスが「本質暴露」状態の敵に通常攻撃または戦闘スキルを発動した後、ターゲットに戦闘スキルを追加で1回発動する。なお、追加の戦闘スキルはSPが消費されず、この効果も再度発動されない。追加の戦闘スキルを発動する前にターゲットが倒された場合、ランダムな敵単体に対して発動する。", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.19200000003911555, + 3, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.20399999991059303, + 3, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.21599999978207052, + 3, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.227999999653548, + 3, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.24000000022351742, + 3, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.2549999998882413, + 3, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2700000002514571, + 3, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28499999991618097, + 3, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31200000015087426, + 3, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.32400000002235174, + 3, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3359999998938292, + 3, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3479999997653067, + 3, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3600000003352761, + 3, + 5 + ] + } + } + }, + "140506": { + "Id": 140506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140507": { + "Id": 140507, + "Name": "{RUBY_B#ひとみ}瞳{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}の{RUBY_B#しきさい}色彩{RUBY_E#}", + "Desc": "秘技を使用した後、一定範囲内の敵を恐怖状態にする。恐怖状態の敵はアナイクスから離れていく。#1[i]秒間継続。味方が恐怖状態の敵を攻撃した時、敵の弱点を攻撃して戦闘に入ったものと見なされる。戦闘に入った後、アナイクスは敵それぞれに攻撃者の属性を弱点属性として1つ付与する。#2[i]ターン継続。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Maze.png", + "LevelUpSkillID": [ + 140507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 30 + ], + "PointID": 1405101, + "PointName": "{RUBY_B#るろう}流浪{RUBY_E#}の{RUBY_B#きごう}記号{RUBY_E#}", + "PointDesc": "通常攻撃を行う時、さらにEPを#1[i]回復する。\\nターンが回ってきた時、フィールド上に「本質暴露」状態の敵が存在しない場合、EPを#2[i]回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.400000000372529, + 0.5000000004656613 + ], + "PointID": 1405102, + "PointName": "{RUBY_B#ひつよう}必要{RUBY_E#}な{RUBY_B#くうはく}空白{RUBY_E#}", + "PointDesc": "パーティ内の「知恵」の運命を歩むキャラクターの数に応じて、今回の戦闘で以下どちらかの効果を発動する。\\n1名の場合、アナイクスの会心ダメージ+#1[i]%。\\n2名以上の場合、味方全体の与ダメージ+#2[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0400000000372529 + ], + "PointID": 1405103, + "PointName": "{RUBY_B#ていせい}定性{RUBY_E#}の{RUBY_B#へんせん}変遷{RUBY_E#}", + "PointDesc": "敵が持つ異なる弱点属性1つにつき、アナイクスが与えるダメージはその敵の防御力を#1[i]%無視する。弱点属性は最大7つまでカウントされる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405201, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405202, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1405101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405203, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1405202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1405202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405205, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1405102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405206, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1405205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405207, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1405205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "風属性ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1405103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405209, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1405103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405210, + "PointName": "ダメージ強化・風", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "風属性ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 75.90000000083819, + "DefenceAdd": 3.7950000003911555, + "HPBase": 132, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 106.26000000024214, + "DefenceAdd": 3.7950000003911555, + "HPBase": 184.80000000074506, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 136.62000000057742, + "DefenceAdd": 3.7950000003911555, + "HPBase": 237.6000000005588, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 166.9800000009127, + "DefenceAdd": 3.7950000003911555, + "HPBase": 290.40000000037253, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 197.34000000031665, + "DefenceAdd": 3.7950000003911555, + "HPBase": 343.20000000018626, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 227.70000000065193, + "DefenceAdd": 3.7950000003911555, + "HPBase": 396, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 258.0600000000559, + "DefenceAdd": 3.7950000003911555, + "HPBase": 448.80000000074506, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1405, + "Set4IDList": [ + 110, + 117, + 122 + ], + "Set2IDList": [ + 309, + 314, + 308 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1406": { + "Name": "サフェル", + "Desc": "失われた盗賊の都、ドロス。かつて三百の義賊が遊戯に興じ、縦横無尽に横行していた地である。\\n駿足の賊星セファリア、「詭術」の火種を弄ぶ黄金裔。流言を撒き、大地を駆け抜ける者である。願わくば、その嘘が風に乗り、世界の隅々まで届かんことを――\\n「ふん、あたしを騙そうって?そうはいかないよ!」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "cipher", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140601, + "Name": "{RUBY_B#かんさつ}観察{RUBY_E#}、\\n{RUBY_B#きかい}機会{RUBY_E#}を{RUBY_B#うかが}伺{RUBY_E#}う", + "Desc": "サフェルのダメージ記録値が本来の#3[i]%になる。天賦による追加攻撃を発動する時、サフェルの攻撃力+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.8000000007450581, + 2, + 1.5000000004656613 + ] + }, + "2": { + "Id": 140602, + "Name": "{RUBY_B#しょうそう}焦燥{RUBY_E#}、\\n{RUBY_B#あわ}慌{RUBY_E#}てる{RUBY_B#とうぞく}盗賊{RUBY_E#}の{RUBY_B#て}手{RUBY_E#}", + "Desc": "サフェルの攻撃が敵に命中する時、#2[i]%基礎確率でその敵の受けるダメージ+#3[i]%#1[i]ターン継続。", + "ParamList": [ + 2, + 1.2000000001862645, + 0.3000000002793968 + ] + }, + "3": { + "Id": 140603, + "Name": "{RUBY_B#わいきょく}歪曲{RUBY_E#}、\\n{RUBY_B#む}無{RUBY_E#}から{RUBY_B#ゆう}有{RUBY_E#}を{RUBY_B#う}生{RUBY_E#}む", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 140604, + "Name": "{RUBY_B#ひみつ}秘密{RUBY_E#}、\\n{RUBY_B#あら}露{RUBY_E#}わになれば{RUBY_B#けむり}煙{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}く", + "Desc": "「お得意様」が味方の攻撃を受けた後、サフェルはその敵にサフェルの攻撃力#1[i]%分の量子属性付加ダメージを与える。", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 140605, + "Name": "{RUBY_B#こうち}狡知{RUBY_E#}、\\n{RUBY_B#に}逃{RUBY_E#}げ{RUBY_B#あしかる}足軽{RUBY_E#}く{RUBY_B#と}飛{RUBY_E#}ぶように", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 140606, + "Name": "{RUBY_B#だいとう}大盗{RUBY_E#}、\\n{RUBY_B#な}名{RUBY_E#}も{RUBY_B#な}無{RUBY_E#}き{RUBY_B#てんち}天地{RUBY_E#}の{RUBY_B#ま}間{RUBY_E#}", + "Desc": "サフェルの天賦による追加攻撃ダメージ+#2[i]%。また、ダメージを記録する際、その攻撃による非超過ダメージの#3[i]%分を追加で記録する。必殺技を発動してダメージ記録値がクリアされた後、その回でクリアされたダメージ記録値の#1[i]%分が返還される。", + "ParamList": [ + 0.20000000018626451, + 3.5000000004656613, + 0.1600000001490116 + ] + } + }, + "Skills": { + "140601": { + "Id": 140601, + "Name": "おっと!{RUBY_B#さかな}魚{RUBY_E#}は{RUBY_B#に}逃{RUBY_E#}がさないよ", + "Desc": "指定した敵単体にサフェルの攻撃力#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140602": { + "Id": 140602, + "Name": "へへっ!お{RUBY_B#たから}宝{RUBY_E#}いただき~!", + "Desc": "#6[i]%基礎確率で指定した敵単体および隣接する敵を虚弱状態にする。虚弱状態の敵の与ダメージ-#3[i]%#4[i]ターン継続。同時に、サフェルの攻撃力+#5[i]%#4[i]ターン継続。\\nさらに、指定した敵単体にサフェルの攻撃力#1[i]%分の量子属性ダメージを与え、隣接する敵にサフェルの攻撃力#2[i]%分の量子属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.8125000009313226, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1.0500000000465661, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1.1000000000931323, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1.1500000001396984, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1.2000000001862645, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1.2500000002328306, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + } + } + }, + "140603": { + "Id": 140603, + "Name": "{RUBY_B#かいとう}怪盗{RUBY_E#}ニャンコ、{RUBY_B#さんじょう}参上{RUBY_E#}!", + "Desc": "指定した敵単体にサフェルの攻撃力#1[i]%分の量子属性ダメージを与える。その後、指定した敵単体に現在の天賦のダメージ記録値#2[i]%分の確定ダメージを与える。\\nさらに、指定した敵単体および隣接する敵にサフェルの攻撃力#4[i]%分の量子属性ダメージと現在の天賦のダメージ記録値#3[i]%分の確定ダメージを与える(この確定ダメージはすべてのスキルターゲットに均等に分けられる)。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.25000000023283064, + 0.7500000006984919, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.25000000023283064, + 0.7500000006984919, + 0.22000000020489097 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.25000000023283064, + 0.7500000006984919, + 0.24000000022351742 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.25000000023283064, + 0.7500000006984919, + 0.26000000024214387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.25000000023283064, + 0.7500000006984919, + 0.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.25000000023283064, + 0.7500000006984919, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.25000000023283064, + 0.7500000006984919, + 0.32499999995343387 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.25000000023283064, + 0.7500000006984919, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.25000000023283064, + 0.7500000006984919, + 0.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.25000000023283064, + 0.7500000006984919, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.25000000023283064, + 0.7500000006984919, + 0.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.25000000023283064, + 0.7500000006984919, + 0.44000000040978193 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.25000000023283064, + 0.7500000006984919, + 0.4600000004284084 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.25000000023283064, + 0.7500000006984919, + 0.48000000044703484 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.25000000023283064, + 0.7500000006984919, + 0.5000000004656613 + ] + } + } + }, + "140604": { + "Id": 140604, + "Name": "{RUBY_B#しんせつ}親切{RUBY_E#}なドロス{RUBY_B#じん}人{RUBY_E#}", + "Desc": "フィールド上に「お得意様」状態の敵が存在しない時、サフェルはフィールド上にいる最大HPが最も高い敵単体を「お得意様」にする。戦闘スキルまたは必殺技を発動する時、メインターゲットを「お得意様」にする。「お得意様」状態は最後に付与したターゲットにのみ有効。\\n「お得意様」が他の味方の攻撃を受けた後、サフェルは即座に「お得意様」に追加攻撃を行い、自身の攻撃力#1[i]%分の量子属性ダメージを与える。この効果はターンが回ってくるたびに#3[i]回まで発動でき、サフェルのターンが回ってきた時に発動可能回数がリセットされる。\\nサフェルは味方が「お得意様」に与えた確定ダメージ以外のダメージの#2[i]%分を記録する。なお、その際超過ダメージは記録しない。必殺技を発動した後、ダメージ記録値がクリアされる。", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.12000000011175871, + 1, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.12000000011175871, + 1, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.12000000011175871, + 1, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.12000000011175871, + 1, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.12000000011175871, + 1, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.12000000011175871, + 1, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.12000000011175871, + 1, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.12000000011175871, + 1, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.12000000011175871, + 1, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.12000000011175871, + 1, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.12000000011175871, + 1, + 5 + ] + } + } + }, + "140606": { + "Id": 140606, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140607": { + "Id": 140607, + "Name": "{RUBY_B#ながぐつ}長靴{RUBY_E#}をはいた{RUBY_B#ねこ}猫{RUBY_E#}", + "Desc": "秘技を使用した後、#1[i]秒間継続する「ザグレウスの祝福」を獲得する。「ザグレウスの祝福」が継続している間、サフェルは敵に発見されず、かつ移動速度+50%。マップ/模擬宇宙/階差宇宙内の敵に近づくと、ランダムな消耗品を獲得できるが、1日に最大#4[i]回までの制限がある。\\n「ザグレウスの祝福」を持った状態で戦闘に入ると、敵全体にサフェルの攻撃力#3[i]%分の量子属性ダメージを与える。また、このダメージで獲得するダメージ記録値+#2[i]%。", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 2, + 1, + 50 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Maze.png", + "LevelUpSkillID": [ + 140607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 0.5000000004656613, + 1 + ], + "PointID": 1406101, + "PointName": "{RUBY_B#きん}金{RUBY_E#}のボテス", + "PointDesc": "サフェルの速度が140/170以上の時、会心率+#1[i]%/#2[i]%、獲得するダメージ記録値+#3[i]%/#4[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0800000000745058 + ], + "PointID": 1406102, + "PointName": "{RUBY_B#さんびゃく}三百{RUBY_E#}の{RUBY_B#ぎぞく}義賊{RUBY_E#}", + "PointDesc": "サフェルは味方が「お得意様」以外の敵に与えた確定ダメージ以外のダメージの#1[i]%分を記録する。超過ダメージは記録しない。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903, + 1 + ], + "PointID": 1406103, + "PointName": "{RUBY_B#よ}世{RUBY_E#}を{RUBY_B#あざむ}欺{RUBY_E#}く{RUBY_B#うそ}嘘{RUBY_E#}", + "PointDesc": "天賦による追加攻撃の会心ダメージ+#2[i]%。サフェルがフィールド上にいる場合、敵全体の受けるダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406201, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406202, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1406101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406203, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1406202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406204, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1406203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "効果命中" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406205, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1406102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406206, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1406205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406207, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1406206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406208, + "PointName": "効果命中強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1406103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "効果命中" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406209, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1406103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406210, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1406201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1406, + "Set4IDList": [ + 117, + 108, + 114 + ], + "Set2IDList": [ + 317, + 302, + 308 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalDamageBase", + "CriticalChanceBase" + ], + "ScoreRankList": [ + 273, + 236 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1407": { + "Name": "キャストリス", + "Desc": "死を崇める都市国家、絶えず雪が舞うエイジリアは、すでに甘美で安らかな眠りに就いた。\\nステュクスの娘キャストリス、「死」の火種を探し求める黄金裔。世の魂の慟哭を慰め、運命の孤独に抱擁を与える者である。\\n——旅立つといい。生も死も等しき旅路。蝶が枝にとまる時、凋落したものは新生するのだ。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "castorice", + "SPNeed": null, + "BaseType": "Memory", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140701, + "Name": "{RUBY_B#ゆきじ}雪地{RUBY_E#}の{RUBY_B#せいじょ}聖女{RUBY_E#}、\\n{RUBY_B#きおく}記憶{RUBY_E#}を{RUBY_B#ひつぎ}棺{RUBY_E#}に{RUBY_B#と}閉{RUBY_E#}じ{RUBY_B#こ}込{RUBY_E#}めて", + "Desc": "敵の残りHPが最大HP#1[i]%/#2[i]%以下の時、その敵に対する「骸爪、冥竜の抱擁」、「冥茫裂く爪痕」、「晦冥焼き払う息吹」、「幽墟奪略の晦翼」の与ダメージは本来の#3[i]%/#4[i]%になる。", + "ParamList": [ + 0.8000000007450581, + 0.5000000004656613, + 1.2000000001862645, + 1.400000000372529 + ] + }, + "2": { + "Id": 140702, + "Name": "{RUBY_B#よくし}翼翅{RUBY_E#}と{RUBY_B#はな}花{RUBY_E#}の{RUBY_B#かんむり}冠{RUBY_E#}を{RUBY_B#いただ}戴{RUBY_E#}く", + "Desc": "記憶の精霊「死竜」を召喚した後、キャストリスは「熾意」を#1[i]層獲得する。「熾意」は最大で#2[i]層累積でき、死竜の精霊スキル「晦冥焼き払う息吹」が消費するHPの代わりとして消費できる。さらにキャストリスの行動順が100%早まり、次の強化戦闘スキル発動後、キャストリスは「新蕾」の上限#3[i]%分の「新蕾」を獲得する。", + "ParamList": [ + 2, + 2, + 0.3000000002793968 + ] + }, + "3": { + "Id": 140703, + "Name": "{RUBY_B#けいけん}敬虔{RUBY_E#}な{RUBY_B#たびびと}旅人{RUBY_E#}、\\n{RUBY_B#しきょう}死境{RUBY_E#}で{RUBY_B#かろ}軽{RUBY_E#}やかに{RUBY_B#ま}舞{RUBY_E#}って", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。精霊天賦のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 140704, + "Name": "{RUBY_B#あいか}哀歌{RUBY_E#}を{RUBY_B#いだ}抱{RUBY_E#}く\\n{RUBY_B#やす}安{RUBY_E#}らかな{RUBY_B#ねむ}眠{RUBY_E#}り", + "Desc": "キャストリスがフィールドにいる時、味方全体が治癒を受けた場合、回復量+#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 140705, + "Name": "{RUBY_B#じゅんぱく}純白{RUBY_E#}の{RUBY_B#しんぺん}新編{RUBY_E#}、\\n{RUBY_B#よげん}預言{RUBY_E#}で{RUBY_B#いろど}彩{RUBY_E#}られて", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。精霊スキルのLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 140706, + "Name": "{RUBY_B#りゅうねん}流年{RUBY_E#}を{RUBY_B#ま}待{RUBY_E#}ち{RUBY_B#まゆ}繭{RUBY_E#}を{RUBY_B#やぶ}破{RUBY_E#}る", + "Desc": "キャストリスと死竜がダメージを与える時、量子属性耐性貫通+#1[i]%。死竜は攻撃時、弱点属性を無視して敵の靭性を削ることができる。敵を弱点撃破した時、量子属性の弱点撃破効果を発動する。また、精霊天賦「幽墟奪略の晦翼」のバウンド回数+#2[i]。", + "ParamList": [ + 0.20000000018626451, + 3 + ] + } + }, + "Skills": { + "140701": { + "Id": 140701, + "Name": "{RUBY_B#あいとう}哀悼{RUBY_E#}、{RUBY_B#しかい}死海{RUBY_E#}の{RUBY_B#さざなみ}小波{RUBY_E#}", + "Desc": "指定した敵単体にキャストリスの最大HP#1[i]%分の量子属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140702": { + "Id": 140702, + "Name": "{RUBY_B#ちんもく}沈黙{RUBY_E#}、{RUBY_B#ゆうちょう}幽蝶{RUBY_E#}の{RUBY_B#いつく}慈{RUBY_E#}しみ", + "Desc": "味方それぞれの残りHP#1[i]%分のHPを消費し、指定した敵単体にキャストリスの最大HP#2[i]%分の量子属性ダメージを与え、さらに隣接する敵にキャストリスの最大HPの#3[i]%分の量子属性ダメージを与える。\\n残りHPが足りない場合、残りHPが1になる。\\n死竜がフィールドにいる時、戦闘スキルは「骸爪、冥竜の抱擁」に切り替わる。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.25000000023283064, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.27499999990686774, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.32499999995343387, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.3500000003259629, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.4062500004656613, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.43750000023283064, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.46875000069849193, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.5250000001396984, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.5500000005122274, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.5750000001862645, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.6000000005587935, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.6250000002328306, + 0.375 + ] + } + } + }, + "140703": { + "Id": 140703, + "Name": "{RUBY_B#もうじゃ}亡者{RUBY_E#}の{RUBY_B#どこう}怒哮{RUBY_E#}、{RUBY_B#そせい}蘇生{RUBY_E#}の{RUBY_B#かね}鐘{RUBY_E#}", + "Desc": "記憶の精霊「死竜」を召喚し、その行動順を100%早める。同時に、境界「遺世の冥域」を展開し、敵全体の全属性耐性を#4[i]%ダウンさせる。キャストリスが天賦のダメージアップ効果を持っている場合、死竜にその効果を拡散する。死竜は#1[i]の初期速度と、「新蕾」の上限#3[i]%分の固定最大HPを持つ。\\n死竜は自身のターンが#2[i]回経過した後、またはHPが0になった時にフィールドから消え、同時に境界「遺世の冥域」を解除する。", + "Type": "Ultra", + "Tag": "Summon", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 165, + 3, + 1, + 0.10000000009313226, + 0 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 165, + 3, + 1, + 0.11000000010244548, + 0 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 165, + 3, + 1, + 0.12000000011175871, + 0 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 165, + 3, + 1, + 0.13000000012107193, + 0 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 165, + 3, + 1, + 0.14000000013038516, + 0 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 165, + 3, + 1, + 0.1500000001396984, + 0 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 165, + 3, + 1, + 0.1625000003259629, + 0 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 165, + 3, + 1, + 0.17499999981373549, + 0 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 165, + 3, + 1, + 0.1875, + 0 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 165, + 3, + 1, + 0.20000000018626451, + 0 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 165, + 3, + 1, + 0.21000000019557774, + 0 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 165, + 3, + 1, + 0.22000000020489097, + 0 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 165, + 3, + 1, + 0.2300000002142042, + 0 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 165, + 3, + 1, + 0.24000000022351742, + 0 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 165, + 3, + 1, + 0.25000000023283064, + 0 + ] + } + } + }, + "140704": { + "Id": 140704, + "Name": "{RUBY_B#て}手{RUBY_E#}のひらを{RUBY_B#つた}伝{RUBY_E#}う{RUBY_B#すいぼう}衰亡{RUBY_E#}", + "Desc": "「新蕾」の上限はフィールド上にいるすべてのキャラのレベルと関係している。味方全体がHPを1失うたびに、キャストリスは「新蕾」を1獲得する。「新蕾」が上限に達すると必殺技を発動できる。味方がHPを失った時、キャストリスと死竜の与ダメージ+#2[i]%、この効果は最大で#3[i]層累積できる。#4[i]ターン継続。\\n死竜がフィールドにいる時、キャストリスは天賦を通じて「新蕾」を獲得することはできず、死竜以外の味方がHPを1失うたびに、失ったのと同等のHPが死竜のHPに変換される。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0, + 0.10000000009313226, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0, + 0.11000000010244548, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0, + 0.12000000011175871, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0, + 0.13000000012107193, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0, + 0.14000000013038516, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0, + 0.1500000001396984, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0, + 0.1625000003259629, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0, + 0.17499999981373549, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0, + 0.1875, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0, + 0.20000000018626451, + 3, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0, + 0.21000000019557774, + 3, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0, + 0.22000000020489097, + 3, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0, + 0.2300000002142042, + 3, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0, + 0.24000000022351742, + 3, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0, + 0.25000000023283064, + 3, + 3 + ] + } + } + }, + "140706": { + "Id": 140706, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140707": { + "Id": 140707, + "Name": "{RUBY_B#どうこく}慟哭{RUBY_E#}、{RUBY_B#し}死{RUBY_E#}の{RUBY_B#きざ}兆{RUBY_E#}しを{RUBY_B#おく}贈{RUBY_E#}る", + "Desc": "秘技を使用した後、#3[i]秒間継続する「冥茫」状態に入る。「冥茫」状態の敵はキャストリスに近づくことができない。\\n「冥茫」状態で攻撃を行うと、範囲内のすべての敵が戦闘に入る。同時に記憶の精霊「死竜」を召喚し、その行動順を100%早め境界「遺世の冥域」を展開する。「死竜」の残りHPは「新蕾」の上限#2[i]%分となる。戦闘に入った後、死竜以外の味方全体の残りHPを#1[i]%消費する。\\nなお、戦闘に入った後、死竜を召喚しなかった場合、キャストリスは「新蕾」の上限#4[i]%分の「新蕾」を獲得する。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 20, + 0.3000000002793968 + ] + } + } + }, + "140709": { + "Id": 140709, + "Name": "{RUBY_B#がいそう}骸爪{RUBY_E#}、{RUBY_B#めいりゅう}冥竜{RUBY_E#}の{RUBY_B#ほうよう}抱擁{RUBY_E#}", + "Desc": "死竜以外の味方の残りHP#1[i]%分のHPを消費し、キャストリスと死竜が連携攻撃を行い、敵全体にキャストリスの最大HP#2[f1]%分と#3[f1]%分の量子属性ダメージを与える。\\n残りHPが足りない場合、残りHPが1になる。", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.1500000001396984, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.40000000037252903, + 0.16499999980442226, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40000000037252903, + 0.18000000016763806, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903, + 0.19499999983236194, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.40000000037252903, + 0.21000000019557774, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 0.2249999998603016, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.40000000037252903, + 0.24375000083819032, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.40000000037252903, + 0.26250000041909516, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.40000000037252903, + 0.28125000069849193, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.40000000037252903, + 0.31499999994412065, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.40000000037252903, + 0.33000000030733645, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.40000000037252903, + 0.3449999999720603, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.40000000037252903, + 0.3600000003352761, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.40000000037252903, + 0.375, + 0.6250000002328306 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Maze.png", + "LevelUpSkillID": [ + 140707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.12000000011175871 + ], + "PointID": 1407101, + "PointName": "{RUBY_B#びん}瓶{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}の{RUBY_B#あんりゅう}暗流{RUBY_E#}", + "PointDesc": "死竜以外の味方が治癒を受けた後、治癒量の#1[i]%を「新蕾」に変換する。ただし、死竜がフィールドにいる場合は、死竜のHPに変換される。味方それぞれが累積できる変換量のカウントは「新蕾」の上限の#2[i]%を超えない。任意のユニットが行動した後、累積できる変換量のカウントはリセットされる。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903, + 1 + ], + "PointID": 1407102, + "PointName": "{RUBY_B#はんてん}反転{RUBY_E#}した{RUBY_B#きょか}炬火{RUBY_E#}", + "PointDesc": "キャストリスの残りHPが自身の最大HP#1[i]%以上の時、キャストリスの速度+#2[i]%。死竜が「晦冥焼き払う息吹」を発動し、フィールドにいるすべての敵にHPが0になるダメージを与えた時、または敵のHPがそれ以上削れない時、死竜の速度+#3[i]%、1ターン継続。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 6 + ], + "PointID": 1407103, + "PointName": "{RUBY_B#すんいんとど}寸陰留{RUBY_E#}まる{RUBY_B#にしかぜ}西風{RUBY_E#}", + "PointDesc": "死竜が「晦冥焼き払う息吹」を発動するたびに、与ダメージ+#1[i]%。この効果は最大#2[i]層まで累積できる。ターンが終了するまで継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407201, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407202, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1407201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407203, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1407201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407204, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1407101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407205, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1407101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407206, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1407102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407207, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1407102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407208, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1407103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407209, + "PointName": "ダメージ強化・量子", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1407208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "量子属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407210, + "PointName": "会心率強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1407209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "{RUBY_B#めいぼうさ}冥茫裂{RUBY_E#}く{RUBY_B#そうこん}爪痕{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "{RUBY_B#めいぼうさ}冥茫裂{RUBY_E#}く{RUBY_B#そうこん}爪痕{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "{RUBY_B#めいぼうさ}冥茫裂{RUBY_E#}く{RUBY_B#そうこん}爪痕{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "{RUBY_B#めいぼうさ}冥茫裂{RUBY_E#}く{RUBY_B#そうこん}爪痕{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "{RUBY_B#めいぼうさ}冥茫裂{RUBY_E#}く{RUBY_B#そうこん}爪痕{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "{RUBY_B#めいぼうさ}冥茫裂{RUBY_E#}く{RUBY_B#そうこん}爪痕{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "{RUBY_B#かいめいや}晦冥焼{RUBY_E#}き{RUBY_B#はら}払{RUBY_E#}う{RUBY_B#いぶき}息吹{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "{RUBY_B#かいめいや}晦冥焼{RUBY_E#}き{RUBY_B#はら}払{RUBY_E#}う{RUBY_B#いぶき}息吹{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "{RUBY_B#かいめいや}晦冥焼{RUBY_E#}き{RUBY_B#はら}払{RUBY_E#}う{RUBY_B#いぶき}息吹{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "{RUBY_B#かいめいや}晦冥焼{RUBY_E#}き{RUBY_B#はら}払{RUBY_E#}う{RUBY_B#いぶき}息吹{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "{RUBY_B#かいめいや}晦冥焼{RUBY_E#}き{RUBY_B#はら}払{RUBY_E#}う{RUBY_B#いぶき}息吹{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "{RUBY_B#かいめいや}晦冥焼{RUBY_E#}き{RUBY_B#はら}払{RUBY_E#}う{RUBY_B#いぶき}息吹{RUBY_E#}", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "死竜・ボリュクス", + "Icon": "SpriteOutput/ServantIconTeam/11407B.png", + "HPBase": "0", + "HPInherit": "0", + "HPSkill": null, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 140703, + "Aggro": 100, + "Skills": { + "1140701": { + "Name": "{RUBY_B#めいぼうさ}冥茫裂{RUBY_E#}く{RUBY_B#そうこん}爪痕{RUBY_E#}", + "Desc": "敵全体にキャストリスの最大HP#1[f1]%分の量子属性ダメージを与える。", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406 + ] + } + } + }, + "1140702": { + "Name": "{RUBY_B#かいめいや}晦冥焼{RUBY_E#}き{RUBY_B#はら}払{RUBY_E#}う{RUBY_B#いぶき}息吹{RUBY_E#}", + "Desc": "「晦冥焼き払う息吹」を発動すると、死竜の最大HP#1[i]%分のHPを消費し、敵全体にキャストリスの最大HP#2[f1]%分の量子属性ダメージを与える。\\n1回の攻撃で「晦冥焼き払う息吹」を重複して発動することができ、その際、ダメージ倍率はそれぞれ#3[f1]%/#4[f1]%までアップする。すでに#4[f1]%までアップした場合、それ以上は上がらない。また、この効果により上昇したダメージ倍率は死竜が消えるまで下がらない。\\n死竜の残りHPが自身の最大HPの#5[i]%以下の時にこのスキルを発動すると、HPが1になり、同時に精霊天賦「幽墟奪略の晦翼」と同じスキル効果が発動する。", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 0.12000000011175871, + 0.14000000013038516, + 0.17000000015832484, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064, + 0.14399999985471368, + 0.16799999959766865, + 0.20399999991059303, + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064, + 0.16799999959766865, + 0.19599999976344407, + 0.23799999966286123, + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064, + 0.19200000003911555, + 0.22399999992921948, + 0.27200000011362135, + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064, + 0.21599999978207052, + 0.2520000000949949, + 0.30599999986588955, + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064, + 0.24000000022351742, + 0.2800000002607703, + 0.3400000003166497, + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064, + 0.2639999999664724, + 0.3079999997280538, + 0.37400000006891787, + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064, + 0.28799999970942736, + 0.3359999998938292, + 0.40799999982118607, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064, + 0.31200000015087426, + 0.36400000005960464, + 0.4420000002719462, + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 0.3359999998938292, + 0.39200000022538006, + 0.4760000000242144, + 0.25000000023283064 + ] + } + } + }, + "1140703": { + "Name": "{RUBY_B#つき}月{RUBY_E#}の{RUBY_B#まゆ}繭{RUBY_E#}が{RUBY_B#おお}覆{RUBY_E#}う{RUBY_B#しんく}身躯{RUBY_E#}", + "Desc": "死竜がフィールドにいる時、味方の後陣となる。味方がダメージを受けるまたはHPを消費する時、残りHPが1を下回ることはない。以降のダメージは死竜が負担するが、死竜が消えるまで、本来の数値の#1[i]%に相当するHPを消費する。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5 + ] + } + } + }, + "1140705": { + "Name": "{RUBY_B#しじま}静寂{RUBY_E#}を{RUBY_B#ゆ}揺{RUBY_E#}るがす{RUBY_B#どこう}怒哮{RUBY_E#}", + "Desc": "死竜が召喚された時、味方全体の与ダメージ+#1[i]%#2[i]ターン継続。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + } + }, + "1140706": { + "Name": "{RUBY_B#ゆうきょだつりゃく}幽墟奪略{RUBY_E#}の{RUBY_B#かいよく}晦翼{RUBY_E#}", + "Desc": "死竜が消える時、敵に#2[i]回ダメージを与える。1ヒットごとにランダムな敵単体にキャストリスの最大HP#1[f1]%分の量子属性ダメージを与える。同時に味方全体のHPをキャストリスの最大HP#3[i]%+#4[i]回復する。", + "Type": null, + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 6, + 0.030000000027939677, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742, + 6, + 0.035999999614432454, + 480 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703, + 6, + 0.04199999989941716, + 560 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232, + 6, + 0.04799999948590994, + 640 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761, + 6, + 0.05399999977089465, + 720 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 6, + 0.060000000055879354, + 800 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193, + 6, + 0.06599999964237213, + 880 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484, + 6, + 0.07199999992735684, + 960 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877, + 6, + 0.07799999951384962, + 1040 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406, + 6, + 0.08399999979883432, + 1120 + ] + } + } + }, + "1140710": { + "Name": "{RUBY_B#かいめいや}晦冥焼{RUBY_E#}き{RUBY_B#はら}払{RUBY_E#}う{RUBY_B#いぶき}息吹{RUBY_E#}", + "Desc": null, + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1140711": { + "Name": "{RUBY_B#かいめいや}晦冥焼{RUBY_E#}き{RUBY_B#はら}払{RUBY_E#}う{RUBY_B#いぶき}息吹{RUBY_E#}", + "Desc": null, + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1140712": { + "Name": "{RUBY_B#ゆうきょだつりゃく}幽墟奪略{RUBY_E#}の{RUBY_B#かいよく}晦翼{RUBY_E#}", + "Desc": "HPをすべて消費し、敵に#2[i]回ダメージを与える。1ヒットごとにランダムな敵単体にキャストリスの最大HPの#1[f1]%分の量子属性ダメージを与える。同時に味方全体のHPをキャストリスの最大HP#3[i]%+#4[i]回復する。", + "Type": "Servant", + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 6, + 0.030000000027939677, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742, + 6, + 0.035999999614432454, + 480 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703, + 6, + 0.04199999989941716, + 560 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232, + 6, + 0.04799999948590994, + 640 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761, + 6, + 0.05399999977089465, + 720 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 6, + 0.060000000055879354, + 800 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193, + 6, + 0.06599999964237213, + 880 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484, + 6, + 0.07199999992735684, + 960 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877, + 6, + 0.07799999951384962, + 1040 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406, + 6, + 0.08399999979883432, + 1120 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": { + "140704": { + "Tag": "サポート", + "Name": "{RUBY_B#つき}月{RUBY_E#}の{RUBY_B#まゆ}繭{RUBY_E#}の{RUBY_B#ひご}庇護{RUBY_E#}", + "Desc": "キャラクター「キャストリス」を持っている、またはパーティ内にキャストリスがいる場合、以下の効果を獲得する:\\n戦闘中、味方キャラがHPが0になる攻撃を受けた時、その回の行動でHPが0になる攻撃を受けた味方キャラは「月の繭」状態を得る。「月の繭」状態のキャラは戦闘不能状態になるのを遅延させ、通常通り行動することができる。キャラが行動した後、次のターンが回ってくる前に残りHPが上昇する、もしくはバリアを獲得した場合、「月の繭」状態は解除される。それ以外の場合は、即座に戦闘不能状態となる。この効果は一度の戦闘で1回まで発動できる。", + "Param": [ + 0.10000000009313226 + ] + } + }, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 310.46400000015274, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 399.16799999959767, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 487.8720000006724, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 576.5760000001173, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 665.2800000002608, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 753.984000000637, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1407, + "Set4IDList": [ + 124, + 108, + 113 + ], + "Set2IDList": [ + 319, + 302, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "HPAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio" + ], + "ScoreRankList": [ + 319, + 261 + ] + } + }, + "1408": { + "Name": "ファイノン", + "Desc": "エリュシオンは世界から切り離された辺境の村であり、今では複雑で謎めいた伝説しか残されていない。\\n無名の英雄█████、「世負い」の火種を宿す黄金裔よ——全世界の理想をその胸に刻み、万人の運命を背負い、新たな世界に最初の曙光をもたらせ。\\n——「もし黎明が未だ訪れていないというのなら、この身を心火で燃やし尽くし、明日の烈陽となろう!」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "phainon", + "SPNeed": 12, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 140801, + "Name": "ファイノン星魂1", + "Desc": "█████の追加ターンの速度が█████の基礎速度#1[i]%分までアップする。「火種」が上限に達した時、自身の物理属性耐性貫通+#2[i]%#3[i]ターン継続。", + "ParamList": [ + 0.7200000006705523, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Id": 140802, + "Name": "ファイノン星魂2", + "Desc": "█████の攻撃による与ダメージは本来の#2[i]%分になる。「壊傷」#1[i]消費し、「支柱・死星天裁」を発動する時、追加ターンを1獲得する。", + "ParamList": [ + 4, + 1.2000000001862645 + ] + }, + "3": { + "Id": 140803, + "Name": "ファイノン星魂3", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 140804, + "Name": "ファイノン星魂4", + "Desc": "「厄災・魂焼令却」を発動する時、追加で「魂を弑す熾炎」を#1[i]層獲得する。", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 140805, + "Name": "ファイノン星魂5", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "6": { + "Id": 140806, + "Name": "ファイノン星魂6", + "Desc": "「壊傷」の上限+2。「創生・血棘渡死」または「災厄・魂焼令却」を発動する時、追加で「壊傷」#2[i]獲得する。「支柱・死星天裁」の攻撃を発動した後、残りHPが最も高い敵に、その回の攻撃の合計ダメージ#1[i]%分の確定ダメージを追加で与える。", + "ParamList": [ + 0.20000000018626451, + 2 + ] + } + }, + "Skills": { + "140801": { + "Id": 140801, + "Name": "火を追い世を救う、行けば必ず至らん", + "Desc": "指定した敵単体にファイノンの攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140802": { + "Id": 140802, + "Name": "黎明創世、天地開闢", + "Desc": "「火種」を#3[i]獲得し、指定した敵単体にファイノンの攻撃力#1[i]%分の物理属性ダメージを与え、隣接する敵にファイノンの攻撃力#2[i]%分の物理属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.6500000006053597, + 0.6600000006146729, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9500000008847564, + 0.7800000007264316, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 0.9000000008381903, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.4375000002328306, + 0.9750000005587935, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.6250000002328306, + 1.0500000000465661, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.8125000009313226, + 1.1249999997671694, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.2000000001862645, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1500000001396984, + 1.2600000002421439, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.3000000002793968, + 1.3200000002980232, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.450000000419095, + 1.3800000003539026, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.6000000005587935, + 1.440000000409782, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.750000000698492, + 1.5000000004656613, + 2 + ] + } + } + }, + "140803": { + "Id": 140803, + "Name": "燃える世の永劫、背負うべき未来", + "Desc": "█████に変身し、変身している間境界を展開する。境界内では、自身以外の味方キャラが一時離脱となり、行動できなくなる。境界継続中、敵全体は物理属性弱点を持つ。\\n█████は自身のターンには入らず、その代わり█████の追加ターン#4[i]ターン持ち、速度は基礎速度の#3[i]に固定される。最後の█████の追加ターンが回ってきた時、即座に最後の一撃を発動し、█████の攻撃力#1[i]%分の物理属性必殺技ダメージを与える。なお、このダメージは敵全体で均等に分担される。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4.800000000745058, + 12, + 0.6000000005587935, + 8 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.28000000026077, + 12, + 0.6000000005587935, + 8 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5.760000000707805, + 12, + 0.6000000005587935, + 8 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.240000000223517, + 12, + 0.6000000005587935, + 8 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 6.720000000670552, + 12, + 0.6000000005587935, + 8 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.2000000001862645, + 12, + 0.6000000005587935, + 8 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7.800000000745058, + 12, + 0.6000000005587935, + 8 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.400000000372529, + 12, + 0.6000000005587935, + 8 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9, + 12, + 0.6000000005587935, + 8 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 9.600000000558794, + 12, + 0.6000000005587935, + 8 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.080000000074506, + 12, + 0.6000000005587935, + 8 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 10.56000000052154, + 12, + 0.6000000005587935, + 8 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.040000000037253, + 12, + 0.6000000005587935, + 8 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 11.520000000484288, + 12, + 0.6000000005587935, + 8 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12, + 12, + 0.6000000005587935, + 8 + ] + } + } + }, + "140804": { + "Id": 140804, + "Name": "この身は炬火なり", + "Desc": "ファイノンの天賦。「火種」が#4[i]に達すると必殺技を発動でき、上限に到達した後も、最大#3[i]まで上限を超えられる。\\nファイノンが味方または任意の敵単体のスキルターゲットになった時、「火種」を1獲得する。味方のスキルターゲットになった時、会心ダメージ+#1[i]%#2[i]ターン持続。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 3, + 3, + 12 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 3, + 3, + 12 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 3, + 3, + 12 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 3, + 3, + 12 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 3, + 3, + 12 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 3, + 3, + 12 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 3, + 3, + 12 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 3, + 3, + 12 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 3, + 3, + 12 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 3, + 12 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 3, + 3, + 12 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 3, + 3, + 12 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 3, + 3, + 12 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 3, + 3, + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 3, + 3, + 12 + ] + } + } + }, + "140805": { + "Id": 140805, + "Name": "運命・この体こそ神", + "Desc": "█████の天賦。変身する時、「壊傷」#1[i]獲得する。その時、味方のターンである場合、その味方が所持しているすべてのバフの継続時間を1ターン延長して、そのターンを終了させる。\\n█████は行動制限系デバフに抵抗し、強化通常攻撃を1つ、強化戦闘スキルを2つ持つ。必殺技を発動することはできない。変身している間、攻撃力+#4[i]%、最大HP+#5[i]%。攻撃を行った後、自身の最大HP#7[i]%分のHPを回復する。█████はHPが0になる攻撃を受けた時、戦闘不能状態にはならず、その代わり、自身の最大HP#2[i]%分のHPを回復し、即座に最後の一撃を発動する。その際、残っている█████の追加ターン1つにつき、最後の一撃のダメージ倍率が本来の倍率の#3[f1]%分ダウンする。\\n変身を解除する時、味方全体の速度+#6[i]%、1ターン継続。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.40000000037252903, + 1.2000000001862645, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.44000000040978193, + 1.3200000002980232, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.48000000044703484, + 1.440000000409782, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.5200000004842877, + 1.5600000005215406, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.5600000005215406, + 1.6800000006332994, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.6000000005587935, + 1.800000000745058, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.6500000006053597, + 1.9500000008847564, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.7000000006519258, + 2.1000000000931323, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.7500000006984919, + 2.2500000002328306, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.8000000007450581, + 2.400000000372529, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.840000000782311, + 2.5200000004842877, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.8800000008195639, + 2.6400000005960464, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.9200000008568168, + 2.760000000707805, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.9600000008940697, + 2.880000000819564, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 1, + 3, + 0.1500000001396984, + 0.20000000018626451 + ] + } + } + }, + "140806": { + "Id": 140806, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140807": { + "Id": 140807, + "Name": "終わりの始まり", + "Desc": "ファイノンがパーティにいる時、秘技PT上限+3。\\n秘技を発動すると、秘技PTを2消費し、即座に一定範囲内のすべての敵を攻撃する。戦闘に入った後、自身以外の味方キャラのEPを#3[i]回復し、「壊傷」#2[i]、SPを#4[i]獲得する。さらに各ウェーブ開始時、敵全体にファイノンの攻撃力#1[i]%分の物理属性ダメージを与える。\\n通常エネミーを攻撃する時ターゲットはその場で倒され、戦闘に入らない。敵に命中しなかった場合、秘技PTは消費されない。", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 2, + 25, + 1 + ] + } + } + }, + "140808": { + "Id": 140808, + "Name": "創生・血棘渡死", + "Desc": "「壊傷」#3[i]獲得し、指定した敵単体に█████の攻撃力#1[i]%分の物理属性ダメージを与え、隣接する敵に█████の攻撃力#2[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 0.375, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5000000004656613, + 0.45000000041909516, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.750000000698492, + 0.5250000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.6000000005587935, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2500000002328306, + 0.6750000002793968, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5000000004656613, + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.750000000698492, + 0.8250000004190952, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.9000000008381903, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.2500000002328306, + 0.9750000005587935, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.5000000004656613, + 1.0500000000465661, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.7800000007264316, + 0.9450000005308539, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.9600000008940697, + 0.9900000009220093, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.140000000130385, + 1.0349999996833503, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.320000000298023, + 1.0800000000745058, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.500000000465661, + 1.1249999997671694, + 2 + ] + } + } + }, + "140809": { + "Id": 140809, + "Name": "厄災・魂焼令却", + "Desc": "敵全体の数と同等の「壊傷」を獲得し、その後敵全体を即座に行動させ、「魂を弑す熾炎」を1層獲得する。\\n「魂を弑す熾炎」状態中、█████の受けるダメージ-#2[i]%、さらに敵が攻撃を行いまたは行動した後、「魂を弑す熾炎」を1層獲得する。即座に行動させられた敵全体が行動した後、カウンターを発動し、敵全体に█████の攻撃力#1[i]%分の物理属性ダメージを与え、さらに#3[i]ヒットする。1ヒットごとにランダムな敵単体に█████の攻撃力#4[i]%分の物理属性ダメージを与える。その後「魂を弑す熾炎」を解除する。「魂を弑す熾炎」1層につき、その回のカウンターのダメージ倍率が本来の倍率の#5[i]%分アップする。\\nこのスキルによるダメージは戦闘スキルダメージとみなす。█████の追加ターンが回ってきた時、「魂を弑す熾炎」を所持している場合、即座にカウンターを発動する。", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.7500000006984919, + 4, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.7500000006984919, + 4, + 0.16499999980442226, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.7500000006984919, + 4, + 0.18000000016763806, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.7500000006984919, + 4, + 0.19499999983236194, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.7500000006984919, + 4, + 0.21000000019557774, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.7500000006984919, + 4, + 0.2249999998603016, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.7500000006984919, + 4, + 0.24375000083819032, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.7500000006984919, + 4, + 0.26250000041909516, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.7500000006984919, + 4, + 0.28125000069849193, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.7500000006984919, + 4, + 0.3000000002793968, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.7500000006984919, + 4, + 0.31499999994412065, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.7500000006984919, + 4, + 0.33000000030733645, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.7500000006984919, + 4, + 0.3449999999720603, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.7500000006984919, + 4, + 0.3600000003352761, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919, + 4, + 0.375, + 0.20000000018626451 + ] + } + } + }, + "140811": { + "Id": 140811, + "Name": "支柱・死星天裁", + "Desc": "自身のすべてのデバフを解除し、その後、最大で█████の攻撃力#5[i]%分の物理属性ダメージを与える。\\n「壊傷」を1消費するたびに#3[i]ヒットする。1ヒットごとにランダムな敵単体に█████の攻撃力#2[i]%分の物理属性ダメージを与える。「壊傷」#4[i]消費した時、追加で█████の攻撃力#1[i]%分の物理属性ダメージを与える。なお、このダメージは敵全体で均等に分担される。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 10, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2500000002328306, + 0.2249999998603016, + 4, + 4, + 5.850000000791624 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.4750000000931323, + 0.24750000005587935, + 4, + 4, + 6.435000000055879 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.700000000651926, + 0.2700000002514571, + 4, + 4, + 7.0200000000186265 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.9250000005122274, + 0.29250000044703484, + 4, + 4, + 7.605000000214204 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.1500000001396984, + 0.31499999994412065, + 4, + 4, + 8.190000000176951 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.375, + 0.3375000001396984, + 4, + 4, + 8.775000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.656250000698492, + 0.36562500055879354, + 4, + 4, + 9.506250000558794 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.937500000698492, + 0.3937500009778887, + 4, + 4, + 10.237500000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.218750000465661, + 0.42187500139698386, + 4, + 4, + 10.968750001164153 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 0.45000000041909516, + 4, + 4, + 11.700000000651926 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.725000000325963, + 0.4725000006146729, + 4, + 4, + 12.284999999916181 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.9500000008847564, + 0.4950000001117587, + 4, + 4, + 12.87000000081025 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 5.1749999998137355, + 0.5175000003073364, + 4, + 4, + 13.455000000074506 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.400000000372529, + 0.5400000005029142, + 4, + 4, + 14.040000000037253 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.625000000232831, + 0.5625000006984919, + 4, + 4, + 14.62500000023283 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Maze.png", + "LevelUpSkillID": [ + 140807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1408101, + "PointName": "世界の終点へ赴く", + "PointDesc": "変身終了時、「火種」を#1[i]獲得する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903, + 4, + 1 + ], + "PointID": 1408102, + "PointName": "幾千万の炎を携えて", + "PointDesc": "自身以外の味方キャラによる治癒効果またはバリアを得た時、与ダメージ+#1[i]%#2[i]ターン継続。この効果は1ターンに1回まで発動できる。\\n自身以外の味方キャラのスキルによるEP回復効果を受けた時、「火種」を#3[i]獲得する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ], + "PointID": 1408103, + "PointName": "英雄の本色を映し出す", + "PointDesc": "戦闘に入るまたは変身終了時に、攻撃力+#1[i]%。この効果は最大で#2[i]層まで累積できる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408201, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408202, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1408101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "会心率" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408203, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1408202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408204, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1408203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408205, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1408102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408206, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1408205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "会心率" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408207, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1408206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408208, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1408103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408209, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1408208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "会心率" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408210, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1408208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 99, + "DefenceAdd": 4.9500000008847564, + "HPBase": 195.36000000033528, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 273.50400000019, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 4.9500000008847564, + "HPBase": 351.6480000000447, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 4.9500000008847564, + "HPBase": 429.7920000005979, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.9500000008847564, + "HPBase": 507.9360000004526, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 297, + "DefenceAdd": 4.9500000008847564, + "HPBase": 586.0800000000745, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 336.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 664.2239999999292, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1408, + "Set4IDList": [ + 126, + 105, + 122 + ], + "Set2IDList": [ + 321, + 309, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 324, + 266 + ] + } + }, + "1409": { + "Name": "ヒアンシー", + "Desc": "雲上の都市国家が時の流れと共に崩れゆこうとも、昏光の庭は再びその扉を開き、永夜に微かな光をもたらした。\\n医師ヒアシンシア、「天空」の火種を見守る黄金裔。先祖の意志を継ぎ、引き裂かれた晨昏を繕う者である。\\n——願わくば虹色の光が降り注ぎ、すべての怨恨を消し去り、この地に再び黎明をもたらさんことを。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "hyacine", + "SPNeed": 140, + "BaseType": "Memory", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 140901, + "Name": "{RUBY_B#やみよ}闇夜{RUBY_E#}の{RUBY_B#とうか}灯火{RUBY_E#}を{RUBY_B#まも}守{RUBY_E#}って", + "Desc": "ヒアンシーが「雨上がり」状態の時、味方それぞれの最大HPアップ効果がさらに#1[i]%アップする。また、味方が攻撃を行った後、その味方のHPをヒアンシーの最大HP#2[i]%分回復する。", + "ParamList": [ + 0.5000000004656613, + 0.0800000000745058 + ] + }, + "2": { + "Id": 140902, + "Name": "わたしの{RUBY_B#にわ}庭{RUBY_E#}でくつろいで", + "Desc": "味方のHPが減った時、速度+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 140903, + "Name": "{RUBY_B#しゅっぱつ}出発{RUBY_E#}!\\n{RUBY_B#たいよう}太陽{RUBY_E#}へ{RUBY_B#む}向{RUBY_E#}かう{RUBY_B#ぼうけん}冒険{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。精霊スキルのLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 140904, + "Name": "お{RUBY_B#ひさまいろ}日様色{RUBY_E#}の{RUBY_B#こはく}琥珀{RUBY_E#}を\\nあなたに", + "Desc": "軌跡「凪いだ暴風」が強化される。超過した速度#1[i]につき、さらにヒアンシーと「イカルン」の会心ダメージ+#2[i]%。", + "ParamList": [ + 1, + 0.02000000001862645 + ] + }, + "5": { + "Id": 140905, + "Name": "{RUBY_B#うみ}海{RUBY_E#}に{RUBY_B#ゆ}揺{RUBY_E#}らぐ{RUBY_B#あか}赤{RUBY_E#}い{RUBY_B#かすみ}霞{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。精霊天賦のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 140906, + "Name": "{RUBY_B#てんくう}天空{RUBY_E#}よ…\\n{RUBY_B#ねが}願{RUBY_E#}いを{RUBY_B#かな}叶{RUBY_E#}えたまえ", + "Desc": "「イカルン」が精霊スキルを発動した後、クリアされる累計治癒量の割合が#1[i]%になる。イカルンがフィールド上にいる時、味方全体の全属性耐性貫通+#2[i]%。", + "ParamList": [ + 0.12000000011175871, + 0.20000000018626451 + ] + } + }, + "Skills": { + "140901": { + "Id": 140901, + "Name": "{RUBY_B#くも}雲{RUBY_E#}を{RUBY_B#な}撫{RUBY_E#}でるそよ{RUBY_B#かぜ}風{RUBY_E#}", + "Desc": "指定した敵単体にヒアンシーの最大HP#1[i]%分の風属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140902": { + "Id": 140902, + "Name": "{RUBY_B#ふ}降{RUBY_E#}り{RUBY_B#そそ}注{RUBY_E#}ぐ{RUBY_B#さいこう}彩虹{RUBY_E#}の{RUBY_B#あい}愛{RUBY_E#}", + "Desc": "記憶の精霊「イカルン」を召喚する。イカルン以外の味方全体のHPを、ヒアンシーの最大HP#1[f1]%+#2[i]回復する。イカルンのHPをヒアンシーの最大HP#3[f1]%+#4[i]回復する。", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 40, + 0.05000000004656613, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04499999969266355, + 64, + 0.056250000139698386, + 80 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.05000000004656613, + 82, + 0.06250000023283064, + 102.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.054999999701976776, + 100, + 0.0687500003259629, + 125 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.060000000055879354, + 112, + 0.07499999972060323, + 140 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.06399999978020787, + 124, + 0.0800000000745058, + 155 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06799999950453639, + 133, + 0.08499999972991645, + 166.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.07199999992735684, + 142, + 0.09000000008381903, + 177.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07599999965168536, + 151, + 0.09499999973922968, + 188.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0800000000745058, + 160, + 0.10000000009313226, + 200 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.08399999979883432, + 169, + 0.1049999997485429, + 211.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.08799999952316284, + 178, + 0.11000000010244548, + 222.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.09199999994598329, + 187, + 0.11499999975785613, + 233.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.09599999967031181, + 196, + 0.12000000011175871, + 245 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.10000000009313226, + 205, + 0.12499999976716936, + 256.25000000023283 + ] + } + } + }, + "140903": { + "Id": 140903, + "Name": "{RUBY_B#しんこん}晨昏{RUBY_E#}に{RUBY_B#と}飛{RUBY_E#}び{RUBY_B#こ}込{RUBY_E#}むわたしたち", + "Desc": "記憶の精霊「イカルン」を召喚する。イカルン以外の味方全体のHPを、ヒアンシーの最大HP#1[f1]%+#2[i]回復する。イカルンのHPをヒアンシーの最大HP#6[f1]%+#7[i]回復する。ヒアンシーは「雨上がり」状態になる、#5[i]ターン継続。ヒアンシーのターンが回ってくるたびに継続時間-1ターン。ヒアンシーが「雨上がり」状態の時、味方それぞれの最大HPが#3[f1]%+#4[i]アップ。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 50, + 0.1500000001396984, + 150, + 3, + 0.060000000055879354, + 60 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.056250000139698386, + 80, + 0.16499999980442226, + 240, + 3, + 0.06749999988824129, + 96 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.06250000023283064, + 102.50000000046566, + 0.18000000016763806, + 307.50000000046566, + 3, + 0.07499999972060323, + 123 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.0687500003259629, + 125, + 0.19499999983236194, + 375, + 3, + 0.0825000002514571, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07499999972060323, + 140, + 0.21000000019557774, + 420, + 3, + 0.09000000008381903, + 168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0800000000745058, + 155, + 0.2249999998603016, + 465, + 3, + 0.09599999967031181, + 186 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08499999972991645, + 166.25000000023283, + 0.24375000083819032, + 498.7500000006985, + 3, + 0.10199999995529652, + 199.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09000000008381903, + 177.50000000046566, + 0.26250000041909516, + 532.5000000004657, + 3, + 0.1079999995417893, + 213 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09499999973922968, + 188.7500000006985, + 0.28125000069849193, + 566.2500000002328, + 3, + 0.113999999826774, + 226.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 200, + 0.3000000002793968, + 600, + 3, + 0.12000000011175871, + 240 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 211.25000000023283, + 0.31499999994412065, + 633.7500000006985, + 3, + 0.12599999969825149, + 253.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 222.50000000046566, + 0.33000000030733645, + 667.5000000004657, + 3, + 0.1319999999832362, + 267 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 233.7500000006985, + 0.3449999999720603, + 701.2500000002328, + 3, + 0.13799999956972897, + 280.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 245, + 0.3600000003352761, + 735, + 3, + 0.14399999985471368, + 294 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 256.25000000023283, + 0.375, + 768.7500000006985, + 3, + 0.1500000001396984, + 307.50000000046566 + ] + } + } + }, + "140904": { + "Id": 140904, + "Name": "{RUBY_B#せかい}世界{RUBY_E#}を{RUBY_B#い}癒{RUBY_E#}やす{RUBY_B#あかつき}暁{RUBY_E#}の{RUBY_B#ひかり}光{RUBY_E#}", + "Desc": "記憶の精霊「イカルン」の初期最大HPは、ヒアンシーの最大HP#1[i]%分となる。ヒアンシーまたはイカルンが治癒を行う時、イカルンの与ダメージ+#3[i]%#4[i]ターン継続。最大で#5[i]層累積できる。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1, + 0.40000000037252903, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 1, + 0.44000000040978193, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 1, + 0.48000000044703484, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 1, + 0.5200000004842877, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 1, + 0.5600000005215406, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 1, + 0.6000000005587935, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 1, + 0.6500000006053597, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 1, + 0.7000000006519258, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 1, + 0.7500000006984919, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 0.8000000007450581, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 1, + 0.840000000782311, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 1, + 0.8800000008195639, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 1, + 0.9200000008568168, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 1, + 0.9600000008940697, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 1, + 1, + 2, + 3 + ] + } + } + }, + "140906": { + "Id": 140906, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140907": { + "Id": 140907, + "Name": "お{RUBY_B#ひさま}日様{RUBY_E#}ぽかぽか、{RUBY_B#かがや}輝{RUBY_E#}くみんな!", + "Desc": "次の戦闘開始時、味方全体のHPをヒアンシーの最大HP#1[i]%+#2[i]回復する。また、味方それぞれの最大HP+#3[i]%#4[i]ターン継続。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 600, + 0.20000000018626451, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "{RUBY_B#こくうんたいさん}黒雲退散{RUBY_E#}!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "{RUBY_B#こくうんたいさん}黒雲退散{RUBY_E#}!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "{RUBY_B#こくうんたいさん}黒雲退散{RUBY_E#}!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "{RUBY_B#こくうんたいさん}黒雲退散{RUBY_E#}!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "{RUBY_B#こくうんたいさん}黒雲退散{RUBY_E#}!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "{RUBY_B#こくうんたいさん}黒雲退散{RUBY_E#}!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "{RUBY_B#あおぞら}青空{RUBY_E#}と{RUBY_B#て}手{RUBY_E#}を{RUBY_B#と}取{RUBY_E#}り{RUBY_B#あ}合{RUBY_E#}って", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "{RUBY_B#あおぞら}青空{RUBY_E#}と{RUBY_B#て}手{RUBY_E#}を{RUBY_B#と}取{RUBY_E#}り{RUBY_B#あ}合{RUBY_E#}って", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "{RUBY_B#あおぞら}青空{RUBY_E#}と{RUBY_B#て}手{RUBY_E#}を{RUBY_B#と}取{RUBY_E#}り{RUBY_B#あ}合{RUBY_E#}って", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "{RUBY_B#あおぞら}青空{RUBY_E#}と{RUBY_B#て}手{RUBY_E#}を{RUBY_B#と}取{RUBY_E#}り{RUBY_B#あ}合{RUBY_E#}って", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "{RUBY_B#あおぞら}青空{RUBY_E#}と{RUBY_B#て}手{RUBY_E#}を{RUBY_B#と}取{RUBY_E#}り{RUBY_B#あ}合{RUBY_E#}って", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "{RUBY_B#あおぞら}青空{RUBY_E#}と{RUBY_B#て}手{RUBY_E#}を{RUBY_B#と}取{RUBY_E#}り{RUBY_B#あ}合{RUBY_E#}って", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Maze.png", + "LevelUpSkillID": [ + 140907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.25000000023283064 + ], + "PointID": 1409101, + "PointName": "{RUBY_B#ほほえ}微笑{RUBY_E#}む{RUBY_B#あんうん}暗雲{RUBY_E#}", + "PointDesc": "ヒアンシーと「イカルン」の会心率+#1[i]%。残りHPが最大HP#2[i]%以下の味方に治癒を行う時、ヒアンシーとイカルンの治癒量+#3[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ], + "PointID": 1409102, + "PointName": "{RUBY_B#やさ}優{RUBY_E#}しい{RUBY_B#らいう}雷雨{RUBY_E#}", + "PointDesc": "ヒアンシーの効果抵抗+#1[i]%。戦闘スキルまたは必殺技を発動する時、味方それぞれのデバフ#2[i]つ解除する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 200, + 0.20000000018626451, + 1, + 0.010000000009313226, + 200 + ], + "PointID": 1409103, + "PointName": "{RUBY_B#な}凪{RUBY_E#}いだ{RUBY_B#ぼうふう}暴風{RUBY_E#}", + "PointDesc": "ヒアンシーの速度が#1[i]を超える時、ヒアンシーと「イカルン」の最大HP+#2[i]%。超過した速度#3[i]につき、ヒアンシーとイカルンの治癒量+#4[i]%、超過した速度は最大#5[i]までカウントされる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409201, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409202, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1409201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409203, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1409201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "速度" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1409101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409205, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1409101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409206, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1409102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409207, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1409102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "速度" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1409103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409209, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1409208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "効果抵抗" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409210, + "PointName": "速度強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1409209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "速度" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "イカルン", + "Icon": "SpriteOutput/ServantIconTeam/11409B.png", + "HPBase": "0", + "HPInherit": "#1", + "HPSkill": 140904, + "SpeedBase": "0", + "SpeedInherit": "0", + "SpeedSkill": 140904, + "Aggro": 100, + "Skills": { + "1140901": { + "Name": "{RUBY_B#こくうんたいさん}黒雲退散{RUBY_E#}!", + "Desc": "敵全体に、ヒアンシーと「イカルン」の本戦闘における累計治癒量#1[i]%分の風属性ダメージを与える。その後、#2[i]%分の累計治癒量がクリアされる。", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613 + ] + } + } + }, + "1140903": { + "Name": "{RUBY_B#あおぞら}青空{RUBY_E#}と{RUBY_B#て}手{RUBY_E#}を{RUBY_B#と}取{RUBY_E#}り{RUBY_B#あ}合{RUBY_E#}って", + "Desc": "「イカルン」の速度は0に固定され、デバフ効果に抵抗でき、アクションバーにも表示されない。\\nイカルン以外の味方のHPが減った場合、イカルンはいずれかのユニットのターンが回ってきた時、または行動した後に、自身の最大HP#1[i]%分のHPを消費し、HPが減った味方のHPをヒアンシーの最大HP#2[f1]%+#3[i]回復する。\\nヒアンシーが「雨上がり」状態の時、イカルンはヒアンシーがスキルを発動した後に追加ターンを1獲得し、自動で「黒雲退散!」を発動する。また、イカルンが精霊天賦の治癒効果を発動する時、さらに味方全体のHPをヒアンシーの最大HP#4[f1]%+#5[i]回復する。イカルンがスキルを発動した後、自身にあるすべての持続効果の継続ターン数-1。", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 0.010000000009313226, + 10, + 0.010000000009313226, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.0400000000372529, + 0.011999999871477485, + 12, + 0.011999999871477485, + 12 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.0400000000372529, + 0.013999999733641744, + 14, + 0.013999999733641744, + 14 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.0400000000372529, + 0.015999999595806003, + 16, + 0.015999999595806003, + 16 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.0400000000372529, + 0.01799999945797026, + 18, + 0.01799999945797026, + 18 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0400000000372529, + 0.02000000001862645, + 20, + 0.02000000001862645, + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.0400000000372529, + 0.02199999988079071, + 22, + 0.02199999988079071, + 22 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.0400000000372529, + 0.02399999974295497, + 24, + 0.02399999974295497, + 24 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.0400000000372529, + 0.02599999960511923, + 26, + 0.02599999960511923, + 26 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0400000000372529, + 0.027999999467283487, + 28, + 0.027999999467283487, + 28 + ] + } + } + }, + "1140905": { + "Name": "{RUBY_B#は}羽{RUBY_E#}ばたけ、{RUBY_B#かがや}輝{RUBY_E#}く{RUBY_B#たいよう}太陽{RUBY_E#}へ", + "Desc": "召喚された時、ヒアンシーのEPを#1[i]回復する。戦闘中に初めて召喚された時は、さらにEPを#2[i]回復する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 30 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 15, + 30 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 15, + 30 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 15, + 30 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 15, + 30 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 15, + 30 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 15, + 30 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 15, + 30 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 15, + 30 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 15, + 30 + ] + } + } + }, + "1140906": { + "Name": "{RUBY_B#お}墜{RUBY_E#}ちてなお、{RUBY_B#てんくう}天空{RUBY_E#}を{RUBY_B#か}翔{RUBY_E#}けよ", + "Desc": "退場する時、ヒアンシーの行動順を#1[i]%早める。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 52.80000000074506, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 73.92000000085682, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 95.04000000003725, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 116.16000000014901, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 137.28000000026077, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 158.40000000037253, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 179.5200000004843, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1409, + "Set4IDList": [ + 125, + 101, + 114 + ], + "Set2IDList": [ + 320, + 302, + 308 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "WindAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 304, + 253 + ] + } + }, + "8001": { + "Name": "{NICKNAME}", + "Desc": "星穹列車に乗車した{F#少女}{M#少年}。\\n星核がもたらす危機を回避するため、星穹列車に同行することを選択した。", + "CharaInfo": { + "Camp": "星穹列車", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 101, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 102, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 103, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 104, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 105, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 106, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 107, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 108, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 109, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 110, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 111, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 112, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 113, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 114, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 115, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 116, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 117, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 118, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 119, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 120, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 121, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 122, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 123, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 124, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 125, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 126, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 127, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 128, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 129, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 130, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 131, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 132, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 133, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 134, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 995, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 996, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 992, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 993, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 997, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 994, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 998, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 999, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 800101, + "Name": "{RUBY_B#まんかい}万界{RUBY_E#}に{RUBY_B#ついりん}墜臨{RUBY_E#}した{RUBY_B#せいぼう}星芒{RUBY_E#}", + "Desc": "必殺技で敵を倒した時、さらに開拓者のEPを#1[i]回復する。この効果は1回の攻撃で1回まで発動できる。", + "ParamList": [ + 10 + ] + }, + "2": { + "Id": 800102, + "Name": "{RUBY_B#えん}縁{RUBY_E#}の{RUBY_B#もと}下{RUBY_E#}{RUBY_B#かごう}假合{RUBY_E#}した{RUBY_B#じんしん}人身{RUBY_E#}", + "Desc": "攻撃を行った後、攻撃が命中した敵の弱点が物理属性の場合、開拓者の攻撃力#1[i]%分のHPを回復する。", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 800103, + "Name": "{RUBY_B#ぜんろ}前路{RUBY_E#}を{RUBY_B#しめ}示{RUBY_E#}す{RUBY_B#ことだま}言霊{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 800104, + "Name": "{RUBY_B#きめつ}毀滅{RUBY_E#}の{RUBY_B#しゅんかん}瞬間{RUBY_E#}を{RUBY_B#ぎょうし}凝視{RUBY_E#}する{RUBY_B#ひとみ}瞳{RUBY_E#}", + "Desc": "弱点撃破状態の敵に攻撃が命中した時、会心率+#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Id": 800105, + "Name": "{RUBY_B#さいごう}災劫{RUBY_E#}に{RUBY_B#も}燃{RUBY_E#}える{RUBY_B#さいせい}再生{RUBY_E#}の{RUBY_B#きぼう}希望{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 800106, + "Name": "{RUBY_B#たくうぎょうてん}拓宇行天{RUBY_E#}の{RUBY_B#いし}意志{RUBY_E#}", + "Desc": "開拓者が敵を倒した時も、天賦が発動する。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800101": { + "Id": 800101, + "Name": "サヨナラ{RUBY_B#あんだ}安打{RUBY_E#}", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800102": { + "Id": 800102, + "Name": "{RUBY_B#あんそく}安息{RUBY_E#}ホームラン", + "Desc": "指定した敵単体および隣接する敵に開拓者の攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.562500000698492 + ] + } + } + }, + "800103": { + "Id": 800103, + "Name": "スターダストエース", + "Desc": "2つの攻撃モードの内の1つを選択し全力のバッティングをお見舞いする。\\n「全勝・サヨナラ安打」:指定した敵単体に開拓者の攻撃力#1[i]%分の物理属性ダメージを与える。\\n「全勝・安息ホームラン」:指定した敵単体に開拓者の攻撃力#2[i]%分の物理属性ダメージを与え、隣接する敵に開拓者の攻撃力#3[i]%分の物理属性ダメージを与える。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968, + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095, + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935, + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492, + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492, + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169, + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661, + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536, + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058, + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564, + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132, + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831, + 3.1500000001396984, + 1.890000000828877 + ] + } + } + }, + "800104": { + "Id": 800104, + "Name": "{RUBY_B#とうるいけんせい}盗塁牽制{RUBY_E#}", + "Desc": "敵を弱点撃破した後、攻撃力+#1[i]%、最大で#2[i]回累積できる。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "800106": { + "Id": 800106, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800107": { + "Id": 800107, + "Name": "{RUBY_B#ふめつさんしん}不滅三振{RUBY_E#}", + "Desc": "秘技を使用した後、味方全体のHPをそれぞれの最大HP#1[i]%分回復する。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + } + } + }, + "800108": { + "Id": 800108, + "Name": "{RUBY_B#ぜんしょう}全勝{RUBY_E#}・サヨナラ{RUBY_B#あんだ}安打{RUBY_E#}", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831 + ] + } + } + }, + "800109": { + "Id": 800109, + "Name": "{RUBY_B#ぜんしょう}全勝{RUBY_E#}・{RUBY_B#あんそく}安息{RUBY_E#}ホームラン", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の物理属性ダメージを与え、隣接する敵に開拓者の攻撃力#2[i]%分の物理属性ダメージを与える。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Maze.png", + "LevelUpSkillID": [ + 800107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 8001101, + "PointName": "{RUBY_B#ちからた}力溜{RUBY_E#}め", + "PointDesc": "戦闘開始時、EPを#1[i]回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 8001102, + "PointName": "{RUBY_B#けんじん}堅靭{RUBY_E#}", + "PointDesc": "天賦効果1層につき、開拓者の防御力+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 8001103, + "PointName": "{RUBY_B#とうし}闘志{RUBY_E#}", + "PointDesc": "戦闘スキルまたは必殺技「全勝・安息ホームラン」を発動した時、指定した敵に対して与ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8001101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8001202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8001203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8001102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8001205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8001206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8001103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8001, + "Set4IDList": [ + 105, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "8002": { + "Name": "{NICKNAME}", + "Desc": "星穹列車に乗車した{F#少女}{M#少年}。\\n星核がもたらす危機を回避するため、星穹列車に同行することを選択した。", + "CharaInfo": { + "Camp": "星穹列車", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 101, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 102, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 103, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 104, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 105, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 106, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 107, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 108, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 109, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 110, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 111, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 112, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 113, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 114, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 115, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 116, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 117, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 118, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 119, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 120, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 121, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 122, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 123, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 124, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 125, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 126, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 127, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 128, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 129, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 130, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 131, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 132, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 133, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 134, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 995, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 996, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 992, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 993, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 997, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 994, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 998, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 999, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 800201, + "Name": "{RUBY_B#まんかい}万界{RUBY_E#}に{RUBY_B#ついりん}墜臨{RUBY_E#}した{RUBY_B#せいぼう}星芒{RUBY_E#}", + "Desc": "必殺技で敵を倒した時、さらに開拓者のEPを#1[i]回復する。この効果は1回の攻撃で1回まで発動できる。", + "ParamList": [ + 10 + ] + }, + "2": { + "Id": 800202, + "Name": "{RUBY_B#えん}縁{RUBY_E#}の{RUBY_B#もと}下{RUBY_E#}{RUBY_B#かごう}假合{RUBY_E#}した{RUBY_B#じんしん}人身{RUBY_E#}", + "Desc": "攻撃を行った後、攻撃が命中した敵の弱点が物理属性の場合、開拓者の攻撃力#1[i]%分のHPを回復する。", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 800203, + "Name": "{RUBY_B#ぜんろ}前路{RUBY_E#}を{RUBY_B#しめ}示{RUBY_E#}す{RUBY_B#ことだま}言霊{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 800204, + "Name": "{RUBY_B#きめつ}毀滅{RUBY_E#}の{RUBY_B#しゅんかん}瞬間{RUBY_E#}を{RUBY_B#ぎょうし}凝視{RUBY_E#}する{RUBY_B#ひとみ}瞳{RUBY_E#}", + "Desc": "弱点撃破状態の敵に攻撃が命中した時、会心率+#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Id": 800205, + "Name": "{RUBY_B#さいごう}災劫{RUBY_E#}に{RUBY_B#も}燃{RUBY_E#}える{RUBY_B#さいせい}再生{RUBY_E#}の{RUBY_B#きぼう}希望{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 800206, + "Name": "{RUBY_B#たくうぎょうてん}拓宇行天{RUBY_E#}の{RUBY_B#いし}意志{RUBY_E#}", + "Desc": "開拓者が敵を倒した時も、天賦が発動する。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800201": { + "Id": 800201, + "Name": "サヨナラ{RUBY_B#あんだ}安打{RUBY_E#}", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800202": { + "Id": 800202, + "Name": "{RUBY_B#あんそく}安息{RUBY_E#}ホームラン", + "Desc": "指定した敵単体および隣接する敵に開拓者の攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.562500000698492 + ] + } + } + }, + "800203": { + "Id": 800203, + "Name": "スターダストエース", + "Desc": "2つの攻撃モードの内の1つを選択し全力のバッティングをお見舞いする。\\n「全勝・サヨナラ安打」:指定した敵単体に開拓者の攻撃力#1[i]%分の物理属性ダメージを与える。\\n「全勝・安息ホームラン」:指定した敵単体に開拓者の攻撃力#2[i]%分の物理属性ダメージを与え、隣接する敵に開拓者の攻撃力#3[i]%分の物理属性ダメージを与える。", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968, + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095, + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935, + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492, + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492, + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169, + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661, + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536, + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058, + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564, + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132, + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831, + 3.1500000001396984, + 1.890000000828877 + ] + } + } + }, + "800204": { + "Id": 800204, + "Name": "{RUBY_B#とうるいけんせい}盗塁牽制{RUBY_E#}", + "Desc": "敵を弱点撃破した後、攻撃力+#1[i]%、最大で#2[i]回累積できる。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "800206": { + "Id": 800206, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800207": { + "Id": 800207, + "Name": "{RUBY_B#ふめつさんしん}不滅三振{RUBY_E#}", + "Desc": "秘技を使用した後、味方全体のHPをそれぞれの最大HP#1[i]%分回復する。", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + } + } + }, + "800208": { + "Id": 800208, + "Name": "{RUBY_B#ぜんしょう}全勝{RUBY_E#}・サヨナラ{RUBY_B#あんだ}安打{RUBY_E#}", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の物理属性ダメージを与える。", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831 + ] + } + } + }, + "800209": { + "Id": 800209, + "Name": "{RUBY_B#ぜんしょう}全勝{RUBY_E#}・{RUBY_B#あんそく}安息{RUBY_E#}ホームラン", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の物理属性ダメージを与え、隣接する敵に開拓者の攻撃力#2[i]%分の物理属性ダメージを与える。", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Maze.png", + "LevelUpSkillID": [ + 800207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 8002101, + "PointName": "{RUBY_B#ちからた}力溜{RUBY_E#}め", + "PointDesc": "戦闘開始時、EPを#1[i]回復する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 8002102, + "PointName": "{RUBY_B#けんじん}堅靭{RUBY_E#}", + "PointDesc": "天賦効果1層につき、開拓者の防御力+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 8002103, + "PointName": "{RUBY_B#とうし}闘志{RUBY_E#}", + "PointDesc": "戦闘スキルまたは必殺技「全勝・安息ホームラン」を発動した時、指定した敵に対して与ダメージ+#1[i]%。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002201, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002202, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8002101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002203, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8002202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002204, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8002203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002205, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8002102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8002205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002207, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8002206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002208, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8002103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002210, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8002, + "Set4IDList": [ + 105, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "8003": { + "Name": "{NICKNAME}", + "Desc": "星穹列車に乗車した{F#少女}{M#少年}。\\n星核がもたらす危機を回避するため、星穹列車に同行することを選択した。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy2", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 800301, + "Name": "{RUBY_B#だいちしんずい}大地芯髄{RUBY_E#}の{RUBY_B#めいどう}鳴動{RUBY_E#}", + "Desc": "通常攻撃を行った時、さらに開拓者の防御力#1[i]%分の炎属性ダメージを与える。強化通常攻撃を行った時、さらに開拓者の防御力#2[i]%分の炎属性ダメージを与える。", + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Id": 800302, + "Name": "{RUBY_B#ふる}古{RUBY_E#}き{RUBY_B#かんてつ}寒鉄{RUBY_E#}の{RUBY_B#けんしゅ}堅守{RUBY_E#}", + "Desc": "天賦発動時、味方全体に付与するバリアの耐久値が、開拓者の防御力#1[i]%+#2[i]アップする。", + "ParamList": [ + 0.02000000001862645, + 27 + ] + }, + "3": { + "Id": 800303, + "Name": "{RUBY_B#みらい}未来{RUBY_E#}を{RUBY_B#きづ}築{RUBY_E#}く{RUBY_B#あおず}青図{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 800304, + "Name": "{RUBY_B#ぶんめい}文明{RUBY_E#}に{RUBY_B#とど}留{RUBY_E#}まる{RUBY_B#ちか}誓{RUBY_E#}い", + "Desc": "戦闘開始時、「灼熱意志」を#1[i]層獲得する。", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 800305, + "Name": "{RUBY_B#こうえん}光焔{RUBY_E#}を{RUBY_B#も}燃{RUBY_E#}やす{RUBY_B#ゆうき}勇気{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 800306, + "Name": "{RUBY_B#えいせい}永世{RUBY_E#}に{RUBY_B#そび}聳{RUBY_E#}える{RUBY_B#へきるい}壁塁{RUBY_E#}", + "Desc": "強化通常攻撃または必殺技を発動した後、開拓者の防御力+#1[i]%、最大で#2[i]層累積できる。", + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + }, + "Skills": { + "800301": { + "Id": 800301, + "Name": "{RUBY_B#けんぴょう}堅氷{RUBY_E#}を{RUBY_B#つらぬ}貫{RUBY_E#}く{RUBY_B#れっか}烈火{RUBY_E#}", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の炎属性ダメージを与え、「灼熱意志」を1層獲得する。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800302": { + "Id": 800302, + "Name": "{RUBY_B#ふめつ}不滅{RUBY_E#}のアンバー", + "Desc": "戦闘スキルを発動した後、開拓者の受けるダメージ-#1[i]%、「灼熱意志」を1層獲得、さらに#2[i]%基礎確率で敵全体を挑発状態にする、#3[i]ターン継続。", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.41000000038184226, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4300000004004687, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4625000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.47500000009313226, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4875000002793968, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5100000004749745, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.530000000493601, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5400000005029142, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5500000005122274, + 1, + 1 + ] + } + } + }, + "800303": { + "Id": 800303, + "Name": "{RUBY_B#かんじんむき}陥陣無帰{RUBY_E#}の{RUBY_B#えんそう}炎槍{RUBY_E#}", + "Desc": "敵全体に開拓者の攻撃力#1[i]%+防御力#2[i]%分の炎属性ダメージを与える。次の通常攻撃を強化、その強化通常攻撃は「灼熱意志」を消費しない。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 1.8750000004656613 + ] + } + } + }, + "800304": { + "Id": 800304, + "Name": "{RUBY_B#けんそうしゃ}建創者{RUBY_E#}の{RUBY_B#うしな}失{RUBY_E#}われし{RUBY_B#たから}宝{RUBY_E#}", + "Desc": "攻撃を1回受けるごとに、「灼熱意志」を1層獲得、最大で#3[i]層累積できる。\\n「灼熱意志」の層数が4以上である場合は通常攻撃が強化され、指定した敵単体および隣接する敵にダメージを与える。\\n開拓者が通常攻撃、戦闘スキル、必殺技を発動した後、味方全体に開拓者の防御力#1[f1]%+#4[i]の耐久値を持つバリアを付与する。バリアは#2[i]ターン継続。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 2, + 8, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04250000021420419, + 2, + 8, + 32 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04499999969266355, + 2, + 8, + 41 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04749999986961484, + 2, + 8, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.05000000004656613, + 2, + 8, + 56 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.05199999990873039, + 2, + 8, + 62 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.05399999977089465, + 2, + 8, + 66.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.055999999633058906, + 2, + 8, + 71 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.057999999495223165, + 2, + 8, + 75.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.060000000055879354, + 2, + 8, + 80 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.06199999991804361, + 2, + 8, + 84.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.06399999978020787, + 2, + 8, + 89 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.06599999964237213, + 2, + 8, + 93.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.06799999950453639, + 2, + 8, + 98 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.07000000006519258, + 2, + 8, + 102.50000000046566 + ] + } + } + }, + "800306": { + "Id": 800306, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800307": { + "Id": 800307, + "Name": "{RUBY_B#しゅごしゃめいれい}守護者命令{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、自身に開拓者の防御力#1[i]%+#2[i]の耐久値を持つバリアを付与する、#3[i]ターン継続。", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 384, + 1 + ] + } + } + }, + "800308": { + "Id": 800308, + "Name": "{RUBY_B#けんぴょう}堅氷{RUBY_E#}を{RUBY_B#つらぬ}貫{RUBY_E#}く{RUBY_B#れっか}烈火{RUBY_E#}", + "Desc": "「灼熱意志」を4層消費して、通常攻撃を強化。指定した敵単体に開拓者の攻撃力#1[i]%分の炎属性ダメージを与え、隣接する敵に開拓者の攻撃力#2[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Maze.png", + "LevelUpSkillID": [ + 800307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 0.1500000001396984, + 1 + ], + "PointID": 8003101, + "PointName": "{RUBY_B#よわ}弱{RUBY_E#}きを{RUBY_B#たす}助{RUBY_E#}け", + "PointDesc": "戦闘スキルを発動した後、味方全体の受けるダメージ-#2[i]%#3[i]ターン継続。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 8003201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8003102, + "PointName": "{RUBY_B#し}死{RUBY_E#}の{RUBY_B#まえ}前{RUBY_E#}に{RUBY_B#せい}生{RUBY_E#}を", + "PointDesc": "開拓者が強化通常攻撃を行った後、HPを最大HP#1[i]%分回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 8003201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.1500000001396984 + ], + "PointID": 8003103, + "PointName": "{RUBY_B#かんが}考{RUBY_E#}えるより{RUBY_B#こうどう}行動{RUBY_E#}", + "PointDesc": "ターンが回ってきた時、開拓者がバリアを持つ場合、攻撃力+#2[i]%、EPを#1[i]回復する、効果は行動終了まで継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003201, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8003101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003203, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003205, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8003102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003206, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003207, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003209, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8003208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003210, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8003208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8003, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 302 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 278, + 215 + ] + } + }, + "8004": { + "Name": "{NICKNAME}", + "Desc": "星穹列車に乗車した{F#少女}{M#少年}。\\n星核がもたらす危機を回避するため、星穹列車に同行することを選択した。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl2", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 800401, + "Name": "{RUBY_B#だいちしんずい}大地芯髄{RUBY_E#}の{RUBY_B#めいどう}鳴動{RUBY_E#}", + "Desc": "通常攻撃を行った時、さらに開拓者の防御力#1[i]%分の炎属性ダメージを与える。強化通常攻撃を行った時、さらに開拓者の防御力#2[i]%分の炎属性ダメージを与える。", + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Id": 800402, + "Name": "{RUBY_B#ふる}古{RUBY_E#}き{RUBY_B#かんてつ}寒鉄{RUBY_E#}の{RUBY_B#けんしゅ}堅守{RUBY_E#}", + "Desc": "天賦発動時、味方全体に付与するバリアの耐久値が、開拓者の防御力#1[i]%+#2[i]アップする。", + "ParamList": [ + 0.02000000001862645, + 27 + ] + }, + "3": { + "Id": 800403, + "Name": "{RUBY_B#みらい}未来{RUBY_E#}を{RUBY_B#きづ}築{RUBY_E#}く{RUBY_B#あおず}青図{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 800404, + "Name": "{RUBY_B#ぶんめい}文明{RUBY_E#}に{RUBY_B#とど}留{RUBY_E#}まる{RUBY_B#ちか}誓{RUBY_E#}い", + "Desc": "戦闘開始時、「灼熱意志」を#1[i]層獲得する。", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 800405, + "Name": "{RUBY_B#こうえん}光焔{RUBY_E#}を{RUBY_B#も}燃{RUBY_E#}やす{RUBY_B#ゆうき}勇気{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 800406, + "Name": "{RUBY_B#えいせい}永世{RUBY_E#}に{RUBY_B#そび}聳{RUBY_E#}える{RUBY_B#へきるい}壁塁{RUBY_E#}", + "Desc": "強化通常攻撃または必殺技を発動した後、開拓者の防御力+#1[i]%、最大で#2[i]層累積できる。", + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + }, + "Skills": { + "800401": { + "Id": 800401, + "Name": "{RUBY_B#けんぴょう}堅氷{RUBY_E#}を{RUBY_B#つらぬ}貫{RUBY_E#}く{RUBY_B#れっか}烈火{RUBY_E#}", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の炎属性ダメージを与え、「灼熱意志」を1層獲得する。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800402": { + "Id": 800402, + "Name": "{RUBY_B#ふめつ}不滅{RUBY_E#}のアンバー", + "Desc": "戦闘スキルを発動した後、開拓者の受けるダメージ-#1[i]%、「灼熱意志」を1層獲得、さらに#2[i]%基礎確率で敵全体を挑発状態にする、#3[i]ターン継続。", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.41000000038184226, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4300000004004687, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4625000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.47500000009313226, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4875000002793968, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5100000004749745, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.530000000493601, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5400000005029142, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5500000005122274, + 1, + 1 + ] + } + } + }, + "800403": { + "Id": 800403, + "Name": "{RUBY_B#かんじんむき}陥陣無帰{RUBY_E#}の{RUBY_B#えんそう}炎槍{RUBY_E#}", + "Desc": "敵全体に開拓者の攻撃力#1[i]%+防御力#2[i]%分の炎属性ダメージを与える。次の通常攻撃を強化、その強化通常攻撃は「灼熱意志」を消費しない。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 1.8750000004656613 + ] + } + } + }, + "800404": { + "Id": 800404, + "Name": "{RUBY_B#けんそうしゃ}建創者{RUBY_E#}の{RUBY_B#うしな}失{RUBY_E#}われし{RUBY_B#たから}宝{RUBY_E#}", + "Desc": "攻撃を1回受けるごとに、「灼熱意志」を1層獲得、最大で#3[i]層累積できる。\\n「灼熱意志」の層数が4以上である場合は通常攻撃が強化され、指定した敵単体および隣接する敵にダメージを与える。\\n開拓者が通常攻撃、戦闘スキル、必殺技を発動した後、味方全体に開拓者の防御力#1[f1]%+#4[i]の耐久値を持つバリアを付与する。バリアは#2[i]ターン継続。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 2, + 8, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04250000021420419, + 2, + 8, + 32 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04499999969266355, + 2, + 8, + 41 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04749999986961484, + 2, + 8, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.05000000004656613, + 2, + 8, + 56 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.05199999990873039, + 2, + 8, + 62 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.05399999977089465, + 2, + 8, + 66.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.055999999633058906, + 2, + 8, + 71 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.057999999495223165, + 2, + 8, + 75.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.060000000055879354, + 2, + 8, + 80 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.06199999991804361, + 2, + 8, + 84.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.06399999978020787, + 2, + 8, + 89 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.06599999964237213, + 2, + 8, + 93.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.06799999950453639, + 2, + 8, + 98 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.07000000006519258, + 2, + 8, + 102.50000000046566 + ] + } + } + }, + "800406": { + "Id": 800406, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800407": { + "Id": 800407, + "Name": "{RUBY_B#しゅごしゃめいれい}守護者命令{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、自身に開拓者の防御力#1[i]%+#2[i]の耐久値を持つバリアを付与する、#3[i]ターン継続。", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 384, + 1 + ] + } + } + }, + "800408": { + "Id": 800408, + "Name": "{RUBY_B#けんぴょう}堅氷{RUBY_E#}を{RUBY_B#つらぬ}貫{RUBY_E#}く{RUBY_B#れっか}烈火{RUBY_E#}", + "Desc": "「灼熱意志」を4層消費して、通常攻撃を強化。指定した敵単体に開拓者の攻撃力#1[i]%分の炎属性ダメージを与え、隣接する敵に開拓者の攻撃力#2[i]%分の炎属性ダメージを与える。", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Maze.png", + "LevelUpSkillID": [ + 800407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 0.1500000001396984, + 1 + ], + "PointID": 8004101, + "PointName": "{RUBY_B#よわ}弱{RUBY_E#}きを{RUBY_B#たす}助{RUBY_E#}け", + "PointDesc": "戦闘スキルを発動した後、味方全体の受けるダメージ-#2[i]%#3[i]ターン継続。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 8004201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8004102, + "PointName": "{RUBY_B#し}死{RUBY_E#}の{RUBY_B#まえ}前{RUBY_E#}に{RUBY_B#せい}生{RUBY_E#}を", + "PointDesc": "開拓者が強化通常攻撃を行った後、HPを最大HP#1[i]%分回復する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 8004201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.1500000001396984 + ], + "PointID": 8004103, + "PointName": "{RUBY_B#かんが}考{RUBY_E#}えるより{RUBY_B#こうどう}行動{RUBY_E#}", + "PointDesc": "ターンが回ってきた時、開拓者がバリアを持つ場合、攻撃力+#2[i]%、EPを#1[i]回復する、効果は行動終了まで継続。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004201, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8004101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004203, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8004202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "防御力" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004204, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004205, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8004102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004206, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8004205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004207, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "防御力" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004208, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004209, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8004208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "攻撃力" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004210, + "PointName": "防御強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8004208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "防御力" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8004, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 302 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 278, + 215 + ] + } + }, + "8005": { + "Name": "{NICKNAME}", + "Desc": "星穹列車に乗車した{F#少女}{M#少年}。\\n星核がもたらす危機を回避するため、星穹列車に同行することを選択した。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy3", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 800501, + "Name": "{RUBY_B#さいこう}最高{RUBY_E#}の{RUBY_B#かんきゃくせき}観客席{RUBY_E#}", + "Desc": "初めて戦闘スキルを発動した後、SPを#1[i]回復する。", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 800502, + "Name": "{RUBY_B#ろう}牢{RUBY_E#}を{RUBY_B#う}打{RUBY_E#}ち{RUBY_B#やぶ}破{RUBY_E#}る{RUBY_B#にじ}虹{RUBY_E#}", + "Desc": "戦闘開始時、開拓者のEP回復効率+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "Id": 800503, + "Name": "{RUBY_B#きゅうしふ}休止符{RUBY_E#}の{RUBY_B#りょうよういん}療養院{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 800504, + "Name": "ハトを{RUBY_B#かく}隠{RUBY_E#}す{RUBY_B#かんむり}冠{RUBY_E#}", + "Desc": "開拓者がフィールド上にいる時、自身以外の味方の撃破特効を、開拓者の撃破特効#1[i]%分アップする。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 800505, + "Name": "{RUBY_B#ふる}古{RUBY_E#}き{RUBY_B#せんりつ}旋律{RUBY_E#}を{RUBY_B#いだ}抱{RUBY_E#}く{RUBY_B#しへん}詩篇{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 800506, + "Name": "{RUBY_B#あす}明日{RUBY_E#}\\nスポットライトの{RUBY_B#した}下{RUBY_E#}で", + "Desc": "戦闘スキルのヒット数+#1[i]。", + "ParamList": [ + 2 + ] + } + }, + "Skills": { + "800501": { + "Id": 800501, + "Name": "{RUBY_B#ゆ}揺{RUBY_E#}らめく{RUBY_B#れいぎ}礼儀{RUBY_E#}", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800502": { + "Id": 800502, + "Name": "{RUBY_B#かんそうきょく}間奏曲{RUBY_E#}が{RUBY_B#ふ}降{RUBY_E#}らす{RUBY_B#あめ}雨{RUBY_E#}", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の虚数属性ダメージを与え、さらに4ヒットする。1ヒットごとに、ランダムな敵単体に開拓者の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 2 + ] + } + } + }, + "800503": { + "Id": 800503, + "Name": "{RUBY_B#にぎ}賑{RUBY_E#}やかなパレード", + "Desc": "味方全体に「バックダンス」を付与する、#1[i]ターン継続。開拓者のターンが回ってくるたびに「バックダンス」の継続時間-1ターン。「バックダンス」を持つ味方の撃破特効+#3[i]%弱点撃破状態の敵に攻撃を行った後、その回の攻撃の削靭値を1回の超撃破ダメージに転換する。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 1, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 1, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 1, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 1, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 0.375 + ] + } + } + }, + "800504": { + "Id": 800504, + "Name": "エアリアルステップ", + "Desc": "敵が弱点撃破された時、開拓者はEPを#1[f1]回復する。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "800506": { + "Id": 800506, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800507": { + "Id": 800507, + "Name": "{RUBY_B#そっきょう}即興{RUBY_E#}!{RUBY_B#どくそうだん}独奏団{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、味方全体の撃破特効+#1[i]%#2[i]ターン継続。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Maze.png", + "LevelUpSkillID": [ + 800507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.40000000037252903, + 0.5000000004656613, + 0.6000000005587935 + ], + "PointID": 8005101, + "PointName": "ダンス・フォー・ミー", + "PointDesc": "フィールド上の敵の数が5以上/4/3/2/1の場合、「バックダンス」が触発する超撃破ダメージ+#1[i]%/#2[i]%/#3[i]%/#4[i]%/#5[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 8005102, + "PointName": "{RUBY_B#なが}流{RUBY_E#}れに{RUBY_B#み}身{RUBY_E#}を{RUBY_B#まか}任{RUBY_E#}せて", + "PointDesc": "戦闘スキルを発動する時、1ヒット目の削靭値+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 8005103, + "PointName": "シアターハット", + "PointDesc": "味方が敵を弱点撃破した後、さらに敵の行動順#1[i]%遅延させる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005201, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005202, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005203, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005205, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005206, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005207, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005209, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8005208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005210, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8005208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "撃破特効" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 4.62000000057742, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 129.36000000033528, + "DefenceAdd": 4.62000000057742, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 166.32000000029802, + "DefenceAdd": 4.62000000057742, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 203.28000000026077, + "DefenceAdd": 4.62000000057742, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 240.24000000022352, + "DefenceAdd": 4.62000000057742, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 277.20000000018626, + "DefenceAdd": 4.62000000057742, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 314.160000000149, + "DefenceAdd": 4.62000000057742, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8005, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 316, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 243, + 191 + ] + } + }, + "8006": { + "Name": "{NICKNAME}", + "Desc": "星穹列車に乗車した{F#少女}{M#少年}。\\n星核がもたらす危機を回避するため、星穹列車に同行することを選択した。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl3", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 800601, + "Name": "{RUBY_B#さいこう}最高{RUBY_E#}の{RUBY_B#かんきゃくせき}観客席{RUBY_E#}", + "Desc": "初めて戦闘スキルを発動した後、SPを#1[i]回復する。", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 800602, + "Name": "{RUBY_B#ろう}牢{RUBY_E#}を{RUBY_B#う}打{RUBY_E#}ち{RUBY_B#やぶ}破{RUBY_E#}る{RUBY_B#にじ}虹{RUBY_E#}", + "Desc": "戦闘開始時、開拓者のEP回復効率+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "Id": 800603, + "Name": "{RUBY_B#きゅうしふ}休止符{RUBY_E#}の{RUBY_B#りょうよういん}療養院{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。", + "ParamList": [] + }, + "4": { + "Id": 800604, + "Name": "ハトを{RUBY_B#かく}隠{RUBY_E#}す{RUBY_B#かんむり}冠{RUBY_E#}", + "Desc": "開拓者がフィールド上にいる時、自身以外の味方の撃破特効を、開拓者の撃破特効#1[i]%分アップする。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 800605, + "Name": "{RUBY_B#ふる}古{RUBY_E#}き{RUBY_B#せんりつ}旋律{RUBY_E#}を{RUBY_B#いだ}抱{RUBY_E#}く{RUBY_B#しへん}詩篇{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 800606, + "Name": "{RUBY_B#あす}明日{RUBY_E#}\\nスポットライトの{RUBY_B#した}下{RUBY_E#}で", + "Desc": "戦闘スキルのヒット数+#1[i]。", + "ParamList": [ + 2 + ] + } + }, + "Skills": { + "800601": { + "Id": 800601, + "Name": "{RUBY_B#ゆ}揺{RUBY_E#}らめく{RUBY_B#れいぎ}礼儀{RUBY_E#}", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800602": { + "Id": 800602, + "Name": "{RUBY_B#かんそうきょく}間奏曲{RUBY_E#}が{RUBY_B#ふ}降{RUBY_E#}らす{RUBY_B#あめ}雨{RUBY_E#}", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の虚数属性ダメージを与え、さらに4ヒットする。1ヒットごとに、ランダムな敵単体に開拓者の攻撃力#1[i]%分の虚数属性ダメージを与える。", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 2 + ] + } + } + }, + "800603": { + "Id": 800603, + "Name": "{RUBY_B#にぎ}賑{RUBY_E#}やかなパレード", + "Desc": "味方全体に「バックダンス」を付与する、#1[i]ターン継続。開拓者のターンが回ってくるたびに「バックダンス」の継続時間-1ターン。「バックダンス」を持つ味方の撃破特効+#3[i]%弱点撃破状態の敵に攻撃を行った後、その回の攻撃の削靭値を1回の超撃破ダメージに転換する。", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 1, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 1, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 1, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 1, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 0.375 + ] + } + } + }, + "800604": { + "Id": 800604, + "Name": "エアリアルステップ", + "Desc": "敵が弱点撃破された時、開拓者はEPを#1[f1]回復する。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "800606": { + "Id": 800606, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800607": { + "Id": 800607, + "Name": "{RUBY_B#そっきょう}即興{RUBY_E#}!{RUBY_B#どくそうだん}独奏団{RUBY_E#}", + "Desc": "秘技を使用した後、次の戦闘開始時、味方全体の撃破特効+#1[i]%#2[i]ターン継続。", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Maze.png", + "LevelUpSkillID": [ + 800607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.40000000037252903, + 0.5000000004656613, + 0.6000000005587935 + ], + "PointID": 8006101, + "PointName": "ダンス・フォー・ミー", + "PointDesc": "フィールド上の敵の数が5以上/4/3/2/1の場合、「バックダンス」が触発する超撃破ダメージ+#1[i]%/#2[i]%/#3[i]%/#4[i]%/#5[i]%。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 8006102, + "PointName": "{RUBY_B#なが}流{RUBY_E#}れに{RUBY_B#み}身{RUBY_E#}を{RUBY_B#まか}任{RUBY_E#}せて", + "PointDesc": "戦闘スキルを発動する時、1ヒット目の削靭値+#1[i]%。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 8006103, + "PointName": "シアターハット", + "PointDesc": "味方が敵を弱点撃破した後、さらに敵の行動順#1[i]%遅延させる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006201, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006202, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006203, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "撃破特効" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006204, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "効果抵抗" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006205, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006206, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006207, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "撃破特効" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006208, + "PointName": "効果抵抗強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "効果抵抗" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006209, + "PointName": "ダメージ強化・虚数", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8006208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "虚数属性ダメージ" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006210, + "PointName": "撃破強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8006208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "撃破特効" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 4.62000000057742, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 129.36000000033528, + "DefenceAdd": 4.62000000057742, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 166.32000000029802, + "DefenceAdd": 4.62000000057742, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 203.28000000026077, + "DefenceAdd": 4.62000000057742, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 240.24000000022352, + "DefenceAdd": 4.62000000057742, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 277.20000000018626, + "DefenceAdd": 4.62000000057742, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 314.160000000149, + "DefenceAdd": 4.62000000057742, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8006, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 316, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 243, + 191 + ] + } + }, + "8007": { + "Name": "{NICKNAME}", + "Desc": "星穹列車に乗車した{F#少女}{M#少年}。\\n星核がもたらす危機を回避するため、星穹列車に同行することを選択した。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy4", + "SPNeed": 160, + "BaseType": "Memory", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 800701, + "Name": "{RUBY_B#げんざい}現在{RUBY_E#}を{RUBY_B#きろく}記録{RUBY_E#}する{RUBY_B#もの}者{RUBY_E#}", + "Desc": "「ミュリオンの応援」を持つ味方の会心率+#1[i]%。味方が「ミュリオンの応援」を持つ時、その効果はその味方の記憶の精霊/召喚者、両方に適用される。なお、この効果は累積できない。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 800702, + "Name": "{RUBY_B#かこ}過去{RUBY_E#}を{RUBY_B#ひろ}拾{RUBY_E#}う{RUBY_B#もの}者{RUBY_E#}", + "Desc": "「ミュリオン」以外の味方の記憶の精霊が行動する時、開拓者のEPを#1[i]回復する。この効果はターンが回ってくるたびに#2[i]回まで発動でき、開拓者のターンが回ってきた時に発動可能回数がリセットされる。", + "ParamList": [ + 8, + 1 + ] + }, + "3": { + "Id": 800703, + "Name": "{RUBY_B#みらい}未来{RUBY_E#}を{RUBY_B#うた}詠{RUBY_E#}う{RUBY_B#もの}者{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。精霊天賦のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 800704, + "Name": "ミューズの{RUBY_B#あら}新{RUBY_E#}たな\\n{RUBY_B#おど}踊{RUBY_E#}り{RUBY_B#て}手{RUBY_E#}", + "Desc": "最大EPが0の味方がスキルを発動する時、「ミュリオン」はチャージを#1[i]%獲得し、その味方が「ミュリオンの応援」による確定ダメージのダメージ倍率がさらに+#2[i]%。", + "ParamList": [ + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "5": { + "Id": 800705, + "Name": "{RUBY_B#しへん}詩篇{RUBY_E#}の{RUBY_B#つむ}紡{RUBY_E#}ぎ{RUBY_B#て}手{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。精霊スキルのLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 800706, + "Name": "{RUBY_B#けいじ}啓示{RUBY_E#}の{RUBY_B#かた}語{RUBY_E#}り{RUBY_B#て}手{RUBY_E#}", + "Desc": "必殺技の会心率が100%に固定される。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800701": { + "Id": 800701, + "Name": "お{RUBY_B#まか}任{RUBY_E#}せあれ!", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800702": { + "Id": 800702, + "Name": "ミュリオンに{RUBY_B#き}決{RUBY_E#}めた!", + "Desc": "記憶の精霊「ミュリオン」を召喚する。ミュリオンがすでにフィールド上にいる場合、ミュリオンはHPを最大HP#1[i]%分回復し、チャージを#2[i]%獲得する。", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919, + 0.10000000009313226 + ] + } + } + }, + "800703": { + "Id": 800703, + "Name": "やっちゃえミュリオン!", + "Desc": "記憶の精霊「ミュリオン」を召喚する。ミュリオンがチャージを#2[i]%獲得し、敵全体に自身攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.40000000037252903 + ] + } + } + }, + "800704": { + "Id": 800704, + "Name": "なんでもできる{RUBY_B#なかま}仲間{RUBY_E#}", + "Desc": "記憶の精霊「ミュリオン」の初期速度は#1[i]となり、初期最大HPは、開拓者の最大HP#2[i]%分+#4[i]となる。味方全体でEPを#3[i]回復するたびに、ミュリオンがチャージを1%獲得する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 130, + 0.5000000004656613, + 10, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 130, + 0.530000000493601, + 10, + 424 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 130, + 0.5600000005215406, + 10, + 448 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 130, + 0.5900000005494803, + 10, + 472 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 130, + 0.62000000057742, + 10, + 496 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 130, + 0.6500000006053597, + 10, + 520 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 130, + 0.6875000004656613, + 10, + 550 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 130, + 0.7250000003259629, + 10, + 580 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 130, + 0.7625000008847564, + 10, + 610 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 130, + 0.8000000007450581, + 10, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 130, + 0.8300000007729977, + 10, + 664 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 130, + 0.8600000008009374, + 10, + 688 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 130, + 0.8900000008288771, + 10, + 712 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 130, + 0.9200000008568168, + 10, + 736 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 130, + 0.9500000008847564, + 10, + 760 + ] + } + } + }, + "800706": { + "Id": 800706, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800707": { + "Id": 800707, + "Name": "こだまする{RUBY_B#きおく}記憶{RUBY_E#}", + "Desc": "秘技を使用した後、#1[i]秒間継続する特殊領域を作り出す。特殊領域内にいる敵はタイムストップ状態を付与され、タイムストップ状態の敵は行動を停止する。\\nタイムストップ状態の敵と戦闘に入った後、敵全体の行動順#2[i]%遅延させ、敵全体に開拓者の攻撃力#3[i]%分の氷属性ダメージを与える。\\n味方が作り出した領域は1つまで存在できる。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 1 + ] + } + } + }, + "800709": { + "Id": 800709, + "Name": "ミュリオンに{RUBY_B#き}決{RUBY_E#}めた!", + "Desc": null, + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + }, + "2": { + "Level": 2, + "ParamList": [] + }, + "3": { + "Level": 3, + "ParamList": [] + }, + "4": { + "Level": 4, + "ParamList": [] + }, + "5": { + "Level": 5, + "ParamList": [] + }, + "6": { + "Level": 6, + "ParamList": [] + }, + "7": { + "Level": 7, + "ParamList": [] + }, + "8": { + "Level": 8, + "ParamList": [] + }, + "9": { + "Level": 9, + "ParamList": [] + }, + "10": { + "Level": 10, + "ParamList": [] + }, + "11": { + "Level": 11, + "ParamList": [] + }, + "12": { + "Level": 12, + "ParamList": [] + }, + "13": { + "Level": 13, + "ParamList": [] + }, + "14": { + "Level": 14, + "ParamList": [] + }, + "15": { + "Level": 15, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Maze.png", + "LevelUpSkillID": [ + 800707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.40000000037252903 + ], + "PointID": 8007101, + "PointName": "{RUBY_B#ついおく}追憶{RUBY_E#}の{RUBY_B#つえ}杖{RUBY_E#}", + "PointDesc": "戦闘開始時、開拓者の行動順#1[i]%早まる。「ミュリオン」を初めて召喚した時、ミュリオンがチャージを#2[i]%獲得する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8007102, + "PointName": "{RUBY_B#しょうじょう}掌上{RUBY_E#}の{RUBY_B#じょじし}叙事詩{RUBY_E#}", + "PointDesc": "「ミュリオン」が「厄介な悪者さん!」を発動する時、即座にチャージを#1[i]%獲得する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 100, + 10, + 0.02000000001862645, + 0.20000000018626451 + ], + "PointID": 8007103, + "PointName": "{RUBY_B#じしゃく}磁石{RUBY_E#}と{RUBY_B#ちょうさ}長鎖{RUBY_E#}", + "PointDesc": "「ミュリオンの応援」を持つ味方の最大EPが#1[i]を超えている場合、超過分#2[i]につき、「ミュリオンの応援」による確定ダメージの倍率がさらに+#3[f1]%、最大で#4[i]%アップできる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007201, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8007201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007203, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8007201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007204, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8007101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 15200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007205, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8007101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8007102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007207, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8007102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007208, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8007103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8007208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007210, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8007209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "ミュリオン", + "Icon": "SpriteOutput/ServantIconTeam/18007B.png", + "HPBase": "#4", + "HPInherit": "#2", + "HPSkill": 800704, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 800704, + "Aggro": 100, + "Skills": { + "1800701": { + "Name": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "Desc": "#2[i]回ダメージを与える。毎回ランダムな敵単体に「ミュリオン」の攻撃力#1[f1]%分の氷属性ダメージを与え、最後に敵全体にミュリオンの攻撃力#3[i]%分の氷属性ダメージを与える。", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 4, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.21599999978207052, + 4, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2520000000949949, + 4, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 4, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.32400000002235174, + 4, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3600000003352761, + 4, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3959999999497086, + 4, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43200000026263297, + 4, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4679999998770654, + 4, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5040000001899898, + 4, + 1.2600000002421439 + ] + } + } + }, + "1800703": { + "Name": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "Desc": "味方全体の会心ダメージを、「ミュリオン」の会心ダメージ#1[f1]%分+#2[f1]%アップする。\\nチャージが100%未満の場合、ミュリオンは行動する時に自動で「厄介な悪者さん!」を発動する。チャージが100%に達した時、ミュリオンは即座に行動し、指定した味方単体に「あたしが助ける!」を発動できるようになる。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.16799999959766865 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09599999967031181, + 0.19200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1079999995417893, + 0.21599999978207052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1319999999832362, + 0.2639999999664724 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.14399999985471368, + 0.28799999970942736 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.15599999972619116, + 0.31200000015087426 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.16799999959766865, + 0.3359999998938292 + ] + } + } + }, + "1800705": { + "Name": "がんばれミュリオン!", + "Desc": "「ミュリオン」が召喚された時、即座にチャージを#1[i]%獲得する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + } + } + }, + "1800706": { + "Name": "{RUBY_B#く}悔{RUBY_E#}いは…{RUBY_B#のこ}残{RUBY_E#}さないの", + "Desc": "「ミュリオン」が退場する時、開拓者の行動順#1[i]%早める。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1800707": { + "Name": "あたしが{RUBY_B#たす}助{RUBY_E#}ける!", + "Desc": "指定した味方単体の行動順#3[i]%早め、「ミュリオンの応援」を付与する、#2[i]ターン継続。\\n「ミュリオンの応援」を持つ味方はダメージを1回与えるたびに、追加で本来のダメージ#1[i]%分の確定ダメージを1回与える。\\nスキルターゲットがミュリオン自身の場合、行動順を早める効果は発動しない。", + "Type": "Servant", + "Tag": "Support", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 3, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.22000000020489097, + 3, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 3, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.26000000024214387, + 3, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2800000002607703, + 3, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3200000002980232, + 3, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3400000003166497, + 3, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 3, + 1 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8007, + "Set4IDList": [ + 123, + 104, + 110 + ], + "Set2IDList": [ + 317, + 312, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 294, + 237 + ], + "LocalCriticalChance": 1 + } + }, + "8008": { + "Name": "{NICKNAME}", + "Desc": "星穹列車に乗車した{F#少女}{M#少年}。\\n星核がもたらす危機を回避するため、星穹列車に同行することを選択した。", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl4", + "SPNeed": 160, + "BaseType": "Memory", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 800801, + "Name": "{RUBY_B#げんざい}現在{RUBY_E#}を{RUBY_B#きろく}記録{RUBY_E#}する{RUBY_B#もの}者{RUBY_E#}", + "Desc": "「ミュリオンの応援」を持つ味方の会心率+#1[i]%。味方が「ミュリオンの応援」を持つ時、その効果はその味方の記憶の精霊/召喚者、両方に適用される。なお、この効果は累積できない。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 800802, + "Name": "{RUBY_B#かこ}過去{RUBY_E#}を{RUBY_B#ひろ}拾{RUBY_E#}う{RUBY_B#もの}者{RUBY_E#}", + "Desc": "「ミュリオン」以外の味方の記憶の精霊が行動する時、開拓者のEPを#1[i]回復する。この効果はターンが回ってくるたびに#2[i]回まで発動でき、開拓者のターンが回ってきた時に発動可能回数がリセットされる。", + "ParamList": [ + 8, + 1 + ] + }, + "3": { + "Id": 800803, + "Name": "{RUBY_B#みらい}未来{RUBY_E#}を{RUBY_B#うた}詠{RUBY_E#}う{RUBY_B#もの}者{RUBY_E#}", + "Desc": "戦闘スキルのLv.+2、最大Lv.15まで。天賦のLv.+2、最大Lv.15まで。精霊天賦のLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "4": { + "Id": 800804, + "Name": "ミューズの{RUBY_B#あら}新{RUBY_E#}たな\\n{RUBY_B#おど}踊{RUBY_E#}り{RUBY_B#て}手{RUBY_E#}", + "Desc": "最大EPが0の味方がスキルを発動する時、「ミュリオン」はチャージを#1[i]%獲得し、その味方が「ミュリオンの応援」による確定ダメージのダメージ倍率がさらに+#2[i]%。", + "ParamList": [ + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "5": { + "Id": 800805, + "Name": "{RUBY_B#しへん}詩篇{RUBY_E#}の{RUBY_B#つむ}紡{RUBY_E#}ぎ{RUBY_B#て}手{RUBY_E#}", + "Desc": "必殺技のLv.+2、最大Lv.15まで。通常攻撃のLv.+1、最大Lv.10まで。精霊スキルのLv.+1、最大Lv.10まで。", + "ParamList": [] + }, + "6": { + "Id": 800806, + "Name": "{RUBY_B#けいじ}啓示{RUBY_E#}の{RUBY_B#かた}語{RUBY_E#}り{RUBY_B#て}手{RUBY_E#}", + "Desc": "必殺技の会心率が100%に固定される。", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800801": { + "Id": 800801, + "Name": "お{RUBY_B#まか}任{RUBY_E#}せあれ!", + "Desc": "指定した敵単体に開拓者の攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800802": { + "Id": 800802, + "Name": "ミュリオンに{RUBY_B#き}決{RUBY_E#}めた!", + "Desc": "記憶の精霊「ミュリオン」を召喚する。ミュリオンがすでにフィールド上にいる場合、ミュリオンはHPを最大HP#1[i]%分回復し、チャージを#2[i]%獲得する。", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919, + 0.10000000009313226 + ] + } + } + }, + "800803": { + "Id": 800803, + "Name": "やっちゃえミュリオン!", + "Desc": "記憶の精霊「ミュリオン」を召喚する。ミュリオンがチャージを#2[i]%獲得し、敵全体に自身攻撃力#1[i]%分の氷属性ダメージを与える。", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.40000000037252903 + ] + } + } + }, + "800804": { + "Id": 800804, + "Name": "なんでもできる{RUBY_B#なかま}仲間{RUBY_E#}", + "Desc": "記憶の精霊「ミュリオン」の初期速度は#1[i]となり、初期最大HPは、開拓者の最大HP#2[i]%分+#4[i]となる。味方全体でEPを#3[i]回復するたびに、ミュリオンがチャージを1%獲得する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 130, + 0.5000000004656613, + 10, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 130, + 0.530000000493601, + 10, + 424 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 130, + 0.5600000005215406, + 10, + 448 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 130, + 0.5900000005494803, + 10, + 472 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 130, + 0.62000000057742, + 10, + 496 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 130, + 0.6500000006053597, + 10, + 520 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 130, + 0.6875000004656613, + 10, + 550 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 130, + 0.7250000003259629, + 10, + 580 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 130, + 0.7625000008847564, + 10, + 610 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 130, + 0.8000000007450581, + 10, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 130, + 0.8300000007729977, + 10, + 664 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 130, + 0.8600000008009374, + 10, + 688 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 130, + 0.8900000008288771, + 10, + 712 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 130, + 0.9200000008568168, + 10, + 736 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 130, + 0.9500000008847564, + 10, + 760 + ] + } + } + }, + "800806": { + "Id": 800806, + "Name": "攻撃", + "Desc": "敵を攻撃。戦闘に入った後、敵の対応する属性の靭性を削る。", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800807": { + "Id": 800807, + "Name": "こだまする{RUBY_B#きおく}記憶{RUBY_E#}", + "Desc": "秘技を使用した後、#1[i]秒間継続する特殊領域を作り出す。特殊領域内にいる敵はタイムストップ状態を付与され、タイムストップ状態の敵は行動を停止する。\\nタイムストップ状態の敵と戦闘に入った後、敵全体の行動順#2[i]%遅延させ、敵全体に開拓者の攻撃力#3[i]%分の氷属性ダメージを与える。\\n味方が作り出した領域は1つまで存在できる。", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 1 + ] + } + } + }, + "800809": { + "Id": 800809, + "Name": "ミュリオンに{RUBY_B#き}決{RUBY_E#}めた!", + "Desc": null, + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + }, + "2": { + "Level": 2, + "ParamList": [] + }, + "3": { + "Level": 3, + "ParamList": [] + }, + "4": { + "Level": 4, + "ParamList": [] + }, + "5": { + "Level": 5, + "ParamList": [] + }, + "6": { + "Level": 6, + "ParamList": [] + }, + "7": { + "Level": 7, + "ParamList": [] + }, + "8": { + "Level": 8, + "ParamList": [] + }, + "9": { + "Level": 9, + "ParamList": [] + }, + "10": { + "Level": 10, + "ParamList": [] + }, + "11": { + "Level": 11, + "ParamList": [] + }, + "12": { + "Level": 12, + "ParamList": [] + }, + "13": { + "Level": 13, + "ParamList": [] + }, + "14": { + "Level": 14, + "ParamList": [] + }, + "15": { + "Level": 15, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Maze.png", + "LevelUpSkillID": [ + 800807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.40000000037252903 + ], + "PointID": 8008101, + "PointName": "{RUBY_B#ついおく}追憶{RUBY_E#}の{RUBY_B#つえ}杖{RUBY_E#}", + "PointDesc": "戦闘開始時、開拓者の行動順#1[i]%早まる。「ミュリオン」を初めて召喚した時、ミュリオンがチャージを#2[i]%獲得する。", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8008102, + "PointName": "{RUBY_B#しょうじょう}掌上{RUBY_E#}の{RUBY_B#じょじし}叙事詩{RUBY_E#}", + "PointDesc": "「ミュリオン」が「厄介な悪者さん!」を発動する時、即座にチャージを#1[i]%獲得する。", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 100, + 10, + 0.02000000001862645, + 0.20000000018626451 + ], + "PointID": 8008103, + "PointName": "{RUBY_B#じしゃく}磁石{RUBY_E#}と{RUBY_B#ちょうさ}長鎖{RUBY_E#}", + "PointDesc": "「ミュリオンの応援」を持つ味方の最大EPが#1[i]を超えている場合、超過分#2[i]につき、「ミュリオンの応援」による確定ダメージの倍率がさらに+#3[f1]%、最大で#4[i]%アップできる。", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008201, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008202, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8008201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008203, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8008201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "会心ダメージ" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008204, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "攻撃力" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 15200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008205, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008206, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008207, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "会心ダメージ" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008208, + "PointName": "攻撃強化", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8008103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "攻撃力" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008209, + "PointName": "HP強化", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008210, + "PointName": "会心ダメージ強化", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8008209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "会心ダメージ" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "ミュリオン", + "Icon": "SpriteOutput/ServantIconTeam/18007B.png", + "HPBase": "#4", + "HPInherit": "#2", + "HPSkill": 800704, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 800704, + "Aggro": 100, + "Skills": { + "1800701": { + "Name": "{RUBY_B#やっかい}厄介{RUBY_E#}な{RUBY_B#わるもの}悪者{RUBY_E#}さん!", + "Desc": "#2[i]回ダメージを与える。毎回ランダムな敵単体に「ミュリオン」の攻撃力#1[f1]%分の氷属性ダメージを与え、最後に敵全体にミュリオンの攻撃力#3[i]%分の氷属性ダメージを与える。", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 4, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.21599999978207052, + 4, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2520000000949949, + 4, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 4, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.32400000002235174, + 4, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3600000003352761, + 4, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3959999999497086, + 4, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43200000026263297, + 4, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4679999998770654, + 4, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5040000001899898, + 4, + 1.2600000002421439 + ] + } + } + }, + "1800703": { + "Name": "{RUBY_B#なかま}仲間{RUBY_E#}と{RUBY_B#いっしょ}一緒{RUBY_E#}に!", + "Desc": "味方全体の会心ダメージを、「ミュリオン」の会心ダメージ#1[f1]%分+#2[f1]%アップする。\\nチャージが100%未満の場合、ミュリオンは行動する時に自動で「厄介な悪者さん!」を発動する。チャージが100%に達した時、ミュリオンは即座に行動し、指定した味方単体に「あたしが助ける!」を発動できるようになる。", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.16799999959766865 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09599999967031181, + 0.19200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1079999995417893, + 0.21599999978207052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1319999999832362, + 0.2639999999664724 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.14399999985471368, + 0.28799999970942736 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.15599999972619116, + 0.31200000015087426 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.16799999959766865, + 0.3359999998938292 + ] + } + } + }, + "1800705": { + "Name": "がんばれミュリオン!", + "Desc": "「ミュリオン」が召喚された時、即座にチャージを#1[i]%獲得する。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + } + } + }, + "1800706": { + "Name": "{RUBY_B#く}悔{RUBY_E#}いは…{RUBY_B#のこ}残{RUBY_E#}さないの", + "Desc": "「ミュリオン」が退場する時、開拓者の行動順#1[i]%早める。", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1800707": { + "Name": "あたしが{RUBY_B#たす}助{RUBY_E#}ける!", + "Desc": "指定した味方単体の行動順#3[i]%早め、「ミュリオンの応援」を付与する、#2[i]ターン継続。\\n「ミュリオンの応援」を持つ味方はダメージを1回与えるたびに、追加で本来のダメージ#1[i]%分の確定ダメージを1回与える。\\nスキルターゲットがミュリオン自身の場合、行動順を早める効果は発動しない。", + "Type": "Servant", + "Tag": "Support", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 3, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.22000000020489097, + 3, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 3, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.26000000024214387, + 3, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2800000002607703, + 3, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3200000002980232, + 3, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3400000003166497, + 3, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 3, + 1 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8008, + "Set4IDList": [ + 123, + 104, + 110 + ], + "Set2IDList": [ + 317, + 312, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 294, + 237 + ], + "LocalCriticalChance": 1 + } + } +} \ No newline at end of file diff --git a/data/characters.kr.json b/data/characters.kr.json new file mode 100644 index 0000000..13f2aba --- /dev/null +++ b/data/characters.kr.json @@ -0,0 +1,261882 @@ +{ + "1001": { + "Name": "Mar. 7th", + "Desc": "얼음 속에 깊이 잠들어 있던 기억을 잃은 소녀\\n출생의 진실을 찾기 위해 은하열차에 올랐다\\n본인을 위해 약 67가지의 「출생 스토리」를 준비해뒀다", + "CharaInfo": { + "Camp": "은하열차", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "mar7th", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 100101, + "Name": "기억 속 그대", + "Desc": "필살기로 목표를 1기 빙결할 때마다 Mar. 7th가 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 6 + ] + }, + "2": { + "Id": 100102, + "Name": "기억 속 그것", + "Desc": "전투 진입 시 현재 HP 백분율이 가장 낮은 아군에게 Mar. 7th 방어력 #1[i]%+#3[i]만큼의 실드를 제공한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.24000000022351742, + 3, + 320 + ] + }, + "3": { + "Id": 100103, + "Name": "기억 속 모든 것", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 100104, + "Name": "더 이상 잃기 싫어", + "Desc": "턴마다 발동할 수 있는 특성의 반격 효과 횟수가 1회 증가한다. 반격으로 가하는 피해량이 증가하고, 증가 수치는 Mar. 7th 방어력의 #1[i]%이다", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 100105, + "Name": "더 이상 잊기 싫어", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 100106, + "Name": "그냥 이대로 계속…", + "Desc": "전투 스킬이 제공하는 실드의 가호 아래 아군은 턴이 시작될 때마다 각자의 HP 최대치 #1[i]%+#2[i]만큼의 HP를 회복한다", + "ParamList": [ + 0.0400000000372529, + 106 + ] + } + }, + "Skills": { + "100101": { + "Id": 100101, + "Name": "극저온의 화살", + "Desc": "지정된 단일 적에게 Mar. 7th 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100102": { + "Id": 100102, + "Name": "귀여움이 곧 정의", + "Desc": "지정된 단일 아군에게 Mar. 7th 방어력 #1[i]%+#4[i]만큼의 피해를 상쇄할 수 있는 실드를 제공한다. 지속 시간: #2[i]턴\\n해당 목표의 현재 HP 백분율이 #3[i]% 이상이면, 적에게 피격될 확률이 대폭 증가한다", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3800000003539026, + 3, + 0.3000000002793968, + 190, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.40375000098720193, + 3, + 0.3000000002793968, + 304, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4275000002235174, + 3, + 0.3000000002793968, + 389.50000000046566, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.45125000085681677, + 3, + 0.3000000002793968, + 475, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.47500000009313226, + 3, + 0.3000000002793968, + 532, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.4940000001806766, + 3, + 0.3000000002793968, + 589, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5130000002682209, + 3, + 0.3000000002793968, + 631.7500000006985, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5320000003557652, + 3, + 0.3000000002793968, + 674.5000000004657, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5510000004433095, + 3, + 0.3000000002793968, + 717.2500000002328, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5700000005308539, + 3, + 0.3000000002793968, + 760, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5889999999199063, + 3, + 0.3000000002793968, + 802.7500000006985, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6080000000074506, + 3, + 0.3000000002793968, + 845.5000000004657, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6270000000949949, + 3, + 0.3000000002793968, + 888.2500000002328, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6460000001825392, + 3, + 0.3000000002793968, + 931, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6650000002700835, + 3, + 0.3000000002793968, + 973.7500000006985, + 5 + ] + } + } + }, + "100103": { + "Id": 100103, + "Name": "얼음 화살비의 시간", + "Desc": "모든 적에게 Mar. 7th 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다. 피격된 적은 #2[i]%기본 확률로 빙결 상태에 빠진다, 지속 시간: #3[i]턴\\n빙결 상태의 적은 행동이 불가할 뿐만 아니라 턴이 시작될 때마다 Mar. 7th 공격력의 #4[i]%만큼 얼음 속성 추가 피해를 받는다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.5000000004656613, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.5000000004656613, + 1, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.5000000004656613, + 1, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.5000000004656613, + 1, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.5000000004656613, + 1, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.5000000004656613, + 1, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.5000000004656613, + 1, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.5000000004656613, + 1, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613, + 1, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.5000000004656613, + 1, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.5000000004656613, + 1, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.5000000004656613, + 1, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.5000000004656613, + 1, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.5000000004656613, + 1, + 0.7500000006984919 + ] + } + } + }, + "100104": { + "Id": 100104, + "Name": "소녀의 특권", + "Desc": "실드를 보유한 아군이 적에게 피격되면 Mar. 7th는 즉시 공격자에게 반격을 발동하여 Mar. 7th 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다. 해당 효과는 턴마다 #2[i]회 발동할 수 있다", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 2 + ] + } + } + }, + "100106": { + "Id": 100106, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100107": { + "Id": 100107, + "Name": "빙결의 순간", + "Desc": "적을 바로 공격하며, 전투 진입 후 #1[i]%기본 확률로 랜덤 단일 적을 빙결 상태에 빠트린다. 지속 시간: #2[i]턴\\n빙결 상태의 적은 행동할 수 없을 뿐만 아니라 새로운 턴이 시작될 때마다 Mar. 7th 공격력 #3[i]%만큼의 얼음 속성 추가 피해를 받는다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Normal.png", + "LevelUpSkillID": [ + 100101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_BP.png", + "LevelUpSkillID": [ + 100102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Ultra.png", + "LevelUpSkillID": [ + 100103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_Passive.png", + "LevelUpSkillID": [ + 100104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1001_Maze.png", + "LevelUpSkillID": [ + 100107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001201, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001202, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1001101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001203, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1001202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001205, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1001102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001206, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1001205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001207, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001208, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1001103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001209, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001210, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1001101, + "PointName": "순결", + "PointDesc": "전투 스킬 발동 시 지정된 단일 아군의 디버프 효과를 1개 해제한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1001201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1001102, + "PointName": "가호", + "PointDesc": "전투 스킬이 제공하는 실드의 지속 시간이 #1[i]턴 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1001201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1001103, + "PointName": "얼음 저주", + "PointDesc": "필살기 발동 시 적을 빙결하는 기본 확률#1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 69.6000000005588, + "AttackAdd": 3.480000000447035, + "DefenceBase": 78, + "DefenceAdd": 3.9000000008381903, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 97.44000000040978, + "AttackAdd": 3.480000000447035, + "DefenceBase": 109.20000000018626, + "DefenceAdd": 3.9000000008381903, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 125.28000000026077, + "AttackAdd": 3.480000000447035, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 3.9000000008381903, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 153.12000000011176, + "AttackAdd": 3.480000000447035, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.9000000008381903, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 180.96000000089407, + "AttackAdd": 3.480000000447035, + "DefenceBase": 202.80000000074506, + "DefenceAdd": 3.9000000008381903, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 208.80000000074506, + "AttackAdd": 3.480000000447035, + "DefenceBase": 234, + "DefenceAdd": 3.9000000008381903, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 236.64000000059605, + "AttackAdd": 3.480000000447035, + "DefenceBase": 265.20000000018626, + "DefenceAdd": 3.9000000008381903, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1001, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 317 + ], + "PropertyList3": [ + "DefenceAddedRatio", + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta", + "DefenceAddedRatio" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusProbabilityBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 279, + 216 + ] + } + }, + "1002": { + "Name": "단항", + "Desc": "자신의 과거를 깊이 숨긴, 차가운 분위기의 과묵한 청년\\n혈예 동족을 피하기 위해 은하열차에 올랐다", + "CharaInfo": { + "Camp": "은하열차", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "danheng", + "SPNeed": 100, + "BaseType": "Rogue", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 100201, + "Name": "높이 오르면 추락하기 마련", + "Desc": "피격된 적의 현재 HP 백분율이 #1[i]% 이상이면, 치명타 확률이 #2[i]% 증가한다", + "ParamList": [ + 0.5000000004656613, + 0.12000000011175871 + ] + }, + "2": { + "Id": 100202, + "Name": "악을 제압하고 화염을 멸하라", + "Desc": "특성의 재사용 대기시간이 1턴 감소한다", + "ParamList": [] + }, + "3": { + "Id": 100203, + "Name": "자유자재로 변하는 낮과 밤", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 100204, + "Name": "공거천 같이 분주한 오의", + "Desc": "필살기를 발동하여 적을 처치할 시 단항은 즉시 행동한다", + "ParamList": [] + }, + "5": { + "Id": 100205, + "Name": "사방으로 흐르는 한 방울의 빗물", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 100206, + "Name": "때를 기다리는 준비된 자", + "Desc": "전투 스킬로 발동한 감속 상태는 목표의 속도를 추가로 #1[i]% 감소시킨다", + "ParamList": [ + 0.0800000000745058 + ] + } + }, + "Skills": { + "100201": { + "Id": 100201, + "Name": "운기 창술•삭풍", + "Desc": "지정된 단일 적에게 단항 공격력 #1[i]%만큼의 바람 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100202": { + "Id": 100202, + "Name": "운기 창술•질우", + "Desc": "지정된 단일 적에게 단항 공격력 #1[i]%만큼의 바람 속성 피해를 가한다.\\n전투 스킬로 가하는 피해가 치명타 발동 시 #4[i]%기본 확률로 피격된 적의 속도를 #2[i]% 감소시킨다. 지속 시간: #3[i]턴", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3000000002793968, + 0.12000000011175871, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4300000004004687, + 0.12000000011175871, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5600000005215406, + 0.12000000011175871, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6900000006426126, + 0.12000000011175871, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.8200000007636845, + 0.12000000011175871, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9500000008847564, + 0.12000000011175871, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.1125000002793968, + 0.12000000011175871, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.2749999999068677, + 0.12000000011175871, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.4375000002328306, + 0.12000000011175871, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.6000000005587935, + 0.12000000011175871, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.7300000006798655, + 0.12000000011175871, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.8600000008009374, + 0.12000000011175871, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.9900000009220093, + 0.12000000011175871, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.1200000001117587, + 0.12000000011175871, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.2500000002328306, + 0.12000000011175871, + 2, + 1 + ] + } + } + }, + "100203": { + "Id": 100203, + "Name": "동천환화, 기나긴 꿈", + "Desc": "지정된 단일 적에게 단항 공격력 #1[i]%만큼의 바람 속성 피해를 가한다. 피격된 적이 감속 상태인 경우 필살기로 가하는 피해 배율이 #2[i]% 증가한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058, + 1.440000000409782 + ] + } + } + }, + "100204": { + "Id": 100204, + "Name": "각자의 장점", + "Desc": "단항이 아군 스킬의 발동 목표가 되면, 다음 공격의 바람 속성 저항 관통#1[i]% 증가한다. 해당 효과는 #2[i]턴 후 다시 발동할 수 있다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.19799999962560833, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.21599999978207052, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.2339999999385327, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2520000000949949, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2700000002514571, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.29250000044703484, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.31499999994412065, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3375000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3779999997932464, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3959999999497086, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4140000001061708, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.43200000026263297, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.45000000041909516, + 2 + ] + } + } + }, + "100206": { + "Id": 100206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100207": { + "Id": 100207, + "Name": "섬멸의 칼날", + "Desc": "비술 발동 후 다음 전투 시작 시 단항의 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Normal.png", + "LevelUpSkillID": [ + 100201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_BP.png", + "LevelUpSkillID": [ + 100202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Ultra.png", + "LevelUpSkillID": [ + 100203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_Passive.png", + "LevelUpSkillID": [ + 100204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1002_Maze.png", + "LevelUpSkillID": [ + 100207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1002101, + "PointName": "잠룡", + "PointDesc": "현재 HP 백분율이 #1[i]% 이하인 경우, 적에게 피격될 확률이 감소한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451, + 2 + ], + "PointID": 1002102, + "PointName": "절영", + "PointDesc": "공격 발동 후 #1[i]%고정 확률로 자신의 속도가 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1002_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903 + ], + "PointID": 1002103, + "PointName": "세찬 바람", + "PointDesc": "일반 공격이 감속 상태의 적에게 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002201, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1002101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002203, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1002202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002205, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1002102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002206, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1002205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002207, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1002103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002209, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1002210, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "바람 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 74.40000000037253, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 120, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 104.16000000014901, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 168, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.92000000085682, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 216, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 163.6800000006333, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 264, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 193.44000000040978, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 312, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 223.20000000018626, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 360, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 252.96000000089407, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 408, + "HPAdd": 6, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1002, + "Set4IDList": [ + 110, + 122, + 102 + ], + "Set2IDList": [ + 311, + 301, + 309 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1003": { + "Name": "히메코", + "Desc": "은하열차의 복원가\\n광활한 별하늘을 보기 위해 은하열차와 함께하는 것을 택했다\\n취미는 핸드메이드 커피 만들기", + "CharaInfo": { + "Camp": "은하열차", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "himeko", + "SPNeed": 120, + "BaseType": "Mage", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 100301, + "Name": "어린 시절", + "Desc": "[기세 몰이] 발동 후 히메코의 속도가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "2": { + "Id": 100302, + "Name": "우연한 만남", + "Desc": "현재 HP 백분율이 #1[i]% 이하인 적에게 가하는 피해가 #2[i]% 증가한다", + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ] + }, + "3": { + "Id": 100303, + "Name": "자아", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 100304, + "Name": "몰입", + "Desc": "전투 스킬을 발동하여 적의 약점을 격파할 시 히메코는 추가로 #1[i]pt의 충전을 획득한다", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 100305, + "Name": "몽상", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 100306, + "Name": "개척!", + "Desc": "필살기는 추가로 2회 피해를 주고, 임의의 적에게 각각 기존 피해 #1[i]%만큼의 화염 속성 피해를 준다", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "100301": { + "Id": 100301, + "Name": "무장 조율", + "Desc": "지정된 단일 적에게 히메코 공격력 #1[i]%만큼의 화염 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100302": { + "Id": 100302, + "Name": "용핵 폭파", + "Desc": "지정된 단일 적에게 히메코 공격력 #1[i]%만큼의 화염 속성 피해를 주고, 인접한 목표에게 히메코 공격력 #2[i]%만큼의 화염 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 13, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "100303": { + "Id": 100303, + "Name": "하늘이 내린 불꽃", + "Desc": "모든 적에게 히메코 공격력 #1[i]%만큼의 화염 속성 피해를 주고, 적 1기를 처치할 때마다 히메코는 에너지를 추가로 #2[i]pt 회복한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 27, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3800000003539026, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4720000002998859, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5640000002458692, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6560000001918525, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.7480000001378357, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.840000000782311, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.955000000540167, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.0700000000651926, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.1849999998230487, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.3000000002793968, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.39200000022538, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4840000001713634, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.5760000001173466, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.66800000006333, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.760000000707805, + 5 + ] + } + } + }, + "100304": { + "Id": 100304, + "Name": "기세 몰이", + "Desc": "적의 약점이 격파될 경우 히메코는 충전을 획득한다. 최대 #2[i]pt까지 충전된다.\\n아군이 공격 발동 후 히메코의 충전이 최대치가 될 경우 바로 추가 공격을 1회 발동하고, 모든 적에게 히메코 공격력 #1[i]%만큼의 화염 속성 피해를 주고 충전을 모두 소모한다.\\n전투 시작 시 충전을 1pt 획득한다", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 3 + ] + } + } + }, + "100306": { + "Id": 100306, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100307": { + "Id": 100307, + "Name": "불완전 연소", + "Desc": "비술 사용 후 #4[i]초 동안 지속되는 특수영역을 하나 만든다. 특수 영역 안에 있는 적은 전투 진입 후 #1[i]%기본 확률로 받는 화염 속성 피해가 #2[i]% 증가한다. 지속 시간: #3[i]턴. 아군이 만든 영역 효과는 최대 1개만 존재할 수 있다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.10000000009313226, + 2, + 15 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Normal.png", + "LevelUpSkillID": [ + 100301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_BP.png", + "LevelUpSkillID": [ + 100302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Ultra.png", + "LevelUpSkillID": [ + 100303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_Passive.png", + "LevelUpSkillID": [ + 100304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1003_Maze.png", + "LevelUpSkillID": [ + 100307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2, + 0.3000000002793968 + ], + "PointID": 1003101, + "PointName": "불티", + "PointDesc": "공격 발동 후 #1[i]%기본 확률로 적을 연소 상태에 빠트린다. 지속 시간: #2[i]턴\\n연소 상태의 적은 턴이 시작될 때마다 히메코 공격력의 #3[i]%만큼 화염 속성 지속 피해를 받는다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1003102, + "PointName": "작열", + "PointDesc": "전투 스킬이 연소 상태의 적에게 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ], + "PointID": 1003103, + "PointName": "도표", + "PointDesc": "현재 HP 백분율이 #1[i]% 이상이면, 치명타 확률이 #2[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003201, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1003101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003203, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003205, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1003102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003206, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003207, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003209, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1003210, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "화염 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1003, + "Set4IDList": [ + 115, + 107, + 119 + ], + "Set2IDList": [ + 306, + 313, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 343, + 289 + ], + "LocalCriticalChance": 0.1500000001396984 + } + }, + "1004": { + "Name": "웰트", + "Desc": "의젓하고 진중한 열차팀의 선배\\n오랜만의 모험을 즐기자 가슴 깊은 곳의 뜨거운 피가 다시금 끓어오른다\\n가끔 공책에 모험 여정을 그린다", + "CharaInfo": { + "Camp": "은하열차", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "welt", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 100401, + "Name": "명성의 계승", + "Desc": "필살기 발동 후 웰트는 강화를 획득하며 다음 #3[i]번의 일반 공격 혹은 전투 스킬 발동 시 적에게 1회 추가 피해를 가한다. 일반 공격 발동 시의 추가 피해는 일반 공격 피해 배율의 #1[i]%이고, 전투 스킬 발동 시의 추가 피해는 전투 스킬 피해 배율의 #2[i]%이다", + "ParamList": [ + 0.5000000004656613, + 0.8000000007450581, + 2 + ] + }, + "2": { + "Id": 100402, + "Name": "별의 응집", + "Desc": "특성 발동 시 웰트가 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 3 + ] + }, + "3": { + "Id": 100403, + "Name": "평화의 기도", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 100404, + "Name": "정의의 이름으로", + "Desc": "전투 스킬 발동 시 피격된 적의 속도가 감소하는 기본 확률#1[i]% 증가한다", + "ParamList": [ + 0.3500000003259629 + ] + }, + "5": { + "Id": 100405, + "Name": "선의 힘", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 100406, + "Name": "찬란한 미래", + "Desc": "전투 스킬 발동 시 임의의 단일 적에게 추가로 1회 피해를 가한다", + "ParamList": [] + } + }, + "Skills": { + "100401": { + "Id": 100401, + "Name": "중력 압박", + "Desc": "지정된 단일 적에게 웰트 공격력 #1[i]%만큼의 허수 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100402": { + "Id": 100402, + "Name": "허공 단열", + "Desc": "지정된 단일 적에게 웰트 공격력 #1[i]%만큼의 허수 속성 피해를 주고, 추가로 피해를 2회 가한다. 피해를 가할 때마다 임의의 단일 적에게 웰트 공격력 #1[i]%만큼의 허수 속성 피해를 준다. 공격이 명중하면 #2[i]%기본 확률로 피격된 적의 속도를 #3[i]% 감소시킨다. 지속 시간: #4[i]턴", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 10, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.6500000006053597, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086, + 0.6600000006146729, + 0.10000000009313226, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297, + 0.6700000006239861, + 0.10000000009313226, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654, + 0.6800000006332994, + 0.10000000009313226, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898, + 0.6900000006426126, + 0.10000000009313226, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142, + 0.7000000006519258, + 0.10000000009313226, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777, + 0.7125000008381903, + 0.10000000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332, + 0.7250000003259629, + 0.10000000009313226, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968, + 0.7375000005122274, + 0.10000000009313226, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523, + 0.7500000006984919, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847, + 0.7600000007078052, + 0.10000000009313226, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091, + 0.7700000007171184, + 0.10000000009313226, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415, + 0.7800000007264316, + 0.10000000009313226, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659, + 0.7900000007357448, + 0.10000000009313226, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903, + 0.8000000007450581, + 0.10000000009313226, + 2 + ] + } + } + }, + "100403": { + "Id": 100403, + "Name": "유사 블랙홀", + "Desc": "모든 적에게 웰트 공격력 #1[i]%만큼의 허수 속성 피해를 주고 #3[i]%기본 확률로 피격된 적을 속박 상태에 빠트린다. 지속 시간: 1턴\\n속박 상태에서 적의 행동 게이지가 #2[f1]% 감소하고, 속도가 #4[i]% 감소한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3200000002980232, + 1, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.32799999974668026, + 1, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.3359999998938292, + 1, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.3440000000409782, + 1, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.35200000018812716, + 1, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.3600000003352761, + 1, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.37000000034458935, + 1, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.3800000003539026, + 1, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.3900000003632158, + 1, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.40000000037252903, + 1, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.40799999982118607, + 1, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.41599999996833503, + 1, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.424000000115484, + 1, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.43200000026263297, + 1, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.44000000040978193, + 1, + 0.10000000009313226 + ] + } + } + }, + "100404": { + "Id": 100404, + "Name": "시공 왜곡", + "Desc": "감속 상태의 적을 공격 시 추가로 웰트 공격력 #1[i]%만큼의 허수 속성 추가 피해를 1회 준다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919 + ] + } + } + }, + "100406": { + "Id": 100406, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100407": { + "Id": 100407, + "Name": "범위 제한", + "Desc": "비술 사용 후 #4[i]초 동안 지속되는 특수 영역을 하나 만든다. 특수 영역 안에 있는 적은 이동 속도가 #5[i]% 감소한다. 특수 영역 안에 있는 적은 전투 진입 후 #1[i]%기본 확률로 속박 상태에 빠진다. 지속 시간: 1턴\\n속박 상태의 적은 행동 게이지가 #2[i]% 감소하고, 속도가 #3[i]% 감소한다. 아군이 만든 영역 효과는 최대 1개만 존재할 수 있다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451, + 0.10000000009313226, + 15, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Normal.png", + "LevelUpSkillID": [ + 100401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_BP.png", + "LevelUpSkillID": [ + 100402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Ultra.png", + "LevelUpSkillID": [ + 100403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_Passive.png", + "LevelUpSkillID": [ + 100404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1004_Maze.png", + "LevelUpSkillID": [ + 100407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.12000000011175871, + 2 + ], + "PointID": 1004101, + "PointName": "징벌", + "PointDesc": "필살기 발동 시 #1[i]%기본 확률로 목표가 받는 피해가 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1004102, + "PointName": "심판", + "PointDesc": "필살기 발동 시 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1004_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1004103, + "PointName": "판결", + "PointDesc": "약점이 격파된 적에게 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004202, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1004101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1004202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1004203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1004102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004206, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1004205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1004206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004209, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1004210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1004201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1004, + "Set4IDList": [ + 112, + 122, + 111 + ], + "Set2IDList": [ + 309, + 301, + 303 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 358, + 302 + ] + } + }, + "1005": { + "Name": "카프카", + "Desc": "「스텔라론 헌터」의 멤버, 시크하고 차분한 분위기의 오피스룩 미녀.\\n언령술을 사용해 {NICKNAME}이(가) 스텔라론을 흡수할 수 있도록 계책을 꾸몄다.\\n취미는 코트 구매 및 정리하기", + "CharaInfo": { + "Camp": "스텔라론 헌터", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "kafka", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 100501, + "Name": "다카포", + "Desc": "특성으로 추가 공격 발동 시 #1[i]%기본 확률로 목표가 받는 지속 피해가 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Id": 100502, + "Name": "포르티시시모", + "Desc": "카프카가 필드에 있으면 모든 아군이 가하는 지속 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Id": 100503, + "Name": "카프리치오", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 100504, + "Name": "레치타티보", + "Desc": "적이 카프카가 부여한 감전 상태로 인해 피해를 받으면 카프카는 에너지 #1[i]pt를 추가로 회복한다", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 100505, + "Name": "돌로로소", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 100506, + "Name": "레지에로", + "Desc": "필살기, 비술, 특성으로 발동한 추가 공격은 적이 빠진 감전 상태의 피해 배율을 #1[i]% 증가시키고, 감전 상태의 지속 시간을 #2[i]턴 증가시킨다", + "ParamList": [ + 1.5600000005215406, + 1 + ] + } + }, + "Skills": { + "100501": { + "Id": 100501, + "Name": "소란스러운 밤", + "Desc": "지정된 단일 적에게 카프카 공격력의 #1[i]%만큼 번개 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100502": { + "Id": 100502, + "Name": "달빛의 어루만짐", + "Desc": "지정된 단일 적에게 카프카 공격력의 #1[i]%만큼 번개 속성 피해를 가하고, 인접한 목표에게 카프카 공격력의 #3[i]%만큼 번개 속성 피해를 가한다.\\n지정된 단일 적이 지속 피해 상태인 경우, 현재 해당 적이 받는 모든 지속 피해는 즉시 기존 피해 #2[i]%만큼의 피해를 생성한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.6150000002235174, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.6300000005867332, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.6450000002514571, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.6600000006146729, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.6750000002793968, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.6937500012572855, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.7125000008381903, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.7312500011175871, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.7500000006984919, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.7650000003632158, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.7800000007264316, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.7950000003911555, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.8100000007543713, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.8250000004190952, + 0.7500000006984919 + ] + } + } + }, + "100503": { + "Id": 100503, + "Name": "비극 끝의 떨리는 소리", + "Desc": "모든 적에게 카프카 공격력의 #1[i]%만큼 번개 속성 피해를 가하고, 피격된 적을 #2[i]%기본 확률로 감전 상태에 빠트리며, 현재 받는 감전 상태는 즉시 기존 피해 #5[i]%만큼의 피해를 생성한다. 감전 상태 지속 시간: #3[i]턴\\n감전 상태인 적은 턴이 시작될 때마다 카프카 공격력의 #4[i]%만큼 번개 속성 지속 피해를 받는다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.48000000044703484, + 1, + 2, + 1.1600000001490116, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5120000003371388, + 1, + 2, + 1.2687500005122274, + 0.8200000007636845 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5440000002272427, + 1, + 2, + 1.3775000001769513, + 0.840000000782311 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5760000001173466, + 1, + 2, + 1.486250000540167, + 0.8600000008009374 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6080000000074506, + 1, + 2, + 1.595000000204891, + 0.8800000008195639 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6400000005960464, + 1, + 2, + 1.7581250004004687, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6800000006332994, + 1, + 2, + 1.9756250011269003, + 0.9250000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 1, + 2, + 2.2475000000558794, + 0.9500000008847564 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7600000007078052, + 1, + 2, + 2.5737500011455268, + 0.9750000005587935 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 2, + 2.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.832000000635162, + 1, + 2, + 3.0413750007282943, + 1.0200000000186265 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8640000005252659, + 1, + 2, + 3.182750000851229, + 1.040000000037253 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8960000004153699, + 1, + 2, + 3.3241250002756715, + 1.0600000000558794 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9280000003054738, + 1, + 2, + 3.465500000398606, + 1.0800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9600000008940697, + 1, + 2, + 3.6068750012200326, + 1.1000000000931323 + ] + } + } + }, + "100504": { + "Id": 100504, + "Name": "상냥함이 곧 잔혹함", + "Desc": "카프카의 동료가 적에게 일반 공격을 발동하면 카프카는 즉시 추가 공격을 발동하고 해당 목표에게 카프카 공격력의 #1[i]%만큼 번개 속성 피해를 주며, #2[i]%기본 확률로 피격된 적을 필살기와 동일한 감전 상태에 빠트린다. 감전 상태 지속 시간: #3[i]턴. 해당 효과는 턴마다 1회만 발동한다", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.4200000003911555, + 1, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5179999999236315, + 1, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6160000001545995, + 1, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7140000003855675, + 1, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8120000006165355, + 1, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9100000008475035, + 1, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.032500000204891, + 1, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.154999999795109, + 1, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.277500000083819, + 1, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.497999999905005, + 1, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.596000000135973, + 1, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.694000000366941, + 1, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.792000000597909, + 1, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.890000000828877, + 1, + 2 + ] + } + } + }, + "100506": { + "Id": 100506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100507": { + "Id": 100507, + "Name": "자비와 무관한 용서", + "Desc": "일정 범위 내 모든 적을 바로 공격하며, 전투 진입 후 모든 적에게 카프카 공격력의 #3[i]%만큼 번개 속성 피해를 가하고, #1[i]%기본 확률로 각 단일 적을 필살기와 동일한 감전 상태에 빠트린다. 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Maze.png", + "LevelUpSkillID": [ + 100507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005101, + "PointName": "고통", + "PointDesc": "필살기 발동 시 적은 「현재 받는 감전 상태가 즉시 피해를 생성」에서 「현재 받는 모든 지속 피해류 디버프 상태가 즉시 피해를 생성」으로 변경된다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1005102, + "PointName": "약탈", + "PointDesc": "감전 상태인 적이 처치될 시 카프카는 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1005103, + "PointName": "가시", + "PointDesc": "필살기, 비술, 특성으로 발동한 추가 공격이 적을 감전 상태에 빠트릴 기본 확률#1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005202, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1005203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005206, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1005206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005209, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "효과 명중" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1005210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1100501, + "Name": "다카포", + "Desc": "공격 발동 시 #1[i]%기본 확률로 목표가 받는 지속 피해가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Id": 1100502, + "Name": "포르티시시모", + "Desc": "특성이 추가 공격 발동 시 카프카의 공격력이 #1[i]% 증가한다, 최대 중첩수: #2[i]스택, 지속 시간: #3[i]턴", + "ParamList": [ + 0.25000000023283064, + 2, + 3 + ] + }, + "3": { + "Id": 1100503, + "Name": "카프리치오", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 1100504, + "Name": "레치타티보", + "Desc": "적이 카프카가 부여한 감전 상태로 인해 피해를 받으면 카프카는 에너지를 #1[i]pt 추가로 회복한다", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 1100505, + "Name": "돌로로소", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 1100506, + "Name": "레지에로", + "Desc": "필살기, 비술, 특성으로 발동한 추가 공격은 적이 빠진 감전 상태의 피해 배율을 #1[i]% 증가시키고, 감전 상태의 지속 시간을 #2[i]턴 증가시킨다", + "ParamList": [ + 1.5600000005215406, + 1 + ] + } + }, + "Skills": { + "1100501": { + "Id": 1100501, + "Name": "소란스러운 밤", + "Desc": "지정된 단일 적에게 카프카 공격력의 #1[i]%만큼 번개 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "1100502": { + "Id": 1100502, + "Name": "달빛의 어루만짐", + "Desc": "지정된 단일 적에게 카프카 공격력의 #1[i]%만큼 번개 속성 피해를 가하고, 인접한 목표에게 카프카 공격력의 #3[i]%만큼 번개 속성 피해를 가한다.\\n지정된 단일 적 또는 인접한 목표가 지속 피해 상태인 경우, 현재 대상이 받는 모든 지속 피해는 즉시 기존 피해의 #2[i]% 또는 #4[i]%만큼 피해를 생성한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.3000000002793968, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.6150000002235174, + 0.33000000030733645, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.6300000005867332, + 0.3600000003352761, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.6450000002514571, + 0.3900000003632158, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.6600000006146729, + 0.4200000003911555, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.6750000002793968, + 0.45000000041909516, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.6937500012572855, + 0.4875000002793968, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.7125000008381903, + 0.5250000001396984, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.7312500011175871, + 0.5625000006984919, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.7500000006984919, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.7650000003632158, + 0.6300000005867332, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.7800000007264316, + 0.6600000006146729, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.7950000003911555, + 0.6900000006426126, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.8100000007543713, + 0.7200000006705523, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.8250000004190952, + 0.7500000006984919, + 0.5500000005122274 + ] + } + } + }, + "1100503": { + "Id": 1100503, + "Name": "비극 끝의 떨리는 소리", + "Desc": "모든 적에게 카프카 공격력의 #1[i]%만큼 번개 속성 피해를 가하고, 피격된 적을 #2[i]%기본 확률로 감전 상태에 빠트리며, 현재 대상이 받는 지속 피해류 디버프 상태는 즉시 기존 피해의 #5[i]%만큼 피해를 생성한다. 감전 상태 지속 시간: #3[i]턴\\n감전 상태인 적은 턴이 시작될 때마다 카프카 공격력의 #4[i]%만큼 번개 속성 지속 피해를 받는다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.48000000044703484, + 1, + 2, + 1.1600000001490116, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5120000003371388, + 1, + 2, + 1.2687500005122274, + 1.0200000000186265 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5440000002272427, + 1, + 2, + 1.3775000001769513, + 1.040000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5760000001173466, + 1, + 2, + 1.486250000540167, + 1.0600000000558794 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6080000000074506, + 1, + 2, + 1.595000000204891, + 1.0800000000745058 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6400000005960464, + 1, + 2, + 1.7581250004004687, + 1.1000000000931323 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6800000006332994, + 1, + 2, + 1.9756250011269003, + 1.1249999997671694 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 1, + 2, + 2.2475000000558794, + 1.1500000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7600000007078052, + 1, + 2, + 2.5737500011455268, + 1.1749999998137355 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 2, + 2.9000000008381903, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.832000000635162, + 1, + 2, + 3.0413750007282943, + 1.220000000204891 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8640000005252659, + 1, + 2, + 3.182750000851229, + 1.2400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8960000004153699, + 1, + 2, + 3.3241250002756715, + 1.2600000002421439 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9280000003054738, + 1, + 2, + 3.465500000398606, + 1.2800000002607703 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9600000008940697, + 1, + 2, + 3.6068750012200326, + 1.3000000002793968 + ] + } + } + }, + "1100504": { + "Id": 1100504, + "Name": "상냥함이 곧 잔혹함", + "Desc": "카프카의 동료가 적에게 공격을 발동하면 카프카는 즉시 추가 공격을 발동하고 해당 목표에게 카프카 공격력의 #1[i]%만큼 번개 속성 피해를 가하며, #2[i]%기본 확률로 피격된 적을 필살기와 동일한 감전 상태에 빠트린다, 감전 상태 지속 시간: #3[i]턴. 해당 효과는 최대 #5[i]회 발동하며, 카프카의 턴 종료 시 #4[i]회 회복된다", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.4200000003911555, + 1, + 2, + 1, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5179999999236315, + 1, + 2, + 1, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6160000001545995, + 1, + 2, + 1, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7140000003855675, + 1, + 2, + 1, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8120000006165355, + 1, + 2, + 1, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9100000008475035, + 1, + 2, + 1, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.032500000204891, + 1, + 2, + 1, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.154999999795109, + 1, + 2, + 1, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.277500000083819, + 1, + 2, + 1, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1, + 2, + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.497999999905005, + 1, + 2, + 1, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.596000000135973, + 1, + 2, + 1, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.694000000366941, + 1, + 2, + 1, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.792000000597909, + 1, + 2, + 1, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.890000000828877, + 1, + 2, + 1, + 2 + ] + } + } + }, + "1100506": { + "Id": 1100506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1100507": { + "Id": 1100507, + "Name": "자비와 무관한 용서", + "Desc": "일정 범위 내 모든 적을 즉시 공격하며, 전투 진입 후 모든 적에게 카프카 공격력의 #3[i]%만큼 번개 속성 피해를 가하고, #1[i]%기본 확률로 각 단일 적을 필살기와 동일한 감전 상태에 빠트린다. 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Normal.png", + "LevelUpSkillID": [ + 1100501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_BP.png", + "LevelUpSkillID": [ + 1100502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Ultra.png", + "LevelUpSkillID": [ + 1100503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_Passive.png", + "LevelUpSkillID": [ + 1100504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1005_Maze.png", + "LevelUpSkillID": [ + 1100507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7500000006984919, + 0.7500000006984919 + ], + "PointID": 11005101, + "PointName": "고통", + "PointDesc": "아군의 효과 명중이 #1[i]% 초과 시 카프카는 대상이 가하는 지속 피해를 #2[i]% 증가시킨다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 11005102, + "PointName": "약탈", + "PointDesc": "감전 상태의 적이 처치될 시 카프카는 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 11005103, + "PointName": "가시", + "PointDesc": "필살기 발동 후 특성의 추가 공격 발동 횟수가 1회 회복되고, 특성의 추가 공격은 목표가 현재 받는 모든 지속 피해류 디버프 상태가 즉시 기존 피해의 #1[i]%만큼 피해를 생성하게 한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005202, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11005203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005206, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11005206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005209, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "효과 명중" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11005210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1005, + "Set4IDList": [ + 116, + 109, + 102 + ], + "Set2IDList": [ + 322, + 311, + 301 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 310, + 256 + ] + } + }, + "1006": { + "Name": "은랑", + "Desc": "「스텔라론 헌터」의 멤버, 프로 해커.\\n우주를 몰입감 넘치는 대형 시뮬레이션 게임으로 여기며 즐기고 있다.\\n현실 데이터를 수정할 수 있는 「에테르 편집」을 마스터했다", + "CharaInfo": { + "Camp": "스텔라론 헌터", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "silverwolf", + "SPNeed": 110, + "BaseType": "Warlock", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 100601, + "Name": "소셜 엔지니어링", + "Desc": "필살기를 발동해 적 공격 후 목표가 보유한 디버프 효과 1개당 은랑은 에너지를 #1[i]pt 회복한다. 해당 효과는 필살기 공격마다 최대 #2[i]회 적용된다", + "ParamList": [ + 7, + 5 + ] + }, + "2": { + "Id": 100602, + "Name": "좀비 네트워크", + "Desc": "적이 전투 진입 시 효과 저항이 #1[i]% 감소한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 100603, + "Name": "페이로드", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 100604, + "Name": "바운스 공격", + "Desc": "필살기를 발동해 적 공격 후 목표가 보유한 디버프 효과 1개당 추가로 은랑 공격력의 #1[i]%만큼 양자 속성 추가 피해를 가한다. 해당 효과는 필살기 공격마다 최대 #2[i]회 발동된다", + "ParamList": [ + 0.20000000018626451, + 5 + ] + }, + "5": { + "Id": 100605, + "Name": "무차별 대입 공격", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 100606, + "Name": "오버레이 네트워크", + "Desc": "적이 보유한 디버프 효과 1개당 은랑이 대상에게 가하는 피해가 #1[i]% 증가하며, 최대 #2[i]% 증가한다", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + }, + "Skills": { + "100601": { + "Id": 100601, + "Name": "|시스템 경고|", + "Desc": "지정된 단일 적에게 은랑 공격력의 #1[i]%만큼 양자 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100602": { + "Id": 100602, + "Name": "수정하시겠습니까?", + "Desc": "지정된 단일 적에게 필드에 있는 아군이 보유한 속성의 약점을 #2[i]%기본 확률로 1개 부여하고, 해당 약점에 대응하는 속성의 저항이 #4[i]% 감소한다. 지속 시간: #3[i]턴. 적이 보유한 속성과 동일한 약점이 부여되면 대응하는 속성 저항 감소 효과가 발동되지 않는다.\\n은랑은 단일 적에게 1개의 약점만 부여할 수 있고, 약점 재부여 시 새로 부여된 약점만 존재한다.\\n#5[i]%기본 확률로 해당 목표의 모든 속성 저항이 추가로 #6[f1]% 감소한다. 지속 시간: #7[i]턴\\n해당 목표에게 은랑 공격력의 #1[i]%만큼 양자 속성 피해를 준다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9800000009126961, + 0.7500000006984919, + 2, + 0.20000000018626451, + 1, + 0.07499999972060323, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.0779999995138496, + 0.7600000007078052, + 2, + 0.20000000018626451, + 1, + 0.07749999989755452, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.1759999997448176, + 0.7700000007171184, + 2, + 0.20000000018626451, + 1, + 0.0800000000745058, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2739999999757856, + 0.7800000007264316, + 2, + 0.20000000018626451, + 1, + 0.0825000002514571, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3720000002067536, + 0.7900000007357448, + 2, + 0.20000000018626451, + 1, + 0.08499999972991645, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.4700000004377216, + 0.8000000007450581, + 2, + 0.20000000018626451, + 1, + 0.08749999990686774, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.5925000007264316, + 0.8125000009313226, + 2, + 0.20000000018626451, + 1, + 0.0906250006519258, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.7150000003166497, + 0.8250000004190952, + 2, + 0.20000000018626451, + 1, + 0.09375000069849193, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8375000006053597, + 0.8375000006053597, + 2, + 0.20000000018626451, + 1, + 0.09687500074505806, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.9600000008940697, + 0.8500000007916242, + 2, + 0.20000000018626451, + 1, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.057999999495223, + 0.8600000008009374, + 2, + 0.20000000018626451, + 1, + 0.10250000027008355, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.155999999726191, + 0.8700000008102506, + 2, + 0.20000000018626451, + 1, + 0.1049999997485429, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.253999999957159, + 0.8800000008195639, + 2, + 0.20000000018626451, + 1, + 0.1074999999254942, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.352000000188127, + 0.8900000008288771, + 2, + 0.20000000018626451, + 1, + 0.11000000010244548, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.450000000419095, + 0.9000000008381903, + 2, + 0.20000000018626451, + 1, + 0.11250000027939677, + 2 + ] + } + } + }, + "100603": { + "Id": 100603, + "Name": "|계정 정지|", + "Desc": "지정된 단일 적의 방어력이 #2[i]%기본 확률#3[f1]% 감소한다. 지속 시간: #4[i]턴. 동시에 해당 목표에게 은랑 공격력의 #1[i]%만큼 양자 속성 피해를 준다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.8500000007916242, + 0.3600000003352761, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.8650000004563481, + 0.3689999997150153, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.8800000008195639, + 0.3779999997932464, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.8950000004842877, + 0.3869999998714775, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.9100000008475035, + 0.3959999999497086, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 0.9250000005122274, + 0.4050000000279397, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 0.9437500014901161, + 0.4162500004749745, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 0.962500001071021, + 0.4275000002235174, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 0.9812500013504177, + 0.43875000067055225, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 1, + 0.45000000041909516, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 1.0149999996647239, + 0.4589999997988343, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 1.0300000000279397, + 0.4679999998770654, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 1.0449999996926636, + 0.4769999999552965, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 1.0600000000558794, + 0.4860000000335276, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 1.0749999997206032, + 0.4950000001117587, + 3 + ] + } + } + }, + "100604": { + "Id": 100604, + "Name": "프로그램 응답 대기 중…", + "Desc": "은랑은 다음 3가지의 결함을 생성할 수 있다: 공격력 #1[f1]% 감소, 방어력 #2[f1]% 감소, 속도 #3[f1]% 감소.\\n은랑은 매번 공격 발동 후 피격된 적에게 #4[i]%기본 확률로 임의의 [결함]을 1개 이식한다. 지속 시간: #5[i]턴", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 0.0400000000372529, + 0.030000000027939677, + 0.6000000005587935, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 0.04399999976158142, + 0.032999999821186066, + 0.612000000430271, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 0.04799999948590994, + 0.035999999614432454, + 0.6240000003017485, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 0.05199999990873039, + 0.03899999940767884, + 0.636000000173226, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 0.055999999633058906, + 0.04199999989941716, + 0.6480000000447035, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 0.060000000055879354, + 0.04499999969266355, + 0.6600000006146729, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 0.06499999971129, + 0.04875000030733645, + 0.6750000002793968, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 0.07000000006519258, + 0.05250000022351742, + 0.6900000006426126, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 0.07499999972060323, + 0.056250000139698386, + 0.7050000003073364, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.0800000000745058, + 0.060000000055879354, + 0.7200000006705523, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 0.08399999979883432, + 0.06299999984912574, + 0.7320000005420297, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 0.08799999952316284, + 0.06599999964237213, + 0.7440000004135072, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 0.09199999994598329, + 0.06899999943561852, + 0.7560000002849847, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 0.09599999967031181, + 0.07199999992735684, + 0.7680000001564622, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 0.10000000009313226, + 0.07499999972060323, + 0.7800000007264316, + 3 + ] + } + } + }, + "100606": { + "Id": 100606, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100607": { + "Id": 100607, + "Name": "|프로세스 강제 종료|", + "Desc": "적을 바로 공격하며, 전투 진입 후 모든 적에게 은랑 공격력의 #1[i]%만큼 양자 속성 피해를 주고, 모든 적의 강인성을 소모하는데 이때 약점 속성을 무시한다. 약점 격파 시 발동되는 약점 격파 효과는 양자 속성이다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Maze.png", + "LevelUpSkillID": [ + 100607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006202, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006204, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1006203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006206, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1006206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006208, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006209, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "효과 명중" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1006210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.6500000006053597 + ], + "PointID": 1006101, + "PointName": "생성", + "PointDesc": "[결함]의 지속 시간이 #1[i]턴 증가하며 적의 약점이 격파될 때마다 은랑은 #2[i]%기본 확률로 임의의 [결함]을 1개 이식한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1006102, + "PointName": "주입", + "PointDesc": "전투 스킬 발동 시 적에게 부여하는 약점의 지속 시간이 #1[i]턴 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.030000000027939677 + ], + "PointID": 1006103, + "PointName": "주석", + "PointDesc": "전투 스킬 발동 시 적의 디버프 효과 수량이 #1[i]개 이상일 경우, 전투 스킬로 인한 목표의 모든 속성 저항 감소 효과가 추가로 #2[i]% 감소한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1100601, + "Name": "소셜 엔지니어링", + "Desc": "필살기를 발동해 적 공격 후 목표가 보유한 디버프 효과 1개당 은랑은 에너지를 #1[i]pt 회복한다. 해당 효과는 필살기 공격마다 최대 #2[i]회 적용된다", + "ParamList": [ + 7, + 5 + ] + }, + "2": { + "Id": 1100602, + "Name": "좀비 네트워크", + "Desc": "적이 전투 진입 시 대상이 받는 피해가 #1[i]% 증가한다. 적이 아군에게 피격될 시 은랑은 #2[i]%기본 확률로 피격된 적에게 랜덤 [결함]을 1개 이식한다", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 1100603, + "Name": "페이로드", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 1100604, + "Name": "바운스 공격", + "Desc": "필살기를 발동해 적 공격 후 목표가 보유한 디버프 효과 1개당 추가로 은랑 공격력의 #1[i]%만큼 양자 속성 추가 피해를 가한다. 해당 효과는 필살기 공격마다 최대 #2[i]회 발동된다", + "ParamList": [ + 0.20000000018626451, + 5 + ] + }, + "5": { + "Id": 1100605, + "Name": "무차별 대입 공격", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 1100606, + "Name": "오버레이 네트워크", + "Desc": "적이 보유한 디버프 효과 1개당 은랑이 대상에게 가하는 피해가 #1[i]% 증가하며, 최대 #2[i]% 증가한다", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + }, + "Skills": { + "1100601": { + "Id": 1100601, + "Name": "|시스템 경고|", + "Desc": "지정된 단일 적에게 은랑 공격력의 #1[i]%만큼 양자 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "1100602": { + "Id": 1100602, + "Name": "수정하시겠습니까?", + "Desc": "지정된 단일 적에게 필드에 있는 아군이 보유한 속성의 약점을 #2[i]%기본 확률로 1개 부여하고(파티 편성 첫 번째 캐릭터가 보유한 속성의 약점 우선 부여), 해당 약점에 대응하는 속성의 저항이 #4[i]% 감소한다, 지속 시간: #3[i]턴. 적이 보유한 속성과 동일한 약점이 부여되면 대응하는 속성의 저항 감소 효과가 발동되지 않는다.\\n은랑은 단일 적에게 1개의 약점만 부여할 수 있고, 약점 재부여 시 새로 부여된 약점만 존재한다.\\n#5[i]%기본 확률로 해당 목표의 모든 속성 저항이 추가로 #6[f1]% 감소한다, 지속 시간: #7[i]턴\\n해당 목표에게 은랑 공격력의 #1[i]%만큼 양자 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9800000009126961, + 0.8000000007450581, + 3, + 0.20000000018626451, + 1, + 0.1049999997485429, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.0779999995138496, + 0.840000000782311, + 3, + 0.20000000018626451, + 1, + 0.1074999999254942, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.1759999997448176, + 0.8800000008195639, + 3, + 0.20000000018626451, + 1, + 0.11000000010244548, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2739999999757856, + 0.9200000008568168, + 3, + 0.20000000018626451, + 1, + 0.11250000027939677, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3720000002067536, + 0.9600000008940697, + 3, + 0.20000000018626451, + 1, + 0.11499999975785613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.4700000004377216, + 1, + 3, + 0.20000000018626451, + 1, + 0.11749999993480742, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.5925000007264316, + 1.0500000000465661, + 3, + 0.20000000018626451, + 1, + 0.12062500067986548, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.7150000003166497, + 1.1000000000931323, + 3, + 0.20000000018626451, + 1, + 0.12375000072643161, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8375000006053597, + 1.1500000001396984, + 3, + 0.20000000018626451, + 1, + 0.12687500077299774, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.9600000008940697, + 1.2000000001862645, + 3, + 0.20000000018626451, + 1, + 0.13000000012107193, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.057999999495223, + 1.2400000002235174, + 3, + 0.20000000018626451, + 1, + 0.13250000029802322, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.155999999726191, + 1.2800000002607703, + 3, + 0.20000000018626451, + 1, + 0.13499999977648258, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.253999999957159, + 1.3200000002980232, + 3, + 0.20000000018626451, + 1, + 0.13749999995343387, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.352000000188127, + 1.3600000003352761, + 3, + 0.20000000018626451, + 1, + 0.14000000013038516, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.450000000419095, + 1.400000000372529, + 3, + 0.20000000018626451, + 1, + 0.14250000030733645, + 2 + ] + } + } + }, + "1100603": { + "Id": 1100603, + "Name": "|계정 정지|", + "Desc": "모든 적의 방어력이 #2[i]%기본 확률#3[f1]% 감소한다, 지속 시간: #4[i]턴. 동시에 모든 적에게 은랑 공격력의 #1[i]%만큼 양자 속성 피해를 가한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.8000000007450581, + 0.3600000003352761, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.840000000782311, + 0.3689999997150153, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.8800000008195639, + 0.3779999997932464, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.9200000008568168, + 0.3869999998714775, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.9600000008940697, + 0.3959999999497086, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 1, + 0.4050000000279397, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 1.0500000000465661, + 0.4162500004749745, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 1.1000000000931323, + 0.4275000002235174, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 1.1500000001396984, + 0.43875000067055225, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 1.2000000001862645, + 0.45000000041909516, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 1.2400000002235174, + 0.4589999997988343, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 1.2800000002607703, + 0.4679999998770654, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 1.3200000002980232, + 0.4769999999552965, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 1.3600000003352761, + 0.4860000000335276, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 1.400000000372529, + 0.4950000001117587, + 3 + ] + } + } + }, + "1100604": { + "Id": 1100604, + "Name": "프로그램 응답 대기 중…", + "Desc": "은랑은 다음 3가지의 결함을 생성할 수 있다: 공격력 #1[f1]% 감소, 방어력 #2[f1]% 감소, 속도 #3[f1]% 감소.\\n은랑은 매번 공격 발동 후 피격된 적에게 #4[i]%기본 확률로 랜덤 [결함]을 1개 이식한다, 지속 시간: #5[i]턴. 적이 처치될 시 은랑이 대상에게 부여한 약점은 필드 위 다른 적에게로 이전된다", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 0.060000000055879354, + 0.030000000027939677, + 0.6000000005587935, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 0.06599999964237213, + 0.032999999821186066, + 0.6400000005960464, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 0.07199999992735684, + 0.035999999614432454, + 0.6800000006332994, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 0.07799999951384962, + 0.03899999940767884, + 0.7200000006705523, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 0.08399999979883432, + 0.04199999989941716, + 0.7600000007078052, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 0.09000000008381903, + 0.04499999969266355, + 0.8000000007450581, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 0.09749999991618097, + 0.04875000030733645, + 0.8500000007916242, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 0.1049999997485429, + 0.05250000022351742, + 0.9000000008381903, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 0.11250000027939677, + 0.056250000139698386, + 0.9500000008847564, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.12000000011175871, + 0.060000000055879354, + 1, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 0.12599999969825149, + 0.06299999984912574, + 1.040000000037253, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 0.1319999999832362, + 0.06599999964237213, + 1.0800000000745058, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 0.13799999956972897, + 0.06899999943561852, + 1.1200000001117587, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 0.14399999985471368, + 0.07199999992735684, + 1.1600000001490116, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 0.1500000001396984, + 0.07499999972060323, + 1.2000000001862645, + 3 + ] + } + } + }, + "1100606": { + "Id": 1100606, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1100607": { + "Id": 1100607, + "Name": "|프로세스 강제 종료|", + "Desc": "적을 즉시 공격하며, 전투 진입 후 모든 적에게 은랑 공격력의 #1[i]%만큼 양자 속성 피해를 가하고, 약점 속성을 무시하며 모든 적의 강인성을 감소시킨다. 약점 격파 시 양자 속성의 약점 격파 효과를 발동한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Normal.png", + "LevelUpSkillID": [ + 1100601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_BP.png", + "LevelUpSkillID": [ + 1100602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Ultra.png", + "LevelUpSkillID": [ + 1100603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_Passive.png", + "LevelUpSkillID": [ + 1100604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1006_Maze.png", + "LevelUpSkillID": [ + 1100607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006202, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006204, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11006203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006206, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11006206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006208, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006209, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "효과 명중" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11006210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 11006101, + "PointName": "생성", + "PointDesc": "[결함]의 지속 시간이 #1[i]턴 증가하며, 적의 약점이 격파될 때마다 은랑은 #2[i]%기본 확률로 해당 목표에게 랜덤 [결함]을 1개 이식한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 20, + 5 + ], + "PointID": 11006102, + "PointName": "주입", + "PointDesc": "전투 시작 시 즉시 에너지를 #1[i]pt 회복한다. 은랑의 턴 시작 시 자신의 에너지를 #2[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1006_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 0.10000000009313226, + 0.5000000004656613 + ], + "PointID": 11006103, + "PointName": "주석", + "PointDesc": "은랑이 보유한 효과 명중 #1[i]%마다 추가로 공격력이 #2[i]% 증가한다. (최대 #3[i]%까지 증가)", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1006, + "Set4IDList": [ + 108, + 111, + 117 + ], + "Set2IDList": [ + 312, + 303, + 307 + ], + "PropertyList3": [ + "StatusProbabilityBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "StatusProbabilityBase", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 340, + 285 + ] + } + }, + "1008": { + "Name": "아를란", + "Desc": "우주정거장 「헤르타」 방위과 책임자\\n말주변이 없으며, 연구를 사랑하는 사람들이 편히 연구할 수 있도록 보호하고자 한다", + "CharaInfo": { + "Camp": "우주정거장 「헤르타」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "arlan", + "SPNeed": 110, + "BaseType": "Warrior", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 100801, + "Name": "필사즉생", + "Desc": "현재 HP 백분율이 50% 이하일 경우 전투 스킬이 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 100802, + "Name": "구속 해제", + "Desc": "전투 스킬, 필살기 발동 시 자신의 디버프 효과를 1개 해제한다", + "ParamList": [] + }, + "3": { + "Id": 100803, + "Name": "강검 공격", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 100804, + "Name": "절체절명의 반격", + "Desc": "전투 진입 후 치명적인 공격을 받아도 아를란은 전투 불능 상태에 빠지지 않으며, 즉시 자신 HP 최대치의 #1[i]%까지 회복한다. 해당 효과는 1회 발동 후 또는 #2[i]턴 지속 후 자동으로 해제된다", + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "5": { + "Id": 100805, + "Name": "전력투구", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 100806, + "Name": "솔선수범", + "Desc": "현재 HP 백분율이 50% 이하일 경우 필살기가 가하는 피해가 #1[i]% 증가하며, 인접한 목표에 대한 피해 배율이 주목표와 같은 피해 배율로 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "100801": { + "Id": 100801, + "Name": "번개 같은 질주", + "Desc": "지정된 단일 적에게 아를란 공격력 #1[i]%만큼의 번개 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100802": { + "Id": 100802, + "Name": "속박 해제", + "Desc": "아를란 HP 최대치 #1[i]%만큼의 HP를 소모해 지정된 단일 적에게 아를란 공격력 #2[i]%만큼의 번개 속성 피해를 가한다. 현재 HP가 부족할 때 전투 스킬 발동 시 아를란의 HP가 1pt까지 하락한다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": null, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1500000001396984, + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1500000001396984, + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1500000001396984, + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1500000001396984, + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1500000001396984, + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1500000001396984, + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1500000001396984, + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1500000001396984, + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1500000001396984, + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1500000001396984, + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.1500000001396984, + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1500000001396984, + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 3 + ] + } + } + }, + "100803": { + "Id": 100803, + "Name": "광자의 제재", + "Desc": "지정된 단일 적에게 아를란 공격력 #1[i]%만큼의 번개 속성 피해를 가하고, 인접한 목표에게 아를란 공격력 #2[i]%만큼의 번개 속성 피해를 가한다", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9200000008568168, + 0.9600000008940697 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.04799999948591, + 1.023999999742955 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.1759999997448176, + 1.0879999995231628 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.3040000000037253, + 1.1520000000018626 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.432000000262633, + 1.2159999997820705 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5600000005215406, + 1.2800000002607703 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.7200000006705523, + 1.3600000003352761 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 1.440000000409782 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.040000000037253, + 1.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.2000000001862645, + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.3279999997466803, + 1.6640000003390014 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.456000000005588, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.5840000002644956, + 1.792000000597909 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.7120000005234033, + 1.856000000378117 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.840000000782311, + 1.9200000008568168 + ] + } + } + }, + "100804": { + "Id": 100804, + "Name": "고통과 분노", + "Desc": "아를란이 현재 잃은 HP 백분율에 따라 피해 보너스를 획득하며, 아를란이 가하는 피해가 최대 #1[i]% 증가한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "100806": { + "Id": 100806, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100807": { + "Id": 100807, + "Name": "신속한 수확", + "Desc": "적을 바로 공격하며, 전투 진입 후 모든 적에게 아를란 공격력 #1[i]%만큼의 번개 속성 피해를 가한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Normal.png", + "LevelUpSkillID": [ + 100801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_BP.png", + "LevelUpSkillID": [ + 100802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Ultra.png", + "LevelUpSkillID": [ + 100803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_Passive.png", + "LevelUpSkillID": [ + 100804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1008_Maze.png", + "LevelUpSkillID": [ + 100807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.20000000018626451 + ], + "PointID": 1008101, + "PointName": "소생", + "PointDesc": "적 처치 시 현재 HP 백분율이 #1[i]% 이하일 경우, 자신 HP 최대치 #2[i]%만큼의 HP를 즉시 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1008102, + "PointName": "인내", + "PointDesc": "지속 피해류 디버프 상태 저항 확률이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1008_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1008103, + "PointName": "방어 저항", + "PointDesc": "전투 진입 시 현재 HP 백분율이 #1[i]% 이하일 경우, 아를란은 지속 피해를 제외한 모든 피해에 저항한다. 해당 효과는 아를란이 피격된 후 해제된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008202, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1008202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1008203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008206, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1008205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1008206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1008103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008209, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "효과 저항" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1008210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 45, + "DefenceAdd": 2.2500000002328306, + "HPBase": 163.20000000018626, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 63, + "DefenceAdd": 2.2500000002328306, + "HPBase": 228.48000000044703, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 81, + "DefenceAdd": 2.2500000002328306, + "HPBase": 293.7600000007078, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 99, + "DefenceAdd": 2.2500000002328306, + "HPBase": 359.04000000003725, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 117, + "DefenceAdd": 2.2500000002328306, + "HPBase": 424.320000000298, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 135, + "DefenceAdd": 2.2500000002328306, + "HPBase": 489.6000000005588, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 153, + "DefenceAdd": 2.2500000002328306, + "HPBase": 554.8800000008196, + "HPAdd": 8.160000000149012, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1008, + "Set4IDList": [ + 109, + 122, + 117 + ], + "Set2IDList": [ + 309, + 301, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1009": { + "Name": "아스타", + "Desc": "우주정거장 「헤르타」의 책임자, 명문가 출신의 아가씨\\n호기심 넘치는 천문학 연구자로 자기주장이 강한 연구원을 다루는데 능하다", + "CharaInfo": { + "Camp": "우주정거장 「헤르타」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "asta", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 100901, + "Name": "별의 가사 없는 노래", + "Desc": "전투 스킬 발동 시 임의의 단일 적에게 추가로 1회 피해를 가한다", + "ParamList": [] + }, + "2": { + "Id": 100902, + "Name": "차고 기운 달의 뜻", + "Desc": "필살기 발동 시 다음 턴에서 아스타의 에너지 충전 스택이 감소하지 않는다", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 100903, + "Name": "황도 운석의 변화", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 100904, + "Name": "오로라가 나타날 때", + "Desc": "특성 에너지 충전 스택이 #1[i] 이상일 경우 아스타의 에너지 회복효율이 #2[i]% 증가한다", + "ParamList": [ + 2, + 0.1500000001396984 + ] + }, + "5": { + "Id": 100905, + "Name": "천체의 수수께끼", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 100906, + "Name": "은하 아래에서의 단잠", + "Desc": "특성의 턴마다 감소하는 에너지 충전 스택 수가 #1[i] 감소한다", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "100901": { + "Id": 100901, + "Name": "스펙트럼 빔", + "Desc": "지정된 단일 적에게 아스타 공격력 #1[i]%만큼의 화염 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "100902": { + "Id": 100902, + "Name": "메테오 스톰", + "Desc": "지정된 단일 적에게 아스타 공격력 #1[i]%만큼의 화염 속성 피해를 주며, 추가로 피해를 4회 가한다. 피해를 가할 때마다 임의의 단일 적에게 아스타 공격력 #1[i]%만큼의 화염 속성 피해를 준다", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + }, + "100903": { + "Id": 100903, + "Name": "별하늘의 축언", + "Desc": "모든 아군의 속도가 #1[i]pt 증가한다. 지속 시간: #2[i]턴", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 36, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 37.40000000037253, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 38.80000000074506, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 40.200000000186265, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 41.60000000055879, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 43, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 44.75000000069849, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 46.50000000046566, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 48.25000000023283, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 50, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 51.40000000037253, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 52.80000000074506, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 54.200000000186265, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 55.60000000055879, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 57, + 2 + ] + } + } + }, + "100904": { + "Id": 100904, + "Name": "천체학", + "Desc": "다른 적을 명중할 때마다 에너지 충전을 1스택 획득하며 피격된 적의 약점이 화염 속성일 경우 추가로 에너지 충전 1스택을 획득한다.\\n아스타가 에너지 충전을 1스택 보유할 때마다 모든 아군의 공격력이 #1[f1]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택\\n자신의 2번째 턴부터 새로운 턴이 시작될 때마다 충전 스택이 #3[i]스택 감소한다", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07000000006519258, + 5, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07699999958276749, + 5, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 5, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09100000001490116, + 5, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.09799999953247607, + 5, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1049999997485429, + 5, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.11375000071711838, + 5, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.12250000028871, + 5, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13125000055879354, + 5, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.14000000013038516, + 5, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.14699999964796007, + 5, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1539999998640269, + 5, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.16100000008009374, + 5, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.16799999959766865, + 5, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.17499999981373549, + 5, + 3 + ] + } + } + }, + "100906": { + "Id": 100906, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "100907": { + "Id": 100907, + "Name": "미라클 플래쉬", + "Desc": "적을 바로 공격하며, 전투 진입 후 모든 적에게 아스타 공격력 #1[i]%만큼의 화염 속성 피해를 가한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Normal.png", + "LevelUpSkillID": [ + 100901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1009001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_BP.png", + "LevelUpSkillID": [ + 100902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Ultra.png", + "LevelUpSkillID": [ + 100903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_Passive.png", + "LevelUpSkillID": [ + 100904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1009004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1009_Maze.png", + "LevelUpSkillID": [ + 100907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 3, + 0.5000000004656613 + ], + "PointID": 1009101, + "PointName": "불꽃", + "PointDesc": "일반 공격 발동 시 #1[i]%기본 확률로 적을 연소 상태에 빠트린다. 지속 시간: #2[i]턴\\n연소 상태의 적은 턴이 시작될 때마다 아스타 일반 공격의 #3[i]%만큼 화염 속성 지속 피해를 받는다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.18000000016763806 + ], + "PointID": 1009102, + "PointName": "연소", + "PointDesc": "아스타가 필드에 있으면 모든 아군이 가하는 화염 속성 피해가 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1009_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.060000000055879354 + ], + "PointID": 1009103, + "PointName": "별자리", + "PointDesc": "아스타가 에너지 충전 1스택을 보유할 때마다 자신의 방어력이 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009201, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009202, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1009101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009203, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1009202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009204, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1009201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009205, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1009102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009206, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1009205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009207, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1009201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009208, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1009103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009209, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1009208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1009210, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1009208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "화염 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 69.6000000005588, + "AttackAdd": 3.480000000447035, + "DefenceBase": 63, + "DefenceAdd": 3.1500000001396984, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 97.44000000040978, + "AttackAdd": 3.480000000447035, + "DefenceBase": 88.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 125.28000000026077, + "AttackAdd": 3.480000000447035, + "DefenceBase": 113.40000000037253, + "DefenceAdd": 3.1500000001396984, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 153.12000000011176, + "AttackAdd": 3.480000000447035, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 3.1500000001396984, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 180.96000000089407, + "AttackAdd": 3.480000000447035, + "DefenceBase": 163.80000000074506, + "DefenceAdd": 3.1500000001396984, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 208.80000000074506, + "AttackAdd": 3.480000000447035, + "DefenceBase": 189, + "DefenceAdd": 3.1500000001396984, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 236.64000000059605, + "AttackAdd": 3.480000000447035, + "DefenceBase": 214.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1009, + "Set4IDList": [ + 114, + 111, + 106 + ], + "Set2IDList": [ + 302, + 310, + 308 + ], + "PropertyList3": [ + "HPAddedRatio", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 321, + 278 + ] + } + }, + "1013": { + "Name": "헤르타", + "Desc": "「지니어스 클럽」 #83 회원, 우주정거장의 진짜 주인.\\n지혜롭지만 공감 능력이 전혀 없는 과학자다", + "CharaInfo": { + "Camp": "우주정거장 「헤르타」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "herta", + "SPNeed": 110, + "BaseType": "Mage", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 101301, + "Name": "엎친 데 덮친 격", + "Desc": "일반 공격 발동 시 지정된 단일 적의 HP 백분율이 #1[i]% 이하일 경우 추가로 헤르타 공격력의 #2[i]%만큼 얼음 속성 추가 피해를 가한다", + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "2": { + "Id": 101302, + "Name": "승리를 위한 추격", + "Desc": "특성을 1회 발동할 때마다 자신의 치명타 확률이 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택", + "ParamList": [ + 0.030000000027939677, + 5 + ] + }, + "3": { + "Id": 101303, + "Name": "나 이런 여자야", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 101304, + "Name": "때리려면 뺨을", + "Desc": "특성이 발동될 시 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.10000000009313226 + ] + }, + "5": { + "Id": 101305, + "Name": "폭언멸구", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 101306, + "Name": "누구도 날 저버리지 못해", + "Desc": "필살기 발동 후 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.25000000023283064, + 1 + ] + } + }, + "Skills": { + "101301": { + "Id": 101301, + "Name": "보긴 뭘 봐", + "Desc": "지정된 단일 적에게 헤르타 공격력 #1[i]%만큼의 얼음 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "101302": { + "Id": 101302, + "Name": "일회성 거래", + "Desc": "모든 적에게 헤르타 공격력 #1[i]%만큼의 얼음 속성 피해를 준다. 해당 적의 현재 HP 백분율이 #2[i]% 이상이면 해당 적에게 가하는 피해가 #3[i]% 증가한다", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 0.5000000004656613, + 0.20000000018626451 + ] + } + } + }, + "101303": { + "Id": 101303, + "Name": "마법이야, 내가 마법을 추가했어", + "Desc": "모든 적에게 헤르타 공격력 #1[i]%만큼의 얼음 속성 피해를 가한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529 + ] + } + } + }, + "101304": { + "Id": 101304, + "Name": "그냥 내가 할게", + "Desc": "임의의 아군 공격으로 적의 현재 HP 백분율이 #1[i]% 이하일 시, 헤르타는 추가 공격을 발동하여 모든 적에게 헤르타 공격력 #2[i]%만큼의 얼음 속성 피해를 준다", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 0.2649999998975545 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 0.2949999999254942 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 0.31000000028871 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 0.32499999995343387 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 0.3437500009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 0.3625000005122274 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 0.3812500007916242 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 0.4150000000372529 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 0.4300000004004687 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 0.4450000000651926 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 0.4600000004284084 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.47500000009313226 + ] + } + } + }, + "101306": { + "Id": 101306, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101307": { + "Id": 101307, + "Name": "최적화가 필요해", + "Desc": "비술 발동 후 다음 전투 시작 시 헤르타의 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Normal.png", + "LevelUpSkillID": [ + 101301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1013001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_BP.png", + "LevelUpSkillID": [ + 101302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Ultra.png", + "LevelUpSkillID": [ + 101303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_Passive.png", + "LevelUpSkillID": [ + 101304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1013004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1013_Maze.png", + "LevelUpSkillID": [ + 101307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1013101, + "PointName": "효율", + "PointDesc": "전투 스킬 발동 시 적에게 가하는 피해 증가 효과가 추가로 #1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1013102, + "PointName": "인형", + "PointDesc": "제어류 디버프 상태 저항 확률이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1013_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1013103, + "PointName": "빙결", + "PointDesc": "필살기 발동 시 빙결 상태의 적에게 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013201, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013202, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1013101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013203, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1013202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013204, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1013202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013205, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1013102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013206, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1013205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013207, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1013205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013208, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1013103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013209, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1013103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1013210, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "얼음 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 129.6000000005588, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 181.44000000040978, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 233.28000000026077, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 285.12000000011176, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 336.96000000089407, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 388.80000000074506, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 440.64000000059605, + "HPAdd": 6.480000000447035, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1013, + "Set4IDList": [ + 104, + 102, + 122 + ], + "Set2IDList": [ + 313, + 306, + 315 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "IceAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 338, + 284 + ], + "LocalCriticalChance": 0.1500000001396984 + } + }, + "1014": { + "Name": "세이버", + "Desc": "고독한 영령이 운명의 긴 밤을 걸어가고, 원탁의 깃발은 여전히 꿈속에 펼쳐져 있다. 카멜롯의 기사왕은 이 순간 아직 이상향에 도달하지 못했다.\\n여전히 소녀인 그녀는 소환에 응해 이 특별한 「성배전쟁」에 참전한다. 다시 한번 바위에 꽂힌 검의 선택을 마주할 때 그녀는 어떻게 과거의 환상을 돌파할 것인가?\\n——「제가 이루지 못한 소원도 지금 여기서 끊어내겠습니다」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "saber", + "SPNeed": 360, + "BaseType": "Warrior", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 101401, + "Name": "잃어버린 백악의 성", + "Desc": "세이버가 가하는 필살기 피해가 #1[i]% 증가한다. 세이버가 일반 공격 또는 전투 스킬 발동 후 추가로 [노심 공명]을 #2[i]pt 획득한다", + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Id": 101402, + "Name": "먼지 덮인 원탁의 맹세", + "Desc": "[해방의 금빛 왕권]과 [풍왕철퇴]가 가하는 치명타 피해가 #1[i]% 증가한다. [노심 공명]을 1pt 획득할 때마다 가하는 치명타 피해가 추가로 #2[i]% 증가한다, 최대 중첩수: #3[i]회", + "ParamList": [ + 0.5000000004656613, + 0.05000000004656613, + 10 + ] + }, + "3": { + "Id": 101403, + "Name": "다섯 세기에 걸친 추적", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 101404, + "Name": "열네 번의 겨울 끝의 기우", + "Desc": "세이버의 바람 속성 저항 관통#1[i]% 증가한다. 필살기 발동 후 세이버의 바람 속성 저항 관통#2[i]% 증가한다, 최대 중첩수: #3[i]회", + "ParamList": [ + 0.0400000000372529, + 0.0400000000372529, + 4 + ] + }, + "5": { + "Id": 101405, + "Name": "이상에 도달한 여명 아래", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 101406, + "Name": "운명을 수호하는 긴 밤", + "Desc": "세이버가 가하는 필살기 피해의 바람 속성 저항 관통#1[i]% 증가한다. 전투 진입 후 처음으로 필살기를 발동하면 세이버의 에너지가 고정으로 #3[i]pt 회복하며, 해당 효과는 필살기를 #2[i]회 더 발동할 때마다 1회 발동할 수 있다", + "ParamList": [ + 0.20000000018626451, + 4, + 300 + ] + } + }, + "Skills": { + "101401": { + "Id": 101401, + "Name": "{RUBY_B#인비저블 에어}풍왕결계{RUBY_E#}", + "Desc": "지정된 단일 적에게 세이버 공격력의 #1[i]%만큼 바람 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "101402": { + "Id": 101402, + "Name": "{RUBY_B#스트라이크 에어}풍왕철퇴{RUBY_E#}", + "Desc": "지정된 단일 적에게 세이버 공격력의 #1[i]%만큼 바람 속성 피해를 가하고, 인전한 목표에게 세이버 공격력의 #2[i]%만큼 바람 속성 피해를 가한다. 현재 [노심 공명]을 보유하고 있으며, 이번 전투 스킬 발동 후 [노심 공명]을 소모해 세이버의 에너지가 가득 찰 경우, 이번 전투 스킬의 피해 배율이 [노심 공명] 1pt마다 #4[i]% 증가하며, 발동 후 모든 [노심 공명]을 소모해 세이버의 에너지를 회복시키고, 그렇지 않을 경우 즉시 [노심 공명]을 #3[i]pt 획득한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.375, + 2, + 0.07000000006519258 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.41250000055879354, + 2, + 0.07699999958276749 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 2, + 0.08399999979883432 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 2, + 0.09100000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 2, + 0.09799999953247607 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 2, + 0.1049999997485429 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.6093750006984919, + 2, + 0.11375000071711838 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.6562500006984919, + 2, + 0.12250000028871 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.7031250006984919, + 2, + 0.13125000055879354 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 2, + 0.14000000013038516 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.7875000005587935, + 2, + 0.14699999964796007 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.8250000004190952, + 2, + 0.1539999998640269 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.8625000009778887, + 2, + 0.16100000008009374 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.9000000008381903, + 2, + 0.16799999959766865 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 2, + 0.17499999981373549 + ] + } + } + }, + "101403": { + "Id": 101403, + "Name": "{RUBY_B#엑스칼리버}약속된 승리의 검{RUBY_E#}", + "Desc": "모든 적에게 세이버 공격력의 #1[i]%만큼 바람 속성 피해를 가하고, 랜덤 단일 적에게 세이버 공격력의 #2[i]%만큼 바람 속성 피해를 #3[i]회 가한다. 필살기 발동 후 다음 일반 공격은 [해방된 황금빛 왕권]으로 대체되며, [해방된 황금빛 왕권]만 발동할 수 있다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 120, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 0.5500000005122274, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 0.6050000002142042, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 0.6600000006146729, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 0.7150000003166497, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 0.7700000007171184, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 0.8250000004190952, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 0.89375000144355, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 0.962500001071021, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1.0312500004656613, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.1000000000931323, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1.154999999795109, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1.2100000001955777, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1.2649999998975545, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 1.3200000002980232, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 1.375, + 10 + ] + } + } + }, + "101404": { + "Id": 101404, + "Name": "용의 노심", + "Desc": "전투 진입 시 [노심 공명]을 #8[i]pt 획득한다. 임의의 아군이 필살기를 발동하면 세이버가 가하는 피해가 #4[i]턴 동안 #3[i]% 증가하고, [노심 공명]을 #1[i]pt 획득한다. [노심 공명]을 1pt 소모할 때마다 세이버의 에너지를 고정으로 #5[i]pt 회복시킨다", + "Type": null, + "Tag": "Enhance", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 25, + 0.20000000018626451, + 2, + 10, + 0.05000000004656613, + 99, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 25, + 0.22000000020489097, + 2, + 10, + 0.054999999701976776, + 99, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 25, + 0.24000000022351742, + 2, + 10, + 0.060000000055879354, + 99, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 25, + 0.26000000024214387, + 2, + 10, + 0.06499999971129, + 99, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 25, + 0.2800000002607703, + 2, + 10, + 0.07000000006519258, + 99, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 25, + 0.3000000002793968, + 2, + 10, + 0.07499999972060323, + 99, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 25, + 0.32499999995343387, + 2, + 10, + 0.08125000051222742, + 99, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 25, + 0.3500000003259629, + 2, + 10, + 0.08749999990686774, + 99, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 25, + 0.375, + 2, + 10, + 0.09375000069849193, + 99, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 25, + 0.40000000037252903, + 2, + 10, + 0.10000000009313226, + 99, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 25, + 0.4200000003911555, + 2, + 10, + 0.1049999997485429, + 99, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 25, + 0.44000000040978193, + 2, + 10, + 0.11000000010244548, + 99, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 25, + 0.4600000004284084, + 2, + 10, + 0.11499999975785613, + 99, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 25, + 0.48000000044703484, + 2, + 10, + 0.12000000011175871, + 99, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 25, + 0.5000000004656613, + 2, + 10, + 0.12499999976716936, + 99, + 1 + ] + } + } + }, + "101406": { + "Id": 101406, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101407": { + "Id": 101407, + "Name": "기사왕의 등장", + "Desc": "비술 사용 후 다음 전투 시작 시 세이버의 공격력이 #1[i]% 증가한다, 지속 시간: #2[i]턴. 또한 [노심 공명]을 #3[i]pt 획득한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 2, + 2 + ] + } + } + }, + "101408": { + "Id": 101408, + "Name": "해방된 황금빛 왕권", + "Desc": "[노심 공명]을 #2[i]pt 획득하고, 모든 적에게 세이버 공격력의 #1[i]%만큼 바람 속성 피해를 가한다. 발동 시 적이 2/1기 이하일 경우 추가로 모든 적에게 세이버 공격력의 #3[i]%/#4[i]%만큼 바람 속성 피해를 가한다", + "Type": "Normal", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 2, + 0.7500000006984919, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9000000008381903, + 2, + 0.9000000008381903, + 0.4200000003911555 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0500000000465661, + 2, + 1.0500000000465661, + 0.49000000045634806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2000000001862645, + 2, + 1.2000000001862645, + 0.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.350000000325963, + 2, + 1.350000000325963, + 0.6300000005867332 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 2, + 1.5000000004656613, + 0.7000000006519258 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6500000006053597, + 2, + 1.6500000006053597, + 0.7700000007171184 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 2, + 1.800000000745058, + 0.840000000782311 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9500000008847564, + 2, + 1.9500000008847564, + 0.9100000008475035 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 2, + 2.1000000000931323, + 0.9800000009126961 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Normal.png", + "LevelUpSkillID": [ + 101401, + 101408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1014001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_BP.png", + "LevelUpSkillID": [ + 101402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Ultra.png", + "LevelUpSkillID": [ + 101403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_Passive.png", + "LevelUpSkillID": [ + 101404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1014004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1014_Maze.png", + "LevelUpSkillID": [ + 101407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903, + 0.20000000018626451 + ], + "PointID": 1014101, + "PointName": "용의 기사", + "PointDesc": "세이버의 치명타 확률이 #1[i]% 증가한다. 전투 진입 및 강화된 일반 공격 발동 시 [마력 방출]을 획득한다. 세이버가 [마력 방출]과 [노심 공명]을 동시에 보유하고 현재 전투 스킬 발동 후 세이버의 에너지가 가득 찰 시, [마력 방출]을 소모해 아군의 전투 스킬 포인트를 1pt 회복하고 세이버가 즉시 행동하게 한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 120, + 0.40000000037252903, + 0.40000000037252903 + ], + "PointID": 1014102, + "PointName": "호수의 축복", + "PointDesc": "세이버가 초과 에너지를 최대 #1[i]pt 축적할 수 있으며, 필살기 발동 후 초기화하고 상응하는 에너지 수치를 회복한다. 전투 시작 시 에너지가 #3[i]% 미만이면 #2[i]%까지 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1014_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ], + "PointID": 1014103, + "PointName": "별의 왕관", + "PointDesc": "전투 스킬 발동 시 세이버의 치명타 피해가 #1[i]% 증가한다, 지속 시간: #2[i]턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014201, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1014101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014203, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1014202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1014203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014205, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1014102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1014205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1014206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1014103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1014208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1014210, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1014208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "바람 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1014, + "Set4IDList": [ + 126, + 122, + 102 + ], + "Set2IDList": [ + 306, + 301, + 309 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 336, + 281 + ] + } + }, + "1015": { + "Name": "아처", + "Desc": null, + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "archer", + "SPNeed": 240, + "BaseType": "Rogue", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 101501, + "Name": "닿지 못한 이상", + "Desc": "단일 턴 내에 전투 스킬을 #1[i]회 발동하면 이번 턴에서 다음 전투 스킬 발동 시 전투 스킬 포인트를 소모하지 않는다", + "ParamList": [ + 3 + ] + }, + "2": { + "Id": 101502, + "Name": "이루지 못한 행복", + "Desc": "필살기로 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 1.2000000001862645 + ] + }, + "3": { + "Id": 101503, + "Name": "평범함을 거부하는 기개", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 101504, + "Name": "영웅이라 할 수 없는 삶", + "Desc": "필살기 발동 목표가 양자 속성 약점이 없을 경우, 필살기 공격 시 대상에게 양자 속성 약점을 부여하고, 해당 목표의 양자 속성 저항이 #1[i]% 감소한다, 지속 시간: #2[i]턴", + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "5": { + "Id": 101505, + "Name": "고독한 무명의 수호", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 101506, + "Name": "끝없는 배회의 순례", + "Desc": "턴 시작 시 아군의 전투 스킬 포인트를 즉시 1pt 회복한다. 자신의 전투 스킬이 제공하는 피해 증가 효과의 중첩 가능 스택이 #1[i]스택 증가한다. 가하는 전투 스킬 피해가 방어력을 #2[i]% 무시한다", + "ParamList": [ + 1, + 0.20000000018626451 + ] + } + }, + "Skills": { + "101501": { + "Id": 101501, + "Name": "간장•막야", + "Desc": "지정된 단일 적에게 아처 공격력의 #1[i]%만큼 양자 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + } + } + }, + "101502": { + "Id": 101502, + "Name": "{RUBY_B#칼라드볼그 II}거짓•나선검{RUBY_E#}", + "Desc": "[회로 연결] 상태에 진입한다. 지정된 단일 적에게 아처 공격력의 #1[i]%만큼 양자 속성 피해를 가한다. [회로 연결] 상태에서 전투 스킬 발동 후 이번 턴이 종료되지 않으며, 아처의 전투 스킬이 가하는 피해가 #2[i]% 증가한다, 해당 효과는 #3[i]스택 중첩될 수 있으며, [회로 연결] 상태가 종료될 때까지 지속된다. 전투 스킬을 #5[i]회 직접 발동하거나 전투 스킬 포인트가 부족해 전투 스킬을 다시 발동할 수 없을 경우 [회로 연결] 상태가 종료되며 턴이 종료된다. 각 웨이브의 모든 적이 처치되면 [회로 연결] 상태가 종료된다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 2, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.6000000005587935, + 2, + 1, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.2000000001862645, + 0.6400000005960464, + 2, + 1, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.400000000372529, + 0.6800000006332994, + 2, + 1, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.6000000005587935, + 0.7200000006705523, + 2, + 1, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.800000000745058, + 0.7600000007078052, + 2, + 1, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.8000000007450581, + 2, + 1, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.2500000002328306, + 0.8500000007916242, + 2, + 1, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.5000000004656613, + 0.9000000008381903, + 2, + 1, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.750000000698492, + 0.9500000008847564, + 2, + 1, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 1, + 2, + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.2000000001862645, + 1.040000000037253, + 2, + 1, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.400000000372529, + 1.0800000000745058, + 2, + 1, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.6000000005587935, + 1.1200000001117587, + 2, + 1, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.800000000745058, + 1.1600000001490116, + 2, + 1, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5, + 1.2000000001862645, + 2, + 1, + 5 + ] + } + } + }, + "101503": { + "Id": 101503, + "Name": "{RUBY_B#언리미티드 블레이드 워크스}무한의 검제{RUBY_E#}", + "Desc": "지정된 단일 적에게 아처 공격력의 #1[i]%만큼 양자 속성 피해를 가하고 충전을 #2[i]pt 획득하며, 충전은 최대 #3[i]pt 보유할 수 있다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7.2000000001862645, + 2, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7.680000000633299, + 2, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 8.160000000149012, + 2, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 8.640000000596046, + 2, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 9.120000000111759, + 2, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 9.600000000558794, + 2, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 10.200000000186265, + 2, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 10.800000000745058, + 2, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 11.400000000372529, + 2, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 12, + 2, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 12.480000000447035, + 2, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 12.96000000089407, + 2, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 13.440000000409782, + 2, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 13.920000000856817, + 2, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 14.400000000372529, + 2, + 4 + ] + } + } + }, + "101504": { + "Id": 101504, + "Name": "심안(진)", + "Desc": "아처의 동료가 적에게 공격을 발동하면 아처는 충전을 1pt 소모해 즉시 주목표에게 추가 공격을 발동하여 아처 공격력의 #1[i]%만큼 양자 속성 피해를 가하고, 전투 스킬 포인트를 1pt 회복한다", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3 + ] + } + } + }, + "101506": { + "Id": 101506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "101507": { + "Id": 101507, + "Name": "천리안", + "Desc": "즉시 적을 공격한다. 전투 진입 후 모든 적에게 아처 공격력의 #1[i]%만큼 양자 속성 피해를 가하며, 충전을 #2[i]pt 획득한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "101509": { + "Id": 101509, + "Name": "종료", + "Desc": "[회로 연결] 상태를 종료하고 턴을 종료한다", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Normal.png", + "LevelUpSkillID": [ + 101501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1015001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_BP.png", + "LevelUpSkillID": [ + 101502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Ultra.png", + "LevelUpSkillID": [ + 101503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_Passive.png", + "LevelUpSkillID": [ + 101504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1015004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1015_Maze.png", + "LevelUpSkillID": [ + 101507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1015101, + "PointName": "투영 마술", + "PointDesc": "아처가 필드에 있을 시 전투 스킬 포인트 최대치가 추가로 #1[i]pt 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1015102, + "PointName": "정의의 사자", + "PointDesc": "아처가 전투 진입 시 충전을 #1[i]pt 획득한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1015_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 1, + 4 + ], + "PointID": 1015103, + "PointName": "수호자", + "PointDesc": "아군이 전투 스킬 포인트 획득 후 전투 스킬 포인트가 #3[i]pt 이상일 경우 아처의 치명타 피해가 #1[i]% 증가한다, 지속 시간: #2[i]턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015201, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1015101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015203, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1015202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015204, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015205, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1015102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1015205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015207, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015208, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1015103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1015208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1015210, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1015208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "양자 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1015, + "Set4IDList": [ + 108, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 336, + 281 + ] + } + }, + "1101": { + "Name": "브로냐", + "Desc": "벨로보그 「수호자」의 계승자.\\n공주의 고고함과 군인의 꿋꿋함이 공존한다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "bronya", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 110101, + "Name": "정신 무장, 전투력 비축", + "Desc": "전투 스킬 발동 시 #1[i]%고정 확률로 전투 스킬 포인트를 1pt 회복한다. 해당 효과의 재발동 대기시간은 1턴이다", + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Id": 110102, + "Name": "빠른 행군", + "Desc": "전투 스킬 발동 시 지정된 아군은 행동 후 속도가 #1[i]% 증가한다. 지속 시간: 1턴", + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Id": 110103, + "Name": "포격 개시", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 110104, + "Name": "허점 공격", + "Desc": "다른 아군 캐릭터가 바람 속성 약점을 보유한 적에게 일반 공격을 발동하면, 브로냐는 즉시 추가 공격을 1회 발동하여 해당 목표에게 일반 공격 피해의 #1[i]%만큼 바람 속성 피해를 가한다. 해당 효과는 턴마다 1회 발동할 수 있다", + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Id": 110105, + "Name": "승승장구", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 110106, + "Name": "드높은 기세", + "Desc": "전투 스킬이 지정한 아군이 가하는 피해 증가 효과 지속 시간이 #1[i]턴 증가한다", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "110101": { + "Id": 110101, + "Name": "바람의 탄환", + "Desc": "지정된 단일 적에게 브로냐 공격력 #1[i]%만큼의 바람 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110102": { + "Id": 110102, + "Name": "작전 재배치", + "Desc": "지정된 단일 아군의 디버프 효과를 1개 해제하며, 해당 목표는 즉시 행동하고, 가하는 피해가 #1[i]% 증가한다. 지속 시간: #3[i]턴\\n자신에게 해당 스킬을 발동하면 즉시 행동 효과는 발동되지 않는다", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.33000000030733645, + 0, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3630000001285225, + 0, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3959999999497086, + 0, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.42899999977089465, + 0, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.46200000029057264, + 0, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.4950000001117587, + 0, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5362500005867332, + 0, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5775000003632158, + 0, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6187500008381903, + 0, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6600000006146729, + 0, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.693000000435859, + 0, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.726000000257045, + 0, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.7590000000782311, + 0, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7920000005979091, + 0, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8250000004190952, + 0, + 1, + 1 + ] + } + } + }, + "110103": { + "Id": 110103, + "Name": "벨로보그 행진곡", + "Desc": "모든 아군의 공격력이 #1[i]% 증가하고, 동시에 브로냐 치명타 피해 #2[f1]%+#3[f1]%만큼의 치명타 피해가 증가한다. 지속 시간: #4[i]턴", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.33000000030733645, + 0.12000000011175871, + 0.12000000011175871, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.35200000018812716, + 0.12399999983608723, + 0.12799999956041574, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.37400000006891787, + 0.12799999956041574, + 0.1359999997075647, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3959999999497086, + 0.1319999999832362, + 0.14399999985471368, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4179999998304993, + 0.1359999997075647, + 0.15200000000186265, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.44000000040978193, + 0.14000000013038516, + 0.1600000001490116, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4675000002607703, + 0.1449999997857958, + 0.17000000015832484, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.4950000001117587, + 0.1500000001396984, + 0.18000000016763806, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.522500000661239, + 0.15499999979510903, + 0.1900000001769513, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5500000005122274, + 0.1600000001490116, + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5720000003930181, + 0.16399999987334013, + 0.20799999963492155, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5940000002738088, + 0.16799999959766865, + 0.21599999978207052, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6160000001545995, + 0.1720000000204891, + 0.22399999992921948, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6380000000353903, + 0.17599999974481761, + 0.23200000007636845, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6600000006146729, + 0.18000000016763806, + 0.24000000022351742, + 2 + ] + } + } + }, + "110104": { + "Id": 110104, + "Name": "앞선 한 발", + "Desc": "일반 공격 발동 후 브로냐의 다음번 행동 게이지#1[i]% 증가한다", + "Type": null, + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375 + ] + } + } + }, + "110106": { + "Id": 110106, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110107": { + "Id": 110107, + "Name": "깃발 아래", + "Desc": "비술 발동 후 다음 전투 시작 시 모든 아군의 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Normal.png", + "LevelUpSkillID": [ + 110101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1101001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_BP.png", + "LevelUpSkillID": [ + 110102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Ultra.png", + "LevelUpSkillID": [ + 110103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_Passive.png", + "LevelUpSkillID": [ + 110104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1101004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1101_Maze.png", + "LevelUpSkillID": [ + 110107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101101, + "PointName": "호령", + "PointDesc": "일반 공격의 치명타 확률이 100%까지 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2, + 0.20000000018626451 + ], + "PointID": 1101102, + "PointName": "진영", + "PointDesc": "전투 시작 시 모든 아군의 방어력이 #2[i]% 증가한다. 지속 시간: #1[i]턴", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1101_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1101103, + "PointName": "군세", + "PointDesc": "브로냐가 필드에 있으면 모든 아군이 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101201, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101202, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1101101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101203, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1101202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1101201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101205, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1101102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101206, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1101205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101207, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1101201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1101103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101209, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1101208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1101210, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1101208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "바람 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 72.6000000005588, + "DefenceAdd": 3.630000000586733, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 101.64000000059605, + "DefenceAdd": 3.630000000586733, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 3.630000000586733, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 159.72000000067055, + "DefenceAdd": 3.630000000586733, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 3.630000000586733, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 3.630000000586733, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 246.8400000007823, + "DefenceAdd": 3.630000000586733, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1101, + "Set4IDList": [ + 114, + 110, + 121 + ], + "Set2IDList": [ + 317, + 310, + 302 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 188 + ], + "LocalCriticalChance": 1 + } + }, + "1102": { + "Name": "제레", + "Desc": "지하 대항 조직 「와일드 파이어」의 핵심 인물, 별칭 「나비」\\n솔직하고 시원시원하지만, 내면에 섬세함과 예리함을 숨기고 있다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "seele", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 110201, + "Name": "몰살", + "Desc": "현재 HP 백분율이 #1[i]% 이하인 적에게 피해를 가할 시 치명타 확률이 #2[i]% 증가한다", + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ] + }, + "2": { + "Id": 110202, + "Name": "나비춤", + "Desc": "전투 스킬의 가속 효과가 최대 #1[i]스택 중첩된다", + "ParamList": [ + 2 + ] + }, + "3": { + "Id": 110203, + "Name": "요란", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 110204, + "Name": "스쳐가는 그림자", + "Desc": "제레가 적을 처치할 경우 자신의 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 15 + ] + }, + "5": { + "Id": 110205, + "Name": "예리", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 110206, + "Name": "분열", + "Desc": "필살기 발동 후 피격된 단일 적은 [혼란의 나비] 상태에 빠진다, 지속 시간: #2[i]턴. [혼란의 나비] 상태의 적은 피격 후 추가로 제레 필살기 피해의 #1[i]%만큼 양자 속성 추가 피해를 1회 받는다. 다른 아군의 공격으로 [혼란의 나비] 상태의 추가 피해가 발동되어 해당 적이 처치되면 제레의 특성이 발동하지 않는다.\\n제레가 전투 불능 상태에 빠지면 적의 [혼란의 나비] 상태는 해제된다", + "ParamList": [ + 0.1500000001396984, + 1 + ] + } + }, + "Skills": { + "110201": { + "Id": 110201, + "Name": "강습", + "Desc": "지정된 단일 적에게 제레 공격력 #1[i]%만큼의 양자 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110202": { + "Id": 110202, + "Name": "귀인(歸刃)", + "Desc": "제레의 속도가 #2[i]% 증가하고, 지정된 단일 적에게 제레 공격력 #1[i]%만큼의 양자 속성 피해를 준다. 속도 증가 효과 지속 시간: #3[i]턴", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323, + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2100000001955777, + 0.25000000023283064, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3200000002980232, + 0.25000000023283064, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4300000004004687, + 0.25000000023283064, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5400000005029142, + 0.25000000023283064, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6500000006053597, + 0.25000000023283064, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7875000005587935, + 0.25000000023283064, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9250000005122274, + 0.25000000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.0625000002328306, + 0.25000000023283064, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645, + 0.25000000023283064, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.31000000028871, + 0.25000000023283064, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4200000003911555, + 0.25000000023283064, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.530000000493601, + 0.25000000023283064, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.6400000005960464, + 0.25000000023283064, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.750000000698492, + 0.25000000023283064, + 2 + ] + } + } + }, + "110203": { + "Id": 110203, + "Name": "혼란의 나비", + "Desc": "즉시 증폭 상태에 진입하여 지정된 단일 적에게 제레 공격력 #1[i]%만큼의 양자 속성 피해를 가한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.5500000005122274 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.7200000006705523 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.890000000828877 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.0600000000558794 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.230000000214204 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.400000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.612500000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.825000000419095 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.037499999860302 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.250000000232831 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.59000000054948 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.93000000086613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.100000000093132 + ] + } + } + }, + "110204": { + "Id": 110204, + "Name": "재현", + "Desc": "일반 공격, 전투 스킬, 필살기를 발동해 적을 처치한 후 즉시 보너스 턴을 1턴 획득하고 증폭 상태에 진입한다. 증폭 상태의 제레는 공격 발동으로 가하는 피해가 #1[i]% 증가한다. 지속 시간: #2[i]턴\\n제레가 특성 [재현]으로 획득한 보너스 턴에서 적 처치 시 해당 특성은 적용되지 않는다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1 + ] + } + } + }, + "110206": { + "Id": 110206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110207": { + "Id": 110207, + "Name": "환신(幻身)", + "Desc": "비술 사용 후 #1[i]초 동안 은신 상태에 진입한다. 은신 상태에선 적에게 들키지 않으며, 선공을 가해 적과의 전투 진입 시 제레는 즉시 증폭 상태에 진입한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Normal.png", + "LevelUpSkillID": [ + 110201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1102001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_BP.png", + "LevelUpSkillID": [ + 110202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Ultra.png", + "LevelUpSkillID": [ + 110203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_Passive.png", + "LevelUpSkillID": [ + 110204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1102004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1102_Maze.png", + "LevelUpSkillID": [ + 110207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1102101, + "PointName": "야행", + "PointDesc": "현재 HP 백분율이 #1[i]% 이하인 경우, 적에게 피격될 확률이 감소한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1102102, + "PointName": "절단", + "PointDesc": "증폭 상태일 때 제레의 양자 속성 저항 관통#1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1102_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1102103, + "PointName": "파문", + "PointDesc": "일반 공격 발동 후 제레의 다음 행동 게이지가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102202, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1102101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1102202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1102102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102206, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1102205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1102103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102209, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1102208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1102210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1102208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 115, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1102, + "Set4IDList": [ + 108, + 122, + 102 + ], + "Set2IDList": [ + 311, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1103": { + "Name": "서벌", + "Desc": "축성가 기술 부서의 연구원이었던 벨로보그의 엔지니어\\n게파드•랜도의 누나지만 남동생과 전혀 다른 성격을 가졌다\\n한파 이전에 있던 「로큰롤」이라는 고대 음악에 빠져있다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "serval", + "SPNeed": 100, + "BaseType": "Mage", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 110301, + "Name": "귓가에 맴도는 소리", + "Desc": "일반 공격이 지정된 적에 인접한 임의의 적 1기에게 일반 공격 피해 #1[i]%만큼의 번개 속성 피해를 가한다", + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Id": 110302, + "Name": "앵콜!", + "Desc": "특성의 추가 피해를 1회 발동할 때마다 서벌은 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 4 + ] + }, + "3": { + "Id": 110303, + "Name": "톱니바퀴의 심장 소리를 들어봐", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 110304, + "Name": "소리 질러!", + "Desc": "필살기 발동 시 #1[i]%기본 확률로 비감전 상태의 적을 전투 스킬과 동일한 감전 상태에 빠트린다", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 110305, + "Name": "벨로보그 가수다!", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 110306, + "Name": "천공을 가르는 노래!", + "Desc": "서벌이 감전 상태의 적에게 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "110301": { + "Id": 110301, + "Name": "뇌명의 음계", + "Desc": "지정된 단일 적에게 서벌 공격력 #1[i]%만큼의 번개 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110302": { + "Id": 110302, + "Name": "전광석화의 순간", + "Desc": "지정된 단일 적에게 서벌 공격력 #1[i]%만큼의 번개 속성 피해를 가하고, 인접한 목표에게 서벌 공격력 #2[i]%만큼의 번개 속성 피해를 가한다. 또한, 피격된 적은 #3[i]%기본 확률로 감전 상태에 빠진다. 지속 시간: #4[i]턴\\n감전 상태의 적은 턴이 시작될 때마다 서벌 공격력 #5[i]%만큼의 번개 속성 지속 피해를 받는다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 0.3000000002793968, + 0.8000000007450581, + 2, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 0.33000000030733645, + 0.8000000007450581, + 2, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 0.3600000003352761, + 0.8000000007450581, + 2, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 0.3900000003632158, + 0.8000000007450581, + 2, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 0.4200000003911555, + 0.8000000007450581, + 2, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 0.45000000041909516, + 0.8000000007450581, + 2, + 0.62000000057742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 0.4875000002793968, + 0.8000000007450581, + 2, + 0.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 0.5250000001396984, + 0.8000000007450581, + 2, + 0.8000000007450581 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 0.5625000006984919, + 0.8000000007450581, + 2, + 0.9200000008568168 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.6000000005587935, + 0.8000000007450581, + 2, + 1.040000000037253 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 0.6300000005867332, + 0.8000000007450581, + 2, + 1.0919999999459833 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 0.6600000006146729, + 0.8000000007450581, + 2, + 1.1439999998547137 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 0.6900000006426126, + 0.8000000007450581, + 2, + 1.195999999763444 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 0.7200000006705523, + 0.8000000007450581, + 2, + 1.2479999996721745 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 0.7500000006984919, + 0.8000000007450581, + 2, + 1.3000000002793968 + ] + } + } + }, + "110303": { + "Id": 110303, + "Name": "매커니컬 피버 등장!", + "Desc": "모든 적에게 서벌 공격력 #1[i]%만큼의 번개 속성 피해를 가하고, 감전 상태의 적은 감전 상태 지속 시간이 #2[i]턴 증가한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 28, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0800000000745058, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1520000000018626, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2239999999292195, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.2959999998565763, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.3679999997839332, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.530000000493601, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.62000000057742, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.710000000661239, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.872000000672415, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.9440000005997717, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.015999999595806, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.087999999523163, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.1600000001490116, + 2 + ] + } + } + }, + "110304": { + "Id": 110304, + "Name": "타오르는 화음", + "Desc": "공격 발동 후 모든 감전 상태의 적에게 서벌 공격력 #1[i]%만큼의 번개 속성 추가 피해를 가한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "110306": { + "Id": 110306, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110307": { + "Id": 110307, + "Name": "굿나잇, 벨로보그", + "Desc": "적을 바로 공격하며, 전투 진입 후 랜덤 단일 적에게 서벌 공격력 #4[i]%만큼의 번개 속성 피해를 가하고, #1[i]%기본 확률로 각 단일 적을 감전 상태에 빠트린다. 지속 시간: #3[i]턴\\n감전 상태의 적은 새로운 턴이 시작될 때마다 서벌 공격력 #2[i]%만큼의 번개 속성 지속 피해를 받는다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 3, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Normal.png", + "LevelUpSkillID": [ + 110301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1103001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_BP.png", + "LevelUpSkillID": [ + 110302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Ultra.png", + "LevelUpSkillID": [ + 110303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_Passive.png", + "LevelUpSkillID": [ + 110304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1103004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1103_Maze.png", + "LevelUpSkillID": [ + 110307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1103101, + "PointName": "로큰롤", + "PointDesc": "전투 스킬 발동 시 피격된 적이 감전 상태에 빠질 기본 확률#1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1103102, + "PointName": "전자음", + "PointDesc": "전투 시작 시 즉시 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1103_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 2 + ], + "PointID": 1103103, + "PointName": "열광", + "PointDesc": "적 처치 후 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103201, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103202, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1103101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103203, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1103202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1103202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103205, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1103102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103206, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1103205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103207, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1103205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1103103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103209, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1103103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "효과 명중" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1103210, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 88.80000000074506, + "AttackAdd": 4.440000000409782, + "DefenceBase": 51, + "DefenceAdd": 2.5500000005122274, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 124.32000000029802, + "AttackAdd": 4.440000000409782, + "DefenceBase": 71.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 159.8400000007823, + "AttackAdd": 4.440000000409782, + "DefenceBase": 91.80000000074506, + "DefenceAdd": 2.5500000005122274, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 195.36000000033528, + "AttackAdd": 4.440000000409782, + "DefenceBase": 112.20000000018626, + "DefenceAdd": 2.5500000005122274, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 230.88000000081956, + "AttackAdd": 4.440000000409782, + "DefenceBase": 132.6000000005588, + "DefenceAdd": 2.5500000005122274, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 266.40000000037253, + "AttackAdd": 4.440000000409782, + "DefenceBase": 153, + "DefenceAdd": 2.5500000005122274, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 301.9200000008568, + "AttackAdd": 4.440000000409782, + "DefenceBase": 173.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1103, + "Set4IDList": [ + 109, + 117, + 122 + ], + "Set2IDList": [ + 301, + 306, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 351, + 296 + ] + } + }, + "1104": { + "Name": "게파드", + "Desc": "실버메인 철위대의 방위관, 벨로보그 최고의 전사 중 하나\\n겉과 속이 같고 빈틈없이 항상 성실하다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "gepard", + "SPNeed": 100, + "BaseType": "Knight", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 110401, + "Name": "근면 성실", + "Desc": "전투 스킬 발동 시 피격된 적이 빙결 상태에 빠질 기본 확률#1[i]% 증가한다", + "ParamList": [ + 0.3500000003259629 + ] + }, + "2": { + "Id": 110402, + "Name": "남은 추위", + "Desc": "전투 스킬로 적에게 부여한 빙결 상태가 해제된 후 목표의 속도가 #1[i]% 감소한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 110403, + "Name": "난공불락", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 110404, + "Name": "지성이면 감천", + "Desc": "게파드가 필드에 있으면 모든 아군의 효과 저항이 #1[i]% 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 110405, + "Name": "강철 같은 주먹", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 110406, + "Name": "불굴의 결의", + "Desc": "특성 발동 시 게파드가 즉시 행동하고, 현재 HP의 회복량이 자신 HP 최대치의 #1[i]%만큼 추가로 증가한다", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "110401": { + "Id": 110401, + "Name": "의지의 주먹", + "Desc": "지정된 단일 적에게 게파드 공격력 #1[i]%만큼의 얼음 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110402": { + "Id": 110402, + "Name": "위협의 일격", + "Desc": "지정된 단일 적에게 게파드 공격력 #1[i]%만큼의 얼음 속성 피해를 가하며 피격된 적은 #2[i]%기본 확률로 빙결 상태에 빠진다. 지속 시간: #3[i]턴\\n빙결 상태의 적은 행동할 수 없으며 턴이 시작될 때마다 게파드 공격력 #4[i]%만큼의 얼음 속성 추가 피해를 받는다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.6500000006053597, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.6500000006053597, + 1, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6500000006053597, + 1, + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 1, + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.6500000006053597, + 1, + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6500000006053597, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597, + 1, + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.6500000006053597, + 1, + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.6500000006053597, + 1, + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.6500000006053597, + 1, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.6500000006053597, + 1, + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.6500000006053597, + 1, + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.6500000006053597, + 1, + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.6500000006053597, + 1, + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 0.6500000006053597, + 1, + 0.7500000006984919 + ] + } + } + }, + "110403": { + "Id": 110403, + "Name": "영원의 벽", + "Desc": "모든 아군에게 게파드 방어력 #1[i]%+#3[i]만큼의 피해를 상쇄할 수 있는 실드를 제공한다. 지속 시간: #2[i]턴", + "Type": "Ultra", + "Tag": "Defence", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 15, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 150 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.31875000055879354, + 3, + 240 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3375000001396984, + 3, + 307.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.35625000041909516, + 3, + 375 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.375, + 3, + 420 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3900000003632158, + 3, + 465 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4050000000279397, + 3, + 498.7500000006985 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.4200000003911555, + 3, + 532.5000000004657 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.43500000005587935, + 3, + 566.2500000002328 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.45000000041909516, + 3, + 600 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.46500000008381903, + 3, + 633.7500000006985 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.48000000044703484, + 3, + 667.5000000004657 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4950000001117587, + 3, + 701.2500000002328 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5100000004749745, + 3, + 735 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5250000001396984, + 3, + 768.7500000006985 + ] + } + } + }, + "110404": { + "Id": 110404, + "Name": "불굴의 몸", + "Desc": "게파드는 치명적인 공격을 받아도 전투 불능 상태에 빠지지 않으며 자신의 HP 최대치 #1[i]%만큼의 HP를 즉시 회복한다. 해당 효과는 단일 전투에서 1회만 발동한다", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + }, + "110406": { + "Id": 110406, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110407": { + "Id": 110407, + "Name": "감정의 증표", + "Desc": "비술 사용 후 다음 전투 시작 시 모든 아군에게 게파드 방어력 #1[i]%+#3[i]만큼의 피해를 상쇄할 수 있는 실드를 제공한다. 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 2, + 150 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Normal.png", + "LevelUpSkillID": [ + 110401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1104001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_BP.png", + "LevelUpSkillID": [ + 110402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Ultra.png", + "LevelUpSkillID": [ + 110403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_Passive.png", + "LevelUpSkillID": [ + 110404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1104004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1104_Maze.png", + "LevelUpSkillID": [ + 110407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1104101, + "PointName": "강직", + "PointDesc": "게파드가 적에게 피격될 확률이 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1104201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104102, + "PointName": "지휘관", + "PointDesc": "[불굴의 몸] 발동 후 게파드의 에너지가 즉시 100%까지 회복된다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1104201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1104_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1104103, + "PointName": "전의", + "PointDesc": "게파드의 공격력이 현재 방어력의 #1[i]%만큼 증가하며, 턴이 시작될 때마다 갱신된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104201, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104202, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1104101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104203, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1104202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104205, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1104102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104206, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1104205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104207, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1104103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104209, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1104208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "효과 저항" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1104210, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1104208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "얼음 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 4.455000000074506, + "HPBase": 190.0800000000745, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 4.455000000074506, + "HPBase": 266.1119999999646, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 160.3800000003539, + "DefenceAdd": 4.455000000074506, + "HPBase": 342.1439999998547, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 196.02000000001863, + "DefenceAdd": 4.455000000074506, + "HPBase": 418.1759999997448, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 231.66000000061467, + "DefenceAdd": 4.455000000074506, + "HPBase": 494.2079999996349, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 267.3000000002794, + "DefenceAdd": 4.455000000074506, + "HPBase": 570.2400000002235, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 302.94000000087544, + "DefenceAdd": 4.455000000074506, + "HPBase": 646.2720000001136, + "HPAdd": 9.50400000018999, + "SpeedBase": 92, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1104, + "Set4IDList": [ + 103, + 106, + 114 + ], + "Set2IDList": [ + 304, + 310, + 317 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusProbabilityBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 285, + 221 + ] + } + }, + "1105": { + "Name": "나타샤", + "Desc": "벨로보그 하층 구역의 의사이자 아이들의 보호자\\n상냥하고 친근한 성격 이면에 위험한 모습도 숨겨져 있다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "natasha", + "SPNeed": 90, + "BaseType": "Priest", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 110501, + "Name": "약리학적 식견", + "Desc": "피격 후 현재 HP 백분율이 #1[i]% 이하일 경우 자신에게 치유를 1회 발동하며 자신 HP 최대치 #2[i]%+#3[i]만큼의 HP를 회복한다. 해당 효과는 단일 전투마다 1회만 발동한다", + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984, + 400 + ] + }, + "2": { + "Id": 110502, + "Name": "임상시험", + "Desc": "필살기 발동 시 현재 HP 백분율이 #1[i]% 이하인 아군에게 #2[i]턴의 지속 치유 효과를 부여하며 목표의 턴이 시작될 때 대상에게 나타샤 HP 최대치 #3[i]%+#4[i]만큼의 HP를 회복한다", + "ParamList": [ + 0.3000000002793968, + 1, + 0.060000000055879354, + 160 + ] + }, + "3": { + "Id": 110503, + "Name": "올바른 처방", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 110504, + "Name": "뛰어난 의술", + "Desc": "피격 후 추가로 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 110505, + "Name": "예방 치료", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 110506, + "Name": "의사의 인자함", + "Desc": "일반 공격 발동 시 추가로 나타샤 HP 최대치 #1[i]%만큼의 물리 속성 피해를 준다", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "110501": { + "Id": 110501, + "Name": "인자함의 이면", + "Desc": "지정된 단일 적에게 나타샤 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110502": { + "Id": 110502, + "Name": "사랑, 구조와 선택", + "Desc": "지정된 단일 아군의 HP를 즉시 나타샤 HP 최대치의 #1[f1]%+#4[i]만큼 회복하고, 턴이 시작될 때마다 대상의 HP를 나타샤 HP 최대치의 #2[f1]%+#5[i]만큼 회복한다. 지속 시간: #3[i]턴", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07000000006519258, + 0.04799999948590994, + 2, + 70, + 48 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07437500054948032, + 0.05099999997764826, + 2, + 112, + 76.80000000074506 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07875000033527613, + 0.05399999977089465, + 2, + 143.50000000046566, + 98.40000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.08312500012107193, + 0.056999999564141035, + 2, + 175, + 120 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08749999990686774, + 0.060000000055879354, + 2, + 196, + 134.40000000037253 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09100000001490116, + 0.06240000016987324, + 2, + 217, + 148.80000000074506 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09450000012293458, + 0.06480000028386712, + 2, + 232.7500000006985, + 159.6000000005588 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09799999953247607, + 0.06719999969936907, + 2, + 248.50000000046566, + 170.40000000037253 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10150000033900142, + 0.06959999981336296, + 2, + 264.25000000023283, + 181.20000000018626 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1049999997485429, + 0.07199999992735684, + 2, + 280, + 192 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10849999985657632, + 0.07440000004135072, + 2, + 295.7500000006985, + 202.80000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11199999996460974, + 0.0768000001553446, + 2, + 311.50000000046566, + 213.6000000005588 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11550000007264316, + 0.07919999957084656, + 2, + 327.25000000023283, + 224.40000000037253 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.11899999948218465, + 0.08160000038333237, + 2, + 343, + 235.20000000018626 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12250000028871, + 0.08399999979883432, + 2, + 358.7500000006985, + 246 + ] + } + } + }, + "110503": { + "Id": 110503, + "Name": "신생의 의례", + "Desc": "모든 아군이 즉시 나타샤 HP 최대치 #1[f1]%+#2[i]만큼의 HP를 회복한다", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09199999994598329, + 92 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.09775000042282045, + 147.20000000018626 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10350000020116568, + 188.6000000005588 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1092499999795109, + 230 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11499999975785613, + 257.6000000005588 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.11959999985992908, + 285.20000000018626 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.12419999996200204, + 305.9000000008382 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.128800000064075, + 326.6000000005588 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13340000016614795, + 347.3000000002794 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.13799999956972897, + 368 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.14260000037029386, + 388.7000000006519 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.14719999977387488, + 409.40000000037253 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.15180000057443976, + 430.10000000009313 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1563999999780208, + 450.80000000074506 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.16100000008009374, + 471.50000000046566 + ] + } + } + }, + "110504": { + "Id": 110504, + "Name": "생기발랄", + "Desc": "현재 HP 백분율이 #1[i]% 이하인 아군에게 치유 제공 시 나타샤의 치유량이 #2[i]% 증가한다. 해당 효과는 지속 치유 효과에도 적용된다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.6250000002328306 + ] + } + } + }, + "110506": { + "Id": 110506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110507": { + "Id": 110507, + "Name": "최면 연구", + "Desc": "적을 바로 공격하며, 전투 진입 후 임의의 단일 적에게 나타샤 공격력 #4[i]%만큼의 물리 속성 피해를 준다. 동시에 #1[i]%기본 확률로 각 단일 적을 허약 상태에 빠트린다.\\n허약 상태의 적은 아군에게 가하는 피해가 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.3000000002793968, + 1, + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Normal.png", + "LevelUpSkillID": [ + 110501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1105001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_BP.png", + "LevelUpSkillID": [ + 110502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Ultra.png", + "LevelUpSkillID": [ + 110503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_Passive.png", + "LevelUpSkillID": [ + 110504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1105004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1105_Maze.png", + "LevelUpSkillID": [ + 110507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1105101, + "PointName": "완화", + "PointDesc": "전투 스킬 발동 시 지정된 단일 아군의 디버프 효과#1[i]개 해제한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1105102, + "PointName": "의사", + "PointDesc": "나타샤가 제공하는 치유량이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1105_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1105103, + "PointName": "회복", + "PointDesc": "전투 스킬 발동으로 생긴 지속 회복 효과를 #1[i]턴 연장한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105201, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105202, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1105101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105203, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1105202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1105203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105205, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1105102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105206, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1105205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105207, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1105206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1105103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105209, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1105103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "효과 저항" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1105210, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 64.80000000074506, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 69, + "DefenceAdd": 3.450000000419095, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 90.72000000067055, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 96.6000000005588, + "DefenceAdd": 3.450000000419095, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 116.64000000059605, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 124.20000000018626, + "DefenceAdd": 3.450000000419095, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 151.80000000074506, + "DefenceAdd": 3.450000000419095, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 168.48000000044703, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 179.40000000037253, + "DefenceAdd": 3.450000000419095, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 194.40000000037253, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 207, + "DefenceAdd": 3.450000000419095, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 220.32000000029802, + "AttackAdd": 3.2400000002235174, + "DefenceBase": 234.6000000005588, + "DefenceAdd": 3.450000000419095, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1105, + "Set4IDList": [ + 101, + 114, + 121 + ], + "Set2IDList": [ + 302, + 317, + 310 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1106": { + "Name": "페라", + "Desc": "실버메인 철위대의 정보관.\\n진중한 성격 덕에 철위대 멤버들에게 존경을 받고 있다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "pela", + "SPNeed": 110, + "BaseType": "Warlock", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 110601, + "Name": "승리의 피드백", + "Desc": "적이 처치될 경우 페라는 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 5 + ] + }, + "2": { + "Id": 110602, + "Name": "무한 질주", + "Desc": "전투 스킬을 발동해 버프 효과를 해제하면 속도가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.10000000009313226, + 2, + 1 + ] + }, + "3": { + "Id": 110603, + "Name": "성장 억제", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 110604, + "Name": "완벽 해부", + "Desc": "전투 스킬 발동 시 #1[i]%기본 확률로 적의 얼음 속성 저항이 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "ParamList": [ + 1, + 0.12000000011175871, + 2 + ] + }, + "5": { + "Id": 110605, + "Name": "빙점 방해", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 110606, + "Name": "힘 없는 추격", + "Desc": "공격 발동 후 적이 디버프 효과를 보유한 경우, 페라 공격력의 #1[i]%만큼 얼음 속성 추가 피해를 가한다", + "ParamList": [ + 0.40000000037252903 + ] + } + }, + "Skills": { + "110601": { + "Id": 110601, + "Name": "빙점 사격", + "Desc": "지정된 단일 적에게 페라 공격력 #1[i]%만큼의 얼음 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110602": { + "Id": 110602, + "Name": "저온 방해", + "Desc": "지정된 단일 적의 버프 효과 #2[i]개를 해제하고, 페라 공격력 #1[i]%만큼의 얼음 속성 피해를 준다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0500000000465661, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.154999999795109, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2600000002421439, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3649999999906868, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.4700000004377216, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5750000001862645, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.706250000745058, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.8375000006053597, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9687500011641532, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.204999999841675, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.31000000028871, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.415000000037253, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5200000004842877, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6250000002328306, + 1 + ] + } + } + }, + "110603": { + "Id": 110603, + "Name": "영역 제압", + "Desc": "#1[i]%기본 확률로 각 단일 적을 [분석] 상태에 빠트리는 동시에 모든 적에게 페라 공격력 #4[i]%만큼의 얼음 속성 피해를 가한다.\\n[분석] 상태의 적은 방어력이 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.3000000002793968, + 2, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.31000000028871, + 2, + 0.6400000005960464 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.3200000002980232, + 2, + 0.6800000006332994 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.33000000030733645, + 2, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.3400000003166497, + 2, + 0.7600000007078052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.3500000003259629, + 2, + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.3625000005122274, + 2, + 0.8500000007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.375, + 2, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.3875000001862645, + 2, + 0.9500000008847564 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.40000000037252903, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.41000000038184226, + 2, + 1.040000000037253 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.4200000003911555, + 2, + 1.0800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.4300000004004687, + 2, + 1.1200000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.44000000040978193, + 2, + 1.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.45000000041909516, + 2, + 1.2000000001862645 + ] + } + } + }, + "110604": { + "Id": 110604, + "Name": "데이터 수집", + "Desc": "공격 발동 후 적이 디버프 효과 상태를 보유하면, 페라는 에너지 #1[f1]pt를 추가로 회복한다. 해당 효과는 공격마다 1회만 발동할 수 있다", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "110606": { + "Id": 110606, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110607": { + "Id": 110607, + "Name": "기선 제압", + "Desc": "적을 바로 공격하며, 전투 진입 후 임의의 단일 적에게 페라 공격력 #4[i]%만큼의 얼음 속성 피해를 준다. 동시에 #1[i]%기본 확률로 각 단일 적의 방어력이 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451, + 2, + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Normal.png", + "LevelUpSkillID": [ + 110601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1106001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_BP.png", + "LevelUpSkillID": [ + 110602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Ultra.png", + "LevelUpSkillID": [ + 110603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_Passive.png", + "LevelUpSkillID": [ + 110604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1106004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1106_Maze.png", + "LevelUpSkillID": [ + 110607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1106101, + "PointName": "통격", + "PointDesc": "디버프 효과를 보유한 적에게 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1106102, + "PointName": "비책", + "PointDesc": "페라가 필드에 있으면 모든 아군의 효과 명중이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1106_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1106103, + "PointName": "추격 토벌", + "PointDesc": "전투 스킬 발동으로 버프 효과를 해제할 시 다음 공격으로 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106201, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1106101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106203, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1106202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106204, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1106203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106205, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1106102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106206, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1106205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106207, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1106206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106208, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1106103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106209, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1106103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1106210, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1106201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "얼음 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 74.40000000037253, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 63, + "DefenceAdd": 3.1500000001396984, + "HPBase": 134.40000000037253, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 104.16000000014901, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 88.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 188.160000000149, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.92000000085682, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 113.40000000037253, + "DefenceAdd": 3.1500000001396984, + "HPBase": 241.92000000085682, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 163.6800000006333, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 3.1500000001396984, + "HPBase": 295.6800000006333, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 193.44000000040978, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 163.80000000074506, + "DefenceAdd": 3.1500000001396984, + "HPBase": 349.4400000004098, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 223.20000000018626, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 189, + "DefenceAdd": 3.1500000001396984, + "HPBase": 403.20000000018626, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 252.96000000089407, + "AttackAdd": 3.7200000006705523, + "DefenceBase": 214.20000000018626, + "DefenceAdd": 3.1500000001396984, + "HPBase": 456.96000000089407, + "HPAdd": 6.720000000670552, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1106, + "Set4IDList": [ + 104, + 106, + 110 + ], + "Set2IDList": [ + 312, + 310, + 308 + ], + "PropertyList3": [ + "StatusProbabilityBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "StatusProbabilityBase", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 318, + 267 + ] + } + }, + "1107": { + "Name": "클라라", + "Desc": "로봇과 함께 생활하는 방랑 소녀\\n내향적이고 상냥하며, 순수한 마음을 지녔다\\n하층 구역의 모든 사람들이 서로의 「가족」이 되기를 간절히 바란다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "clara", + "SPNeed": 110, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 110701, + "Name": "거대한 뒷모습", + "Desc": "전투 스킬 발동 후 적의 [반격 표식]을 해제하지 않는다", + "ParamList": [] + }, + "2": { + "Id": 110702, + "Name": "꼭 껴안아주기", + "Desc": "필살기 발동 후 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 110703, + "Name": "차가운 강철 갑옷", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 110704, + "Name": "가족의 따스함", + "Desc": "피격 후 클라라가 받는 피해가 #1[i]% 감소하며, 해당 효과는 자신의 다음번 턴까지 지속된다", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 110705, + "Name": "아주 작은 약속", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 110706, + "Name": "오랜 단짝", + "Desc": "다른 아군이 피격 후 스바로그는 #1[i]%고정 확률로 공격자에게 반격을 발동하며 공격 목표에게 [반격 표식]을 부여한다. 필살기 발동 시 반격 강화 횟수가 추가로 #2[i]회 증가한다", + "ParamList": [ + 0.5000000004656613, + 1 + ] + } + }, + "Skills": { + "110701": { + "Id": 110701, + "Name": "나도 도움이 되고 싶어", + "Desc": "지정된 단일 적에게 클라라 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110702": { + "Id": 110702, + "Name": "스바로그 씨가 보고 있어", + "Desc": "모든 적에게 클라라 공격력 #1[i]%만큼의 물리 속성 피해를 주며 스바로그에게 [반격 표식]이 부여된 모든 적에게 추가로 클라라 공격력 #2[i]%만큼의 물리 속성 피해를 준다.\\n전투 스킬 발동 후 모든 [반격 표식]이 무효화된다", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 1.5000000004656613 + ] + } + } + }, + "110703": { + "Id": 110703, + "Name": "명령 아닌 약속", + "Desc": "필살기 발동 후 클라라가 적에게 받는 피해가 추가로 #4[i]% 감소하고, 적에게 피격될 확률이 대폭 증가한다. 지속 시간: #3[i]턴\\n동시에 스바로그의 반격이 강화되어 임의의 아군이 피격 후 스바로그는 바로 반격하며, 적에게 가하는 피해 배율이 #2[i]% 증가하고 인접한 목표에게 주목표에게 가하는 50%만큼의 피해를 준다. 강화 효과는 #5[i]회 적용된다", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5, + 0.9600000008940697, + 2, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5, + 1.023999999742955, + 2, + 0.1600000001490116, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5, + 1.0879999995231628, + 2, + 0.17000000015832484, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 5, + 1.1520000000018626, + 2, + 0.18000000016763806, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 5, + 1.2159999997820705, + 2, + 0.1900000001769513, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5, + 1.2800000002607703, + 2, + 0.20000000018626451, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5, + 1.3600000003352761, + 2, + 0.21250000037252903, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 5, + 1.440000000409782, + 2, + 0.2249999998603016, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 5, + 1.5200000004842877, + 2, + 0.23750000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5, + 1.6000000005587935, + 2, + 0.25000000023283064, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 5, + 1.6640000003390014, + 2, + 0.26000000024214387, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 5, + 1.7280000001192093, + 2, + 0.2700000002514571, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 5, + 1.792000000597909, + 2, + 0.2800000002607703, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5, + 1.856000000378117, + 2, + 0.29000000027008355, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5, + 1.9200000008568168, + 2, + 0.3000000002793968, + 2 + ] + } + } + }, + "110704": { + "Id": 110704, + "Name": "우리는 가족이니까", + "Desc": "스바로그의 가호하에 클라라가 적에게 받는 피해가 #3[i]% 감소한다. 스바로그는 클라라를 공격한 적에게 [반격 표식]을 남기고 스바로그의 반격을 받아 클라라 공격력 #2[i]%만큼의 물리 속성 피해를 가한다", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": 25, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.8000000007450581, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.8800000008195639, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.9600000008940697, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 1.040000000037253, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 1.1200000001117587, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1.2000000001862645, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 1.3000000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 1.400000000372529, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 1.5000000004656613, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 1.6800000006332994, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 1.7600000007078052, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 1.840000000782311, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 1.9200000008568168, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 2, + 0.10000000009313226 + ] + } + } + }, + "110706": { + "Id": 110706, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110707": { + "Id": 110707, + "Name": "승리를 위한 작은 대가", + "Desc": "적을 바로 공격하며, 전투 진입 후 클라라가 적에게 피격될 확률이 증가한다. 지속 시간: #1[i]턴", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 5 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Normal.png", + "LevelUpSkillID": [ + 110701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1107001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_BP.png", + "LevelUpSkillID": [ + 110702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Ultra.png", + "LevelUpSkillID": [ + 110703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_Passive.png", + "LevelUpSkillID": [ + 110704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1107004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1107_Maze.png", + "LevelUpSkillID": [ + 110707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1107101, + "PointName": "가족", + "PointDesc": "피격 시 #1[i]%고정 확률로 자신의 디버프 효과를 1개 해제한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1107102, + "PointName": "수호", + "PointDesc": "제어류 디버프 상태 저항 확률이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1107_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1107103, + "PointName": "복수", + "PointDesc": "스바로그의 반격이 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107202, + "PointName": "피해 강화•물리", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1107101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.031999999890103936, + "Name": "물리 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1107202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1107203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1107102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107206, + "PointName": "피해 강화•물리", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1107205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.04799999948590994, + "Name": "물리 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1107206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1107103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107209, + "PointName": "피해 강화•물리", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1107208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.06399999978020787, + "Name": "물리 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1107210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1107208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 100.32000000029802, + "AttackAdd": 5.015999999595806, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 140.44799999985844, + "AttackAdd": 5.015999999595806, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 180.57600000011735, + "AttackAdd": 5.015999999595806, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 220.70400000037625, + "AttackAdd": 5.015999999595806, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 260.83200000063516, + "AttackAdd": 5.015999999595806, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 300.96000000089407, + "AttackAdd": 5.015999999595806, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 341.08799999952316, + "AttackAdd": 5.015999999595806, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 90, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1107, + "Set4IDList": [ + 105, + 113, + 115 + ], + "Set2IDList": [ + 306, + 315, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 331, + 277 + ] + } + }, + "1108": { + "Name": "삼포", + "Desc": "지상 지하를 자유롭게 넘나드는 밀수꾼\\n붙임성이 좋고 열정적이며, 유머러스한 성격으로 농담을 잘한다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "sampo", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 110801, + "Name": "곱절의 사랑", + "Desc": "전투 스킬 발동 시 임의의 단일 적에게 추가로 #1[i]회 피해를 가한다", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 110802, + "Name": "전염되는 열정", + "Desc": "풍화 상태의 적 처치 시 모든 적은 #1[i]%기본 확률로 특성만큼의 풍화 상태를 #2[i]스택 중첩한다", + "ParamList": [ + 1, + 1 + ] + }, + "3": { + "Id": 110803, + "Name": "큰 돈!", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 110804, + "Name": "사랑할수록 커지는 증오", + "Desc": "전투 스킬이 풍화 상태를 #1[i]스택 이상 보유한 적을 명중할 시 보유한 풍화 상태는 즉시 기존 피해 #2[i]%만큼의 피해를 준다", + "ParamList": [ + 5, + 0.0800000000745058 + ] + }, + "5": { + "Id": 110805, + "Name": "엄청난 돈!", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 110806, + "Name": "커진 씀씀이", + "Desc": "특성이 부여한 풍화 상태의 피해 배율이 #1[i]% 증가한다", + "ParamList": [ + 0.1500000001396984 + ] + } + }, + "Skills": { + "110801": { + "Id": 110801, + "Name": "화려한 도흔", + "Desc": "지정된 단일 적에게 삼포 공격력 #1[i]%만큼의 바람 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110802": { + "Id": 110802, + "Name": "변덕스러운 사랑", + "Desc": "지정된 단일 적에게 삼포 공격력 #2[i]%만큼의 바람 속성 피해를 주고, 추가로 #1[i]회 피해를 가한다. 피해마다 임의의 단일 적에게 삼포 공격력 #2[i]%만큼의 바람 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4, + 0.2800000002607703 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 4, + 0.3079999997280538 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 4, + 0.3359999998938292 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 0.36400000005960464 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4, + 0.39200000022538006 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 4, + 0.4200000003911555 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4, + 0.4550000000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4, + 0.49000000045634806 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4, + 0.5250000001396984 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.5600000005215406 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4, + 0.5879999999888241 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4, + 0.6160000001545995 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4, + 0.644000000320375 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4, + 0.6720000004861504 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4, + 0.7000000006519258 + ] + } + } + }, + "110803": { + "Id": 110803, + "Name": "서프라이즈 선물 상자", + "Desc": "모든 적에게 삼포 공격력 #1[i]%만큼의 바람 속성 피해를 주고, #4[i]%기본 확률로 피격된 적이 받는 지속 피해가 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.20000000018626451, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 0.21000000019557774, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 0.22000000020489097, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 0.2300000002142042, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 0.24000000022351742, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 0.25000000023283064, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 0.26250000041909516, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 0.27499999990686774, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 0.28750000009313226, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.3000000002793968, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 0.31000000028871, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 0.3200000002980232, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 0.33000000030733645, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 0.3400000003166497, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 0.3500000003259629, + 2, + 1 + ] + } + } + }, + "110804": { + "Id": 110804, + "Name": "바람을 찢는 비수", + "Desc": "삼포는 적 공격 후 #1[i]%기본 확률로 적을 풍화 상태에 빠트린다. 지속 시간: #3[i]턴\\n풍화 상태의 적은 새로운 턴이 시작될 때마다 삼포 공격력 #2[i]%만큼의 바람 속성 지속 피해를 받는다. 풍화 상태 최대 중첩수: #4[i]스택", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6500000006053597, + 0.20000000018626451, + 3, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6500000006053597, + 0.22000000020489097, + 3, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6500000006053597, + 0.24000000022351742, + 3, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.26000000024214387, + 3, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6500000006053597, + 0.2800000002607703, + 3, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6500000006053597, + 0.31000000028871, + 3, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0.3500000003259629, + 3, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6500000006053597, + 0.40000000037252903, + 3, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597, + 0.4600000004284084, + 3, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6500000006053597, + 0.5200000004842877, + 3, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6500000006053597, + 0.546000000089407, + 3, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6500000006053597, + 0.5720000003930181, + 3, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6500000006053597, + 0.5979999999981374, + 3, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6500000006053597, + 0.6240000003017485, + 3, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6500000006053597, + 0.6500000006053597, + 3, + 5 + ] + } + } + }, + "110806": { + "Id": 110806, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110807": { + "Id": 110807, + "Name": "네가 가장 빛나", + "Desc": "비술 사용 후 일정 영역 내의 적을 #1[i]초 동안 실명 상태에 빠트린다. 실명 상태에 진입한 적은 아군을 발견할 수 없다.\\n실명 상태의 적을 선공하여 전투 진입 시 #2[i]%고정 확률로 각 단일 적의 행동 게이지가 #3[i]% 감소한다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 0.25000000023283064 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Normal.png", + "LevelUpSkillID": [ + 110801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1108001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_BP.png", + "LevelUpSkillID": [ + 110802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Ultra.png", + "LevelUpSkillID": [ + 110803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_Passive.png", + "LevelUpSkillID": [ + 110804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1108004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1108_Maze.png", + "LevelUpSkillID": [ + 110807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1108102, + "PointName": "후공", + "PointDesc": "필살기 발동 시 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1108103, + "PointName": "첨가", + "PointDesc": "풍화 상태의 적이 삼포에게 가하는 피해가 #1[i]% 감소한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108202, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1108101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1108202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1108203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1108102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108206, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1108205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1108206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1108103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108209, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1108103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "효과 명중" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1108210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1108201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1108_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1108101, + "PointName": "올가미", + "PointDesc": "특성으로 적이 풍화 상태에 빠지는 지속 시간이 #1[i]턴 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 117.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 151.20000000018626, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 184.80000000074506, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 218.40000000037253, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 252, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110405, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 285.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1108, + "Set4IDList": [ + 110, + 116, + 102 + ], + "Set2IDList": [ + 301, + 303, + 311 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 316, + 263 + ] + } + }, + "1109": { + "Name": "후크", + "Desc": "지하 모험단 「두더지파」의 대장(자칭)\\n자유를 사랑하며 인생을 끊이지 않는 모험이라고 생각한다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "hook", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 110901, + "Name": "건강한 수면 사이클", + "Desc": "전투 스킬 강화 후 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 110902, + "Name": "건강한 식습관", + "Desc": "전투 스킬은 적의 연소 상태 지속 시간을 #1[i]턴 증가시킨다", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 110903, + "Name": "가리지 않고 전부", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 110904, + "Name": "얼렁뚱땅해도 이상 무", + "Desc": "특성 발동 시 #1[i]%기본 확률로 지정된 적의 인접한 목표를 전투 스킬과 같은 연소 상태에 빠트린다", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 110905, + "Name": "이름 날린 두더지파", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 110906, + "Name": "항시 악에 맞설 준비", + "Desc": "후크가 연소 상태를 보유한 적에게 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "110901": { + "Id": 110901, + "Name": "이봐! 불조심!", + "Desc": "지정된 단일 적에게 후크 공격력 #1[i]%만큼의 화염 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "110902": { + "Id": 110902, + "Name": "헤이! 후크 기억해?", + "Desc": "지정된 단일 적에게 후크 공격력 #1[i]%만큼의 화염 속성 피해를 주고, 피격된 적은 #2[i]%기본 확률로 연소 상태에 빠진다. 지속 시간: #3[i]턴\\n연소 상태의 적은 새로운 턴이 시작될 때마다 후크 공격력 #4[i]%만큼의 화염 속성 지속 피해를 받는다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 1, + 2, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 1, + 2, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 1, + 2, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 1, + 2, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 1, + 2, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 1, + 2, + 0.3875000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 1, + 2, + 0.43750000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 1, + 2, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 1, + 2, + 0.5750000001862645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 1, + 2, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 1, + 2, + 0.6825000008102506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 1, + 2, + 0.7150000003166497 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 1, + 2, + 0.7475000005215406 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 1, + 2, + 0.7800000007264316 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 2, + 0.8125000009313226 + ] + } + } + }, + "110903": { + "Id": 110903, + "Name": "펑! 날아드는 불꽃", + "Desc": "지정된 단일 적에게 후크 공격력 #1[i]%만큼의 화염 속성 피해를 준다.\\n필살기 발동 후 다음 발동 전투 스킬이 강화된다. 강화 후의 전투 스킬은 지정된 단일 적과 인접한 목표에게 동시에 피해를 준다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058 + ] + } + } + }, + "110904": { + "Id": 110904, + "Name": "하! 불난 집에 부채질", + "Desc": "연소 상태의 적 공격 시, 추가로 후크 공격력 #1[i]%만큼의 화염 속성 추가 피해를 주고, 에너지를 추가로 #2[i]pt 회복한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 5 + ] + } + } + }, + "110906": { + "Id": 110906, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "110907": { + "Id": 110907, + "Name": "윽! 완전 난장판", + "Desc": "적을 바로 공격하며, 전투 진입 후 랜덤 단일 적에게 후크 공격력의 #4[i]%만큼 화염 속성 피해를 가하고, 각 단일 적을 #1[i]%기본 확률로 연소 상태에 빠트린다. 지속 시간: #3[i]턴\\n연소 상태의 적은 새로운 턴이 시작될 때마다 후크 공격력 #2[i]%만큼의 화염 속성 지속 피해를 받는다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 3, + 0.5000000004656613 + ] + } + } + }, + "110909": { + "Id": 110909, + "Name": "헤이! 후크 기억해?", + "Desc": "지정된 단일 적에게 후크 공격력 #1[i]%만큼의 화염 속성 피해를 주고, 피격된 적은 #2[i]%기본 확률로 연소 상태에 빠진다. 지속 시간: #3[i]턴. 또한, 인접한 목표에게 후크 공격력 #5[i]%만큼의 화염 속성 피해를 준다.\\n연소 상태의 적은 새로운 턴이 시작될 때마다 후크 공격력 #4[i]%만큼의 화염 속성 지속 피해를 받는다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 1, + 2, + 0.25000000023283064, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 1, + 2, + 0.27499999990686774, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 1, + 2, + 0.3000000002793968, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 1, + 2, + 0.32499999995343387, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 1, + 2, + 0.3500000003259629, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 1, + 2, + 0.3875000001862645, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 1, + 2, + 0.43750000023283064, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 1, + 2, + 0.5000000004656613, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1, + 2, + 0.5750000001862645, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1, + 2, + 0.6500000006053597, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1, + 2, + 0.6825000008102506, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1, + 2, + 0.7150000003166497, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1, + 2, + 0.7475000005215406, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 1, + 2, + 0.7800000007264316, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 1, + 2, + 0.8125000009313226, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Normal.png", + "LevelUpSkillID": [ + 110901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1109001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_BP.png", + "LevelUpSkillID": [ + 110902, + 110909 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Ultra.png", + "LevelUpSkillID": [ + 110903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_Passive.png", + "LevelUpSkillID": [ + 110904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1109004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1109_Maze.png", + "LevelUpSkillID": [ + 110907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 1109101, + "PointName": "천진", + "PointDesc": "특성 발동 시 후크 HP 최대치 #1[i]%만큼의 HP를 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1109102, + "PointName": "난만", + "PointDesc": "제어류 디버프 상태 저항 확률이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1109_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.20000000018626451 + ], + "PointID": 1109103, + "PointName": "불장난", + "PointDesc": "필살기 발동 후 후크의 행동 게이지가 #2[i]% 증가하고, 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1109101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1109202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109204, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1109203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1109102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1109205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1109206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109208, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1109103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1109208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1109210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1109208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 182.40000000037253, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 117.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 255.36000000033528, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 151.20000000018626, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 328.320000000298, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 184.80000000074506, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 401.28000000026077, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 218.40000000037253, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 474.2400000002235, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 252, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 547.2000000001863, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110402, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 285.6000000005588, + "AttackAdd": 4.2000000001862645, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 620.160000000149, + "HPAdd": 9.120000000111759, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1109, + "Set4IDList": [ + 117, + 122, + 107 + ], + "Set2IDList": [ + 301, + 309, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1110": { + "Name": "링스", + "Desc": "벨로보그의 설원 탐험가, 랜도 가문의 막내 여동생.\\n담담한 성격에 행동력이 매우 강하다. 종종 홀로 설원을 탐험한다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "lynx", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 111001, + "Name": "스키 스틱의 아침", + "Desc": "현재 HP 백분율이 #1[i]% 이하인 아군에게 치유 제공 시 링스의 치유량이 #2[i]% 증가한다. 해당 효과는 지속 치유 효과에도 적용된다", + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Id": 111002, + "Name": "휴대용 버너의 정오", + "Desc": "[생존 반응]을 보유한 목표에게 디버프 효과가 부여될 시 디버프 효과#1[i]회 저항할 수 있다", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 111003, + "Name": "눈사태 비콘의 오후", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 111004, + "Name": "캠핑 모닥불의 저녁", + "Desc": "[생존 반응] 획득 시 해당 목표의 공격력이 링스 HP 최대치의 #1[f1]%만큼 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.030000000027939677, + 1 + ] + }, + "5": { + "Id": 111005, + "Name": "오로라 홍차의 밤", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 111006, + "Name": "설계도의 새벽", + "Desc": "[생존 반응]의 HP 최대치 증가 효과가 링스 HP 최대치의 #1[f1]%만큼 증가하고, 효과 저항이 #2[i]% 증가한다", + "ParamList": [ + 0.060000000055879354, + 0.3000000002793968 + ] + } + }, + "Skills": { + "111001": { + "Id": 111001, + "Name": "얼음 등반 갈고리 기술", + "Desc": "지정된 단일 적에게 자신의 HP 최대치의 #1[i]%만큼 양자 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "111002": { + "Id": 111002, + "Name": "캠핑용 절임 통조림", + "Desc": "지정된 단일 아군에게 [생존 반응]을 부여하며, HP 최대치가 링스 HP 최대치의 #1[f1]%+#2[i]만큼 증가하고, 해당 목표가 「파멸」 혹은 「보존」 운명의 길이면 적에게 피격될 확률이 대폭 증가한다. [생존 반응]은 #3[i]턴간 지속된다.\\n해당 목표의 HP를 링스 HP 최대치의 #4[f1]%+#5[i]만큼 회복시킨다", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 50, + 2, + 0.0800000000745058, + 80, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.05250000022351742, + 80, + 2, + 0.08499999972991645, + 128, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.054999999701976776, + 102.50000000046566, + 2, + 0.09000000008381903, + 164, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.057499999878928065, + 125, + 2, + 0.09499999973922968, + 200, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.060000000055879354, + 140, + 2, + 0.10000000009313226, + 224, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.06250000023283064, + 155, + 2, + 0.10399999981746078, + 248, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06562500027939677, + 166.25000000023283, + 2, + 0.1079999995417893, + 266, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.0687500003259629, + 177.50000000046566, + 2, + 0.11199999996460974, + 284, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07187500107102096, + 188.7500000006985, + 2, + 0.11599999968893826, + 302, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.07499999972060323, + 200, + 2, + 0.12000000011175871, + 320, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.07749999989755452, + 211.25000000023283, + 2, + 0.12399999983608723, + 338, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.0800000000745058, + 222.50000000046566, + 2, + 0.12799999956041574, + 356, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.0825000002514571, + 233.7500000006985, + 2, + 0.1319999999832362, + 374, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.08499999972991645, + 245, + 2, + 0.1359999997075647, + 392, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.08749999990686774, + 256.25000000023283, + 2, + 0.14000000013038516, + 410, + 5 + ] + } + } + }, + "111003": { + "Id": 111003, + "Name": "설원 구급 방침", + "Desc": "모든 아군의 디버프 효과#1[i]개 해제하고, 모든 아군의 HP를 즉시 링스 HP 최대치의 #2[f1]%+#3[i]만큼 회복시킨다", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.09000000008381903, + 90 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.09562500030733645, + 144 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.10125000053085387, + 184.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.10687500075437129, + 225 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.11250000027939677, + 252 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.11699999962002039, + 279 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.12150000035762787, + 299.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.12599999969825149, + 319.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.13050000043585896, + 339.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.13499999977648258, + 360 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.13949999981559813, + 380.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.14399999985471368, + 400.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.14849999989382923, + 420.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.15299999993294477, + 441 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.15749999997206032, + 461.25000000023283 + ] + } + } + }, + "111004": { + "Id": 111004, + "Name": "야외 생존 경험", + "Desc": "전투 스킬 혹은 필살기 발동 시 아군은 #1[i]턴의 지속 치유 효과를 획득하고, 해당 목표는 턴이 시작될 때마다 HP를 링스 HP 최대치의 #2[f1]%+#3[i]만큼 회복한다. 해당 목표가 [생존 반응]을 보유하고 있으면 지속 치유되는 HP가 추가로 링스 HP 최대치의 #4[f1]%+#5[i]만큼 증가한다", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.02399999974295497, + 24, + 0.030000000027939677, + 30 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.02549999998882413, + 38.40000000037253, + 0.03187500103376806, + 48 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.026999999536201358, + 49.200000000186265, + 0.033750000642612576, + 61.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.028499999782070518, + 60, + 0.035625000251457095, + 75 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.030000000027939677, + 67.20000000018626, + 0.037499999860301614, + 84 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.03120000008493662, + 74.40000000037253, + 0.03899999940767884, + 93 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.03240000014193356, + 79.80000000074506, + 0.04050000035203993, + 99.75000000069849 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.0336000001989305, + 85.20000000018626, + 0.04199999989941716, + 106.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.034800000255927444, + 90.6000000005588, + 0.04350000014528632, + 113.25000000023283 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.035999999614432454, + 96, + 0.04499999969266355, + 120 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.037199999671429396, + 101.40000000037253, + 0.04649999993853271, + 126.75000000069849 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.03839999972842634, + 106.80000000074506, + 0.04799999948590994, + 133.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.03959999978542328, + 112.20000000018626, + 0.0494999997317791, + 140.25000000023283 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.04080000054091215, + 117.6000000005588, + 0.05099999997764826, + 147 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.04199999989941716, + 123, + 0.05250000022351742, + 153.7500000006985 + ] + } + } + }, + "111006": { + "Id": 111006, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111007": { + "Id": 111007, + "Name": "초콜릿 에너지바", + "Desc": "비술 발동 후 다음 전투 시작 시 모든 아군에게 링스 특성과 동일한 지속 치유 효과를 부여한다. 지속 시간: #1[i]턴", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Normal.png", + "LevelUpSkillID": [ + 111001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1110001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_BP.png", + "LevelUpSkillID": [ + 111002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Ultra.png", + "LevelUpSkillID": [ + 111003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_Passive.png", + "LevelUpSkillID": [ + 111004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1110004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1110_Maze.png", + "LevelUpSkillID": [ + 111007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1110101, + "PointName": "사전 탐측", + "PointDesc": "[생존 반응]을 보유한 목표가 피격되면 링스는 즉시 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1110102, + "PointName": "탐험 스킬", + "PointDesc": "제어류 디버프 상태 저항 확률이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1110_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1110103, + "PointName": "극지 생존", + "PointDesc": "특성으로 발동한 지속 회복 효과를 #1[i]턴 연장한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110201, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110202, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1110101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110203, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1110202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1110203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110205, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1110102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110206, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1110205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110207, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1110206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1110103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110209, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1110103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1110210, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 67.20000000018626, + "AttackAdd": 3.360000000335276, + "DefenceBase": 75, + "DefenceAdd": 3.750000000698492, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 94.0800000000745, + "AttackAdd": 3.360000000335276, + "DefenceBase": 105, + "DefenceAdd": 3.750000000698492, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 120.96000000089407, + "AttackAdd": 3.360000000335276, + "DefenceBase": 135, + "DefenceAdd": 3.750000000698492, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 147.8400000007823, + "AttackAdd": 3.360000000335276, + "DefenceBase": 165, + "DefenceAdd": 3.750000000698492, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 174.72000000067055, + "AttackAdd": 3.360000000335276, + "DefenceBase": 195, + "DefenceAdd": 3.750000000698492, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 201.6000000005588, + "AttackAdd": 3.360000000335276, + "DefenceBase": 225, + "DefenceAdd": 3.750000000698492, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 228.48000000044703, + "AttackAdd": 3.360000000335276, + "DefenceBase": 255, + "DefenceAdd": 3.750000000698492, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1110, + "Set4IDList": [ + 101, + 114, + 106 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1111": { + "Name": "루카", + "Desc": "벨로보그 하층 구역의 챔피언 격투선수, 「와일드 파이어」의 실력파 멤버 중 하나.\\n격투 클럽의 연속 디펜딩 챔피언, 자신의 열정으로 하층 구역의 꿈이 있는 아이들을 격려한다", + "CharaInfo": { + "Camp": "벨로보그", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "luka", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 111101, + "Name": "끊임없는 싸움", + "Desc": "루카 행동 시 지정된 적이 열상 상태이면 루카가 가하는 피해는 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Id": 111102, + "Name": "약한 적, 강한 나", + "Desc": "전투 스킬을 명중한 적의 약점이 물리 속성이면 [투지]를 #1[i]스택 획득한다", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 111103, + "Name": "링을 위해 태어난 자", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 111104, + "Name": "칠전팔기", + "Desc": "[투지]를 1스택 획득할 때마다 공격력이 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택", + "ParamList": [ + 0.05000000004656613, + 4 + ] + }, + "5": { + "Id": 111105, + "Name": "와일드 파이어 스피릿", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 111106, + "Name": "챔피언의 영광", + "Desc": "강화된 일반 공격의 [어퍼컷]을 발동해 열상 상태에 빠진 적을 명중하면 이번 강화된 일반 공격에 사용한 [돌격 펀치] 공격 단수마다 적이 현재 받는 열상 상태가 기존 피해 #1[i]%의 피해를 추가로 즉시 1회 생성한다", + "ParamList": [ + 0.0800000000745058 + ] + } + }, + "Skills": { + "111101": { + "Id": 111101, + "Name": "돌격 펀치", + "Desc": "지정된 단일 적에게 루카 공격력 #1[i]%만큼의 물리 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "111102": { + "Id": 111102, + "Name": "열상 펀치", + "Desc": "지정된 단일 적에게 루카 공격력 #1[i]%만큼의 물리 속성 피해를 가하고, #2[i]%기본 확률로 목표를 열상 상태에 빠트린다. 지속 시간: #5[i]턴\\n열상 상태인 적은 턴이 시작될 때마다 자신의 HP 최대치 #3[f1]%만큼의 물리 속성 지속 피해를 받으며, 최대 루카 공격력의 #4[i]%를 초과하지 않는다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 1, + 0.24000000022351742, + 1.3000000002793968, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 1, + 0.24000000022351742, + 1.4300000004004687, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 1, + 0.24000000022351742, + 1.5600000005215406, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 1, + 0.24000000022351742, + 1.6900000006426126, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 1, + 0.24000000022351742, + 1.8200000007636845, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 1, + 0.24000000022351742, + 2.014999999664724, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 1, + 0.24000000022351742, + 2.2749999999068677, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 1, + 0.24000000022351742, + 2.6000000005587935, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 1, + 0.24000000022351742, + 2.9900000009220093, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 1, + 0.24000000022351742, + 3.3800000003539026, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 1, + 0.24000000022351742, + 3.5489999998826534, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 1, + 0.24000000022351742, + 3.718000000109896, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 1, + 0.24000000022351742, + 3.8870000003371388, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 1, + 0.24000000022351742, + 4.055999999633059, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 1, + 0.24000000022351742, + 4.224999999860302, + 3 + ] + } + } + }, + "111103": { + "Id": 111103, + "Name": "승리의 일격", + "Desc": "[투지]를 #5[i]스택 획득하고 #2[i]%기본 확률로 지정된 단일 적이 받는 피해가 #3[f1]% 증가한다. 지속 시간: #4[i]턴. 그 후 해당 목표에게 루카 공격력 #1[i]%만큼의 물리 속성 피해를 가한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9800000009126961, + 1, + 0.12000000011175871, + 3, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.1119999999646097, + 1, + 0.12799999956041574, + 3, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.243999999947846, + 1, + 0.1359999997075647, + 3, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.375999999931082, + 1, + 0.14399999985471368, + 3, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.5079999999143183, + 1, + 0.15200000000186265, + 3, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.6400000005960464, + 1, + 0.1600000001490116, + 3, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.8050000004004687, + 1, + 0.17000000015832484, + 3, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.970000000903383, + 1, + 0.18000000016763806, + 3, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.1349999997764826, + 1, + 0.1900000001769513, + 3, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.3000000002793968, + 1, + 0.20000000018626451, + 3, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.432000000262633, + 1, + 0.20799999963492155, + 3, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.564000000245869, + 1, + 0.21599999978207052, + 3, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.6960000002291054, + 1, + 0.22399999992921948, + 3, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.8280000002123415, + 1, + 0.23200000007636845, + 3, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.9600000008940697, + 1, + 0.24000000022351742, + 3, + 2 + ] + } + } + }, + "111104": { + "Id": 111104, + "Name": "흩날리는 불꽃", + "Desc": "루카는 일반 공격 [돌격 펀치]와 전투 스킬 [열상 펀치]를 발동하면 [투지]를 #1[i]스택 획득한다. [투지]는 최대 4스택 보유할 수 있다. 보유한 [투지]가 2스택 이상일 시 일반 공격 [돌격 펀치]는 [돌격 어퍼컷]으로 강화된다. 강화된 일반 공격의 [어퍼컷]으로 열상 상태에 빠진 적을 명중하면 현재 받는 열상 상태는 기존 피해 #2[i]%만큼의 피해를 즉시 1회 생성한다. 전투 시작 시 루카는 [투지] 1스택을 보유한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.6800000006332994 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.6970000001601875 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.7140000003855675 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.7310000006109476 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.7480000001378357 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.7650000003632158 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.7862500008195639 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.80750000057742 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.8287500010337681 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.8500000007916242 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.8670000003185123 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.8840000005438924 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.9010000007692724 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.9180000002961606 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.9350000005215406 + ] + } + } + }, + "111106": { + "Id": 111106, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111107": { + "Id": 111107, + "Name": "앞서는 자", + "Desc": "적을 바로 공격하며, 전투 진입 후 임의의 단일 적에게 루카 공격력 #1[i]%만큼의 물리 속성 피해를 가하고, #2[i]%기본 확률로 목표를 전투 스킬과 동일한 열상 상태에 빠트린다. 그 후 루카는 [투지]를 1스택 추가로 획득한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + } + } + }, + "111108": { + "Id": 111108, + "Name": "돌격 어퍼컷", + "Desc": "[투지] 2스택을 소모하여 먼저 [돌격 펀치]를 사용해 3단 공격을 발동한다. 공격 단수마다 지정된 단일 적에게 루카 공격력 #1[i]%만큼의 물리 속성 피해를 가한다.\\n그리고 [어퍼컷]을 사용하여 1단 공격을 발동하고, 지정된 단일 적에게 루카 공격력 #2[i]%만큼의 물리 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.12000000011175871, + 0.48000000044703484 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14000000013038516, + 0.5600000005215406 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1600000001490116, + 0.6400000005960464 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18000000016763806, + 0.7200000006705523 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.22000000020489097, + 0.8800000008195639 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.24000000022351742, + 0.9600000008940697 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.26000000024214387, + 1.040000000037253 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.2800000002607703, + 1.1200000001117587 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Normal.png", + "LevelUpSkillID": [ + 111101, + 111108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1111001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_BP.png", + "LevelUpSkillID": [ + 111102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Ultra.png", + "LevelUpSkillID": [ + 111103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_Passive.png", + "LevelUpSkillID": [ + 111104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1111004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1111_Maze.png", + "LevelUpSkillID": [ + 111107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1111101, + "PointName": "동력 에너지 과부하", + "PointDesc": "전투 스킬 발동 시 즉시 적의 버프 효과#1[i]개 해제한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1111102, + "PointName": "순환 제동", + "PointDesc": "[투지]를 1스택 획득할 때마다 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1111_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1111103, + "PointName": "투지 분쇄", + "PointDesc": "강화된 일반 공격 발동 시, [돌격 펀치]의 공격 단수마다 #1[i]%고정 확률로 루카가 1단 공격을 추가로 발동한다. 해당 효과는 추가 발동된 공격에는 적용되지 않는다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111202, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1111101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1111202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1111203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1111102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111206, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1111205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1111206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1111103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111209, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1111103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "효과 명중" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1111210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1111201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1111, + "Set4IDList": [ + 105, + 116, + 102 + ], + "Set2IDList": [ + 301, + 307, + 309 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "BreakDamageAddedRatioBase" + ], + "ScoreRankList": [ + 322, + 284 + ] + } + }, + "1112": { + "Name": "토파즈&복순이", + "Desc": "스타피스 컴퍼니 소속 「전략투자부」 고위 간부 토파즈. 특수채무규찰팀을 이끈다.\\n어린 나이에 「10인의 스톤하트」 중 한 명이 되었다. 초석은 「독촉의 황옥」이다.\\n파트너인 차원 저금통 「복순이」는 「부」가 있는 곳을 예민하게 감지할 수 있으며, 보안, 독촉, 계리 등 업무도 척척이다.\\n오늘날 그들은 함께 은하를 여행하며 컴퍼니 업무 전개에 영향을 주는 채무 분쟁을 규찰하고 있다", + "CharaInfo": { + "Camp": "스타피스 컴퍼니", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "topaz", + "SPNeed": 130, + "BaseType": "Rogue", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 111201, + "Name": "미래 시장", + "Desc": "[부채 증명] 상태에 빠진 적이 추가 공격을 받을 시 [강제 집행] 상태에 빠진다. 해당 상태는 단일 공격 내에 최대 1회 적용된다.\\n[강제 집행]은 적이 받는 추가 공격의 치명타 피해를 #1[i]% 증가시킨다. 최대 중첩수: #2[i]스택. [부채 증명]이 해제되면 [강제 집행]도 해제된다", + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Id": 111202, + "Name": "우호적 인수", + "Desc": "복순이 자신이 행동하고 공격 발동 후 토파즈는 #1[i]pt의 에너지를 회복한다", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 111203, + "Name": "큰 것 잡고 작은 것 놓기", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 111204, + "Name": "신속 처리", + "Desc": "복순이 자신의 턴 시작 시 토파즈의 행동 게이지#1[i]% 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 111205, + "Name": "수요 인플레이션", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 111206, + "Name": "인센티브 제도", + "Desc": "복순이가 [폭증!] 상태일 때의 공격 횟수가 #1[i]회 증가한다. 공격 시 화염 속성 저항 관통#2[i]% 증가한다", + "ParamList": [ + 1, + 0.10000000009313226 + ] + } + }, + "Skills": { + "111201": { + "Id": 111201, + "Name": "적자…", + "Desc": "지정된 단일 적에게 토파즈 공격력 #1[i]%만큼의 화염 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "111202": { + "Id": 111202, + "Name": "결제 불가?", + "Desc": "지정된 단일 적을 [부채 증명] 상태에 빠트려 적이 받는 추가 공격 피해를 #2[i]% 증가시킨다. [부채 증명]은 가장 최근에 부여한 목표에게만 적용된다. 아군 턴 시작 또는 행동 시 필드 위에 [부채 증명] 상태에 빠진 적이 없으면 토파즈가 임의의 적을 [부채 증명] 상태에 빠트린다.\\n복순이는 해당 목표에게 토파즈 공격력 #1[i]%만큼의 화염 속성 피해를 준다. 해당 전투 스킬 발동으로 피해를 가할 시 추가 공격을 발동한 것으로 간주한다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.6250000002328306 + ] + } + } + }, + "111203": { + "Id": 111203, + "Name": "흑자 전환!", + "Desc": "복순이가 [폭증!] 상태에 진입하고 복순이의 피해 배율이 #1[i]%, 치명타 피해가 #2[i]% 증가한다. [부채 증명] 상태에 빠진 적이 아군의 일반 공격, 전투 스킬 혹은 필살기로 공격을 받을 시 복순이의 행동 게이지가 #3[i]% 증가한다. 복순이가 #4[i]회 공격 후 [폭증!] 상태가 해제된다", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.12499999976716936, + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.13749999995343387, + 0.5000000004656613, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.1500000001396984, + 0.5000000004656613, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.1625000003259629, + 0.5000000004656613, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.17499999981373549, + 0.5000000004656613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.1875, + 0.5000000004656613, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.20312500023283064, + 0.5000000004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.2187500004656613, + 0.5000000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.23437500069849193, + 0.5000000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.25000000023283064, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.26250000041909516, + 0.5000000004656613, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.27499999990686774, + 0.5000000004656613, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.28750000009313226, + 0.5000000004656613, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.3000000002793968, + 0.5000000004656613, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.3125000004656613, + 0.5000000004656613, + 2 + ] + } + } + }, + "111204": { + "Id": 111204, + "Name": "피그 마켓?!", + "Desc": "전투 시작 시 복순이를 소환한다. 복순이의 기본 속도는 #1[i]pt이며, 행동 시 추가 공격을 발동한다. [부채 증명] 상태에 빠진 단일 적에게 토파즈 공격력 #2[i]%만큼의 화염 속성 피해를 준다.\\n[부채 증명] 상태에 빠진 적이 아군의 추가 공격을 받으면 복순이의 행동 게이지가 #3[i]% 증가한다. 복순이 자신의 턴에는 행동 게이지 증가 효과가 발동하지 않는다.\\n토파즈가 전투 불능 상태에 빠지면 복순이도 사라진다", + "Type": null, + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 80, + 0.7500000006984919, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 80, + 0.8250000004190952, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 80, + 0.9000000008381903, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 80, + 0.9750000005587935, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 80, + 1.0500000000465661, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 80, + 1.1249999997671694, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 80, + 1.2187500004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 80, + 1.3125000004656613, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 80, + 1.4062500004656613, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 80, + 1.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 80, + 1.5750000001862645, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 80, + 1.6500000006053597, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 80, + 1.725000000325963, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 80, + 1.800000000745058, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 80, + 1.8750000004656613, + 0.5000000004656613 + ] + } + } + }, + "111206": { + "Id": 111206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "111207": { + "Id": 111207, + "Name": "공적 지원금", + "Desc": "토파즈는 필드 입장 시 복순이를 소환하고, 복순이는 일정 범위 내의 일반 전리품과 저금통을 자동으로 탐색한다.\\n비술을 직접 발동하면 다음 전투에서 복순이가 첫 공격 발동 후 토파즈가 에너지를 #1[i]pt 회복한다.\\n비술을 발동하고 맵에서 적과 전투하여 승리한 후, 토파즈가 여전히 파티에 있으면 신용 포인트 획득 단계에서 추가로 소량의 신용 포인트를 획득한다. 신용 포인트는 하루에 최대 추가로 #2[i] 포인트 획득할 수 있다.\\n비술을 발동하고 시뮬레이션 우주, 차분화 우주에서 적과 전투하여 승리하면 추가로 소량의 우주 조각을 획득하고 낮은 확률로 랜덤 기물을 1개 획득한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 60, + 10000 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Normal.png", + "LevelUpSkillID": [ + 111201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1112001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_BP.png", + "LevelUpSkillID": [ + 111202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Ultra.png", + "LevelUpSkillID": [ + 111203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_Passive.png", + "LevelUpSkillID": [ + 111204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1112004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1112_Maze.png", + "LevelUpSkillID": [ + 111207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112101, + "PointName": "당좌 대월", + "PointDesc": "토파즈가 일반 공격으로 피해를 가할 시 추가 공격을 발동한 것으로 간주한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1112102, + "PointName": "금융 불안", + "PointDesc": "토파즈와 복순이가 화염 속성 약점을 보유한 적에게 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1112_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1112103, + "PointName": "기술적 조정", + "PointDesc": "복순이가 [폭증!] 상태일 때 적에게 공격을 발동하면 토파즈는 에너지를 추가로 #1[i]pt 회복한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112201, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1112101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112203, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1112202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112205, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1112102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1112205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112207, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1112103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1112208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1112210, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1112208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "화염 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 56.10000000009313, + "DefenceAdd": 2.8050000004004687, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 78.54000000050291, + "DefenceAdd": 2.8050000004004687, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 100.9800000009127, + "DefenceAdd": 2.8050000004004687, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 123.42000000039116, + "DefenceAdd": 2.8050000004004687, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 145.86000000080094, + "DefenceAdd": 2.8050000004004687, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.8050000004004687, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 190.74000000068918, + "DefenceAdd": 2.8050000004004687, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1112, + "Set4IDList": [ + 115, + 107, + 117 + ], + "Set2IDList": [ + 318, + 306, + 315 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1201": { + "Name": "청작", + "Desc": "선주 「나부」의 태복사 소속 점술가 겸 서고 관리자\\n업무를 너무 태만히 한 탓에 곧 「문지기」로 좌천될 예정이라고 한다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 79, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 80, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 81, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "qingque", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 120101, + "Name": "용감무쌍 물고기", + "Desc": "필살기가 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 120102, + "Name": "놀이판은 숙면 도우미", + "Desc": "청작이 패 뽑기를 발동할 때마다 즉각 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 1 + ] + }, + "3": { + "Id": 120103, + "Name": "무아지경 판쓸이", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 120104, + "Name": "운명을 건 마지막 패", + "Desc": "전투 스킬 발동 후 #1[i]%고정 확률로 [불구인] 상태를 획득하며, 이번 턴이 종료될 때까지 지속된다.\\n[불구인] 상태에서 일반 공격이나 강화된 일반 공격 발동 후 즉시 추가 공격을 1회 진행하고, 해당 목표에게 일반 공격이나 강화된 일반 공격 피해의 100%만큼 양자 속성 피해를 가한다", + "ParamList": [ + 0.24000000022351742 + ] + }, + "5": { + "Id": 120105, + "Name": "운발에 맡긴 승부", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 120106, + "Name": "승리를 위한 기다림", + "Desc": "일반 공격 강화 발동 후 전투 스킬 포인트를 1pt 회복한다", + "ParamList": [] + } + }, + "Skills": { + "120101": { + "Id": 120101, + "Name": "판쓸이", + "Desc": "가장 적은 문양의 경옥패 1장을 사용해 지정된 단일 적에게 청작 공격력 #1[i]%만큼의 양자 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120102": { + "Id": 120102, + "Name": "끝내기 조합", + "Desc": "즉시 경옥패를 #1[i]장 뽑는다. 자신이 가하는 피해가 #2[i]% 증가하며, 이번 턴이 끝날 때까지 지속된다. 최대 중첩수: #3[i]스택. 해당 전투 스킬 발동 후 그 턴은 종료되지 않는다", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.14000000013038516, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.1539999998640269, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.16799999959766865, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.18200000002980232, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.19599999976344407, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.21000000019557774, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.2275000000372529, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.24499999987892807, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.26250000041909516, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.2800000002607703, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.29399999999441206, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.3079999997280538, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.3220000001601875, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.3359999998938292, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.3500000003259629, + 4 + ] + } + } + }, + "120103": { + "Id": 120103, + "Name": "물고기 4장? 났다!", + "Desc": "모든 적에게 청작 공격력 #1[i]%만큼의 양자 속성 피해를 가하며, 같은 문양의 경옥패를 4장 획득한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529 + ] + } + } + }, + "120104": { + "Id": 120104, + "Name": "제원 경옥", + "Desc": "아군 턴 시작 시 청작은 3가지 각각 다른 문양의 경옥패에서 랜덤으로 1장을 뽑는다. 경옥패는 최대 4장까지 보유할 수 있다.\\n청작의 턴이 시작될 때 보유 중인 경옥패의 수가 4개고 문양이 모두 동일할 경우 경옥패를 전부 소모해서 [꿀조합]에 진입한다.\\n[꿀조합] 상태일 때는 전투 스킬을 다시 발동할 수 없으며 자신의 공격력이 #1[i]% 증가하고, 일반 공격 [판쓸이]가 [아싸~ 가오리!]로 강화되며 [아싸~ 가오리!] 발동 후 [꿀조합] 상태는 종료된다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7200000006705523 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7560000002849847 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7920000005979091 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8280000002123415 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.8640000005252659 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.9000000008381903 + ] + } + } + }, + "120106": { + "Id": 120106, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120107": { + "Id": 120107, + "Name": "나 홀로 대결의 즐거움", + "Desc": "비술을 사용한 이후에 전투에 진입할 경우 청작이 경옥패를 #1[i]장 뽑는다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + }, + "120108": { + "Id": 120108, + "Name": "아싸~ 가오리!", + "Desc": "지정된 단일 적에게 청작 공격력 #1[i]%만큼의 양자 속성 피해를 가하고, 인접한 목표에게 청작 공격력 #2[i]%만큼의 양자 속성 피해를 준다.\\n[아싸~ 가오리!]는 전투 스킬 포인트를 회복할 수 없다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.440000000409782, + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9200000008568168, + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.6400000005960464, + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.1200000001117587, + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.360000000335276, + 1.400000000372529 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Normal.png", + "LevelUpSkillID": [ + 120101, + 120108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1201001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_BP.png", + "LevelUpSkillID": [ + 120102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Ultra.png", + "LevelUpSkillID": [ + 120103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_Passive.png", + "LevelUpSkillID": [ + 120104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1201004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1201_Maze.png", + "LevelUpSkillID": [ + 120107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201101, + "PointName": "순위 경쟁", + "PointDesc": "전투 스킬 발동 시 전투 스킬 포인트를 1pt 회복한다. 해당 효과는 단일 전투에서 1회만 발동한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1201102, + "PointName": "한 끗 차", + "PointDesc": "전투 스킬로 자신이 가하는 피해 증가 효과가 추가로 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1201_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1201103, + "PointName": "맞불", + "PointDesc": "일반 공격 강화 발동 후 청작의 속도가 #1[i]% 증가한다. 지속 시간: 1턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201202, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1201101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1201202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1201202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1201102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201206, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1201205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1201205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1201103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201209, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1201103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1201210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 88.80000000074506, + "AttackAdd": 4.440000000409782, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 139.20000000018626, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 124.32000000029802, + "AttackAdd": 4.440000000409782, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 194.88000000081956, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 159.8400000007823, + "AttackAdd": 4.440000000409782, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 250.56000000052154, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 195.36000000033528, + "AttackAdd": 4.440000000409782, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 306.2400000002235, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 230.88000000081956, + "AttackAdd": 4.440000000409782, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 361.9200000008568, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 266.40000000037253, + "AttackAdd": 4.440000000409782, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 417.6000000005588, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110406, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 301.9200000008568, + "AttackAdd": 4.440000000409782, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 473.28000000026077, + "HPAdd": 6.96000000089407, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1201, + "Set4IDList": [ + 108, + 102, + 111 + ], + "Set2IDList": [ + 309, + 305, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1202": { + "Name": "정운", + "Desc": "선주 「나부」 천박사(天舶司)의 사절\\n상단을 따라 수많은 세계를 돌아다니며 무역과 연맹 관련 업무를 처리해왔다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "tingyun", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 120201, + "Name": "봄바람과 함께 불어오는 행운", + "Desc": "[축복] 효과를 획득한 단일 아군은 필살기 발동 후 속도가 #1[i]% 증가한다. 지속 시간:1턴", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 120202, + "Name": "군자의 은혜에는 미소로 화답을", + "Desc": "[축복] 효과를 보유 중인 단일 아군이 적을 처치할 경우 에너지를 #1[i]pt 회복한다. 해당 효과는 턴당 1회만 발동한다", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 120203, + "Name": "푸른 언덕의 유산", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 120204, + "Name": "명화는 변화하며 형세를 읽나니", + "Desc": "[축복] 효과로 인한 피해 배율이 #1[i]% 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 120205, + "Name": "여우의 태연함", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 120206, + "Name": "평화는 모두를 부유하게 할지니", + "Desc": "필살기로 회복하는 아군 대상의 에너지가 #1[i]pt 증가한다", + "ParamList": [ + 10 + ] + } + }, + "Skills": { + "120201": { + "Id": 120201, + "Name": "축객령", + "Desc": "지정된 단일 적에게 정운 공격력 #1[i]%의 번개 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120202": { + "Id": 120202, + "Name": "정다운 화음", + "Desc": "지정된 단일 아군에게 [축복]을 제공한다. 대상의 공격력을 #2[i]% 증가시키며 현재 정운 공격력의 #4[i]%을 넘지 않는다.\\n[축복]을 획득한 대상은 공격 발동 후 추가로 자신의 공격력 #1[i]%만큼의 번개 속성 추가 피해를 1회 가한다.\\n[축복] 지속 시간: #3[i]턴. 최근 정운의 전투 스킬 대상이 된 아군에게만 적용된다", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064, + 3, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.27499999990686774, + 3, + 0.1600000001490116 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.3000000002793968, + 3, + 0.17000000015832484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.32499999995343387, + 3, + 0.18000000016763806 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.3500000003259629, + 3, + 0.1900000001769513 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375, + 3, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.4062500004656613, + 3, + 0.21250000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.43750000023283064, + 3, + 0.2249999998603016 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.46875000069849193, + 3, + 0.23750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 3, + 0.25000000023283064 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.5250000001396984, + 3, + 0.26000000024214387 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.5500000005122274, + 3, + 0.2700000002514571 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.5750000001862645, + 3, + 0.2800000002607703 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.6000000005587935, + 3, + 0.29000000027008355 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.6250000002328306, + 3, + 0.3000000002793968 + ] + } + } + }, + "120203": { + "Id": 120203, + "Name": "상서로운 구름의 기원", + "Desc": "지정된 단일 아군의 에너지를 #1[i]pt 회복하고, 목표가 가하는 피해가 #3[i]% 증가한다. 지속 시간: #2[i]턴", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 50, + 2, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 50, + 2, + 0.2300000002142042 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 50, + 2, + 0.26000000024214387 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 50, + 2, + 0.29000000027008355 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 50, + 2, + 0.3200000002980232 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 50, + 2, + 0.3500000003259629 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 50, + 2, + 0.3875000001862645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 50, + 2, + 0.42500000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 50, + 2, + 0.4625000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 50, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 50, + 2, + 0.530000000493601 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 50, + 2, + 0.5600000005215406 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 50, + 2, + 0.5900000005494803 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 50, + 2, + 0.62000000057742 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 50, + 2, + 0.6500000006053597 + ] + } + } + }, + "120204": { + "Id": 120204, + "Name": "자전 폭풍", + "Desc": "적이 정운의 공격을 받으면 [축복]을 획득한 목표는 즉시 해당 대상에게 자신 공격력 #1[i]%만큼의 번개 속성 추가 피해를 가한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919 + ] + } + } + }, + "120206": { + "Id": 120206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120207": { + "Id": 120207, + "Name": "산들바람", + "Desc": "비술을 발동하는 즉시 자신의 에너지를 #1[i]pt 회복한다", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 50 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Normal.png", + "LevelUpSkillID": [ + 120201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1202001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_BP.png", + "LevelUpSkillID": [ + 120202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Ultra.png", + "LevelUpSkillID": [ + 120203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_Passive.png", + "LevelUpSkillID": [ + 120204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1202004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1202_Maze.png", + "LevelUpSkillID": [ + 120207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1202101, + "PointName": "청명", + "PointDesc": "전투 스킬 발동 시 정운의 속도가 #1[i]% 증가한다. 지속 시간: 1턴", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1202103, + "PointName": "형통", + "PointDesc": "정운의 턴 시작 시 즉시 자신의 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202202, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1202101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1202202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202204, + "PointName": "피해 강화•번개", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1202201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "번개 속성 피해 증가" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1202102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202206, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1202205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1202201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202208, + "PointName": "피해 강화•번개", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1202103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "번개 속성 피해 증가" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202209, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1202208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1202210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1202208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1202_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903 + ], + "PointID": 1202102, + "PointName": "재액 방지", + "PointDesc": "일반 공격이 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 72, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 115.20000000018626, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 100.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 161.28000000026077, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 129.6000000005588, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 207.36000000033528, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 158.40000000037253, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 253.44000000040978, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 187.20000000018626, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 299.5200000004843, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 216, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 345.6000000005588, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 244.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 391.6800000006333, + "HPAdd": 5.760000000707805, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1202, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 308, + 312, + 302 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 318, + 263 + ] + } + }, + "1203": { + "Name": "나찰", + "Desc": "늘 관을 지니고 다니는 하늘 밖의 바다에서 온 의술이 뛰어난 화외 행상", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "luocha", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 120301, + "Name": "생자 정화", + "Desc": "결계 효과 발동 시 모든 아군의 공격력이 #1[i]% 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 120302, + "Name": "정토의 선물", + "Desc": "전투 스킬 효과 발동 시 지정한 아군의 현재 HP 백분율이 50% 미만일 경우 나찰이 제공하는 치유량이 #1[i]% 증가하고, 현재 HP 백분율이 50% 이상일 경우, 나찰 공격력의 #2[i]%+#3[i]만큼 피해를 막아낼 수 있는 실드를 제공한다. 실드 지속 시간: #4[i]턴", + "ParamList": [ + 0.3000000002793968, + 0.18000000016763806, + 240, + 2 + ] + }, + "3": { + "Id": 120303, + "Name": "우인의 모색", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 120304, + "Name": "가시관의 심판", + "Desc": "결계 효과 발동 시 적은 허약 상태에 빠지고, 가하는 피해가 #1[i]% 감소한다", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 120305, + "Name": "수난의 흔적", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 120306, + "Name": "모두가 먼지로 돌아가리", + "Desc": "필살기 발동 시 #1[i]%고정 확률로 모든 적의 모든 속성 저항이 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "ParamList": [ + 1, + 0.20000000018626451, + 2 + ] + } + }, + "Skills": { + "120301": { + "Id": 120301, + "Name": "흑연의 가시", + "Desc": "지정한 단일 적에게 나찰 공격력의 #1[i]%만큼 허수 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120302": { + "Id": 120302, + "Name": "백화의 기원", + "Desc": "전투 스킬 발동 후 지정한 단일 아군의 HP를 즉시 나찰 공격력의 #1[i]%+#2[i]만큼 회복시키고, 나찰은 [백화의 순간]을 1스택 획득한다.\\n임의의 단일 아군의 현재 HP 백분율이 #3[i]% 이하가 되면, 나찰은 즉시 해당 아군에게 전투 스킬과 동일한 효과를 1회 발동한다. 해당 효과 발동 시 전투 스킬 포인트를 소모하지 않고, #4[i]턴 후 다시 발동할 수 있다", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 200, + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.42500000004656613, + 320, + 0.5000000004656613, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.45000000041909516, + 410, + 0.5000000004656613, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.47500000009313226, + 500, + 0.5000000004656613, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 560, + 0.5000000004656613, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5200000004842877, + 620, + 0.5000000004656613, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5400000005029142, + 665, + 0.5000000004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5600000005215406, + 710, + 0.5000000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5800000005401671, + 755, + 0.5000000004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 800, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.62000000057742, + 845, + 0.5000000004656613, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6400000005960464, + 890, + 0.5000000004656613, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6600000006146729, + 935, + 0.5000000004656613, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6800000006332994, + 980, + 0.5000000004656613, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7000000006519258, + 1025, + 0.5000000004656613, + 2 + ] + } + } + }, + "120303": { + "Id": 120303, + "Name": "망자의 숙원", + "Desc": "모든 적의 버프 효과#2[i]개 해제하고, 모든 적에게 나찰 공격력의 #1[i]%만큼 허수 속성 피해를 준다. 동시에 나찰은 [백화의 순간]을 1스택 획득한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529, + 1 + ] + } + } + }, + "120304": { + "Id": 120304, + "Name": "생명의 윤회", + "Desc": "[백화의 순간]이 #1[i]스택이 되면 나찰은 모든 [백화의 순간]을 소모해 결계를 펼친다.\\n결계에 있는 임의의 적이 피격되면 공격을 발동한 아군은 즉시 나찰 공격력 #2[f1]%+#4[i]만큼의 HP를 회복한다.\\n결계 효과 지속 시간: #3[i]턴. 나찰이 전투 불능 상태에 빠지면 결계도 해제된다", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.12000000011175871, + 2, + 60 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.12749999994412065, + 2, + 96 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.13499999977648258, + 2, + 123 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.14250000030733645, + 2, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.1500000001396984, + 2, + 168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.15599999972619116, + 2, + 186 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.16200000001117587, + 2, + 199.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.16799999959766865, + 2, + 213 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.17399999988265336, + 2, + 226.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.18000000016763806, + 2, + 240 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.18599999975413084, + 2, + 253.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.19200000003911555, + 2, + 267 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.19799999962560833, + 2, + 280.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.20399999991059303, + 2, + 294 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.21000000019557774, + 2, + 307.50000000046566 + ] + } + } + }, + "120306": { + "Id": 120306, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120307": { + "Id": 120307, + "Name": "우인의 연민", + "Desc": "비술 발동 후 다음 전투 시작 시 특성을 바로 발동한다", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Normal.png", + "LevelUpSkillID": [ + 120301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1203001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_BP.png", + "LevelUpSkillID": [ + 120302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Ultra.png", + "LevelUpSkillID": [ + 120303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_Passive.png", + "LevelUpSkillID": [ + 120304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1203004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1203_Maze.png", + "LevelUpSkillID": [ + 120307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1203101, + "PointName": "침지 소생", + "PointDesc": "전투 스킬 효과 발동 시 지정된 단일 아군의 디버프 효과#1[i]개 해제한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1203101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1203202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1203203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1203102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1203205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1203206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1203103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1203103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1203210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.07000000006519258, + 93 + ], + "PointID": 1203102, + "PointName": "쇄신의 몸", + "PointDesc": "결계 안에 있는 임의의 적이 아군에게 피격되면 공격자가 아닌 아군도 나찰 공격력의 #1[f1]%+#2[i]만큼 HP를 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1203_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7000000006519258 + ], + "PointID": 1203103, + "PointName": "유곡을 걷다", + "PointDesc": "제어류 디버프 상태 저항 확률이 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 174.24000000022352, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 243.93600000045262, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 313.6320000004489, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 383.3279999997467, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 453.02399999974295, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 522.7200000006706, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 592.4159999999683, + "HPAdd": 8.712000000523403, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1203, + "Set4IDList": [ + 101, + 121, + 102 + ], + "Set2IDList": [ + 301, + 317, + 308 + ], + "PropertyList3": [ + "HealRatioBase", + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 322, + 266 + ] + } + }, + "1204": { + "Name": "경원", + "Desc": "선주 연맹 천궁의 7대 장군 중 하나로 나부 운기군을 통솔하는 「신책 장군」\\n전대 「나부」 검술의 일인자를 스승으로 모셨으나, 무예로 이름을 날리지는 않았다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 31, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jingyuan", + "SPNeed": 130, + "BaseType": "Mage", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 120401, + "Name": "곤륜을 파괴하는 성류 뇌격", + "Desc": "[신군]이 공격 발동 시 지정된 단일 적에 인접한 목표에게 가하는 피해 배율이 추가로 증가한다. 증가 수치는 주목표에게 가한 피해 배율의 #1[i]%이다", + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Id": 120402, + "Name": "천지를 뒤흔드는 하늘의 창", + "Desc": "[신군]이 행동한 후 경원은 일반 공격, 전투 스킬, 필살기로 가하는 피해가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "3": { + "Id": 120403, + "Name": "하늘을 꿰뚫는 번개", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 120404, + "Name": "백사에 떨어진 칼날에 감긴 구름", + "Desc": "[신군]의 공격은 단마다 경원의 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 120405, + "Name": "목숨을 아끼지 않는 백전 장군", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 120406, + "Name": "적을 격멸하는 위령(威霊)", + "Desc": "[신군]의 공격은 단마다 지정된 적을 추가로 취약 상태에 빠트린다.\\n취약 상태의 적은 받는 피해가 #1[i]% 증가하며, 이번 [신군] 공격 종료까지 지속된다. 해당 효과 최대 중첩수: #2[i]스택", + "ParamList": [ + 0.12000000011175871, + 3 + ] + } + }, + "Skills": { + "120401": { + "Id": 120401, + "Name": "전광석화", + "Desc": "지정된 단일 적에게 경원 공격력 #1[i]%만큼의 번개 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120402": { + "Id": 120402, + "Name": "고공을 가르는 뇌전", + "Desc": "모든 적에게 경원 공격력 #1[i]%만큼의 번개 속성 피해를 가하고, 다음 턴 [신군]의 공격 단수가 #2[i]단 증가한다", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 2 + ] + } + } + }, + "120403": { + "Id": 120403, + "Name": "내가 곧 빛이니", + "Desc": "모든 적에게 경원 공격력 #1[i]%만큼의 번개 속성 피해를 가하고, 다음 턴 [신군]의 공격 단수가 #2[i]단 증가한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2800000002607703, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3600000003352761, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.440000000409782, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5200000004842877, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6000000005587935, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7000000006519258, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.800000000745058, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9000000008381903, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.080000000074506, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.1600000001490116, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.2400000002235174, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.3200000002980232, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.400000000372529, + 3 + ] + } + } + }, + "120404": { + "Id": 120404, + "Name": "퇴마의 형신", + "Desc": "전투 시작 시 [신군]을 소환한다. [신군]은 기본 상태에서 속도 #1[i]pt 및 공격 단수 #4[i]단을 보유하며, 행동 시 추가 공격을 발동한다. 공격 단수마다 임의의 단일 적에게 경원 공격력 #2[i]%만큼의 번개 속성 피해를 주고, 인접한 목표에게 주목표 #5[i]%만큼의 번개 속성 피해를 가한다.\\n[신군]은 최대 #6[i]단의 공격 단수를 누적할 수 있으며 공격 단수가 1단 증가할 때마다 속도가 #3[i]pt 증가하고, 행동 종료 후 속도와 공격 단수가 기본 상태로 회복된다.\\n경원이 전투 불능 상태에 빠지면 [신군]은 사라진다.\\n경원이 제어류 디버프 상태에 빠지면 [신군]도 행동할 수 없다", + "Type": null, + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 60, + 0.33000000030733645, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 60, + 0.3630000001285225, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 60, + 0.3959999999497086, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 60, + 0.42899999977089465, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 60, + 0.46200000029057264, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 60, + 0.4950000001117587, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 60, + 0.5362500005867332, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 60, + 0.5775000003632158, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 60, + 0.6187500008381903, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 60, + 0.6600000006146729, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 60, + 0.693000000435859, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 60, + 0.726000000257045, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 60, + 0.7590000000782311, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 60, + 0.7920000005979091, + 10, + 3, + 0.25000000023283064, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 60, + 0.8250000004190952, + 10, + 3, + 0.25000000023283064, + 10 + ] + } + } + }, + "120406": { + "Id": 120406, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120407": { + "Id": 120407, + "Name": "위령 소환", + "Desc": "비술을 발동하면 다음 전투 시작 시 [신군]의 첫 번째 턴 공격 단수가 #1[i]단 증가한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Normal.png", + "LevelUpSkillID": [ + 120401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1204001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_BP.png", + "LevelUpSkillID": [ + 120402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Ultra.png", + "LevelUpSkillID": [ + 120403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_Passive.png", + "LevelUpSkillID": [ + 120404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1204004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1204_Maze.png", + "LevelUpSkillID": [ + 120407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1204101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1204202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1204202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1204102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1204205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1204205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1204103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1204103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1204210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 6, + 0.25000000023283064 + ], + "PointID": 1204101, + "PointName": "적진 격파", + "PointDesc": "다음 턴에서 [신군]의 공격 단수가 #1[i]단 이상일 경우, 신군의 치명타 피해가 #2[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1204102, + "PointName": "사전 대비", + "PointDesc": "전투 시작 시 즉시 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1204_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1204103, + "PointName": "장수 파견", + "PointDesc": "전투 스킬 발동 후 치명타 확률이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1204, + "Set4IDList": [ + 115, + 109, + 122 + ], + "Set2IDList": [ + 318, + 306, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1205": { + "Name": "블레이드", + "Desc": "「스텔라론 헌터」의 멤버, 전장에 몸을 내던지는 검객\\n「운명의 노예」에 충성을 다하며 무서운 자가 치유 능력을 가지고 있다", + "CharaInfo": { + "Camp": "스텔라론 헌터", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "blade", + "SPNeed": 130, + "BaseType": "Warrior", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 120501, + "Name": "검록의 끝, 지옥변상", + "Desc": "필살기로 지정된 단일 적에게 가하는 피해가 이번 전투에서 누적 손실한 블레이드 HP의 #1[i]%만큼 추가로 증가한다.\\n이번 전투에서 누적 손실한 HP는 블레이드 HP 최대치의 #2[i]%를 넘지 않는다. 필살기 발동 후 리셋하고 다시 누적된다", + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Id": 120502, + "Name": "흩어진 옛 꿈, 갖가지 여한", + "Desc": "블레이드가 [지옥변] 상태일 때 치명타 확률이 #1[i]% 증가한다", + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "Id": 120503, + "Name": "제련한 현철, 서늘한 빛", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 120504, + "Name": "황천의 기로, 육신의 회생", + "Desc": "현재 HP 백분율이 50%를 초과한 상태에서 50% 이하로 떨어지면 HP 최대치가 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "5": { + "Id": 120505, + "Name": "시왕의 사형 선고, 마주한 업경", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 120506, + "Name": "죽음의 끝, 돌아온 영혼", + "Desc": "충전 스택 수 상한이 4스택으로 감소한다. 특성으로 발동되는 추가 공격으로 가하는 피해가 블레이드 HP 최대치의 #1[i]%만큼 추가로 증가한다", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "120501": { + "Id": 120501, + "Name": "지리검(支離劍)", + "Desc": "지정된 단일 적에게 블레이드 공격력의 #1[i]%만큼 바람 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120502": { + "Id": 120502, + "Name": "지옥변", + "Desc": "블레이드가 HP를 자신 HP 최대치의 #1[i]%만큼 소모해 [지옥변(地獄變)] 상태에 진입한다.\\n[지옥변] 상태에서는 전투 스킬을 발동할 수 없으며, 자신이 가하는 피해가 #4[i]% 증가하고, 일반 공격 [지리검(支離劍)]이 강화되어 [무간검수(無間劍樹)]로 바뀐다. 지속 시간: #2[i]턴\\n블레이드의 현재 HP가 부족할 때 전투 스킬을 발동하면 HP가 1pt까지 감소한다.\\n해당 전투 스킬로 에너지를 회복할 수 없고, 발동 후 그 턴은 종료되지 않는다", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.1479999995790422 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.17599999974481761 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.20399999991059303 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.23200000007636845 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.26000000024214387 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.2949999999254942 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.33000000030733645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.3649999999906868 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.4279999998398125 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.45600000000558794 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.48400000017136335 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5120000003371388 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5400000005029142 + ] + } + } + }, + "120503": { + "Id": 120503, + "Name": "사형선고", + "Desc": "블레이드의 현재 HP가 최대치의 50%로 전환되고 단일 적에게 블레이드 공격력의 #1[i]%+HP 최대치의 #2[i]%+이번 전투에서 누적 손실한 HP의 #5[i]%만큼 바람 속성 피해를 가한다. 또한 인접한 목표에 블레이드 공격력의 #3[f1]%+HP 최대치의 #4[i]%+이번 전투에서 누적 손실한 HP의 #6[i]%만큼 바람 속성 피해를 가한다.\\n이번 전투에서 누적 손실한 HP는 블레이드 HP 최대치의 #7[i]%를 넘을 수 없다. 필살기 발동 후 리셋하고 다시 누적된다", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 0.6000000005587935, + 0.09599999967031181, + 0.24000000022351742, + 0.6000000005587935, + 0.24000000022351742, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.2559999998193234, + 0.6400000005960464, + 0.10240000020712614, + 0.2559999998193234, + 0.6400000005960464, + 0.2559999998193234, + 0.9000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.27200000011362135, + 0.6800000006332994, + 0.10880000004544854, + 0.27200000011362135, + 0.6800000006332994, + 0.27200000011362135, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 0.7200000006705523, + 0.11519999988377094, + 0.28799999970942736, + 0.7200000006705523, + 0.28799999970942736, + 0.9000000008381903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3040000000037253, + 0.7600000007078052, + 0.12160000042058527, + 0.3040000000037253, + 0.7600000007078052, + 0.3040000000037253, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3200000002980232, + 0.8000000007450581, + 0.12799999956041574, + 0.3200000002980232, + 0.8000000007450581, + 0.3200000002980232, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3400000003166497, + 0.8500000007916242, + 0.1359999997075647, + 0.3400000003166497, + 0.8500000007916242, + 0.3400000003166497, + 0.9000000008381903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3600000003352761, + 0.9000000008381903, + 0.14399999985471368, + 0.3600000003352761, + 0.9000000008381903, + 0.3600000003352761, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3800000003539026, + 0.9500000008847564, + 0.15200000000186265, + 0.3800000003539026, + 0.9500000008847564, + 0.3800000003539026, + 0.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 1, + 0.1600000001490116, + 0.40000000037252903, + 1, + 0.40000000037252903, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.41599999996833503, + 1.040000000037253, + 0.166399999987334, + 0.41599999996833503, + 1.040000000037253, + 0.41599999996833503, + 0.9000000008381903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.43200000026263297, + 1.0800000000745058, + 0.17280000052414834, + 0.43200000026263297, + 1.0800000000745058, + 0.43200000026263297, + 0.9000000008381903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.44799999985843897, + 1.1200000001117587, + 0.17919999966397882, + 0.44799999985843897, + 1.1200000001117587, + 0.44799999985843897, + 0.9000000008381903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.4640000001527369, + 1.1600000001490116, + 0.18560000020079315, + 0.4640000001527369, + 1.1600000001490116, + 0.4640000001527369, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.48000000044703484, + 1.2000000001862645, + 0.19200000003911555, + 0.48000000044703484, + 1.2000000001862645, + 0.48000000044703484, + 0.9000000008381903 + ] + } + } + }, + "120504": { + "Id": 120504, + "Name": "찰나의 선물", + "Desc": "블레이드가 피해를 받거나 HP를 소모하면 충전을 1스택 획득한다. 최대 중첩수: 5스택. 해당 효과는 피격될 때마다 최대 1스택 중첩된다.\\n최대치까지 중첩되면 즉시 모든 적에게 추가 공격을 1회 발동한다. 블레이드 공격력의 #2[i]%+HP 최대치의 #4[i]%만큼 바람 속성 피해를 가하고 블레이드 HP 최대치의 #3[i]%만큼 HP를 회복한다. 추가 공격 발동 후 모든 충전을 소모한다", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.22000000020489097, + 0.25000000023283064, + 0.5500000005122274 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.24200000008568168, + 0.25000000023283064, + 0.6050000002142042 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.2639999999664724, + 0.25000000023283064, + 0.6600000006146729 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.2859999998472631, + 0.25000000023283064, + 0.7150000003166497 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.3079999997280538, + 0.25000000023283064, + 0.7700000007171184 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.33000000030733645, + 0.25000000023283064, + 0.8250000004190952 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.35750000015832484, + 0.25000000023283064, + 0.89375000144355 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.3850000000093132, + 0.25000000023283064, + 0.962500001071021 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.41250000055879354, + 0.25000000023283064, + 1.0312500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.44000000040978193, + 0.25000000023283064, + 1.1000000000931323 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.46200000029057264, + 0.25000000023283064, + 1.154999999795109 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.48400000017136335, + 0.25000000023283064, + 1.2100000001955777 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.5060000000521541, + 0.25000000023283064, + 1.2649999998975545 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.5279999999329448, + 0.25000000023283064, + 1.3200000002980232 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.5500000005122274, + 0.25000000023283064, + 1.375 + ] + } + } + }, + "120506": { + "Id": 120506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120507": { + "Id": 120507, + "Name": "업도(業道)의 바람", + "Desc": "적을 바로 공격하며, 전투 진입 후 블레이드 HP 최대치의 #2[i]%만큼 HP를 소모하고, 모든 적에게 블레이드 HP 최대치의 #1[i]%만큼 바람 속성 피해를 가한다.\\n현재 HP가 부족할 때 비술을 발동하면 블레이드의 현재 HP가 1pt까지 감소한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "120508": { + "Id": 120508, + "Name": "무간검수(無間劍樹)", + "Desc": "블레이드 HP 최대치의 #1[i]%만큼 HP를 소모해 지정된 단일 적에게 블레이드 공격력의 #2[i]%+HP 최대치의 #4[i]%만큼 바람 속성 피해를 가한다. 동시에 인접한 목표에 블레이드 공격력의 #3[i]%+HP 최대치의 #5[i]%만큼 바람 속성 피해를 가한다.\\n현재 HP가 부족할 때 [무간검수(無間劍樹)]를 발동하면 블레이드의 현재 HP가 1pt까지 감소한다.\\n[무간검수]로 전투 스킬 포인트를 회복할 수 없다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 0.0800000000745058, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 0.24000000022351742, + 0.09599999967031181, + 0.6000000005587935, + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 0.2800000002607703, + 0.11199999996460974, + 0.7000000006519258, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 0.3200000002980232, + 0.12799999956041574, + 0.8000000007450581, + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 0.3600000003352761, + 0.14399999985471368, + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 0.40000000037252903, + 0.1600000001490116, + 1, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 0.44000000040978193, + 0.17599999974481761, + 1.1000000000931323, + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 0.48000000044703484, + 0.19200000003911555, + 1.2000000001862645, + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 0.5200000004842877, + 0.20799999963492155, + 1.3000000002793968, + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.5600000005215406, + 0.22399999992921948, + 1.400000000372529, + 0.5600000005215406 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 120501, + 120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Maze.png", + "LevelUpSkillID": [ + 120507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1205101, + "PointName": "무한한 수명", + "PointDesc": "블레이드의 현재 HP 백분율이 HP 최대치의 50% 이하인 경우, 치유 받을 때의 회복량이 #1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 100 + ], + "PointID": 1205102, + "PointName": "견디고 견딘 죽음", + "PointDesc": "[무간검수] 발동 후 약점 격파 상태인 적을 명중하면, 블레이드는 자신의 HP를 HP 최대치의 #1[i]%+#2[i]만큼 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1205103, + "PointName": "괴겁의 폐망", + "PointDesc": "특성으로 발동된 추가 공격 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205201, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1205101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205203, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1205202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1205203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205205, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1205102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1205205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205207, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1205206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1205103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1205210, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1120501, + "Name": "검록의 끝, 지옥변상", + "Desc": "강화된 일반 공격과 필살기로 지정된 단일 적에게 가하는 피해가 이번 전투에서 누적 손실한 블레이드 HP의 #1[i]%만큼 추가로 증가한다.\\n이번 전투에서 누적 손실한 HP는 블레이드 HP 최대치의 #2[i]%를 넘지 않는다. 필살기 발동 후 리셋하고 다시 누적된다", + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Id": 1120502, + "Name": "흩어진 옛 꿈, 갖가지 여한", + "Desc": "블레이드가 [지옥변] 상태일 때 치명타 확률이 #1[i]% 증가한다", + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "Id": 1120503, + "Name": "제련한 현철, 서늘한 빛", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 1120504, + "Name": "황천의 기로, 육신의 회생", + "Desc": "현재 HP 백분율이 50%를 초과한 상태에서 50% 이하로 떨어지면 HP 최대치가 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택", + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "5": { + "Id": 1120505, + "Name": "시왕의 사형 선고, 마주한 업경", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 1120506, + "Name": "죽음의 끝, 돌아온 영혼", + "Desc": "충전 스택 수 상한이 4스택으로 감소한다. 특성으로 발동되는 추가 공격으로 가하는 피해가 블레이드 HP 최대치의 #1[i]%만큼 추가로 증가한다", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "1120501": { + "Id": 1120501, + "Name": "지리검(支離劍)", + "Desc": "지정된 단일 적에게 블레이드 HP 최대치의 #1[i]%만큼 바람 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "1120502": { + "Id": 1120502, + "Name": "지옥변(地獄變)", + "Desc": "블레이드가 HP를 자신의 HP 최대치의 #1[i]%만큼 소모해 [지옥변(地獄變)] 상태에 진입한다.\\n[지옥변] 상태에서는 전투 스킬을 발동할 수 없으며 자신이 가하는 피해가 #4[i]% 증가하고, 적에게 피격될 확률이 대폭 증가하며 일반 공격 [지리검(支離劍)]이 [무간검수(無間劍樹)]로 강화된다, 지속 시간: #2[i]턴\\n블레이드의 현재 HP가 부족할 때 전투 스킬을 발동하면 HP가 1pt까지 감소한다.\\n해당 전투 스킬로 에너지를 회복할 수 없고, 발동 후 이번 턴은 종료되지 않는다", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.12000000011175871, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.1479999995790422, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.17599999974481761, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.20399999991059303, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.23200000007636845, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.26000000024214387, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.2949999999254942, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.33000000030733645, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.3649999999906868, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.40000000037252903, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.4279999998398125, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.45600000000558794, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.48400000017136335, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5120000003371388, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3, + 1, + 0.5400000005029142, + 5 + ] + } + } + }, + "1120503": { + "Id": 1120503, + "Name": "사형선고", + "Desc": "블레이드의 현재 HP가 HP 최대치의 50%로 전환되고 단일 적에게 블레이드 HP 최대치의 #1[i]%+이번 전투에서 누적 손실한 HP의 #5[i]%만큼 바람 속성 피해를 가한다. 또한 인접한 목표에게 블레이드 HP 최대치의 #3[f1]%+이번 전투에서 누적 손실한 HP의 #6[i]%만큼 바람 속성 피해를 가한다.\\n이번 전투에서 누적 손실한 HP는 블레이드 HP 최대치의 #7[i]%를 넘을 수 없으며, 필살기 발동 후 리셋하고 다시 누적된다", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.6000000005587935, + 0.3600000003352761, + 0.3000000002793968, + 0.6000000005587935, + 0.3000000002793968, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.6400000005960464, + 0.3840000000782311, + 0.3200000002980232, + 0.6400000005960464, + 0.3200000002980232, + 0.9000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.6800000006332994, + 0.40799999982118607, + 0.3400000003166497, + 0.6800000006332994, + 0.3400000003166497, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.7200000006705523, + 0.43200000026263297, + 0.3600000003352761, + 0.7200000006705523, + 0.3600000003352761, + 0.9000000008381903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.7600000007078052, + 0.45600000000558794, + 0.3800000003539026, + 0.7600000007078052, + 0.3800000003539026, + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.8000000007450581, + 0.48000000044703484, + 0.40000000037252903, + 0.8000000007450581, + 0.40000000037252903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.8500000007916242, + 0.5100000004749745, + 0.42500000004656613, + 0.8500000007916242, + 0.42500000004656613, + 0.9000000008381903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.9000000008381903, + 0.5400000005029142, + 0.45000000041909516, + 0.9000000008381903, + 0.45000000041909516, + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.9500000008847564, + 0.5700000005308539, + 0.47500000009313226, + 0.9500000008847564, + 0.47500000009313226, + 0.9000000008381903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1, + 0.6000000005587935, + 0.5000000004656613, + 1, + 0.5000000004656613, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 1.040000000037253, + 0.6240000003017485, + 0.5200000004842877, + 1.040000000037253, + 0.5200000004842877, + 0.9000000008381903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 1.0800000000745058, + 0.6480000000447035, + 0.5400000005029142, + 1.0800000000745058, + 0.5400000005029142, + 0.9000000008381903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 1.1200000001117587, + 0.6720000004861504, + 0.5600000005215406, + 1.1200000001117587, + 0.5600000005215406, + 0.9000000008381903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 1.1600000001490116, + 0.6960000002291054, + 0.5800000005401671, + 1.1600000001490116, + 0.5800000005401671, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 1.2000000001862645, + 0.7200000006705523, + 0.6000000005587935, + 1.2000000001862645, + 0.6000000005587935, + 0.9000000008381903 + ] + } + } + }, + "1120504": { + "Id": 1120504, + "Name": "찰나의 선물", + "Desc": "블레이드가 피해를 받거나 HP를 소모하면 충전을 1스택 획득한다, 최대 중첩수: 5스택. 해당 효과는 피격될 때마다 최대 1스택 중첩된다.\\n최대치까지 중첩되면 즉시 모든 적에게 추가 공격을 1회 발동한다. 블레이드 HP 최대치의 #2[i]%만큼 바람 속성 피해를 가하고 블레이드 HP 최대치의 #3[i]%만큼 HP를 회복한다. 추가 공격 발동 후 모든 충전을 소모한다", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.6500000006053597, + 0.25000000023283064, + 0.6500000006053597 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.7150000003166497, + 0.25000000023283064, + 0.7150000003166497 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.7800000007264316, + 0.25000000023283064, + 0.7800000007264316 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.8450000004377216, + 0.25000000023283064, + 0.8450000004377216 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.9100000008475035, + 0.25000000023283064, + 0.9100000008475035 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.9750000005587935, + 0.25000000023283064, + 0.9750000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1.0562500001396984, + 0.25000000023283064, + 1.0562500001396984 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1.1374999999534339, + 0.25000000023283064, + 1.1374999999534339 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1.2187500004656613, + 0.25000000023283064, + 1.2187500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.3000000002793968, + 0.25000000023283064, + 1.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1.3649999999906868, + 0.25000000023283064, + 1.3649999999906868 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1.4300000004004687, + 0.25000000023283064, + 1.4300000004004687 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1.4950000001117587, + 0.25000000023283064, + 1.4950000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1.5600000005215406, + 0.25000000023283064, + 1.5600000005215406 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1.6250000002328306, + 0.25000000023283064, + 1.6250000002328306 + ] + } + } + }, + "1120506": { + "Id": 1120506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1120507": { + "Id": 1120507, + "Name": "업도(業道)의 바람", + "Desc": "적을 즉시 공격하며, 전투 진입 후 블레이드 HP 최대치의 #2[i]%만큼 HP를 소모하고, 모든 적에게 블레이드 HP 최대치의 #1[i]%만큼 바람 속성 피해를 가한다.\\n현재 HP가 부족할 때 비술을 발동하면 블레이드의 현재 HP가 1pt까지 감소한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "1120508": { + "Id": 1120508, + "Name": "무간검수(無間劍樹)", + "Desc": "블레이드 HP 최대치의 #1[i]%만큼 HP를 소모해 지정된 단일 적에게 블레이드 HP 최대치의 #2[i]%만큼 바람 속성 피해를 가한다. 동시에 인접한 목표에게 블레이드 HP 최대치의 #3[i]%만큼 바람 속성 피해를 가한다.\\n현재 HP가 부족할 때 [무간검수(無間劍樹)]를 발동하면 블레이드의 현재 HP가 1pt까지 감소한다.\\n[무간검수]로 전투 스킬 포인트를 회복할 수 없다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.6500000006053597, + 0.26000000024214387, + 0.6500000006053597, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 0.7800000007264316, + 0.31200000015087426, + 0.7800000007264316, + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 0.9100000008475035, + 0.36400000005960464, + 0.9100000008475035, + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 1.040000000037253, + 0.41599999996833503, + 1.040000000037253, + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 1.1700000001583248, + 0.4679999998770654, + 1.1700000001583248, + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 1.3000000002793968, + 0.5200000004842877, + 1.3000000002793968, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 1.4300000004004687, + 0.5720000003930181, + 1.4300000004004687, + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 1.5600000005215406, + 0.6240000003017485, + 1.5600000005215406, + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 1.6900000006426126, + 0.6760000002104789, + 1.6900000006426126, + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 1.8200000007636845, + 0.7280000001192093, + 1.8200000007636845, + 0.5600000005215406 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Normal.png", + "LevelUpSkillID": [ + 1120501, + 1120508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11205001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_BP.png", + "LevelUpSkillID": [ + 1120502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Ultra.png", + "LevelUpSkillID": [ + 1120503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_Passive.png", + "LevelUpSkillID": [ + 1120504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11205004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1205_Maze.png", + "LevelUpSkillID": [ + 1120507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 11205101, + "PointName": "무한한 수명", + "PointDesc": "블레이드의 현재 HP 백분율이 HP 최대치의 50% 이하인 경우, 치유 받을 때의 회복량이 #1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 100 + ], + "PointID": 11205102, + "PointName": "견디고 견딘 죽음", + "PointDesc": "[무간검수] 발동 후 약점 격파 상태의 적을 명중하면, 블레이드는 자신의 HP를 HP 최대치의 #1[i]%+#2[i]만큼 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1205_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 15 + ], + "PointID": 11205103, + "PointName": "괴겁의 폐망", + "PointDesc": "특성으로 발동된 추가 공격 피해가 #1[i]% 증가하고 에너지를 추가로 #2[i]pt 회복한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205201, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11205101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205203, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11205202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11205203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205205, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11205102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11205205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205207, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11205206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11205103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11205210, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11205208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1205, + "Set4IDList": [ + 113, + 110, + 102 + ], + "Set2IDList": [ + 306, + 309, + 302 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1206": { + "Name": "소상", + "Desc": "선주 「요청(曜青)」출생, 「나부」의 운기군을 찾아가 수련을 받은 신병\\n어머니가 주신 가문의 검을 몸에 지니고 앞으로의 미래를 동경하고 있다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 31, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 32, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "sushang", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 120601, + "Name": "여유만만", + "Desc": "약점 격파 상태의 적에게 전투 스킬 발동 후 전투 스킬 포인트를 1pt 회복한다", + "ParamList": [] + }, + "2": { + "Id": 120602, + "Name": "단련된 신체", + "Desc": "[검세] 발동 후 소상이 받는 피해가 #1[i]% 감소한다. 지속 시간: 1턴", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 120603, + "Name": "전설의 검류", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 120604, + "Name": "넓은 아량", + "Desc": "소상의 격파 특수효과가 #1[i]% 증가한다", + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Id": 120605, + "Name": "태공의 신의", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 120606, + "Name": "상선약수", + "Desc": "특성의 가속 효과는 최대 2스택 중첩 가능하고 전투 진입 후 소상은 즉시 특성의 가속 효과를 1스택 획득한다", + "ParamList": [] + } + }, + "Skills": { + "120601": { + "Id": 120601, + "Name": "운기검경 • 소예", + "Desc": "지정된 단일 적에게 소상 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120602": { + "Id": 120602, + "Name": "운기검경 • 산경", + "Desc": "지정된 단일 적에게 소상 공격력 #1[i]%만큼의 물리 속성 피해를 준다. 동시에 마지막 일격 후 #3[i]% 확률로 [검세]를 발동해 적에게 소상 공격력 #2[i]%만큼의 물리 속성 추가 피해를 준다.\\n해당 목표가 약점 격파 상태일 경우 [검세]는 반드시 발동한다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.0500000000465661, + 0.5000000004656613, + 0.33000000030733645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.154999999795109, + 0.5500000005122274, + 0.33000000030733645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2600000002421439, + 0.6000000005587935, + 0.33000000030733645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3649999999906868, + 0.6500000006053597, + 0.33000000030733645 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.4700000004377216, + 0.7000000006519258, + 0.33000000030733645 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5750000001862645, + 0.7500000006984919, + 0.33000000030733645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.706250000745058, + 0.8125000009313226, + 0.33000000030733645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.8375000006053597, + 0.8750000004656613, + 0.33000000030733645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.9687500011641532, + 0.9375000006984919, + 0.33000000030733645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.1000000000931323, + 1, + 0.33000000030733645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.204999999841675, + 1.0500000000465661, + 0.33000000030733645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.31000000028871, + 1.1000000000931323, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.415000000037253, + 1.1500000001396984, + 0.33000000030733645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5200000004842877, + 1.2000000001862645, + 0.33000000030733645 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6250000002328306, + 1.2500000002328306, + 0.33000000030733645 + ] + } + } + }, + "120603": { + "Id": 120603, + "Name": "태허형온 • 촉야", + "Desc": "지정된 단일 적에게 소상 공격력 #1[i]%만큼의 물리 속성 피해를 주고 소상은 즉시 행동한다. 동시에 소상의 공격력이 #4[i]% 증가하고 전투 스킬 발동 시 [검세]의 발동 판정이 추가로 2회 증가한다. 지속 시간: #2[i]턴\\n추가 판정으로 발동된 [검세]의 피해는 기존 피해의 #3[i]%이다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9200000008568168, + 2, + 0.5000000004656613, + 0.18000000016763806 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.04799999948591, + 2, + 0.5000000004656613, + 0.19200000003911555 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.1759999997448176, + 2, + 0.5000000004656613, + 0.20399999991059303 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.3040000000037253, + 2, + 0.5000000004656613, + 0.21599999978207052 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.432000000262633, + 2, + 0.5000000004656613, + 0.227999999653548 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5600000005215406, + 2, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.7200000006705523, + 2, + 0.5000000004656613, + 0.2549999998882413 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.880000000819564, + 2, + 0.5000000004656613, + 0.2700000002514571 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.040000000037253, + 2, + 0.5000000004656613, + 0.28499999991618097 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.2000000001862645, + 2, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.3279999997466803, + 2, + 0.5000000004656613, + 0.31200000015087426 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.456000000005588, + 2, + 0.5000000004656613, + 0.32400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.5840000002644956, + 2, + 0.5000000004656613, + 0.3359999998938292 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.7120000005234033, + 2, + 0.5000000004656613, + 0.3479999997653067 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.840000000782311, + 2, + 0.5000000004656613, + 0.3600000003352761 + ] + } + } + }, + "120604": { + "Id": 120604, + "Name": "자유자재의 칼날", + "Desc": "필드 위 적의 약점이 격파될 시 소상의 속도가 #1[f2]% 증가한다. 지속 시간: #2[i]턴", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 2 + ] + } + } + }, + "120606": { + "Id": 120606, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120607": { + "Id": 120607, + "Name": "운기검경 • 함성", + "Desc": "적을 바로 공격하며, 전투 진입 후 모든 적에게 소상 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Normal.png", + "LevelUpSkillID": [ + 120601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1206001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_BP.png", + "LevelUpSkillID": [ + 120602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Ultra.png", + "LevelUpSkillID": [ + 120603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_Passive.png", + "LevelUpSkillID": [ + 120604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1206004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1206_Maze.png", + "LevelUpSkillID": [ + 120607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1206101, + "PointName": "순수", + "PointDesc": "현재 HP 백분율이 #1[i]% 이하인 경우, 적에게 피격될 확률이 감소한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0249999996740371, + 10 + ], + "PointID": 1206102, + "PointName": "응수", + "PointDesc": "[검세]를 1회 발동할 때마다 [검세]가 가하는 피해가 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1206_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1206103, + "PointName": "섬멸", + "PointDesc": "일반 공격 혹은 전투 스킬 발동 후 필드 위의 적이 약점 격파 상태일 경우 소상의 행동 게이지가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1206101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1206202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1206102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1206205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1206103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1206208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1206210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1206208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 57, + "DefenceAdd": 2.850000000791624, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 79.80000000074506, + "DefenceAdd": 2.850000000791624, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 102.6000000005588, + "DefenceAdd": 2.850000000791624, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 125.40000000037253, + "DefenceAdd": 2.850000000791624, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 148.20000000018626, + "DefenceAdd": 2.850000000791624, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 171, + "DefenceAdd": 2.850000000791624, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110401, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 193.80000000074506, + "DefenceAdd": 2.850000000791624, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1206, + "Set4IDList": [ + 105, + 111, + 119 + ], + "Set2IDList": [ + 311, + 307, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 353, + 298 + ] + } + }, + "1207": { + "Name": "어공", + "Desc": "선주「나부」 천박사(天舶司)의 수장이다. 수많은 전장을 거쳐온 노련한 비행사이자 궁수다.\\n지금은 쏟아져 내리는 공무 때문에 몸을 빼기 어려운 상태다.", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "yukong", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 120701, + "Name": "침과대단(枕戈待旦)의 각오", + "Desc": "전투 진입 시 모든 아군의 속도가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Id": 120702, + "Name": "창공을 휘모는 질주", + "Desc": "임의의 단일 아군의 현재 에너지가 에너지 최대치일 시 어공은 추가로 에너지를 #1[i]pt 회복한다. 해당 효과는 단일 아군마다 1회만 발동되며, 어공이 필살기를 발동한 후 해당 효과의 발동 횟수는 초기화된다", + "ParamList": [ + 5 + ] + }, + "3": { + "Id": 120703, + "Name": "맹렬한 집중 사격", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 120704, + "Name": "효시의 울림", + "Desc": "[활시위 호령] 효과 보유 시 어공이 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Id": 120705, + "Name": "관록의 명사수", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 120706, + "Name": "뇌성벽력의 활시위", + "Desc": "어공이 필살기를 발동할 경우 먼저 즉시 [활시위 호령] #1[i]스택을 획득한다", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "120701": { + "Id": 120701, + "Name": "떠도는 화살", + "Desc": "지정된 단일 적에게 어공 공격력 #1[i]%만큼의 허수 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120702": { + "Id": 120702, + "Name": "천궁에 울리는 활", + "Desc": "[활시위 호령] #1[i]스택을 획득한다. (최대 2스택 보유) 어공이 [활시위 호령] 효과를 보유할 경우 모든 아군의 공격력이 #2[i]% 증가한다. 아군의 턴이 종료될 때마다 어공의 [활시위 호령] 효과가 1스택 감소한다.\\n어공이 전투 스킬을 발동해 [활시위 호령]을 획득한 턴은 [활시위 호령]이 감소하지 않는다", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.44000000040978193 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.48000000044703484 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.5600000005215406 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.7000000006519258 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.7500000006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.840000000782311 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.8800000008195639 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.9600000008940697 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "120703": { + "Id": 120703, + "Name": "창공 꿰뚫기", + "Desc": "필살기 발동 시, 어공이 [활시위 호령]을 보유 중이면 추가로 모든 아군의 치명타 확률이 #2[f1]%, 치명타 피해가 #3[i]% 증가한다. 동시에 지정된 단일 적에게 어공 공격력 #1[i]%만큼의 허수 속성 피해를 가한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2800000002607703, + 0.21000000019557774, + 0.3900000003632158 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.432000000262633, + 0.21699999971315265, + 0.41599999996833503 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.5840000002644956, + 0.22399999992921948, + 0.4420000002719462 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.7360000002663583, + 0.23100000014528632, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.888000000268221, + 0.23799999966286123, + 0.4940000001806766 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.040000000037253, + 0.24499999987892807, + 0.5200000004842877 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.230000000214204, + 0.25375000084750354, + 0.5525000006891787 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.4200000003911555, + 0.26250000041909516, + 0.5850000001955777 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.6100000005681068, + 0.2712500006891787, + 0.6175000004004687 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.800000000745058, + 0.2800000002607703, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.9520000007469207, + 0.2869999997783452, + 0.6760000002104789 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.103999999817461, + 0.29399999999441206, + 0.7020000005140901 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.255999999819323, + 0.3010000002104789, + 0.7280000001192093 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.407999999821186, + 0.3079999997280538, + 0.7540000004228204 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.560000000521541, + 0.31499999994412065, + 0.7800000007264316 + ] + } + } + }, + "120704": { + "Id": 120704, + "Name": "7겹 관통화살", + "Desc": "일반 공격 발동 시 어공 공격력의 #1[i]%만큼 허수 속성 피해를 추가로 가한다. 이번 공격의 강인성 감소 수치가 #2[i]% 증가한다. 해당 효과는 #3[i]턴 후 다시 발동할 수 있다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1, + 1 + ] + } + } + }, + "120706": { + "Id": 120706, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120707": { + "Id": 120707, + "Name": "바람을 가르는 연", + "Desc": "비술 사용 후 #1[i]초 동안 질주 상태에 진입한다. 질주 상태에선 자신의 이동 속도가 #2[i]% 증가하며, 선공을 가해 적과의 전투 진입 시 어공은 [활시위 호령]을 #3[i]스택 획득한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.3500000003259629, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Normal.png", + "LevelUpSkillID": [ + 120701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1207001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_BP.png", + "LevelUpSkillID": [ + 120702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Ultra.png", + "LevelUpSkillID": [ + 120703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_Passive.png", + "LevelUpSkillID": [ + 120704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1207004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1207_Maze.png", + "LevelUpSkillID": [ + 120707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1207101, + "PointName": "양보", + "PointDesc": "어공에게 디버프 효과가 부여될 시 디버프 효과에 1회 저항할 수 있다. 해당 효과는 #1[i]턴 후 다시 발동할 수 있다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.12000000011175871 + ], + "PointID": 1207102, + "PointName": "전승의 활", + "PointDesc": "어공이 필드에 있으면 모든 아군이 가하는 허수 속성 피해가 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1207_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1207103, + "PointName": "기개", + "PointDesc": "[활시위 호령] 효과 보유 시 아군이 행동할 때마다 어공은 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207201, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1207101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207203, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1207202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207204, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1207201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207205, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1207102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1207205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207207, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1207201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207208, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1207103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1207208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1207210, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1207208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "허수 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 51, + "DefenceAdd": 2.5500000005122274, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 71.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 91.80000000074506, + "DefenceAdd": 2.5500000005122274, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 112.20000000018626, + "DefenceAdd": 2.5500000005122274, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 132.6000000005588, + "DefenceAdd": 2.5500000005122274, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 153, + "DefenceAdd": 2.5500000005122274, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110407, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 173.40000000037253, + "DefenceAdd": 2.5500000005122274, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1207, + "Set4IDList": [ + 102, + 112, + 111 + ], + "Set2IDList": [ + 302, + 312, + 308 + ], + "PropertyList3": [ + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 350, + 294 + ], + "LocalCriticalChance": 0.2800000002607703 + } + }, + "1208": { + "Name": "부현", + "Desc": "선주 「나부」 태복사(太卜司)의 수뇌.\\n제3의 눈과 궁관진을 통해 선주의 항로와 일의 길흉을 점친다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "fuxuan", + "SPNeed": 135, + "BaseType": "Knight", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 120801, + "Name": "사위(司危)", + "Desc": "[감식]은 치명타 피해를 #1[i]% 증가시킨다", + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Id": 120802, + "Name": "유조(柔兆)", + "Desc": "[궁관진] 활성화 시 아군이 치명적인 피해를 받을 경우, 모든 아군이 이번 행동에서 전투 불능 상태에 빠지지 않으며, 즉시 HP를 자신의 HP 최대치의 #1[i]%만큼 회복한다. 해당 효과는 단일 전투에서 1회만 발동한다", + "ParamList": [ + 0.7000000006519258 + ] + }, + "3": { + "Id": 120803, + "Name": "직부(直符)", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 120804, + "Name": "격택(格澤)", + "Desc": "[궁관진] 활성화 시 다른 아군이 피격되면 부현의 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 120805, + "Name": "계신(計神)", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 120806, + "Name": "종릉(種陵)", + "Desc": "[궁관진] 활성화 시 모든 아군의 이번 전투에서 누적 손실한 HP를 기록한다. 부현이 필살기로 가하는 피해가 이번 전투에서 누적 손실한 HP의 #1[i]%만큼 증가한다.\\n이번 전투에서 기록되는 누적 손실 HP는 부현 HP 최대치의 #2[i]%를 넘지 않으며, 필살기를 발동하면 리셋하고 다시 누적된다", + "ParamList": [ + 2, + 1.2000000001862645 + ] + } + }, + "Skills": { + "120801": { + "Id": 120801, + "Name": "태세(太歲) 진격", + "Desc": "지정된 단일 적에게 부현 HP 최대치의 #1[i]%만큼 양자 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "120802": { + "Id": 120802, + "Name": "별의 움직임, 미래의 그림자", + "Desc": "[궁관진]을 활성화하여, 부현의 동료가 실드로 막기 전에 받은 피해의 #1[i]%를 부현이 분담한다. 지속 시간: #3[i]턴\\n[궁관진] 상태의 모든 아군이 [감식] 효과를 획득한다. [감식]: 아군 HP 최대치가 부현 HP 최대치의 #4[f1]%만큼 증가하고, 치명타 확률이 #5[f1]% 증가한다.\\n부현이 전투 불능 상태가 되면 [궁관진]도 해제된다", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.032999999821186066, + 0.06599999964237213 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.035999999614432454, + 0.07199999992735684 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.03899999940767884, + 0.07799999951384962 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04199999989941716, + 0.08399999979883432 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04499999969266355, + 0.09000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.04875000030733645, + 0.09749999991618097 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.05250000022351742, + 0.1049999997485429 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.056250000139698386, + 0.11250000027939677 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06299999984912574, + 0.12599999969825149 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06599999964237213, + 0.1319999999832362 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.06899999943561852, + 0.13799999956972897 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6500000006053597, + 0, + 3, + 0.07499999972060323, + 0.1500000001396984 + ] + } + } + }, + "120803": { + "Id": 120803, + "Name": "천률의 규칙, 돌고 도는 역겁", + "Desc": "모든 적에게 부현 HP 최대치의 #1[i]%만큼 양자 속성 피해를 주고, 부현 특성의 HP 회복 효과 발동 횟수를 1회 획득한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6400000005960464 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6800000006332994 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7600000007078052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8500000007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9000000008381903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9500000008847564 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.040000000037253 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.0800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1200000001117587 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2000000001862645 + ] + } + } + }, + "120804": { + "Id": 120804, + "Name": "건청곤이, 불행 끝 행운 시작", + "Desc": "부현이 전투 가능 상태일 때 모든 아군에게 [피액(避厄)] 효과를 부여한다. [피액]: 아군이 받는 피해가 #1[f1]% 감소한다.\\n부현의 현재 HP 백분율이 #2[i]% 이하가 되면 HP를 자신이 손실한 HP의 #3[i]%만큼 회복한다. 치명적인 공격을 받을 경우 해당 효과는 발동되지 않는다. 해당 효과는 기본 상태에서 1회의 발동 횟수를 보유하며, 최대 2회의 발동 횟수를 보유할 수 있다", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1079999995417893, + 0.5000000004656613, + 0.8100000007543713 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.11599999968893826, + 0.5000000004656613, + 0.8200000007636845 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.12399999983608723, + 0.5000000004656613, + 0.8300000007729977 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1319999999832362, + 0.5000000004656613, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 0.8500000007916242 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.8625000009778887 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.8750000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.17000000015832484, + 0.5000000004656613, + 0.8875000006519258 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 0.9000000008381903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1879999996162951, + 0.5000000004656613, + 0.9100000008475035 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.19599999976344407, + 0.5000000004656613, + 0.9200000008568168 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20399999991059303, + 0.5000000004656613, + 0.93000000086613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.212000000057742, + 0.5000000004656613, + 0.9400000008754432 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 0.9500000008847564 + ] + } + } + }, + "120806": { + "Id": 120806, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120807": { + "Id": 120807, + "Name": "길흉화복, 성좌의 영역", + "Desc": "비술 사용 후 모든 아군이 #1[i]초간 지속되는 배리어를 획득한다. 해당 배리어는 적의 모든 공격을 막으며, 공격을 받아도 전투에 진입하지 않는다. 배리어가 지속되는 동안 전투에 진입하면 부현은 자동으로 [궁관진]을 활성화한다. 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Normal.png", + "LevelUpSkillID": [ + 120801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1208001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_BP.png", + "LevelUpSkillID": [ + 120802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Ultra.png", + "LevelUpSkillID": [ + 120803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_Passive.png", + "LevelUpSkillID": [ + 120804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1208004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1208_Maze.png", + "LevelUpSkillID": [ + 120807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 20 + ], + "PointID": 1208101, + "PointName": "태을(太乙) 점술판", + "PointDesc": "[궁관진] 활성화 시 부현이 전투 스킬을 발동하면 에너지를 추가로 #1[i]pt 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1208201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 133 + ], + "PointID": 1208102, + "PointName": "성반(星盤) 둔갑", + "PointDesc": "필살기 발동 시 다른 아군의 HP를 부현 HP 최대치의 #1[i]%+#2[i]만큼 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1208201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1208_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208103, + "PointName": "육임(六壬) 점괘", + "PointDesc": "[궁관진] 활성화 시 적이 아군에게 제어류 디버프 상태를 부여하면, 모든 아군이 이번 행동에서 적이 부여한 모든 제어류 디버프 상태에 저항한다. 해당 효과 발동 횟수: 1회. [궁관진]을 다시 활성화하면 효과 발동 횟수가 갱신된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208201, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1208101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208203, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1208202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208205, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1208102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1208205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208207, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1208103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1208208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1208210, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1208208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 63.360000000335276, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 200.64000000059605, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 88.70400000037625, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 280.89600000041537, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 114.04799999948591, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 361.15200000000186, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 139.39200000022538, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 441.4079999998212, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 164.73600000026636, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 521.664000000339, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 190.0800000000745, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 601.9200000008568, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 215.42400000011548, + "AttackAdd": 3.1679999995976686, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 682.1759999997448, + "HPAdd": 10.031999999890104, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1208, + "Set4IDList": [ + 113, + 106, + 108 + ], + "Set2IDList": [ + 302, + 310, + 308 + ], + "PropertyList3": [ + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "DefenceAddedRatio", + "StatusResistanceBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 328, + 280 + ], + "LocalCriticalChance": 0.12000000011175871 + } + }, + "1209": { + "Name": "연경", + "Desc": "경원 장군의 호위무사이다. 어린 나이임에도 불구하고 천재라 불릴 정도로 뛰어난 검술을 지니고 있다.\\n검 한 자루만 있으면 누구에게도 지지 않는다.", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 30, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "yanqing", + "SPNeed": 140, + "BaseType": "Rogue", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 120901, + "Name": "칼날의 섬광", + "Desc": "연경이 적을 공격할 때, 목표가 빙결 상태일 경우 즉시 목표에게 연경 공격력의 #1[i]%만큼 얼음 속성 추가 피해를 가한다", + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Id": 120902, + "Name": "공명", + "Desc": "[신검합일] 효과 상태일 경우 에너지 회복효율이 추가로 #1[i]% 증가한다", + "ParamList": [ + 0.10000000009313226 + ] + }, + "3": { + "Id": 120903, + "Name": "검술의 극의", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 120904, + "Name": "서릿발", + "Desc": "현재 HP 백분율이 #1[i]% 이상일 경우, 자신의 얼음 속성 저항 관통#2[i]% 증가한다", + "ParamList": [ + 0.8000000007450581, + 0.12000000011175871 + ] + }, + "5": { + "Id": 120905, + "Name": "무골", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 120906, + "Name": "자유자재", + "Desc": "적 처치 시 [신검합일] 또는 필살기의 버프 효과를 보유 중일 경우, 해당 버프 효과의 지속 시간이 모두 1턴 연장된다", + "ParamList": [] + } + }, + "Skills": { + "120901": { + "Id": 120901, + "Name": "서늘한 칼끝", + "Desc": "지정된 단일 적에게 연경 공격력 #1[i]%만큼의 얼음 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "120902": { + "Id": 120902, + "Name": "삼척추수", + "Desc": "지정된 단일 적에게 연경 공격력 #1[i]%만큼의 얼음 속성 피해를 준다. 이때 연경에게 [신검합일] 효과를 부여한다. 지속 시간: 1턴", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2100000001955777 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.3200000002980232 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5400000005029142 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.7875000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9250000005122274 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.0625000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.31000000028871 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.4200000003911555 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.6400000005960464 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.750000000698492 + ] + } + } + }, + "120903": { + "Id": 120903, + "Name": "비바람을 가르는 제비", + "Desc": "자신의 치명타 확률이 #1[i]% 증가하고 만일 연경이 [신검합일] 효과를 가지고 있다면 치명타 피해가 추가로 #2[i]% 증가한다. 버프 효과는 1턴 동안 지속된다. 이후 지정된 단일 적에게 연경 공격력 #3[i]%만큼의 얼음 속성 피해를 준다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 2.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 0.3200000002980232, + 2.2400000002235174 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.3400000003166497, + 2.3800000003539026 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6000000005587935, + 0.3600000003352761, + 2.5200000004842877 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6000000005587935, + 0.3800000003539026, + 2.660000000614673 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903, + 2.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6000000005587935, + 0.42500000004656613, + 2.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935, + 0.45000000041909516, + 3.1500000001396984 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6000000005587935, + 0.47500000009313226, + 3.324999999953434 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 3.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6000000005587935, + 0.5200000004842877, + 3.6400000005960464 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6000000005587935, + 0.5400000005029142, + 3.7800000007264316 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6000000005587935, + 0.5600000005215406, + 3.9200000008568168 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 0.5800000005401671, + 4.060000000055879 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935, + 4.2000000001862645 + ] + } + } + }, + "120904": { + "Id": 120904, + "Name": "호검여영(呼劍如影)", + "Desc": "연경이 [신검합일] 상태일 경우 피격될 확률이 감소하고 자신의 치명타 확률이 #1[f1]%, 치명타 피해가 #2[i]% 증가한다. 적에게 공격을 발동한 후, #3[i]%고정 확률추가 공격을 발동해 연경 공격력 #4[i]%만큼의 얼음 속성 피해를 주고 #6[i]%기본 확률로 1턴 동안 대상을 빙결 상태에 빠트린다.\\n빙결 상태인 적은 행동할 수 없으며, 턴이 시작될 때마다 연경 공격력 #5[i]%만큼의 얼음 속성 추가 피해를 받는다.\\n연경이 피해를 받으면 [신검합일] 효과는 소멸된다", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 0.5000000004656613, + 0.25000000023283064, + 0.25000000023283064, + 0.6500000006053597 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 0.16499999980442226, + 0.5100000004749745, + 0.27499999990686774, + 0.27499999990686774, + 0.6500000006053597 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 0.18000000016763806, + 0.5200000004842877, + 0.3000000002793968, + 0.3000000002793968, + 0.6500000006053597 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 0.19499999983236194, + 0.530000000493601, + 0.32499999995343387, + 0.32499999995343387, + 0.6500000006053597 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 0.21000000019557774, + 0.5400000005029142, + 0.3500000003259629, + 0.3500000003259629, + 0.6500000006053597 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 0.2249999998603016, + 0.5500000005122274, + 0.375, + 0.375, + 0.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 0.24375000083819032, + 0.5625000006984919, + 0.4062500004656613, + 0.4062500004656613, + 0.6500000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 0.26250000041909516, + 0.5750000001862645, + 0.43750000023283064, + 0.43750000023283064, + 0.6500000006053597 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 0.28125000069849193, + 0.587500000372529, + 0.46875000069849193, + 0.46875000069849193, + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613, + 0.5000000004656613, + 0.6500000006053597 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 0.31499999994412065, + 0.6100000005681068, + 0.5250000001396984, + 0.5250000001396984, + 0.6500000006053597 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 0.33000000030733645, + 0.62000000057742, + 0.5500000005122274, + 0.5500000005122274, + 0.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 0.3449999999720603, + 0.6300000005867332, + 0.5750000001862645, + 0.5750000001862645, + 0.6500000006053597 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 0.3600000003352761, + 0.6400000005960464, + 0.6000000005587935, + 0.6000000005587935, + 0.6500000006053597 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 0.375, + 0.6500000006053597, + 0.6250000002328306, + 0.6250000002328306, + 0.6500000006053597 + ] + } + } + }, + "120906": { + "Id": 120906, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "120907": { + "Id": 120907, + "Name": "어검의 비결", + "Desc": "비술 발동 후 다음 전투 시작 시 연경은 현재 HP 백분율이 #1[i]% 이상인 적에게 가하는 피해가 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Normal.png", + "LevelUpSkillID": [ + 120901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1209001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_BP.png", + "LevelUpSkillID": [ + 120902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Ultra.png", + "LevelUpSkillID": [ + 120903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_Passive.png", + "LevelUpSkillID": [ + 120904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1209004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1209_Maze.png", + "LevelUpSkillID": [ + 120907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1209101, + "PointName": "서슬 퍼런 선물", + "PointDesc": "공격 발동 후 얼음 속성 약점을 보유한 적에게 연경 공격력의 #1[i]%만큼 얼음 속성 추가 피해를 가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1209102, + "PointName": "고결", + "PointDesc": "[신검합일] 상태일 경우 효과 저항이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1209_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1209103, + "PointName": "명검", + "PointDesc": "치명타 발동 시 속도가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209202, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1209101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1209202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1209102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209206, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1209205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1209103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209209, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1209208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1209210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1209208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 56.10000000009313, + "DefenceAdd": 2.8050000004004687, + "HPBase": 121.44000000040978, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 78.54000000050291, + "DefenceAdd": 2.8050000004004687, + "HPBase": 170.0159999995958, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 100.9800000009127, + "DefenceAdd": 2.8050000004004687, + "HPBase": 218.59200000041164, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 123.42000000039116, + "DefenceAdd": 2.8050000004004687, + "HPBase": 267.16799999959767, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.86000000080094, + "DefenceAdd": 2.8050000004004687, + "HPBase": 315.7440000004135, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.8050000004004687, + "HPBase": 364.320000000298, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 190.74000000068918, + "DefenceAdd": 2.8050000004004687, + "HPBase": 412.89600000041537, + "HPAdd": 6.071999999927357, + "SpeedBase": 109, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1209, + "Set4IDList": [ + 104, + 117, + 122 + ], + "Set2IDList": [ + 311, + 301, + 306 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1210": { + "Name": "계네빈", + "Desc": "선주 「나부」에 방문한 행위 예술가——혹은 길거리 예술가\\n삼시세끼가 보장된 상황에서 자신의 새로운 삶을 나부에서 추구하고 있다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "guinaifen", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 121001, + "Name": "거꾸로 서서 국수 먹기", + "Desc": "전투 스킬 발동 시 #1[i]%기본 확률로 피격된 적의 효과 저항이 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "ParamList": [ + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Id": 121002, + "Name": "양치질하면서 휘파람 불기", + "Desc": "적이 연소 상태면 계네빈의 일반 공격과 전투 스킬이 해당 적에게 부여하는 연소 상태의 피해 배율이 #1[i]% 증가한다", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 121003, + "Name": "가슴에 얹은 바위 깨기", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 121004, + "Name": "창으로 목 찌르기", + "Desc": "계네빈이 부여한 연소 상태 피해가 발동할 때마다 자신의 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 2 + ] + }, + "5": { + "Id": 121005, + "Name": "허리까지 검 삼키기", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 121006, + "Name": "맨손으로 총알 받기", + "Desc": "[불쇼]의 중첩 가능 스택 수가 #1[i]스택 증가한다", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "121001": { + "Id": 121001, + "Name": "박수갈채", + "Desc": "지정된 단일 적에게 계네빈 공격력 #1[i]%만큼의 화염 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121002": { + "Id": 121002, + "Name": "좋은 출발", + "Desc": "지정된 단일 적에게 계네빈 공격력 #1[i]%만큼의 화염 속성 피해를 주고, 인접한 목표에게 계네빈 공격력 #2[i]%만큼의 화염 속성 피해를 주며, #3[i]%기본 확률로 목표 및 인접한 목표를 연소 상태에 빠트린다. 연소 상태의 적은 턴이 시작될 때마다 계네빈 공격력 #4[i]%만큼의 화염 속성 지속 피해를 받는다. 지속 시간: #5[i]턴", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.20000000018626451, + 1, + 0.8390400004573166, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.22000000020489097, + 1, + 0.9229800018947572, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.24000000022351742, + 1, + 1.0069200003053993, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.26000000024214387, + 1, + 1.0908600010443479, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.2800000002607703, + 1, + 1.1748000003863126, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968, + 1, + 1.3007100007962435, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.32499999995343387, + 1, + 1.4685900008771569, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.3500000003259629, + 1, + 1.6784400006290525, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.375, + 1, + 1.9302600014489144, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903, + 1, + 2.182080000638962, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.4200000003911555, + 1, + 2.2912020003423095, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.44000000040978193, + 1, + 2.400324000744149, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.4600000004284084, + 1, + 2.5094460004474968, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.48000000044703484, + 1, + 2.6185680008493364, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613, + 1, + 2.727690001251176, + 2 + ] + } + } + }, + "121003": { + "Id": 121003, + "Name": "주특기 나갑니다!", + "Desc": "모든 적에게 계네빈 공격력 #1[f1]%만큼의 화염 속성 피해를 주고, 목표가 연소 상태인 경우 해당 연소 상태는 즉시 기존 피해 #2[i]%만큼의 피해를 생성한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622, + 0.7400000006891787 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641, + 0.7600000007078052 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678, + 0.8000000007450581 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697, + 0.8200000007636845 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265, + 0.8450000004377216 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 0.8700000008102506 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852, + 0.8950000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.9200000008568168 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745, + 0.9400000008754432 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763, + 0.9600000008940697 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782, + 0.9800000009126961 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782, + 1.0200000000186265 + ] + } + } + }, + "121004": { + "Id": 121004, + "Name": "관중 없이는 예술가도 없는 법", + "Desc": "계네빈이 필드에 있을 때 적에게 부여된 연소 상태가 피해를 발동하면 #1[i]%기본 확률로 적을 [불쇼] 상태에 빠트리고 [불쇼] 상태의 적이 받는 피해가 #4[f1]% 증가한다. 지속 시간: #5[i]턴. 최대 중첩수: #6[i]스택", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0, + 0, + 0.0400000000372529, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0, + 0, + 0.04299999983049929, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0, + 0, + 0.04599999962374568, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0, + 0, + 0.04899999941699207, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0, + 0, + 0.05199999990873039, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0, + 0, + 0.054999999701976776, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0, + 0, + 0.058750000316649675, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0, + 0, + 0.06250000023283064, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0, + 0, + 0.06625000014901161, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0, + 0, + 0.07000000006519258, + 3, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0, + 0, + 0.07299999985843897, + 3, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0, + 0, + 0.07599999965168536, + 3, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0, + 0, + 0.07899999944493175, + 3, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0, + 0, + 0.08199999993667006, + 3, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0, + 0, + 0.08499999972991645, + 3, + 3 + ] + } + } + }, + "121006": { + "Id": 121006, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121007": { + "Id": 121007, + "Name": "길거리 공연", + "Desc": "적을 바로 공격하며, 전투 진입 후 피해를 #2[i]회 준다. 피해를 가할 때마다 임의의 단일 적에게 계네빈 공격력 #1[i]%만큼의 화염 속성 피해를 주고 #3[i]%기본 확률로 목표를 [불쇼] 상태에 빠트린다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 4, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Normal.png", + "LevelUpSkillID": [ + 121001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1210001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_BP.png", + "LevelUpSkillID": [ + 121002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Ultra.png", + "LevelUpSkillID": [ + 121003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_Passive.png", + "LevelUpSkillID": [ + 121004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1210004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1210_Maze.png", + "LevelUpSkillID": [ + 121007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 1210101, + "PointName": "장대 타기", + "PointDesc": "일반 공격이 #1[i]%기본 확률로 적을 전투 스킬과 동일한 연소 상태에 빠트린다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1210102, + "PointName": "장애물 통과", + "PointDesc": "전투 시작 시 계네빈의 행동 게이지가 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1210_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1210103, + "PointName": "칼날 위 걷기", + "PointDesc": "연소 상태에 빠진 적에게 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210201, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210202, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1210101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210203, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1210202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210204, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1210203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210205, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1210102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210206, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1210205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210207, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1210206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210208, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1210103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210209, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1210103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "격파 특수효과" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1210210, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1210201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "화염 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 120, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 168, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 216, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 264, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 312, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 360, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 408, + "HPAdd": 6, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1210, + "Set4IDList": [ + 116, + 102, + 107 + ], + "Set2IDList": [ + 301, + 303, + 307 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 321, + 270 + ] + } + }, + "1211": { + "Name": "백로", + "Desc": "선주 「나부」 비디아다라족의 큰어른, 「약을 품은 용녀」라 불리는 의사\\n독자적인 의학 이론과 용맥만이 실행할 수 있는 「의료 수단」으로 생명을 구하고 치료한다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "bailu", + "SPNeed": 100, + "BaseType": "Priest", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 121101, + "Name": "맥을 가라앉히는 감로", + "Desc": "[생명] 효과 종료 시 아군의 현재 HP가 HP 최대치면, 추가로 해당 아군의 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 8 + ] + }, + "2": { + "Id": 121102, + "Name": "항아리 속 동천에는 운룡이 잠든다", + "Desc": "필살기 발동 후 백로의 치유량이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "3": { + "Id": 121103, + "Name": "건곤을 깨우치고 통현하다", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 121104, + "Name": "눈이 맑아지는 비급", + "Desc": "전투 스킬이 제공하는 치유를 받을 때마다 치유를 받는 아군은 가하는 피해가 추가로 #1[i]% 증가한다. 최대 중첩수: #2[i]스택. 지속 시간: #3[i]턴", + "ParamList": [ + 0.10000000009313226, + 3, + 2 + ] + }, + "5": { + "Id": 121105, + "Name": "속세의 먼지를 씻는 단비", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 121106, + "Name": "영험한 용의 침방울", + "Desc": "백로가 단일 전투에서 치명적인 공격을 받은 아군에게 제공하는 치유 효과 발동 횟수가 #1[i]회 증가한다", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "121101": { + "Id": 121101, + "Name": "보고 듣고 묻고… 아뵤!", + "Desc": "지정된 단일 적에게 백로 공격력 #1[i]%만큼의 번개 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121102": { + "Id": 121102, + "Name": "구름의 노래 속 떨어지는 이슬", + "Desc": "즉시 지정된 단일 아군의 HP를 백로 HP 최대치 #1[f1]%+#2[i]만큼 회복한 다음 백로는 랜덤으로 단일 아군을 #4[i]회 치유한다. 1회 치유할 때마다 다음 치유로 회복하는 HP는 #3[i]% 감소한다", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.07799999951384962, + 78, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.08287500101141632, + 124.80000000074506, + 0.1500000001396984, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08775000041350722, + 159.9000000008382, + 0.1500000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09262500051409006, + 195, + 0.1500000001396984, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.09749999991618097, + 218.40000000037253, + 0.1500000001396984, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10140000027604401, + 241.80000000074506, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10529999993741512, + 259.35000000032596, + 0.1500000001396984, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10919999959878623, + 276.9000000008382, + 0.1500000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11309999995864928, + 294.4500000004191, + 0.1500000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.11699999962002039, + 312, + 0.1500000001396984, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12090000067837536, + 329.5500000005122, + 0.1500000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.12480000033974648, + 347.10000000009313, + 0.1500000001396984, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.1287000000011176, + 364.65000000060536, + 0.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.13260000036098063, + 382.20000000018626, + 0.1500000001396984, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.13650000002235174, + 399.7500000006985, + 0.1500000001396984, + 2 + ] + } + } + }, + "121103": { + "Id": 121103, + "Name": "천둥이 알리는 교룡의 도약", + "Desc": "모든 아군이 백로 HP 최대치 #1[f1]%+#2[i]만큼의 HP를 회복한다.\\n백로는 [생명] 효과가 없는 아군에게 [생명] 효과를 부여하며, [생명] 효과를 보유한 아군에게는 [생명] 효과 지속 시간을 1턴 늘려준다\\n[생명] 지속 시간: #3[i]턴. 해당 효과는 중첩될 수 없다", + "Type": "Ultra", + "Tag": "Restore", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09000000008381903, + 90, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.09562500030733645, + 144, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10125000053085387, + 184.50000000046566, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10687500075437129, + 225, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11250000027939677, + 252, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.11699999962002039, + 279, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.12150000035762787, + 299.25000000023283, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.12599999969825149, + 319.50000000046566, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.13050000043585896, + 339.7500000006985, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.13499999977648258, + 360, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.13949999981559813, + 380.25000000023283, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.14399999985471368, + 400.50000000046566, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.14849999989382923, + 420.7500000006985, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.15299999993294477, + 441, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.15749999997206032, + 461.25000000023283, + 2 + ] + } + } + }, + "121104": { + "Id": 121104, + "Name": "발로 뛰는 구원의 의술", + "Desc": "[생명] 효과를 보유한 아군은 피격 후 백로 HP 최대치의 #1[f1]%+#2[i]만큼 회복한다. 해당 효과는 #5[i]회 발동할 수 있다.\\n백로의 동료는 치명적인 공격을 받아도 전투 불능 상태에 빠지지 않고, 백로가 즉시 대상에게 치유를 제공해 HP를 백로 HP 최대치의 #3[f1]%+#4[i]만큼 회복한다. 해당 효과는 단일 전투에서 1회 발동할 수 있다", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.035999999614432454, + 36, + 0.12000000011175871, + 120, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.038249999983236194, + 57.60000000055879, + 0.12749999994412065, + 192, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04050000035203993, + 73.80000000074506, + 0.13499999977648258, + 246, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04275000072084367, + 90, + 0.14250000030733645, + 300, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.04499999969266355, + 100.80000000074506, + 0.1500000001396984, + 336, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.04680000012740493, + 111.6000000005588, + 0.15599999972619116, + 372, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.048599999863654375, + 119.70000000065193, + 0.16200000001117587, + 399, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.05040000029839575, + 127.80000000074506, + 0.16799999959766865, + 426, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.0522000000346452, + 135.9000000008382, + 0.17399999988265336, + 453, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.05399999977089465, + 144, + 0.18000000016763806, + 480, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.055800000205636024, + 152.10000000009313, + 0.18599999975413084, + 507, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.05759999994188547, + 160.20000000018626, + 0.19200000003911555, + 534, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.05939999967813492, + 168.3000000002794, + 0.19799999962560833, + 561, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.061200000112876296, + 176.40000000037253, + 0.20399999991059303, + 588, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.06299999984912574, + 184.50000000046566, + 0.21000000019557774, + 615, + 2 + ] + } + } + }, + "121106": { + "Id": 121106, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121107": { + "Id": 121107, + "Name": "은덕을 누려 짧아진 병환", + "Desc": "비술 발동 후 다음 전투 시작 시 모든 아군에게 [생명] 효과를 부여한다. 지속 시간: #1[i]턴", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Normal.png", + "LevelUpSkillID": [ + 121101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1211001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_BP.png", + "LevelUpSkillID": [ + 121102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Ultra.png", + "LevelUpSkillID": [ + 121103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_Passive.png", + "LevelUpSkillID": [ + 121104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1211004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1211_Maze.png", + "LevelUpSkillID": [ + 121107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ], + "PointID": 1211101, + "PointName": "의술의 이치", + "PointDesc": "백로가 아군에게 초과 치유할 시 대상 HP 최대치가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1211102, + "PointName": "비디아다라 용맥", + "PointDesc": "[생명] 효과 발동 횟수가 #1[i]회 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1211_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110502, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1211103, + "PointName": "인연못 은혜", + "PointDesc": "[생명]을 보유한 캐릭터가 받는 피해가 #1[i]% 감소한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211201, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211202, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1211101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211203, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1211202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1211203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211205, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1211102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211206, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1211205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211207, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1211206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1211103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211209, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1211103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1211210, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 179.5200000004843, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 251.32799999974668, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 323.13599999970756, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 394.9440000005998, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 466.75200000056066, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110404, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 610.3679999997839, + "HPAdd": 8.976000000489876, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1211, + "Set4IDList": [ + 101, + 114, + 106 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1212": { + "Name": "경류", + "Desc": "과거 나부 검술의 일인자이자 운기군 불패신화의 창조자.\\n오늘날 그녀의 이름은 역사에서 지워졌고, 마각의 몸의 경계를 걷는 선주의 역적이 되었다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 77, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 78, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 79, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jingliu", + "SPNeed": 140, + "BaseType": "Warrior", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 121201, + "Name": "천관을 범한 달", + "Desc": "필살기를 발동하거나 전투 스킬 강화 시 경류의 치명타 피해가 #1[i]% 증가한다. 지속 시간: #3[i]턴. 적을 1기만 공격하면 해당 목표에게 추가로 경류 공격력의 #2[i]%만큼 얼음 속성 피해를 가한다", + "ParamList": [ + 0.24000000022351742, + 1, + 1 + ] + }, + "2": { + "Id": 121202, + "Name": "칠성을 덮은 삭월의 밤", + "Desc": "필살기 발동 후 다음 강화 전투 스킬의 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.8000000007450581 + ] + }, + "3": { + "Id": 121203, + "Name": "차오르는 달", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 121204, + "Name": "달의 검을 쥐고", + "Desc": "[전백(轉魄)] 상태일 때 동료의 HP를 소모해 획득하는 공격력이 추가로 모든 아군 HP 총 소모량의 #1[i]%만큼 증가한다. 획득하는 공격력의 최대치가 #2[i]% 증가한다", + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "5": { + "Id": 121205, + "Name": "어둠에 잠긴 삼태성", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 121206, + "Name": "텅 빈 검은 달", + "Desc": "경류가 [전백(轉魄)] 상태에 진입 시 [삭망]의 최대 스택이 1스택 증가하고 [삭망]을 #1[i]스택 추가로 획득한다. [전백] 상태일 때 치명타 피해가 #2[i]% 증가한다", + "ParamList": [ + 1, + 0.5000000004656613 + ] + } + }, + "Skills": { + "121201": { + "Id": 121201, + "Name": "빛나는 달빛", + "Desc": "지정된 단일 적에게 경류 공격력 #1[i]%만큼의 얼음 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121202": { + "Id": 121202, + "Name": "무결의 섬광", + "Desc": "지정된 단일 적에게 경류 공격력 #1[i]%만큼의 얼음 속성 피해를 주고 [삭망]을 #2[i]스택 획득한다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "121203": { + "Id": 121203, + "Name": "담화생멸, 범람하는 은하", + "Desc": "지정된 단일 적에게 경류 공격력 #1[i]%만큼의 얼음 속성 피해를 주고 인접한 목표에게 경류 공격력 #3[i]%만큼의 얼음 속성 피해를 준다. 공격 종료 후 [삭망]을 #2[i]스택 획득한다", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.9200000008568168, + 1, + 0.9600000008940697, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.040000000037253, + 1, + 1.0200000000186265, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.1600000001490116, + 1, + 1.0800000000745058, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2800000002607703, + 1, + 1.1400000001303852, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1, + 1.2000000001862645, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.5500000005122274, + 1, + 1.2749999999068677, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.700000000651926, + 1, + 1.350000000325963, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.850000000791624, + 1, + 1.4250000000465661, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 1.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1200000001117587, + 1, + 1.5600000005215406, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.2400000002235174, + 1, + 1.62000000057742, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.360000000335276, + 1, + 1.6800000006332994, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.480000000447035, + 1, + 1.7400000006891787, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.6000000005587935, + 1, + 1.800000000745058, + 1 + ] + } + } + }, + "121204": { + "Id": 121204, + "Name": "담월전백", + "Desc": "[삭망] #5[i]스택 보유 시, 경류가 [전백(轉魄)] 상태에 진입하고 행동 게이지가 #6[i]% 증가, 치명타 확률이 #7[i]% 증가한다. 이후 전투 스킬 [무결의 섬광]이 [한천(寒川)에 비친 달]로 강화되며 해당 전투 스킬만 사용할 수 있다. [전백] 상태일 때 공격을 발동하면 동료 HP를 각각 동료 HP 최대치의 #2[i]%만큼 소모한다(모든 동료의 HP는 최대 1까지 소모 가능). 이번에 모든 아군 HP 총 소모량의 #3[i]%만큼 경류의 공격력이 증가하고 최대 경류 기초 공격력의 #4[i]%를 넘지 않는다. 해당 효과는 이번 공격이 종료될 때까지 지속된다. [전백] 상태가 종료되기 전에는 다시 [전백] 상태에 진입할 수 없다. [삭망]은 최대 3스택까지 중첩된다. [삭망] 스택이 0이 되면, [전백] 상태가 종료된다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 0.9000000008381903, + 2, + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 0.9900000009220093, + 2, + 1, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.0800000000745058, + 2, + 1, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.1700000001583248, + 2, + 1, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.2600000002421439, + 2, + 1, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.350000000325963, + 2, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.4625000006053597, + 2, + 1, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.5750000001862645, + 2, + 1, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.6875000004656613, + 2, + 1, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.800000000745058, + 2, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.890000000828877, + 2, + 1, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 1.9800000009126961, + 2, + 1, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.0700000000651926, + 2, + 1, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.1600000001490116, + 2, + 1, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.0400000000372529, + 5.400000000372529, + 2.2500000002328306, + 2, + 1, + 0.5500000005122274 + ] + } + } + }, + "121206": { + "Id": 121206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121207": { + "Id": 121207, + "Name": "참나를 비추는 거울", + "Desc": "비술 사용 후 자신의 주위에 #3[i]초 동안 지속되는 특수 영역을 1개 만든다. 특수 영역 내의 적은 빙결 상태에 빠진다. 특수 영역 내의 적과 전투에 진입하면 즉시 자신의 에너지가 #6[i]pt 회복되고, 삭망을 #1[i]스택 획득하며, #2[i]%기본 확률로 적이 빙결 상태에 빠진다. 지속 시간: #4[i]턴. 빙결 상태일 때 적은 행동할 수 없고, 턴이 시작될 때마다 경류 공격력의 #5[i]%만큼 얼음 속성 추가 피해를 받는다. 아군이 만든 영역 효과는 최대 1개만 존재할 수 있다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 20, + 1, + 0.8000000007450581, + 15 + ] + } + } + }, + "121209": { + "Id": 121209, + "Name": "한천(寒川)에 비친 달", + "Desc": "지정된 단일 적에게 경류 공격력 #1[i]%만큼의 얼음 속성 피해를 주고 인접한 목표에게 경류 공격력 #3[i]%만큼의 얼음 속성 피해를 준다. [삭망]을 #2[i]스택 소모한다. 해당 스킬 발동 시 전투 스킬 포인트가 소모되지 않는다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 1, + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.375, + 1, + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5000000004656613, + 1, + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6250000002328306, + 1, + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.750000000698492, + 1, + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.8750000004656613, + 1, + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.0312500004656613, + 1, + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1875, + 1, + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.3437500009313226, + 1, + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.5000000004656613, + 1, + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.6250000002328306, + 1, + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.750000000698492, + 1, + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.8750000004656613, + 1, + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1249999997671694, + 1, + 1.562500000698492 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 121202, + 121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Maze.png", + "LevelUpSkillID": [ + 121207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1212101, + "PointName": "사경", + "PointDesc": "[전백(轉魄)] 상태일 때 효과 저항이 #1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 1212102, + "PointName": "검술의 일인자", + "PointDesc": "[무결의 섬광] 발동 후 다음 행동 게이지가 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1212103, + "PointName": "서리 혼", + "PointDesc": "[전백(轉魄)] 상태일 때 필살기가 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212201, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212202, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1212101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212203, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1212202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1212203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212205, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1212102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212206, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1212205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212207, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1212206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1212103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212209, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "속도" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1212210, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + } + }, + "Enhanced": { + "1": { + "Ranks": { + "1": { + "Id": 1121201, + "Name": "천관을 범한 달", + "Desc": "필살기를 발동하거나 전투 스킬 강화 시 경류의 치명타 피해가 #1[i]% 증가한다, 지속 시간: #3[i]턴. 또한 추가로 주목표에게 경류 최대 HP의 #2[i]%만큼 얼음 속성 피해를 1회 가한다", + "ParamList": [ + 0.3600000003352761, + 0.8000000007450581, + 1 + ] + }, + "2": { + "Id": 1121202, + "Name": "칠성을 덮은 삭월의 밤", + "Desc": "필살기 발동 후 다음 강화된 전투 스킬의 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.8000000007450581 + ] + }, + "3": { + "Id": 1121203, + "Name": "차오르는 달", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 1121204, + "Name": "달의 검을 쥐고", + "Desc": "[전백(轉魄)] 상태에서 [달빛] 스택마다 치명타 피해가 추가로 #1[i]% 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 1121205, + "Name": "어둠에 잠긴 삼태성", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 1121206, + "Name": "텅 빈 검은 달", + "Desc": "경류가 [전백(轉魄)] 상태에 진입 시 [삭망]의 최대 스택이 1스택 증가하고 [삭망]을 #1[i]스택 추가로 획득한다. [전백] 상태일 때 얼음 속성 저항 관통이 #2[i]% 증가한다", + "ParamList": [ + 1, + 0.20000000018626451 + ] + } + }, + "Skills": { + "1121201": { + "Id": 1121201, + "Name": "빛나는 달빛", + "Desc": "지정된 단일 적에게 경류 HP 최대치의 #1[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "1121202": { + "Id": 1121202, + "Name": "무결의 섬광", + "Desc": "지정된 단일 적에게 경류 HP 최대치의 #1[i]%만큼 얼음 속성 피해를 가하고 [삭망]을 #2[i]스택 획득한다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1 + ] + } + } + }, + "1121203": { + "Id": 1121203, + "Name": "담화생멸, 범람하는 은하", + "Desc": "지정된 단일 적에게 경류 HP 최대치의 #1[i]%만큼 얼음 속성 피해를 가하고, 인접한 목표에게 경류 HP 최대치의 #3[i]%만큼 얼음 속성 피해를 가한다. 공격 종료 후 [삭망]을 #2[i]스택 획득한다", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 1, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 1, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 1, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 1, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 1, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 1, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 1, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 1, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 1, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.890000000828877, + 1, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.9800000009126961, + 1, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.0700000000651926, + 1, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.1600000001490116, + 1, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.2500000002328306, + 1, + 1.1249999997671694, + 1 + ] + } + } + }, + "1121204": { + "Id": 1121204, + "Name": "담월전백", + "Desc": "[삭망] #5[i]스택 보유 시 경류가 [전백(轉魄)] 상태에 진입하고 추가로 [삭망]을 1스택 획득하며, 행동 게이지가 #6[i]% 증가하고 치명타 확률이 #7[i]% 증가한다. 이후 전투 스킬 [무결의 섬광]이 [한천(寒川)에 비친 달]로 강화되며 해당 전투 스킬만 사용할 수 있다. [전백] 상태일 때 공격을 발동하면 동료의 HP를 각각 동료 HP 최대치의 #2[i]%만큼 소모한다(각 동료의 HP는 최대 1까지 소모 가능). [전백] 상태에서 아군이 HP를 소모하면 경류는 [달빛]을 1스택 획득한다. [달빛] 스택마다 경류가 가하는 치명타 피해가 #3[i]% 증가하고, 최대 #4[i]스택 보유할 수 있다. [전백] 상태가 종료되기 전에는 다시 [전백] 상태에 진입할 수 없다. [삭망]은 최대 3스택 누적되며, [삭망] 스택이 0이 되면 [전백] 상태를 종료하고 모든 [달빛]을 해제한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.22000000020489097, + 5, + 2, + 1, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.24200000008568168, + 5, + 2, + 1, + 0.41000000038184226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.2639999999664724, + 5, + 2, + 1, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.2859999998472631, + 5, + 2, + 1, + 0.4300000004004687 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.3079999997280538, + 5, + 2, + 1, + 0.44000000040978193 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.33000000030733645, + 5, + 2, + 1, + 0.45000000041909516 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.35750000015832484, + 5, + 2, + 1, + 0.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.3850000000093132, + 5, + 2, + 1, + 0.47500000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.41250000055879354, + 5, + 2, + 1, + 0.4875000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.44000000040978193, + 5, + 2, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.46200000029057264, + 5, + 2, + 1, + 0.5100000004749745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.48400000017136335, + 5, + 2, + 1, + 0.5200000004842877 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5060000000521541, + 5, + 2, + 1, + 0.530000000493601 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5279999999329448, + 5, + 2, + 1, + 0.5400000005029142 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.05000000004656613, + 0.5500000005122274, + 5, + 2, + 1, + 0.5500000005122274 + ] + } + } + }, + "1121206": { + "Id": 1121206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "1121207": { + "Id": 1121207, + "Name": "참나를 비추는 거울", + "Desc": "비술 사용 후 자신의 주위에 #3[i]초 동안 지속되는 특수 영역을 1개 만든다. 특수 영역 내의 적은 빙결 상태에 빠진다. 특수 영역 내의 적과 전투에 진입하면 즉시 자신의 에너지가 #6[i]pt 회복되고 삭망을 #1[i]스택 획득하며, #2[i]%기본 확률로 적이 빙결 상태에 빠진다, 지속 시간: #4[i]턴. 빙결 상태일 때 적은 행동할 수 없고, 턴이 시작될 때마다 경류 HP 최대치의 #5[i]%만큼 얼음 속성 추가 피해를 받는다. 아군이 만든 영역 효과는 최대 1개만 존재할 수 있다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 20, + 1, + 0.8000000007450581, + 15 + ] + } + } + }, + "1121209": { + "Id": 1121209, + "Name": "한천(寒川)에 비친 달", + "Desc": "지정된 단일 적에게 경류 HP 최대치의 #1[i]%만큼 얼음 속성 피해를 가하고, 인접한 목표에게 경류 HP 최대치의 #3[i]%만큼 얼음 속성 피해를 가한다. [삭망]을 #2[i]스택 소모한다. 해당 스킬 발동 시 전투 스킬 포인트가 소모되지 않는다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 1, + 0.375 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 1, + 0.41250000055879354 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 1, + 0.45000000041909516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 1, + 0.4875000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 1, + 0.5250000001396984 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 1, + 0.5625000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 1, + 0.6093750006984919 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 1, + 0.6562500006984919 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 1, + 0.7031250006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 1, + 0.7500000006984919 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 1, + 0.7875000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 1, + 0.8250000004190952 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1, + 0.8625000009778887 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1, + 0.9375000006984919 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Normal.png", + "LevelUpSkillID": [ + 1121201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 11212001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_BP.png", + "LevelUpSkillID": [ + 1121202, + 1121209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Ultra.png", + "LevelUpSkillID": [ + 1121203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_Passive.png", + "LevelUpSkillID": [ + 1121204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 11212004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1212_Maze.png", + "LevelUpSkillID": [ + 1121207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 11212101, + "PointName": "사경", + "PointDesc": "[전백(轉魄)] 상태일 때 효과 저항이 #1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 11212102, + "PointName": "검술의 일인자", + "PointDesc": "[무결의 섬광] 발동 후 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1212_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 11212103, + "PointName": "서리 혼", + "PointDesc": "[전백(轉魄)] 상태일 때 필살기가 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212201, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212202, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 11212101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212203, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 11212202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 11212203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212205, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 11212102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212206, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 11212205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212207, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 11212206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 11212103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212209, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 11212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "속도" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 11212210, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 11212208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + } + } + } + }, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 195.36000000033528, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 273.50400000019, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 351.6480000000447, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 429.7920000005979, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 507.9360000004526, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 586.0800000000745, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 664.2239999999292, + "HPAdd": 9.768000000156462, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1212, + "Set4IDList": [ + 122, + 104, + 108 + ], + "Set2IDList": [ + 319, + 309, + 306 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 338, + 280 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1213": { + "Name": "단항•음월", + "Desc": "단항의 비디아다라족으로서의 본모습, 전생의 「음월군」이 남긴 힘.\\n이맛전의 각관을 받으면 그 죄인의 모든 공과를 이어받아야 한다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "danhengil", + "SPNeed": 140, + "BaseType": "Warrior", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 121301, + "Name": "휘감긴 하늘", + "Desc": "[긍지]의 중첩 가능 스택 수가 #1[i]스택 증가하며, 공격 단수마다 [긍지]를 1스택 추가로 획득한다", + "ParamList": [ + 4 + ] + }, + "2": { + "Id": 121302, + "Name": "구유(九斿)", + "Desc": "필살기 발동 후 단항•음월의 행동 게이지가 100% 증가하고 추가로 [역린] 1개를 획득한다", + "ParamList": [] + }, + "3": { + "Id": 121303, + "Name": "구름 깃발", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 121304, + "Name": "조풍(嘲風)", + "Desc": "[노호]의 버프 효과가 자신의 다음 턴이 종료될 때까지 지속된다", + "ParamList": [] + }, + "5": { + "Id": 121305, + "Name": "오만한 기세", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 121306, + "Name": "용의 강림", + "Desc": "다른 아군 캐릭터가 필살기를 발동하면 단항•음월이 다음 번에 [빛나는 도약] 발동 시 허수 속성 저항 관통#1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택", + "ParamList": [ + 0.20000000018626451, + 3 + ] + } + }, + "Skills": { + "121301": { + "Id": 121301, + "Name": "연화", + "Desc": "지정된 단일 적에게 2단 공격을 발동하여 단항•음월 공격력의 #1[i]%만큼 허수 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121302": { + "Id": 121302, + "Name": "자유로운 용의 힘", + "Desc": "일반 공격의 효과가 강화되며, 최대 3회 연속 강화할 수 있다. 해당 스킬 발동 시 전투 스킬 포인트가 소모되지 않으며, 전투 스킬을 사용하지 않은 것으로 간주한다.\\n강화 1회: [연화]에서 [순간]으로 전환\\n강화 2회: [연화]에서 [신성의 창]으로 전환\\n강화 3회: [연화]에서 [빛나는 도약]으로 전환\\n[신성의 창] 또는 [빛나는 도약] 발동 시, 4단 공격부터 공격 단수마다 공격하기 전에 [노호]를 1스택 획득한다. [노호] 1스택마다 단항•음월의 치명타 피해가 #1[f1]% 증가한다. 해당 효과는 최대 #2[i]스택 중첩 가능하며, 자신의 턴이 종료될 때까지 지속된다", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06599999964237213, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07199999992735684, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07799999951384962, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08399999979883432, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09749999991618097, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1049999997485429, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11250000027939677, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.12000000011175871, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12599999969825149, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1319999999832362, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.13799999956972897, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.14399999985471368, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 4 + ] + } + } + }, + "121303": { + "Id": 121303, + "Name": "창룡의 굽어살핌, 정화된 세상", + "Desc": "지정된 단일 적에게 3단 공격을 발동하여 단항•음월 공격력의 #1[i]%만큼 허수 속성 피해를 주고, 인접한 목표에게 단항•음월 공격력의 #2[i]%만큼 허수 속성 피해를 주며 동시에 [역린]을 #3[i]개 획득한다.\\n[역린]은 최대 #4[i]개 보유할 수 있으며, 단항•음월의 전투 스킬 포인트를 대체하여 소모할 수 있다. [역린] 소모는 전투 스킬 포인트 소모로 간주한다", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 0.840000000782311, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.9200000008568168, + 0.8960000004153699, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.040000000037253, + 0.9520000007469207, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.1600000001490116, + 1.007999999448657, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2800000002607703, + 1.0639999997802079, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.400000000372529, + 1.1200000001117587, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.5500000005122274, + 1.1900000001769513, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.700000000651926, + 1.2600000002421439, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.850000000791624, + 1.3300000003073364, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.400000000372529, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1200000001117587, + 1.456000000005588, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.2400000002235174, + 1.5120000003371388, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.360000000335276, + 1.5679999999701977, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.480000000447035, + 1.6240000003017485, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.6000000005587935, + 1.6800000006332994, + 2, + 3 + ] + } + } + }, + "121304": { + "Id": 121304, + "Name": "긍지", + "Desc": "단항•음월의 공격 단수마다 [긍지] 효과를 1스택 획득하고, 스택당 자신이 가하는 피해가 #1[f1]% 증가한다. 해당 효과는 #2[i]스택 중첩 가능하며, 자신의 턴이 종료될 때까지 지속된다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.054999999701976776, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.060000000055879354, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.06499999971129, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07000000006519258, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.07499999972060323, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08125000051222742, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.08749999990686774, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09375000069849193, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 6 + ] + } + } + }, + "121306": { + "Id": 121306, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121307": { + "Id": 121307, + "Name": "천공을 가르는 용오름", + "Desc": "비술을 사용하면 #2[i]초 동안 [용의 도약] 상태에 진입한다. [용의 도약] 상태에서 공격을 사용하면 빠른 속도로 전방을 향해 일정 거리 이동하고 접촉한 적을 공격한다. 빠른 이동 중에는 적의 모든 공격을 막을 수 있다. [용의 도약] 상태에서 적을 공격해 전투에 진입하면 모든 적에게 단항•음월 공격력의 #3[i]%만큼 허수 속성 피해를 주고, [역린]을 #1[i]개 획득한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 20, + 1.2000000001862645 + ] + } + } + }, + "121308": { + "Id": 121308, + "Name": "순간", + "Desc": "지정된 단일 적에게 3단 공격을 발동하여 단항•음월 공격력의 #1[i]%만큼 허수 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5600000005215406 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.8200000007636845 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.080000000074506 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.3400000003166497 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.8600000008009374 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.1200000001117587 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.3800000003539026 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.6400000005960464 + ] + } + } + }, + "121309": { + "Id": 121309, + "Name": "취소", + "Desc": "강화를 취소한다", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121310": { + "Id": 121310, + "Name": "신성의 창", + "Desc": "지정된 단일 적에게 5단 공격을 발동해 단항•음월 공격력의 #1[i]%만큼 허수 속성 피해를 준다. 4번째 공격부터 인접한 목표에게 단항•음월 공격력의 #2[i]%만큼 허수 속성 피해를 준다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 35, + "BPNeed": 2, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.9000000008381903, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.2800000002607703, + 0.3600000003352761 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.660000000614673, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.040000000037253, + 0.48000000044703484 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.4200000003911555, + 0.5400000005029142 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.800000000745058, + 0.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4.180000000167638, + 0.6600000006146729 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.560000000521541, + 0.7200000006705523 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.940000000875443, + 0.7800000007264316 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5.320000000298023, + 0.840000000782311 + ] + } + } + }, + "121312": { + "Id": 121312, + "Name": "빛나는 도약", + "Desc": "지정된 단일 적에게 7단 공격을 발동해 단항•음월 공격력의 #1[i]%만큼 허수 속성 피해를 준다. 4번째 공격부터 인접한 목표에게 단항•음월 공격력의 #2[i]%만큼 허수 속성 피해를 준다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 40, + "BPNeed": 3, + "BPAdd": null, + "ShowStanceList": [ + 120, + 0, + 60 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.5000000004656613, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1.0800000000745058 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.5000000004656613, + 1.2600000002421439 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 1.440000000409782 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4.500000000465661, + 1.62000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5.500000000465661, + 1.9800000009126961 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 6, + 2.1600000001490116 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 6.500000000465661, + 2.3400000003166497 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 2.5200000004842877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Normal.png", + "LevelUpSkillID": [ + 121301, + 121308, + 121310, + 121312 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1213001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_BP.png", + "LevelUpSkillID": [ + 121302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Ultra.png", + "LevelUpSkillID": [ + 121303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_Passive.png", + "LevelUpSkillID": [ + 121304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1213004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1213_Maze.png", + "LevelUpSkillID": [ + 121307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1213101, + "PointName": "자취를 감춘 성신", + "PointDesc": "전투 시작 시 즉시 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1213102, + "PointName": "치수", + "PointDesc": "제어류 디버프 상태 저항 확률이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1213_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.24000000022351742 + ], + "PointID": 1213103, + "PointName": "계칩(啓蟄)", + "PointDesc": "허수 속성 약점을 보유한 적에게 피해를 가할 시 치명타 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213201, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1213101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213203, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1213202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1213203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213205, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1213102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1213205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213207, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1213206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1213103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1213208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1213210, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1213208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "허수 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1213, + "Set4IDList": [ + 102, + 112, + 117 + ], + "Set2IDList": [ + 309, + 305, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1214": { + "Name": "설의", + "Desc": "선주 「나부」의 생사를 감찰하는 기관 「시왕사」의 판관.\\n이미 죽은 지 오래지만, 인형의 몸을 빌려 「환생」하여 사명을 이행한다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "xueyi", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 121401, + "Name": "심마 속박", + "Desc": "특성의 추가 공격으로 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.40000000037252903 + ] + }, + "2": { + "Id": 121402, + "Name": "오진(五塵) 극복", + "Desc": "특성의 추가 공격이 약점 속성을 무시하고 적의 강인성을 소모시키며, 동시에 설의 HP 최대치의 #1[i]%만큼 HP를 회복한다. 약점 격파 시 양자 속성의 약점 격파 효과가 발동된다", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 121403, + "Name": "고제(苦諦) 알절", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 121404, + "Name": "악업 단절", + "Desc": "필살기 발동 시 격파 특수효과가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.40000000037252903, + 2 + ] + }, + "5": { + "Id": 121405, + "Name": "영신(靈神) 인도", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 121406, + "Name": "생사 주관", + "Desc": "[업보]의 스택 수 상한이 #1[i]스택으로 감소한다", + "ParamList": [ + 6 + ] + } + }, + "Skills": { + "121401": { + "Id": 121401, + "Name": "파마추", + "Desc": "지정된 단일 적에게 설의 공격력의 #1[i]%만큼 양자 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121402": { + "Id": 121402, + "Name": "죄악 진압", + "Desc": "지정된 단일 적에게 설의 공격력의 #1[i]%만큼 양자 속성 피해를 주고, 동시에 인접한 목표에게 설의 공격력의 #2[i]%만큼 양자 속성 피해를 준다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7000000006519258, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7700000007171184, + 0.3850000000093132 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9100000008475035, + 0.4550000000745058 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9800000009126961, + 0.49000000045634806 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1374999999534339, + 0.5687500007916242 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2249999998603016, + 0.6125000007450581 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3125000004656613, + 0.6562500006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.4700000004377216, + 0.7350000003352761 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.5400000005029142, + 0.7700000007171184 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6100000005681068, + 0.8050000004004687 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.6800000006332994, + 0.840000000782311 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613 + ] + } + } + }, + "121403": { + "Id": 121403, + "Name": "관통하는 천벌", + "Desc": "지정된 단일 적에게 설의 공격력의 #1[i]%만큼 양자 속성 피해를 준다. 이번 공격은 약점 속성을 무시하고 단일 적의 강인성을 소모시킨다. 약점 격파 시 양자 속성의 약점 격파 효과가 발동된다.\\n이번 공격에서 소모된 강인성이 많을수록 가하는 피해가 증가하며, 최대 #3[f1]% 증가한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 120, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.09000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.6000000005587935, + 0.09599999967031181, + 0.3840000000782311 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.7000000006519258, + 0.10199999995529652, + 0.40799999982118607 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.800000000745058, + 0.1079999995417893, + 0.43200000026263297 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9000000008381903, + 0.113999999826774, + 0.45600000000558794 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.12000000011175871, + 0.48000000044703484 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.1249999997671694, + 0.12749999994412065, + 0.5100000004749745 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.2500000002328306, + 0.13499999977648258, + 0.5400000005029142 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.375, + 0.14250000030733645, + 0.5700000005308539 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.5000000004656613, + 0.1500000001396984, + 0.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.6000000005587935, + 0.15599999972619116, + 0.6240000003017485 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.700000000651926, + 0.16200000001117587, + 0.6480000000447035 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.800000000745058, + 0.16799999959766865, + 0.6720000004861504 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.9000000008381903, + 0.17399999988265336, + 0.6960000002291054 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.18000000016763806, + 0.7200000006705523 + ] + } + } + }, + "121404": { + "Id": 121404, + "Name": "시왕의 심판, 업보 불변", + "Desc": "설의의 공격으로 적의 강인성을 소모하면, [업보] 스택 수를 중첩한다. 소모된 강인성이 많을수록 중첩되는 [업보] 스택 수가 증가한다. 최대 중첩수: #1[i]스택\\n설의 동료의 공격으로 적의 강인성을 소모하면, 설의는 [업보]를 #3[i]스택 중첩한다.\\n[업보]를 최대치까지 중첩하면 현재 모든 [업보]를 소모하고 즉시 적에게 추가 공격을 발동해 피해를 3회 주고, 피해를 줄 때마다 랜덤 단일 적에게 설의 공격력의 #2[i]%만큼 양자 속성 피해를 준다. 해당 추가 공격은 [업보]를 중첩할 수 없다", + "Type": null, + "Tag": "Bounce", + "SPBase": 2, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 8, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 8, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 8, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 8, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 8, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 8, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 8, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 8, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 8, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 8, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 8, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 8, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 8, + 1.1249999997671694, + 1 + ] + } + } + }, + "121406": { + "Id": 121406, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121407": { + "Id": 121407, + "Name": "즉참", + "Desc": "적을 바로 공격하며, 전투 진입 후 모든 적에게 설의 공격력의 #1[i]%만큼 양자 속성 피해를 준다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Normal.png", + "LevelUpSkillID": [ + 121401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1214001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_BP.png", + "LevelUpSkillID": [ + 121402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Ultra.png", + "LevelUpSkillID": [ + 121403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_Passive.png", + "LevelUpSkillID": [ + 121404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1214004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1214_Maze.png", + "LevelUpSkillID": [ + 121407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 2.400000000372529 + ], + "PointID": 1214101, + "PointName": "예지 장치", + "PointDesc": "자신이 가하는 피해를 격파 특수효과의 #1[i]%만큼 증가시킨다. 최대 #2[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.10000000009313226 + ], + "PointID": 1214102, + "PointName": "서슬 축수", + "PointDesc": "적의 현재 강인성이 본인 강인성 최대치의 #1[i]% 이상일 경우, 필살기로 가하는 피해가 #2[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1214_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 6 + ], + "PointID": 1214103, + "PointName": "분석 중추", + "PointDesc": "설의는 초과한 [업보] 스택을 누적한다. 최대 누적수: #1[i]스택. 설의는 특성 발동 후 초과한 스택의 [업보]를 획득한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214201, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1214101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214203, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1214202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214204, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1214203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214205, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1214102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1214205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214207, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1214206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214208, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1214103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1214208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1214210, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1214208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "격파 특수효과" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110416, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1214, + "Set4IDList": [ + 108, + 111, + 119 + ], + "Set2IDList": [ + 307, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 348, + 293 + ] + } + }, + "1215": { + "Name": "한아", + "Desc": "선주 「나부」 시왕사의 판관.\\n시왕의 명을 받아 명참천필을 관장하고 여러 가지 죄업을 판독하고 업보를 판결한다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "hanya", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 121501, + "Name": "일심(一心)", + "Desc": "필살기 효과를 보유한 아군이 적 처치 시, 한아의 행동 게이지가 #1[i]% 증가한다. 해당 효과는 턴마다 #2[i]회만 발동한다", + "ParamList": [ + 0.1500000001396984, + 1 + ] + }, + "2": { + "Id": 121502, + "Name": "이관(二觀)", + "Desc": "전투 스킬 발동 후 속도가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "Id": 121503, + "Name": "삼진(三塵)", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 121504, + "Name": "사제(四諦)", + "Desc": "필살기 지속 시간이 추가로 #1[i]턴 증가한다", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 121505, + "Name": "오음(五陰)", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 121506, + "Name": "육정(六正)", + "Desc": "특성의 피해 증가 효과가 추가로 #1[i]% 증가한다", + "ParamList": [ + 0.10000000009313226 + ] + } + }, + "Skills": { + "121501": { + "Id": 121501, + "Name": "명참천필(冥讖天筆)", + "Desc": "지정된 단일 적에게 한아 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121502": { + "Id": 121502, + "Name": "생멸속박", + "Desc": "지정된 단일 적에게 한아 공격력의 #1[i]%만큼 물리 속성 피해를 주고, [부담] 상태에 빠트린다.\\n아군이 [부담] 상태의 적에게 일반 공격, 전투 스킬, 필살기를 2회 발동할 때마다 즉시 아군의 전투 스킬 포인트를 1pt 회복한다. [부담]은 가장 최근에 부여된 목표에게만 적용되고, 전투 스킬 포인트 회복 효과를 #2[i]회 발동하면 자동으로 해제된다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": 17, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 2 + ] + } + } + }, + "121503": { + "Id": 121503, + "Name": "시왕의 칙령, 모두 복종하라", + "Desc": "지정된 단일 아군의 속도를 한아 속도의 #3[f1]%만큼 증가시키고, 해당 목표의 공격력을 #1[i]% 증가시킨다. 지속 시간: #2[i]턴", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 28, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 2, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 2, + 0.15499999979510903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 2, + 0.1600000001490116 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 2, + 0.16499999980442226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 2, + 0.17000000015832484 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 2, + 0.17499999981373549 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 2, + 0.18125000060535967 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 2, + 0.1875 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 2, + 0.1937500007916242 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 2, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 2, + 0.20499999984167516 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 2, + 0.21000000019557774 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 2, + 0.2149999998509884 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 2, + 0.22000000020489097 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 2, + 0.2249999998603016 + ] + } + } + }, + "121504": { + "Id": 121504, + "Name": "벌악", + "Desc": "아군이 [부담] 상태에 빠진 적에게 일반 공격, 전투 스킬, 필살기 발동 시, 가하는 피해가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 2 + ] + } + } + }, + "121506": { + "Id": 121506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121507": { + "Id": 121507, + "Name": "판명(判冥)", + "Desc": "적을 바로 공격하며, 전투 진입 후 랜덤 단일 적에게 전투 스킬 효과와 동일한 [부담]을 부여한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Normal.png", + "LevelUpSkillID": [ + 121501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1215001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_BP.png", + "LevelUpSkillID": [ + 121502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Ultra.png", + "LevelUpSkillID": [ + 121503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_Passive.png", + "LevelUpSkillID": [ + 121504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1215004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1215_Maze.png", + "LevelUpSkillID": [ + 121507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 1 + ], + "PointID": 1215101, + "PointName": "서기", + "PointDesc": "[부담]의 전투 스킬 포인트 회복 효과를 발동하는 단일 아군의 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 1215102, + "PointName": "명부", + "PointDesc": "[부담]을 보유한 적이 처치될 때, [부담] 효과로 모든 파티원의 전투 스킬 포인트 회복을 발동한 횟수가 #1[i]회 이하이면, 추가로 전투 스킬 포인트를 #2[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1215_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1215103, + "PointName": "환생", + "PointDesc": "[부담]의 전투 스킬 포인트 회복 효과가 발동되면 자신의 에너지가 #1[i]pt 회복된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215202, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1215101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1215202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1215201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1215102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215206, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1215205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1215201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1215103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215209, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1215208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "속도" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1215210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1215208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 124.80000000074506, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 174.72000000067055, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 224.64000000059605, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 274.56000000052154, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 324.48000000044703, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 374.40000000037253, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 424.320000000298, + "HPAdd": 6.240000000223517, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1215, + "Set4IDList": [ + 114, + 102, + 121 + ], + "Set2IDList": [ + 317, + 308, + 310 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 254, + 208 + ] + } + }, + "1217": { + "Name": "곽향", + "Desc": "선주 나부 시왕사의 견습 판관, 세양에게 빙의된 여우족 여자아이.\\n겁 많은 성격에 연약하고 여러 괴상한 일들을 두려워하지만, 악귀를 처리하는 직책을 맡고 있다", + "CharaInfo": { + "Camp": "선주 「나부」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "huohuo", + "SPNeed": 140, + "BaseType": "Priest", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 121701, + "Name": "세양의 기생, 요괴의 숙주", + "Desc": "특성으로 발동한 [양명]의 지속 시간이 #2[i]턴 연장되고, 곽향이 [양명]을 보유할 시 모든 아군의 속도가 #1[i]% 증가한다", + "ParamList": [ + 0.12000000011175871, + 1 + ] + }, + "2": { + "Id": 121702, + "Name": "판관의 부적, 영혼의 속박", + "Desc": "곽향이 [양명] 보유 시, 아군은 치명적인 공격을 받아도 전투 불능 상태에 빠지지 않으며, 즉시 자신의 HP 최대치의 #1[i]%만큼 HP를 회복하고 [양명]의 지속 턴 수를 1회 감소시킨다. 해당 효과는 단일 전투에서 #2[i]회 발동할 수 있다", + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "3": { + "Id": 121703, + "Name": "불운의 체질, 반딧불이를 부르는 촛불", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 121704, + "Name": "떠나지 않는 악귀, 불안정한 갈등", + "Desc": "전투 스킬 또는 특성을 발동해 아군에게 치유 제공 시, 목표의 현재 HP가 낮을수록 치유량이 증가하며, 곽향이 제공하는 치유량이 최대 #1[i]% 증가한다", + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Id": 121705, + "Name": "요괴 사냥, 시왕의 칙령", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 121706, + "Name": "동고동락, 언제나 함께", + "Desc": "아군에게 치유 제공 시, 목표가 가하는 피해가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.5000000004656613, + 2 + ] + } + }, + "Skills": { + "121701": { + "Id": 121701, + "Name": "깃발•풍우 소환", + "Desc": "지정된 단일 적에게 곽향 HP 최대치의 #1[i]%만큼 바람 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "121702": { + "Id": 121702, + "Name": "부적•보명호신", + "Desc": "지정된 단일 아군의 디버프 효과#5[i]개 해제하고, 지정된 단일 아군의 HP를 즉시 곽향 HP 최대치의 #1[f1]%+#2[i]만큼 회복시킨다. 동시에 인접한 목표의 HP를 곽향 HP 최대치의 #3[f1]%+#4[i]만큼 회복시킨다", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14000000013038516, + 140, + 0.11199999996460974, + 112, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1487500004004687, + 224, + 0.11899999948218465, + 179.20000000018626, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.15749999997206032, + 287, + 0.12599999969825149, + 229.6000000005588, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16625000024214387, + 350, + 0.13299999991431832, + 280, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17499999981373549, + 392, + 0.14000000013038516, + 313.6000000005588, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18200000002980232, + 434, + 0.14560000016354024, + 347.20000000018626, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18899999954737723, + 465.50000000046566, + 0.15120000019669533, + 372.40000000037253, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.19599999976344407, + 497, + 0.1568000002298504, + 397.6000000005588, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2029999999795109, + 528.5000000004657, + 0.1624000002630055, + 422.80000000074506, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.21000000019557774, + 560, + 0.16799999959766865, + 448, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21699999971315265, + 591.5000000004657, + 0.17360000032931566, + 473.20000000018626, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22399999992921948, + 623, + 0.17919999966397882, + 498.40000000037253, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.23100000014528632, + 654.5000000004657, + 0.18480000039562583, + 523.6000000005588, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.23799999966286123, + 686, + 0.1904000004287809, + 548.8000000007451, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.24499999987892807, + 717.5000000004657, + 0.19599999976344407, + 574, + 1 + ] + } + } + }, + "121703": { + "Id": 121703, + "Name": "꼬리•신귀 사역", + "Desc": "자신 이외의 동료에게 각자 에너지 최대치의 #1[f1]%만큼 에너지를 회복시키고, 동시에 공격력을 #2[f1]% 증가시킨다. 지속 시간: #3[i]턴", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.24000000022351742, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.15499999979510903, + 0.2559999998193234, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1600000001490116, + 0.27200000011362135, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.16499999980442226, + 0.28799999970942736, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.17000000015832484, + 0.3040000000037253, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.17499999981373549, + 0.3200000002980232, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.18125000060535967, + 0.3400000003166497, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1875, + 0.3600000003352761, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1937500007916242, + 0.3800000003539026, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20499999984167516, + 0.41599999996833503, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.21000000019557774, + 0.43200000026263297, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2149999998509884, + 0.44799999985843897, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.22000000020489097, + 0.4640000001527369, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016, + 0.48000000044703484, + 2 + ] + } + } + }, + "121704": { + "Id": 121704, + "Name": "빙의•천기합일", + "Desc": "전투 스킬 발동 후 곽향은 [양명(禳命)]을 획득한다. 지속 시간: #1[i]턴. 곽향의 턴이 시작될 때마다 지속 턴 수가 1 감소한다. 곽향이 [양명]을 보유하고 있으면 아군은 턴 시작 또는 필살기 발동 시, 자신의 HP를 곽향 HP 최대치의 #3[f1]%+#5[i]만큼 회복한다. 동시에 현재 HP 백분율이 #6[i]% 이하인 모든 아군에게 회복 효과를 1회 생성한다.\\n[양명]을 발동하여 아군에게 치유 제공 시, 해당 대상의 디버프 효과#2[i]개 해제한다. 해당 효과는 #7[i]회 발동 가능하다. 전투 스킬을 다시 발동하면 효과 발동 횟수는 갱신된다", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1, + 0.030000000027939677, + 0, + 30, + 0.5000000004656613, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 1, + 0.03187500103376806, + 0, + 48, + 0.5000000004656613, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 1, + 0.033750000642612576, + 0, + 61.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 1, + 0.035625000251457095, + 0, + 75, + 0.5000000004656613, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 1, + 0.037499999860301614, + 0, + 84, + 0.5000000004656613, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 1, + 0.03899999940767884, + 0, + 93, + 0.5000000004656613, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 1, + 0.04050000035203993, + 0, + 99.75000000069849, + 0.5000000004656613, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 1, + 0.04199999989941716, + 0, + 106.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 1, + 0.04350000014528632, + 0, + 113.25000000023283, + 0.5000000004656613, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.04499999969266355, + 0, + 120, + 0.5000000004656613, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 1, + 0.04649999993853271, + 0, + 126.75000000069849, + 0.5000000004656613, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 1, + 0.04799999948590994, + 0, + 133.50000000046566, + 0.5000000004656613, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 1, + 0.0494999997317791, + 0, + 140.25000000023283, + 0.5000000004656613, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 1, + 0.05099999997764826, + 0, + 147, + 0.5000000004656613, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 1, + 0.05250000022351742, + 0, + 153.7500000006985, + 0.5000000004656613, + 6 + ] + } + } + }, + "121706": { + "Id": 121706, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121707": { + "Id": 121707, + "Name": "악귀•귀물 제압", + "Desc": "곽향이 주위의 적을 위협하여 [백산(魄散)] 상태에 빠트린다. [백산] 상태의 적은 곽향에게서 도망친다. 지속 시간: #4[i]초. [백산] 상태의 적과 전투에 진입하면 #1[i]%기본 확률로 각 단일 적의 공격력을 #2[i]% 감소시킨다. 지속 시간: #3[i]턴", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.25000000023283064, + 2, + 10 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Normal.png", + "LevelUpSkillID": [ + 121701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1217001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_BP.png", + "LevelUpSkillID": [ + 121702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Ultra.png", + "LevelUpSkillID": [ + 121703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_Passive.png", + "LevelUpSkillID": [ + 121704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1217004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1217_Maze.png", + "LevelUpSkillID": [ + 121707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1217101, + "PointName": "나서지 못하는 마음", + "PointDesc": "전투 시작 시, 곽향이 [양명]을 획득한다. 지속 시간: #1[i]턴", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3500000003259629 + ], + "PointID": 1217102, + "PointName": "불운의 명", + "PointDesc": "제어류 디버프 상태 저항 확률이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1217_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1217103, + "PointName": "두려움의 압박", + "PointDesc": "특성을 발동해 아군에게 치유 제공 시 곽향이 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217201, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217202, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1217101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217203, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1217202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217204, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1217203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217205, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1217102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217206, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1217205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217207, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1217206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217208, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1217103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217209, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1217103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "효과 저항" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1217210, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1217, + "Set4IDList": [ + 101, + 114, + 110 + ], + "Set2IDList": [ + 302, + 310, + 317 + ], + "PropertyList3": [ + "HealRatioBase", + "HPAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 296, + 229 + ] + } + }, + "1218": { + "Name": "초구", + "Desc": "선주 「요청」의 여우족 의사이자 책사, 늘 웃는 얼굴로 사람들을 대하지만 실은 꽤 계산적이다.\\n단정사의 명문 출신으로, 한때 마음의 문을 닫고 속세와 단절해 의술을 손에서 놓았으나 「천격 장군」 비소를 치료하기 위해 다시 세상 밖으로 나왔다.\\n의식동원의 처방 연구에 정통하다. 그중에서도 통각을 자극하는 매운 음식이 특기이며, 「구궁각」이라는 가마솥 제약술을 발명했다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jiaoqiu", + "SPNeed": 100, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 121801, + "Name": "장기에 작용하는 다섯 가지 맛", + "Desc": "아군이 [훈작] 상태의 적에게 가하는 피해가 #1[i]% 증가한다. 특성 효과를 발동해 적을 [훈작] 상태에 빠트릴 때마다 이번에 중첩되는 [훈작] 스택이 추가로 #2[i]스택 증가한다", + "ParamList": [ + 0.40000000037252903, + 1 + ] + }, + "2": { + "Id": 121802, + "Name": "입에 단 것은 독이 되는 법", + "Desc": "적이 [훈작] 상태일 시 [훈작]이 해당 적에게 가하는 화염 속성 지속 피해 배율이 #1[i]% 증가한다", + "ParamList": [ + 3 + ] + }, + "3": { + "Id": 121803, + "Name": "거부할 수 없는 향료의 배합", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 121804, + "Name": "오장의 균형, 왕성한 혈기", + "Desc": "결계가 있을 시 적의 공격력이 #1[i]% 감소한다", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 121805, + "Name": "대낮의 전투, 심야의 암투", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 121806, + "Name": "화력으로 결정되는 맛", + "Desc": "적이 처치될 때 해당 적이 보유한 [훈작]은 필드 위 [훈작] 스택이 가장 낮은 적에게 중첩된다. [훈작]의 스택 수 상한이 #2[i]까지 증가하고, [훈작] 1스택마다 목표의 모든 속성 저항이 #3[i]% 감소한다", + "ParamList": [ + 1, + 9, + 0.030000000027939677 + ] + } + }, + "Skills": { + "121801": { + "Id": 121801, + "Name": "인화공심", + "Desc": "지정된 단일 적에게 초구 공격력의 #1[i]%만큼 화염 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "121802": { + "Id": 121802, + "Name": "번료급습", + "Desc": "지정된 단일 적에게 초구 공격력의 #1[i]%만큼 화염 속성 피해를 가하고, 동시에 인접한 목표에게 초구 공격력의 #2[i]%만큼 화염 속성 피해를 가한다. #3[i]%기본 확률로 주목표에게 [훈작]을 1스택 부여한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.45000000041909516, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.4950000001117587, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.5400000005029142, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.5850000001955777, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.6300000005867332, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.6750000002793968, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.7312500011175871, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.7875000005587935, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.8437500013969839, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.9000000008381903, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.9450000005308539, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.9900000009220093, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 1.0349999996833503, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 1.1249999997671694, + 1 + ] + } + } + }, + "121803": { + "Id": 121803, + "Name": "솥의 진법, 기정상생", + "Desc": "적이 보유한 [훈작] 스택 수를 필드 위 [훈작] 스택 최대치로 일괄 설정한 후, 결계를 펼치고 모든 적에게 초구 공격력의 #1[i]%만큼 화염 속성 피해를 가한다.\\n결계 안에 있을 시 적이 받는 필살기 피해가 #3[f1]% 증가하고, 행동 시 #2[i]%기본 확률로 [훈작]이 1스택 부여된다. 결계가 존재하는 동안 해당 효과는 최대 #5[i]회 발동하며, 적 1기당 턴마다 1회만 발동한다. 초구가 필살기를 발동할 때마다 발동 횟수는 초기화된다.\\n결계는 #4[i]턴 동안 지속되며, 자신의 턴이 시작될 때마다 결계의 지속 턴 수가 1 감소한다. 초구가 전투 불능 상태에 빠질 시 결계도 해제된다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 0.09000000008381903, + 3, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6400000005960464, + 0.5100000004749745, + 0.09599999967031181, + 3, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6800000006332994, + 0.5200000004842877, + 0.10199999995529652, + 3, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523, + 0.530000000493601, + 0.1079999995417893, + 3, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7600000007078052, + 0.5400000005029142, + 0.113999999826774, + 3, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581, + 0.5500000005122274, + 0.12000000011175871, + 3, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8500000007916242, + 0.5625000006984919, + 0.12749999994412065, + 3, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9000000008381903, + 0.5750000001862645, + 0.13499999977648258, + 3, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9500000008847564, + 0.587500000372529, + 0.14250000030733645, + 3, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.6000000005587935, + 0.1500000001396984, + 3, + 6 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.040000000037253, + 0.6100000005681068, + 0.15599999972619116, + 3, + 6 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.0800000000745058, + 0.62000000057742, + 0.16200000001117587, + 3, + 6 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1200000001117587, + 0.6300000005867332, + 0.16799999959766865, + 3, + 6 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.1600000001490116, + 0.6400000005960464, + 0.17399999988265336, + 3, + 6 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2000000001862645, + 0.6500000006053597, + 0.18000000016763806, + 3, + 6 + ] + } + } + }, + "121804": { + "Id": 121804, + "Name": "기정지변, 절묘한 맛", + "Desc": "초구가 일반 공격, 전투 스킬, 필살기를 사용해 적 명중 시 #1[i]%기본 확률로 해당 적에게 [훈작]을 1스택 부여한다. 1스택일 시 적이 받는 피해가 #2[f1]% 증가하고, 이후 1스택 중첩될 때마다 #3[f1]% 증가한다.\\n[훈작] 최대 중첩수: #4[i]스택, 지속 시간: #5[i]턴\\n적이 [훈작] 상태일 시 동시에 연소 상태에 빠진 것으로 간주하며, 턴이 시작될 때마다 초구 공격력의 #6[i]%만큼 화염 속성 지속 피해를 받는다", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.07499999972060323, + 0.0249999996740371, + 5, + 2, + 0.9000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.0825000002514571, + 0.027499999850988388, + 5, + 2, + 0.9900000009220093 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.09000000008381903, + 0.030000000027939677, + 5, + 2, + 1.0800000000745058 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.09749999991618097, + 0.032500000204890966, + 5, + 2, + 1.1700000001583248 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.1049999997485429, + 0.034999999683350325, + 5, + 2, + 1.2600000002421439 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.11250000027939677, + 0.037499999860301614, + 5, + 2, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.12187500111758709, + 0.040625000605359674, + 5, + 2, + 1.4625000006053597 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.13125000055879354, + 0.0437500006519258, + 5, + 2, + 1.5750000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.14062500069849193, + 0.04687500069849193, + 5, + 2, + 1.6875000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.1500000001396984, + 0.05000000004656613, + 5, + 2, + 1.800000000745058 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.15749999997206032, + 0.05250000022351742, + 5, + 2, + 1.890000000828877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.16499999980442226, + 0.054999999701976776, + 5, + 2, + 1.9800000009126961 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.17250000033527613, + 0.057499999878928065, + 5, + 2, + 2.0700000000651926 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.18000000016763806, + 0.060000000055879354, + 5, + 2, + 2.1600000001490116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.1875, + 0.06250000023283064, + 5, + 2, + 2.2500000002328306 + ] + } + } + }, + "121806": { + "Id": 121806, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "121807": { + "Id": 121807, + "Name": "혼란을 잠재우는 맹화", + "Desc": "비술 사용 후 #2[i]초 동안 지속되는 특수 영역을 하나 만든다. 특수 영역 안에 있는 적과 전투 진입 후 모든 적에게 초구 공격력의 #1[i]%만큼 화염 속성 피해를 가하고, #3[i]%기본 확률로 [훈작]을 1스택 부여한다. 아군이 만든 영역 효과는 최대 1개만 존재할 수 있다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 15, + 1 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Normal.png", + "LevelUpSkillID": [ + 121801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1218001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_BP.png", + "LevelUpSkillID": [ + 121802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Ultra.png", + "LevelUpSkillID": [ + 121803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_Passive.png", + "LevelUpSkillID": [ + 121804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1218004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1218_Maze.png", + "LevelUpSkillID": [ + 121807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 1218101, + "PointName": "관화", + "PointDesc": "전투 시작 시 즉시 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984, + 0.6000000005587935, + 2.400000000372529 + ], + "PointID": 1218102, + "PointName": "취사", + "PointDesc": "초구의 효과 명중이 #1[i]%를 초과할 시 #2[i]%를 초과할 때마다 추가로 공격력이 #3[i]% 증가한다. (최대 #4[i]%까지 증가)", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1218_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1218103, + "PointName": "훈향", + "PointDesc": "결계가 있을 시 적이 전투에 진입하면 [훈작]을 부여받고, 스택 수는 결계가 펼쳐진 동안 [훈작] 스택 수가 가장 높은 유닛과 동일하며, 최저치는 #1[i]스택이다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218201, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218202, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1218101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.031999999890103936, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218203, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1218202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218204, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1218203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218205, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1218102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218206, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1218205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.04799999948590994, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218207, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1218206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218208, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1218103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconFireAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218209, + "PointName": "피해 강화•화염", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1218103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "FireAddedRatio", + "Value": 0.06399999978020787, + "Name": "화염 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1218210, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1218201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0800000000745058, + "Name": "효과 명중" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1218, + "Set4IDList": [ + 116, + 110, + 106 + ], + "Set2IDList": [ + 303, + 302, + 308 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "FireAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "FireAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "StatusProbabilityBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 328, + 273 + ] + } + }, + "1220": { + "Name": "비소", + "Desc": "선주 「요청」의 천격 장군. 천궁의 7대 장군 중 하나로, 격식에 얽매이지 않으며 솔직하고 소탈하다.\\n각종 무예에 정통하고 신체를 극한으로 단련하여 「대첩 장군」이라는 명성을 얻었으며, 선주 군인과 백성의 사랑을 받고 있다.\\n그러나 「달의 광기」 증상을 겪고 있으며, 제한된 시간 내에 흉물을 모두 사냥하기 위해선——비소의 유일한 적은 바로 자신뿐이다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "feixiao", + "SPNeed": 12, + "BaseType": "Rogue", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 122001, + "Name": "극지 평정", + "Desc": "[섬렬의 검무] 또는 [하늘을 꿰뚫는 도끼] 발동 후 비소가 가하는 필살기 피해가 기존 피해의 #1[i]%만큼 추가로 증가한다. 최대 #2[i]스택 중첩되며, 필살기 행동이 종료될 때까지 지속된다", + "ParamList": [ + 0.10000000009313226, + 5 + ] + }, + "2": { + "Id": 122002, + "Name": "별과 달에 올리는 예", + "Desc": "특성 효과에서 아군이 추가 공격을 1회 발동할 때마다 비소가 [비황]을 1pt 획득한다. 해당 효과는 턴마다 최대 #1[i]회 발동한다", + "ParamList": [ + 6 + ] + }, + "3": { + "Id": 122003, + "Name": "서성 출현", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 122004, + "Name": "대담하고 신중하게", + "Desc": "특성 추가 공격의 강인성 감소 수치가 #1[i]% 증가하고, 발동 시 자신의 속도가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "ParamList": [ + 1, + 0.0800000000745058, + 2 + ] + }, + "5": { + "Id": 122005, + "Name": "드높은 하늘에 올라", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 122006, + "Name": "수구초심", + "Desc": "비소가 가하는 필살기 피해의 모든 속성 저항 관통#1[i]% 증가한다. 특성의 추가 공격 피해는 동시에 필살기 피해로 간주되며, 피해 배율이 #2[i]% 증가한다", + "ParamList": [ + 0.20000000018626451, + 1.400000000372529 + ] + } + }, + "Skills": { + "122001": { + "Id": 122001, + "Name": "섬렬", + "Desc": "지정된 단일 적에게 비소 공격력의 #1[i]%만큼 바람 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122002": { + "Id": 122002, + "Name": "꿰뚫는 도끼", + "Desc": "지정된 단일 적에게 비소 공격력의 #1[i]%만큼 바람 속성 피해를 가하고, 그 후 즉시 해당 목표에게 특성의 추가 공격을 1회 추가로 발동한다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613 + ] + } + } + }, + "122003": { + "Id": 122003, + "Name": "천지 격쇄", + "Desc": "지정된 단일 적에게 최대 비소 공격력의 #4[i]%만큼 바람 속성 피해를 가한다. 해당 공격 중에는 약점 속성을 무시하고 목표의 강인성을 감소시키며, 목표가 약점 격파 상태가 아닐 시 비소의 약점 격파 효율이 #2[i]% 증가한다.\\n비소는 먼저 해당 목표에게 [섬렬의 검무] 또는 [하늘을 꿰뚫는 도끼]를 총 #3[i]회 발동하고, 마지막으로 해당 목표에게 비소 공격력의 #1[i]%만큼 바람 속성 피해를 가한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 1, + 6, + 4.0200000000186265 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 1, + 6, + 4.317999999737367 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 1, + 6, + 4.6160000001545995 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 1, + 6, + 4.914000000571832 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 1, + 6, + 5.212000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 1, + 6, + 5.5100000004749745 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 1, + 6, + 5.882500000996515 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 1, + 6, + 6.254999999888241 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 1, + 6, + 6.627500000409782 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 6, + 7 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1, + 6, + 7.297999999718741 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1, + 6, + 7.596000000135973 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1, + 6, + 7.894000000553206 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1, + 6, + 8.192000000039116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1, + 6, + 8.490000000456348 + ] + } + } + }, + "122004": { + "Id": 122004, + "Name": "뇌정의 수렵", + "Desc": "[비황] #3[i]pt 도달 시 필살기를 활성화할 수 있으며, 최대 #4[i]pt 누적된다. 아군이 공격을 #2[i]회 발동할 때마다 비소가 [비황]을 1pt 획득하며, 비소의 필살기 공격은 횟수에 계산되지 않는다.\\n비소의 동료가 적에게 공격 발동 후 비소가 즉시 주목표에게 추가 공격을 발동하고, 비소 공격력의 #1[i]%만큼 바람 속성 피해를 가한다. 공격 가능한 주목표가 없을 시 랜덤 단일 적을 공격한다. 해당 효과는 턴마다 최대 1회 발동하며, 비소의 턴 시작 시 발동 횟수가 초기화된다. 해당 공격 발동 시 자신이 가하는 피해가 #5[i]% 증가한다, 지속 시간: #6[i]턴", + "Type": null, + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 2, + 6, + 12, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6050000002142042, + 2, + 6, + 12, + 0.33000000030733645, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6600000006146729, + 2, + 6, + 12, + 0.3600000003352761, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7150000003166497, + 2, + 6, + 12, + 0.3900000003632158, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7700000007171184, + 2, + 6, + 12, + 0.4200000003911555, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8250000004190952, + 2, + 6, + 12, + 0.45000000041909516, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.89375000144355, + 2, + 6, + 12, + 0.4875000002793968, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.962500001071021, + 2, + 6, + 12, + 0.5250000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.0312500004656613, + 2, + 6, + 12, + 0.5625000006984919, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1000000000931323, + 2, + 6, + 12, + 0.6000000005587935, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.154999999795109, + 2, + 6, + 12, + 0.6300000005867332, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2100000001955777, + 2, + 6, + 12, + 0.6600000006146729, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.2649999998975545, + 2, + 6, + 12, + 0.6900000006426126, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.3200000002980232, + 2, + 6, + 12, + 0.7200000006705523, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.375, + 2, + 6, + 12, + 0.7500000006984919, + 2 + ] + } + } + }, + "122006": { + "Id": 122006, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122007": { + "Id": 122007, + "Name": "폭풍의 몸", + "Desc": "비술 사용 후 #1[i]초 동안 지속되는 [적진 돌격] 상태에 진입한다. [적진 돌격] 상태에서는 일정 범위 내의 적을 끌어당기고 자신의 이동 속도가 #2[i]% 증가하며, 전투 진입 후 [비황]을 #4[i]pt 획득한다.\\n[적진 돌격] 상태에서 선공하면 끌어당긴 모든 적을 전투에 진입시킨다. 전투 진입 후 웨이브가 시작될 때마다 모든 적에게 비소 공격력의 #3[i]%만큼 바람 속성 피해를 가하고, 해당 피해는 반드시 치명타를 가한다. 끌어당긴 적이 1기를 초과하면 1기를 초과할 때마다 해당 피해의 배율이 #5[i]% 증가하고, 최대 #6[i]%까지 증가한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.5000000004656613, + 2, + 1, + 1, + 10 + ] + } + } + }, + "122008": { + "Id": 122008, + "Name": "섬렬의 검무", + "Desc": "선택한 목표에게 비소 공격력의 #1[i]%만큼 바람 속성 피해를 가한다. 목표가 약점 격파 상태일 경우 피해 배율이 #2[i]% 증가한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 0.375 + ] + } + } + }, + "122009": { + "Id": 122009, + "Name": "하늘을 꿰뚫는 도끼", + "Desc": "선택한 목표에게 비소 공격력의 #1[i]%만큼 바람 속성 피해를 가한다. 목표가 약점 격파 상태가 아닐 경우 피해 배율이 #2[i]% 증가한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3840000000782311, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40799999982118607, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.43200000026263297, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45600000000558794, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.48000000044703484, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5100000004749745, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5400000005029142, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5700000005308539, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6240000003017485, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6480000000447035, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6720000004861504, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6960000002291054, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7200000006705523, + 0.375 + ] + } + } + }, + "122014": { + "Id": 122014, + "Name": "천지 격쇄", + "Desc": null, + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 1, + 6, + 4.0200000000186265 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 1, + 6, + 4.317999999737367 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 1, + 6, + 4.6160000001545995 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 1, + 6, + 4.914000000571832 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 1, + 6, + 5.212000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 1, + 6, + 5.5100000004749745 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 1, + 6, + 5.882500000996515 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 1, + 6, + 6.254999999888241 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 1, + 6, + 6.627500000409782 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 6, + 7 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1, + 6, + 7.297999999718741 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1, + 6, + 7.596000000135973 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1, + 6, + 7.894000000553206 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1, + 6, + 8.192000000039116 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1, + 6, + 8.490000000456348 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Normal.png", + "LevelUpSkillID": [ + 122001 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1220001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_BP.png", + "LevelUpSkillID": [ + 122002 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Ultra.png", + "LevelUpSkillID": [ + 122003, + 122008, + 122009, + 122014 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_Passive.png", + "LevelUpSkillID": [ + 122004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1220004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1220_Maze.png", + "LevelUpSkillID": [ + 122007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1220101, + "PointName": "통천", + "PointDesc": "전투 시작 시 [비황]을 #1[i]pt 획득한다.\\n턴 시작 시, 이전 턴에서 특성으로 추가 공격을 발동하지 않은 경우 [비황] 획득에 필요한 공격 횟수가 1회 계산된다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3600000003352761 + ], + "PointID": 1220102, + "PointName": "해형", + "PointDesc": "필살기를 발동해 적에게 피해를 가하면 추가 공격을 발동한 것으로 간주한다. 추가 공격의 치명타 피해가 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1220_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.48000000044703484, + 3 + ], + "PointID": 1220103, + "PointName": "섬전", + "PointDesc": "전투 스킬 발동 시 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1220101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1220202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1220102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1220205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1220103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1220208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1220210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1220208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 52.80000000074506, + "DefenceAdd": 2.6400000005960464, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 73.92000000085682, + "DefenceAdd": 2.6400000005960464, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 95.04000000003725, + "DefenceAdd": 2.6400000005960464, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 116.16000000014901, + "DefenceAdd": 2.6400000005960464, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 137.28000000026077, + "DefenceAdd": 2.6400000005960464, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 158.40000000037253, + "DefenceAdd": 2.6400000005960464, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 179.5200000004843, + "DefenceAdd": 2.6400000005960464, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 112, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1220, + "Set4IDList": [ + 120, + 110, + 115 + ], + "Set2IDList": [ + 315, + 306, + 311 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1221": { + "Name": "운리", + "Desc": "선주 「주명」의 검 사냥꾼, 「촉연 장군」 회염의 총애를 받는 손녀로, 솔직한 성격을 가지고 있다.\\n어릴 적부터 회염을 따라 검예와 단조 기술을 배워 「염륜팔엽」 중 두 번째로 어린 천재 검객이 되었다.\\n주명에서 유출된 마검을 증오하고 「모든 마검을 사냥해 파괴하겠다」고 맹세했다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "yunli", + "SPNeed": 240, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 122101, + "Name": "번뇌를 벗어난 칼날", + "Desc": "[간파•참]과 [간파•멸]이 가하는 피해가 #1[i]% 증가하고, [간파•멸]의 추가 피해 횟수가 #2[i]회 증가한다", + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "2": { + "Id": 122102, + "Name": "새로 태어난 첫 빛", + "Desc": "반격을 발동해 피해를 가할 시 적의 방어력을 #1[i]% 무시한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 122103, + "Name": "구척검을 휘두르는 기예", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 122104, + "Name": "망치를 휘두르는 거장", + "Desc": "[간파•참] 또는 [간파•멸] 발동 후 자신의 효과 저항이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "5": { + "Id": 122105, + "Name": "변치 않는 무기는 돌이 아니니", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 122106, + "Name": "담대한 검법, 부드러운 마음", + "Desc": "[막기] 상태일 때, 적이 스킬을 직접 발동할 시 운리를 공격하는지와 상관없이 [간파•멸]을 발동하고 동시에 [막기] 효과를 해제한다. [간파•참] 또는 [간파•멸]을 발동해 피해를 가할 시 치명타 확률이 #1[i]% 증가하고, 물리 속성 저항 관통#2[i]% 증가한다", + "ParamList": [ + 0.1500000001396984, + 0.20000000018626451 + ] + } + }, + "Skills": { + "122101": { + "Id": 122101, + "Name": "건곤을 뒤엎는 검기", + "Desc": "지정된 단일 적에게 운리 공격력의 #1[i]%만큼 물리 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122102": { + "Id": 122102, + "Name": "천지를 뒤흔드는 대검", + "Desc": "운리 공격력의 #3[f1]%+#4[i]pt만큼 HP를 회복하며, 지정된 단일 적에게 운리 공격력의 #1[i]%만큼 물리 속성 피해를 가하고, 인접한 목표에게 운리 공격력의 #2[i]%만큼 물리 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.20000000018626451, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.33000000030733645, + 0.21250000037252903, + 80 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.3600000003352761, + 0.2249999998603016, + 102.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.3900000003632158, + 0.23750000004656613, + 125 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.25000000023283064, + 140 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 0.26000000024214387, + 155 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 0.2700000002514571, + 166.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 0.2800000002607703, + 177.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 0.29000000027008355, + 188.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.3000000002793968, + 200 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.6300000005867332, + 0.31000000028871, + 211.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 0.3200000002980232, + 222.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.6900000006426126, + 0.33000000030733645, + 233.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.7200000006705523, + 0.3400000003166497, + 245 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.3500000003259629, + 256.25000000023283 + ] + } + } + }, + "122103": { + "Id": 122103, + "Name": "대지의 검신, 천궁을 베는 검날", + "Desc": "에너지를 #8[i]pt 소모하며, 운리가 [막기]를 획득하고 모든 적을 도발 상태에 빠트리며, 아군 또는 적의 다음 턴이 종료될 때까지 지속된다. 또한 운리의 다음 반격이 가하는 치명타 피해가 #2[i]% 증가한다. 특성의 반격 효과 발동 시 반격 [간파•멸]을 발동하는 것으로 대체되고, 동시에 [막기] 효과가 해제된다. [막기] 상태에서 반격이 발동되지 않으면, 상태 종료 시 운리는 즉시 랜덤 적에게 반격 [간파•참]을 발동한다.\\n[간파•참]: 목표에게 운리 공격력의 #1[i]%만큼 물리 속성 피해를 가하고, 인접한 목표에게 운리 공격력의 #6[i]%만큼 물리 속성 피해를 가한다.\\n[간파•멸]: 목표에게 운리 공격력의 #1[i]%만큼 물리 속성 피해를 가하고, 인접한 목표에게 운리 공격력의 #6[i]%만큼 물리 속성 피해를 가한다. 이후 추가로 피해를 #4[i]회 가하며, 피해 1회당 랜덤 단일 적에게 운리 공격력의 #7[i]%만큼 물리 피해를 가한다.\\n운리가 해당 스킬을 통해 피해를 가할 시 필살기 피해를 가한 것으로 간주한다", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.3200000002980232, + 0.6000000005587935, + 0, + 6, + 0, + 0.6600000006146729, + 0.43200000026263297, + 120 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.407999999821186, + 0.6400000005960464, + 0, + 6, + 0, + 0.7040000003762543, + 0.46080000093206763, + 120 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.4960000000428408, + 0.6800000006332994, + 0, + 6, + 0, + 0.7480000001378357, + 0.48960000020451844, + 120 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5840000002644956, + 0.7200000006705523, + 0, + 6, + 0, + 0.7920000005979091, + 0.5184000001754612, + 120 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6720000004861504, + 0.7600000007078052, + 0, + 6, + 0, + 0.8360000003594905, + 0.5472000001464039, + 120 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.7600000007078052, + 0.8000000007450581, + 0, + 6, + 0, + 0.8800000008195639, + 0.5760000001173466, + 120 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.8700000008102506, + 0.8500000007916242, + 0, + 6, + 0, + 0.9350000005215406, + 0.612000000430271, + 120 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.9800000009126961, + 0.9000000008381903, + 0, + 6, + 0, + 0.9900000009220093, + 0.6480000000447035, + 120 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.090000000083819, + 0.9500000008847564, + 0, + 6, + 0, + 1.0449999996926636, + 0.6840000003576279, + 120 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.2000000001862645, + 1, + 0, + 6, + 0, + 1.1000000000931323, + 0.7200000006705523, + 120 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.2879999997094274, + 1.040000000037253, + 0, + 6, + 0, + 1.1439999998547137, + 0.748800000641495, + 120 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.375999999931082, + 1.0800000000745058, + 0, + 6, + 0, + 1.187999999616295, + 0.7776000006124377, + 120 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.464000000152737, + 1.1200000001117587, + 0, + 6, + 0, + 1.2320000000763685, + 0.8064000005833805, + 120 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.5520000003743917, + 1.1600000001490116, + 0, + 6, + 0, + 1.2759999998379499, + 0.8352000005543232, + 120 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.6400000005960464, + 1.2000000001862645, + 0, + 6, + 0, + 1.3200000002980232, + 0.8640000005252659, + 120 + ] + } + } + }, + "122104": { + "Id": 122104, + "Name": "단조의 섬광", + "Desc": "운리가 적에게 피격된 후, 추가로 에너지를 #3[i]pt 회복하고 즉시 공격자에게 반격을 발동해 해당 목표에게 운리 공격력의 #1[i]%만큼 물리 속성 피해를 가하며, 인접한 목표에게 운리 공격력의 #2[i]%만큼 물리 속성 피해를 가한다.\\n반격 가능한 목표가 없을 경우 랜덤 적에게 반격한다", + "Type": null, + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 15 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.33000000030733645, + 15 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.3600000003352761, + 15 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.3900000003632158, + 15 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 15 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516, + 15 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.4875000002793968, + 15 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.5250000001396984, + 15 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.5625000006984919, + 15 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 15 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.6300000005867332, + 15 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 15 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.6900000006426126, + 15 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.7200000006705523, + 15 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 15 + ] + } + } + }, + "122106": { + "Id": 122106, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122107": { + "Id": 122107, + "Name": "후발선지", + "Desc": "자신이 #2[i]초 동안 [튕겨내기] 효과를 획득한다. 지속 시간 동안 적을 공격하거나 피격되어 전투에 진입하면 즉시 랜덤 단일 적에게 [간파•멸]을 발동하고, 이번 공격이 가하는 피해가 #1[i]% 증가한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Normal.png", + "LevelUpSkillID": [ + 122101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1221001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_BP.png", + "LevelUpSkillID": [ + 122102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Ultra.png", + "LevelUpSkillID": [ + 122103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_Passive.png", + "LevelUpSkillID": [ + 122104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1221004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1221_Maze.png", + "LevelUpSkillID": [ + 122107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221101, + "PointName": "화륜", + "PointDesc": "[간파•참]을 1회 발동할 때마다 다음번 [간파•참]이 [간파•멸]로 변경된다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1221102, + "PointName": "각사", + "PointDesc": "[막기] 상태에서 받는 제어류 디버프 효과에 저항하며, 받는 피해가 #1[i]% 감소한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1221_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1221103, + "PointName": "진강", + "PointDesc": "반격 발동 시, 운리의 공격력이 #1[i]% 증가한다. 지속 시간: 1턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1221101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1221202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221204, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1221203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1221102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1221205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1221206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221208, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1221103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1221208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1221210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1221208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1221, + "Set4IDList": [ + 120, + 117, + 105 + ], + "Set2IDList": [ + 315, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 337, + 283 + ] + } + }, + "1222": { + "Name": "영사", + "Desc": "선주 「나부」 단정사의 신임 사정으로, 영리하고 아름다운 비디아다라 의사이다.\\n예민한 후각으로 병증을 구별하고 향기로 다른 사람의 마음을 안정시킨다.\\n복잡한 인간관계 처리에 능숙하며, 마음속으로는 불같이 화내도 겉으로는 절대 드러내지 않는다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "lingsha", + "SPNeed": 110, + "BaseType": "Priest", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 122201, + "Name": "파사의 향기", + "Desc": "영사의 약점 격파 효율이 #2[i]% 증가한다. 적의 약점이 격파될 시 해당 적의 방어력이 #1[i]% 감소한다", + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + }, + "2": { + "Id": 122202, + "Name": "붉은 향로에 기대어", + "Desc": "필살기 발동 시 모든 아군의 격파 특수효과가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.40000000037252903, + 3 + ] + }, + "3": { + "Id": 122203, + "Name": "새싹처럼 돋은 심지, 타오르는 꽃술", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 122204, + "Name": "장막 너머 불어오는 향취", + "Desc": "[부원] 행동 시 현재 HP가 가장 낮은 아군의 HP를 영사 공격력의 #1[i]%만큼 회복한다", + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Id": 122205, + "Name": "둥글게 피어나는 향, 기울지 않는 중심", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 122206, + "Name": "새벽녘 짙게 밴 난초향", + "Desc": "[부원]이 필드에 있을 시 모든 적의 모든 속성 저항이 #1[i]% 감소한다. [부원]이 공격 시 추가로 피해를 #2[i]회 가하고, 피해를 가할 때마다 랜덤 단일 적에게 영사 공격력의 #3[i]%만큼 화염 속성 피해와 #4[i]pt의 강인성 감소 수치를 가한다. 강인성 수치가 0을 초과하고 화염 속성 약점을 보유한 목표를 우선으로 선택한다", + "ParamList": [ + 0.20000000018626451, + 4, + 0.5000000004656613, + 5 + ] + } + }, + "Skills": { + "122201": { + "Id": 122201, + "Name": "공향", + "Desc": "지정된 단일 적에게 영사 공격력의 #1[i]%만큼 화염 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122202": { + "Id": 122202, + "Name": "연무 속 솟구치는 빛깔", + "Desc": "모든 적에게 영사 공격력의 #1[i]%만큼 화염 속성 피해를 가하고, 모든 아군의 HP를 영사 공격력의 #2[f1]%+#3[i]만큼 회복하며, [부원]의 행동 게이지#4[i]% 증가시킨다", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.10000000009313226, + 105, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 0.1049999997485429, + 168, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 0.11000000010244548, + 215.25000000023283, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 0.11499999975785613, + 262.50000000046566, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 0.12000000011175871, + 294, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.12399999983608723, + 325.50000000046566, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 0.12799999956041574, + 349.12499999976717, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 0.1319999999832362, + 372.7500000006985, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 0.1359999997075647, + 396.375, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 420, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 0.14399999985471368, + 443.62500000023283, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 0.1479999995790422, + 467.25000000023283, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 0.15200000000186265, + 490.87500000046566, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 0.15599999972619116, + 514.5000000004657, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.1600000001490116, + 538.1249999997672, + 0.20000000018626451 + ] + } + } + }, + "122203": { + "Id": 122203, + "Name": "천포를 가로지르는 홍연", + "Desc": "모든 적을 [감취] 상태에 빠트린다. [감취] 상태에서는 목표가 받는 격파 피해#4[i]% 증가한다, 지속 시간: #5[i]턴\\n모든 적에게 영사 공격력의 #1[i]%만큼 화염 속성 피해를 가하고, 모든 아군의 HP를 영사 공격력의 #2[f1]%+#3[i]만큼 회복하며, [부원]의 행동 게이지#6[i]% 증가시킨다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.0800000000745058, + 90, + 0.1500000001396984, + 2, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9600000008940697, + 0.08499999972991645, + 144, + 0.1600000001490116, + 2, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0200000000186265, + 0.09000000008381903, + 184.50000000046566, + 0.17000000015832484, + 2, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.0800000000745058, + 0.09499999973922968, + 225, + 0.18000000016763806, + 2, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1400000001303852, + 0.10000000009313226, + 252, + 0.1900000001769513, + 2, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.10399999981746078, + 279, + 0.20000000018626451, + 2, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2749999999068677, + 0.1079999995417893, + 299.25000000023283, + 0.21250000037252903, + 2, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.350000000325963, + 0.11199999996460974, + 319.50000000046566, + 0.2249999998603016, + 2, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4250000000465661, + 0.11599999968893826, + 339.7500000006985, + 0.23750000004656613, + 2, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.12000000011175871, + 360, + 0.25000000023283064, + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5600000005215406, + 0.12399999983608723, + 380.25000000023283, + 0.26000000024214387, + 2, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.62000000057742, + 0.12799999956041574, + 400.50000000046566, + 0.2700000002514571, + 2, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.6800000006332994, + 0.1319999999832362, + 420.7500000006985, + 0.2800000002607703, + 2, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.7400000006891787, + 0.1359999997075647, + 441, + 0.29000000027008355, + 2, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.800000000745058, + 0.14000000013038516, + 461.25000000023283, + 0.3000000002793968, + 2, + 1 + ] + } + } + }, + "122204": { + "Id": 122204, + "Name": "자욱한 연무, 화생의 향훈", + "Desc": "전투 스킬 발동 시 [부원]을 소환하며, 기본 상태에서 속도를 #1[i]pt, 행동 횟수를 #7[i]회 보유한다.\\n[부원] 행동 시 추가 공격을 발동하고, 모든 적에게 영사 공격력의 #2[i]%만큼 화염 속성 피해를 가한다. 추가로 랜덤 단일 적에게 영사 공격력의 #8[i]%만큼 화염 속성 피해를 가하고, 이번 피해는 강인성 수치가 0을 초과하고 화염 속성 약점을 보유한 목표를 우선으로 선택한다. 모든 아군의 디버프 효과#6[i]개 해제하고 영사 공격력의 #3[f1]%+#4[i]만큼 HP를 회복한다.\\n[부원]은 행동 횟수를 최대 #5[i]회 누적하며, 행동 횟수가 소진되거나 영사가 전투 불능 상태에 빠질 시 [부원]은 사라진다.\\n[부원]이 필드에 있을 때 전투 스킬을 발동하면 [부원]의 행동 횟수가 #7[i]회 증가한다", + "Type": null, + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 90, + 0.375, + 0.0800000000745058, + 90, + 5, + 1, + 3, + 0.375 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 90, + 0.41250000055879354, + 0.08499999972991645, + 144, + 5, + 1, + 3, + 0.41250000055879354 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 90, + 0.45000000041909516, + 0.09000000008381903, + 184.50000000046566, + 5, + 1, + 3, + 0.45000000041909516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 90, + 0.4875000002793968, + 0.09499999973922968, + 225, + 5, + 1, + 3, + 0.4875000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 90, + 0.5250000001396984, + 0.10000000009313226, + 252, + 5, + 1, + 3, + 0.5250000001396984 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 90, + 0.5625000006984919, + 0.10399999981746078, + 279, + 5, + 1, + 3, + 0.5625000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 90, + 0.6093750006984919, + 0.1079999995417893, + 299.25000000023283, + 5, + 1, + 3, + 0.6093750006984919 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 90, + 0.6562500006984919, + 0.11199999996460974, + 319.50000000046566, + 5, + 1, + 3, + 0.6562500006984919 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 90, + 0.7031250006984919, + 0.11599999968893826, + 339.7500000006985, + 5, + 1, + 3, + 0.7031250006984919 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 90, + 0.7500000006984919, + 0.12000000011175871, + 360, + 5, + 1, + 3, + 0.7500000006984919 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 90, + 0.7875000005587935, + 0.12399999983608723, + 380.25000000023283, + 5, + 1, + 3, + 0.7875000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 90, + 0.8250000004190952, + 0.12799999956041574, + 400.50000000046566, + 5, + 1, + 3, + 0.8250000004190952 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 90, + 0.8625000009778887, + 0.1319999999832362, + 420.7500000006985, + 5, + 1, + 3, + 0.8625000009778887 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 90, + 0.9000000008381903, + 0.1359999997075647, + 441, + 5, + 1, + 3, + 0.9000000008381903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 90, + 0.9375000006984919, + 0.14000000013038516, + 461.25000000023283, + 5, + 1, + 3, + 0.9375000006984919 + ] + } + } + }, + "122206": { + "Id": 122206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122207": { + "Id": 122207, + "Name": "흩어지는 연무의 색채", + "Desc": "비술 사용 후 다음 전투 시작 시 즉시 [부원]을 소환하고, 모든 적을 [감취] 상태에 빠트린다, 지속 시간: #1[i]턴", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Normal.png", + "LevelUpSkillID": [ + 122201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1222001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_BP.png", + "LevelUpSkillID": [ + 122202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Ultra.png", + "LevelUpSkillID": [ + 122203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_Passive.png", + "LevelUpSkillID": [ + 122204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1222004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1222_Maze.png", + "LevelUpSkillID": [ + 122207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064, + 0.10000000009313226, + 0.5000000004656613, + 0.20000000018626451 + ], + "PointID": 1222101, + "PointName": "적향", + "PointDesc": "자신의 공격력/치유량이 격파 특수효과의 #1[i]%/#2[i]%만큼 증가하며, 공격력/치유량은 최대 #3[i]%/#4[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1222102, + "PointName": "향연", + "PointDesc": "일반 공격 발동 시 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1222_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 2 + ], + "PointID": 1222103, + "PointName": "여향", + "PointDesc": "[부원]이 필드에 있을 때 임의의 아군 캐릭터가 피해를 받거나 HP를 소모할 시, 현재 파티에 HP 백분율이 #1[i]% 이하인 캐릭터가 있다면 [부원]은 즉시 적에게 특성의 추가 공격을 발동하고, 이번 발동은 [부원]의 행동 횟수를 소모하지 않는다. 해당 효과는 #2[i]턴 후 다시 발동할 수 있다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222201, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1222101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222203, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1222202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222204, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1222203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222205, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1222102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1222205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222207, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1222206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222208, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1222103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1222103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1222210, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "격파 특수효과" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 184.80000000074506, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 258.72000000067055, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 332.64000000059605, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 406.56000000052154, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 480.48000000044703, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 554.4000000003725, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 628.320000000298, + "HPAdd": 9.240000000223517, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1222, + "Set4IDList": [ + 119, + 111, + 101 + ], + "Set2IDList": [ + 316, + 307, + 302 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 344, + 297 + ] + } + }, + "1223": { + "Name": "맥택", + "Desc": "선주 「요청」의 그림자 호위, 과묵하고 홀로 움직인다.\\n정보에 관한 일과 공개적으로 처리할 수 없는 일을 전담하며, 사람들 앞에 모습을 드러내는 일이 드물다. 맥택이 칼끝을 드러내는 순간, 적에게는 죽음의 시간이 임박한 것이다.\\n암살 수단이 다양하고, 청결과 정리 정돈에 대해 남다른 집착을 보인다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "moze", + "SPNeed": 120, + "BaseType": "Rogue", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 122301, + "Name": "다짐", + "Desc": "전투 진입 후 맥택은 에너지를 #2[i]pt 회복한다. 특성의 추가 피해를 1회 발동할 때마다 맥택은 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 2, + 20 + ] + }, + "2": { + "Id": 122302, + "Name": "정벌", + "Desc": "모든 아군이 [사냥감]이 된 적에게 피해를 가할 시 치명타 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 122303, + "Name": "추격", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 122304, + "Name": "은폐", + "Desc": "필살기 발동 시 맥택이 가하는 피해가 #1[f1]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "5": { + "Id": 122305, + "Name": "기만", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 122306, + "Name": "단심", + "Desc": "특성의 추가 공격 피해 배율이 #1[i]% 증가한다", + "ParamList": [ + 0.25000000023283064 + ] + } + }, + "Skills": { + "122301": { + "Id": 122301, + "Name": "암기 투척", + "Desc": "지정된 단일 적에게 맥택 공격력의 #1[i]%만큼 번개 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122302": { + "Id": 122302, + "Name": "맹속 기습", + "Desc": "지정된 단일 적을 [사냥감]으로 만들고 해당 목표에게 맥택 공격력의 #1[i]%만큼 번개 속성 피해를 가하며, 충전을 #2[i]pt 획득한다.\\n필드 위에 전투 가능한 다른 캐릭터가 없을 시 맥택은 전투 스킬을 사용할 수 없으며, 적의 [사냥감] 상태는 해제된다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 9 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 9 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 9 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 9 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 9 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 9 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 9 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 9 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 9 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 9 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 9 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 9 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 9 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 9 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 9 + ] + } + } + }, + "122303": { + "Id": 122303, + "Name": "날렵한 예기, 맹렬한 그림자", + "Desc": "지정된 단일 적에게 맥택 공격력의 #1[i]%만큼 번개 속성 피해를 가하고, 해당 목표에게 특성의 추가 공격을 발동한다. 이번 추가 공격 발동 전에 목표가 처치됐을 경우 랜덤 단일 적에게 추가 공격을 발동한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.62000000057742 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.7280000001192093 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.8360000003594905 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9440000005997717 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.0519999999087304 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1600000001490116 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.294999999925494 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4300000004004687 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.5650000001769513 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.808000000193715 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.9160000004339963 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.023999999742955 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.131999999983236 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.2400000002235174 + ] + } + } + }, + "122304": { + "Id": 122304, + "Name": "깃을 꺾어 완성한 칼날", + "Desc": "필드 위에 [사냥감]이 있을 시 맥택이 퇴장 상태에 진입한다.\\n아군이 [사냥감]을 공격하면 맥택은 추가로 자신의 공격력의 #1[i]%만큼 번개 속성 추가 피해를 1회 가하고, 충전을 1pt 소모한다. 충전을 #2[i]pt 소모할 때마다 맥택이 [사냥감]에게 추가 공격을 1회 발동하며, 자신의 공격력의 #3[i]%만큼 번개 속성 피해를 가한다. 충전이 0일 시 목표의 [사냥감] 상태를 해제하고, 추가 공격 발동에 필요한 충전 포인트 계산을 초기화한다. 특성의 추가 공격은 충전을 소모하지 않는다", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 3, + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 3, + 0.8800000008195639 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 3, + 0.9600000008940697 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 3, + 1.040000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 3, + 1.1200000001117587 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 3, + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 3, + 1.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 3, + 1.400000000372529 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 3, + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 3, + 1.6800000006332994 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 3, + 1.7600000007078052 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 3, + 1.840000000782311 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 3, + 1.9200000008568168 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 3, + 2 + ] + } + } + }, + "122306": { + "Id": 122306, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122307": { + "Id": 122307, + "Name": "은닉한 날개", + "Desc": "비술 사용 후 #1[i]초 동안 지속되는 은신 상태에 진입한다. 은신 상태에선 적에게 들키지 않으며, 맥택이 은신 상태에서 적을 공격해 전투에 진입할 시 피해가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Normal.png", + "LevelUpSkillID": [ + 122301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1223001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_BP.png", + "LevelUpSkillID": [ + 122302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Ultra.png", + "LevelUpSkillID": [ + 122303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_Passive.png", + "LevelUpSkillID": [ + 122304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1223004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1223_Maze.png", + "LevelUpSkillID": [ + 122307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 1 + ], + "PointID": 1223101, + "PointName": "수묵자객", + "PointDesc": "특성의 추가 공격 발동 후 전투 스킬 포인트를 #1[i]pt 회복한다. 해당 효과는 #2[i]턴 후 다시 발동할 수 있다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968 + ], + "PointID": 1223102, + "PointName": "비수를 쥔 손", + "PointDesc": "맥택이 퇴장 상태 해제 시 행동 게이지가 #1[i]% 증가한다. 웨이브가 시작될 때마다 맥택의 행동 게이지가 #2[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1223_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1223103, + "PointName": "올곧은 복수심", + "PointDesc": "필살기를 발동해 피해를 가할 시 추가 공격을 발동한 것으로 간주한다. [사냥감]이 받는 추가 공격 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223201, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1223101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223203, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1223202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223205, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1223102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223206, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1223205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223207, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1223103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223209, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1223208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1223210, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1223208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 48, + "DefenceAdd": 2.400000000372529, + "HPBase": 110.40000000037253, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 67.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 154.56000000052154, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 86.40000000037253, + "DefenceAdd": 2.400000000372529, + "HPBase": 198.72000000067055, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 2.400000000372529, + "HPBase": 242.88000000081956, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 124.80000000074506, + "DefenceAdd": 2.400000000372529, + "HPBase": 287.04000000003725, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 144, + "DefenceAdd": 2.400000000372529, + "HPBase": 331.20000000018626, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 163.20000000018626, + "DefenceAdd": 2.400000000372529, + "HPBase": 375.3600000003353, + "HPAdd": 5.520000000484288, + "SpeedBase": 111, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1223, + "Set4IDList": [ + 117, + 109, + 120 + ], + "Set2IDList": [ + 315, + 314, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 283 + ] + } + }, + "1224": { + "Name": "Mar. 7th", + "Desc": "선주 의상을 입은 Mar. 7th. 검을 든 무협 소녀다.\\n운리와 연경의 가르침을 받고 선주에서 좋은 「기억」을 더 많이 남길 생각에 의욕이 넘친다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "mar7th2", + "SPNeed": 110, + "BaseType": "Rogue", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 122401, + "Name": "별처럼 빛나는 초화의 검광", + "Desc": "필드 위에 [사부]가 있을 시 Mar. 7th의 속도가 #1[i]% 증가한다", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 122402, + "Name": "파도처럼 춤추는 백설검", + "Desc": "[사부]가 일반 공격 또는 전투 스킬을 발동해 적을 공격할 때마다 Mar. 7th가 즉시 추가 공격을 발동하고, 이번 공격의 주목표에게 Mar. 7th 공격력의 #1[i]%만큼 허수 속성 피해를 가하며, [사부]의 운명의 길에 따라 상응하는 효과를 발동한 후 충전을 #3[i]pt 획득한다. 공격 가능한 주목표가 없는 경우 랜덤 단일 적을 공격한다. 해당 효과는 턴마다 최대 1회 발동한다", + "ParamList": [ + 0.6000000005587935, + 5, + 1, + 15 + ] + }, + "3": { + "Id": 122403, + "Name": "영리한 두뇌, 뛰어난 실력", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 122404, + "Name": "물러서지 않는 용봉의 기세", + "Desc": "턴 시작 시 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 5 + ] + }, + "5": { + "Id": 122405, + "Name": "훈련은 많이, 단것은 조금", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 122406, + "Name": "천하제일은 바로 이 몸", + "Desc": "필살기 발동 후 다음번 강화된 일반 공격이 가하는 치명타 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "122401": { + "Id": 122401, + "Name": "요사를 씻어내는 유리검", + "Desc": "지정된 단일 적에게 Mar. 7th 공격력의 #1[i]%만큼 허수 속성 피해를 가하고, 충전을 #2[i]pt 획득한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1 + ] + } + } + }, + "122402": { + "Id": 122402, + "Name": "사부, 차 마셔!", + "Desc": "자신 이외의 지정된 단일 아군을 [사부]로 만들고, [사부]의 속도가 #1[f1]% 증가한다. 최근 전투 스킬의 대상이 된 아군만이 Mar. 7th의 [사부]로 간주된다.\\n일반 공격을 발동하거나 강화된 일반 공격 피해를 1단 가할 시, 필드 위에 지정된 운명의 길의 [사부]가 존재하면 상응하는 효과를 발동한다.\\n「지식」, 「파멸」, 「수렵」, 「기억」: [사부] 속성에 따른 추가 피해를 Mar. 7th 공격력의 #2[i]%만큼 추가로 가한다.\\n「화합」, 「공허」, 「보존」, 「풍요」: 이번 피해의 강인성 감소 수치가 #3[i]% 증가한다", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.10000000009313226, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06399999978020787, + 0.11000000010244548, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.06799999950453639, + 0.12000000011175871, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07199999992735684, + 0.13000000012107193, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07599999965168536, + 0.14000000013038516, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0800000000745058, + 0.1500000001396984, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08499999972991645, + 0.1625000003259629, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09000000008381903, + 0.17499999981373549, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09499999973922968, + 0.1875, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10399999981746078, + 0.21000000019557774, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1079999995417893, + 0.22000000020489097, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11199999996460974, + 0.2300000002142042, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.11599999968893826, + 0.24000000022351742, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12000000011175871, + 0.25000000023283064, + 1 + ] + } + } + }, + "122403": { + "Id": 122403, + "Name": "절세의 여협, Mar. 7th", + "Desc": "지정된 단일 적에게 Mar. 7th 공격력의 #1[i]%만큼 허수 속성 피해를 가한다.\\n다음번 강화된 일반 공격의 기본 상태 단수가 #2[i]단 증가하고, 추가로 피해를 가할 고정 확률#3[i]% 증가한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.440000000409782, + 2, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5360000000800937, + 2, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6320000004488975, + 2, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7280000001192093, + 2, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.824000000488013, + 2, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9200000008568168, + 2, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.040000000037253, + 2, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1600000001490116, + 2, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2800000002607703, + 2, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.496000000042841, + 2, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.5920000004116446, + 2, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.6880000000819564, + 2, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.78400000045076, + 2, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.880000000819564, + 2, + 0.20000000018626451 + ] + } + } + }, + "122404": { + "Id": 122404, + "Name": "사부, 나 깨달았어!", + "Desc": "[사부]가 공격 또는 필살기 발동 후 Mar. 7th가 매번 충전을 최대 1pt 획득한다.\\n충전이 #1[i]pt 이상일 시 Mar. 7th가 즉시 행동하고 가하는 피해가 #2[i]% 증가하며, 일반 공격이 강화되고 전투 스킬을 발동할 수 없다. 강화된 일반 공격 발동 후 충전을 #1[i]pt 소모한다. 충전 상한: #3[i]pt", + "Type": null, + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7, + 0.40000000037252903, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7, + 0.44000000040978193, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 7, + 0.48000000044703484, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 7, + 0.5200000004842877, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7, + 0.5600000005215406, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7, + 0.6000000005587935, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7, + 0.6500000006053597, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 7, + 0.7000000006519258, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 7, + 0.7500000006984919, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 0.8000000007450581, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 7, + 0.840000000782311, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 7, + 0.8800000008195639, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 7, + 0.9200000008568168, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 7, + 0.9600000008940697, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 7, + 1, + 10 + ] + } + } + }, + "122406": { + "Id": 122406, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122407": { + "Id": 122407, + "Name": "일기화삼찬", + "Desc": "Mar. 7th가 파티에 있으면 동료가 비술을 1회 발동할 때마다 다음 전투 시작 시 Mar. 7th가 충전을 1pt 획득하며, 최대 #1[i]pt 획득한다.\\n비술 사용 후 다음 전투 시작 시 Mar. 7th가 에너지를 #2[i]pt 회복한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 30 + ] + } + } + }, + "122408": { + "Id": 122408, + "Name": "일격에 미간, 이격에 심장", + "Desc": "기본 상태에서 #4[i]단 피해를 가한다. 단수마다 지정된 단일 적에게 Mar. 7th 공격력의 #1[i]%만큼 허수 속성 피해를 가한다. 마지막 1단 피해를 가할 때마다 #2[i]%고정 확률로 다시 1단 피해를 가하고, 추가로 최대 #3[i]단 피해를 가한다. 강화된 일반 공격을 발동해 회복하는 에너지는 단수에 따라 증가하지 않는다.\\n강화된 일반 공격은 전투 스킬 포인트를 회복할 수 없다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.6000000005587935, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.48000000044703484, + 0.6000000005587935, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5600000005215406, + 0.6000000005587935, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6400000005960464, + 0.6000000005587935, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7200000006705523, + 0.6000000005587935, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8800000008195639, + 0.6000000005587935, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.9600000008940697, + 0.6000000005587935, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.040000000037253, + 0.6000000005587935, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1200000001117587, + 0.6000000005587935, + 3, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Normal.png", + "LevelUpSkillID": [ + 122401, + 122408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1224001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_BP.png", + "LevelUpSkillID": [ + 122402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Ultra.png", + "LevelUpSkillID": [ + 122403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_Passive.png", + "LevelUpSkillID": [ + 122404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1224004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1224_Maze.png", + "LevelUpSkillID": [ + 122407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1224101, + "PointName": "경홍", + "PointDesc": "전투 시작 시 Mar. 7th의 행동 게이지가 #1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224102, + "PointName": "영롱", + "PointDesc": "Mar. 7th가 [사부]와 같은 속성의 약점을 보유한 적의 강인성을 소모할 수 있다. 약점 격파 시 허수 속성의 약점 격파 효과를 발동한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1224_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 0.3600000003352761, + 2 + ], + "PointID": 1224103, + "PointName": "파랑", + "PointDesc": "강화된 일반 공격 발동 후 [사부]의 치명타 피해가 #1[i]% 증가하고, 격파 특수효과가 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224202, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1224101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1224202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1224102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224206, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1224205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1224103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224209, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1224208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1224210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1224208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.80000000074506, + "AttackAdd": 3.840000000782311, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 144, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 107.52000000048429, + "AttackAdd": 3.840000000782311, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 201.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 138.24000000022352, + "AttackAdd": 3.840000000782311, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 259.20000000018626, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 168.96000000089407, + "AttackAdd": 3.840000000782311, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 316.80000000074506, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 199.6800000006333, + "AttackAdd": 3.840000000782311, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 374.40000000037253, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 230.40000000037253, + "AttackAdd": 3.840000000782311, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 432, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110403, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 261.12000000011176, + "AttackAdd": 3.840000000782311, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 489.6000000005588, + "HPAdd": 7.2000000001862645, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1224, + "Set4IDList": [ + 102, + 112, + 117 + ], + "Set2IDList": [ + 309, + 314, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 349, + 292 + ] + } + }, + "1225": { + "Name": "망귀인", + "Desc": "처세술에 능한 여우족 소녀. 외모, 이름, 신분을 모두 빼앗겼다.\\n운명은 그녀에게 한 가닥의 삶의 기회를 남겼지만, 「파멸」의 낙인은 여전히 꿈틀거리고 있다.\\n삶과 죽음을 경험하고 새로운 삶을 다시 얻은 망귀인, 그녀는 언제쯤 고향으로 돌아갈 수 있을까?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "fugue", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 122501, + "Name": "떠나간 여우의 삶, 기약된 운거", + "Desc": "[여우의 기도]를 보유한 아군의 약점 격파 효율이 #1[i]% 증가한다", + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Id": 122502, + "Name": "서응의 도래, 알려진 현인", + "Desc": "적의 약점이 격파될 시 망귀인이 에너지를 #1[i]pt 회복한다. 필살기 발동 후 모든 아군의 행동 게이지가 #2[i]% 증가한다", + "ParamList": [ + 3, + 0.24000000022351742 + ] + }, + "3": { + "Id": 122503, + "Name": "가려진 실체, 드러낸 진상", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 122504, + "Name": "떠나보낸 형체, 짊어져 온 이름", + "Desc": "[여우의 기도]를 보유한 아군이 가하는 격파 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 122505, + "Name": "오색구름의 탄생, 천명을 짊어질 결심", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 122506, + "Name": "예지된 미래, 밝혀진 성쇠", + "Desc": "망귀인의 약점 격파 효율이 #1[i]% 증가한다. 망귀인이 [염화] 상태일 시 [여우의 기도] 효과가 모든 아군에게 적용된다", + "ParamList": [ + 0.5000000004656613 + ] + } + }, + "Skills": { + "122501": { + "Id": 122501, + "Name": "빛나는 꼬리별", + "Desc": "지정된 단일 적에게 망귀인 공격력의 #1[i]%만큼 화염 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "122502": { + "Id": 122502, + "Name": "현인의 길조, 천명의 부채", + "Desc": "지정된 단일 아군이 [여우의 기도]를 획득하고 자신은 [염화] 상태에 진입한다, 지속 시간: #1[i]턴. 망귀인의 턴이 시작될 때마다 지속 턴 수가 1 감소하고, [여우의 기도]는 최근 망귀인의 전투 스킬 대상이 된 목표에게만 적용된다.\\n[여우의 기도]를 보유한 아군의 격파 특수효과가 #2[i]% 증가한다. 대응하는 약점 속성을 보유하지 않은 적을 공격해도 강인성을 감소시킬 수 있다. 효과는 기존 강인성 감소 수치의 #6[i]%이며, 약점 속성을 무시하는 다른 강인성 감소 효과와 중첩될 수 없다.\\n[염화] 상태일 시 망귀인의 일반 공격이 강화된다. [여우의 기도]를 보유한 아군이 공격을 발동할 때마다 망귀인은 #3[i]%기본 확률로 피격된 적의 방어력을 #4[i]% 감소시킨다, 지속 시간: #5[i]턴", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.1500000001396984, + 1, + 0.0800000000745058, + 2, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.16499999980442226, + 1, + 0.09000000008381903, + 2, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.18000000016763806, + 1, + 0.10000000009313226, + 2, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.19499999983236194, + 1, + 0.11000000010244548, + 2, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.21000000019557774, + 1, + 0.12000000011175871, + 2, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.2249999998603016, + 1, + 0.13000000012107193, + 2, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.24375000083819032, + 1, + 0.14250000030733645, + 2, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.26250000041909516, + 1, + 0.15499999979510903, + 2, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.28125000069849193, + 1, + 0.16749999998137355, + 2, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.3000000002793968, + 1, + 0.18000000016763806, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.31499999994412065, + 1, + 0.1900000001769513, + 2, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.33000000030733645, + 1, + 0.20000000018626451, + 2, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.3449999999720603, + 1, + 0.21000000019557774, + 2, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.3600000003352761, + 1, + 0.22000000020489097, + 2, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.375, + 1, + 0.2300000002142042, + 2, + 0.5000000004656613 + ] + } + } + }, + "122503": { + "Id": 122503, + "Name": "세상을 비추는 태양, 하늘을 수놓는 불꽃", + "Desc": "모든 적에게 망귀인 공격력의 #1[i]%만큼 화염 속성 피해를 가하고, 이번 공격은 약점 속성을 무시하고 모든 적의 강인성을 감소시키며, 약점 격파 시 화염 속성의 약점 격파 효과가 발동된다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613 + ] + } + } + }, + "122504": { + "Id": 122504, + "Name": "보답받는 선행, 확산되는 덕행", + "Desc": "망귀인이 필드에 있을 시 적은 자신의 강인성 최대치의 #2[i]%만큼 [서조의 불빛]을 추가로 보유한다. 초기 강인성이 소진되면 계속해서 [서조의 불빛]이 감소되며, [서조의 불빛]이 소진되면 또다시 약점 격파 피해를 받는다.\\n망귀인이 필드에 있을 시 아군이 약점 격파 상태의 적을 공격하면, 이번 공격의 강인성 감소 수치를 #1[i]%슈퍼 격파 피해로 1회 전환한다", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 0.40000000037252903 + ] + } + } + }, + "122506": { + "Id": 122506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "122507": { + "Id": 122507, + "Name": "대지를 밝히는 통찰", + "Desc": "비술 사용 후 일정 구역 내의 적을 #1[i]초 동안 현기증 상태에 빠트린다. 현기증 상태의 적은 아군을 선공할 수 없다.\\n현기증 상태에 빠진 적을 선공하면 전투 진입 후 망귀인의 행동 게이지가 #4[i]% 증가하고, #2[i]%기본 확률로 각 단일 적을 망귀인의 전투 스킬과 동일한 방어력 감소 효과에 빠트린다, 지속 시간: #3[i]턴", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 2, + 0.40000000037252903 + ] + } + } + }, + "122508": { + "Id": 122508, + "Name": "살랑이는 불꽃", + "Desc": "지정된 단일 적에게 망귀인 공격력의 #1[i]%만큼 화염 속성 피해를 가하고, 인접한 목표에게 망귀인 공격력의 #2[i]%만큼 화염 속성 피해를 가한다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Normal.png", + "LevelUpSkillID": [ + 122501, + 122508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1225001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_BP.png", + "LevelUpSkillID": [ + 122502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Ultra.png", + "LevelUpSkillID": [ + 122503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_Passive.png", + "LevelUpSkillID": [ + 122504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1225004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1225_Maze.png", + "LevelUpSkillID": [ + 122507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.1500000001396984 + ], + "PointID": 1225101, + "PointName": "청구에 다시 드리운 빛", + "PointDesc": "아군이 약점 격파를 가한 후 추가로 적의 행동 게이지가 #1[i]% 감소한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 1 + ], + "PointID": 1225102, + "PointName": "도산의 심오한 설계", + "PointDesc": "자신의 격파 특수효과가 #1[i]% 증가한다. 처음으로 전투 스킬을 발동한 후 즉시 전투 스킬 포인트를 #2[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1225_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.060000000055879354, + 2, + 2, + 2.2000000001862645, + 0.12000000011175871 + ], + "PointID": 1225103, + "PointName": "천기성의 태소", + "PointDesc": "적의 약점이 격파될 시 자신을 제외한 동료의 격파 특수효과가 #1[i]% 증가하고, 망귀인의 격파 특수효과가 #4[i]% 이상이면 격파 특수효과 증가 효과가 추가로 #5[i]% 증가한다, 지속 시간: #2[i]턴, 해당 효과 최대 중첩수: #3[i]스택", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225201, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225202, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1225101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225203, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1225202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1225203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225205, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1225102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225206, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1225205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225207, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1225206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1225103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225209, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1225103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "격파 특수효과" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1225210, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1225201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "속도" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 79.20000000018626, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 75.90000000083819, + "DefenceAdd": 3.7950000003911555, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 110.88000000081956, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 106.26000000024214, + "DefenceAdd": 3.7950000003911555, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 142.56000000052154, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 136.62000000057742, + "DefenceAdd": 3.7950000003911555, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 174.24000000022352, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 166.9800000009127, + "DefenceAdd": 3.7950000003911555, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 205.92000000085682, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 197.34000000031665, + "DefenceAdd": 3.7950000003911555, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 237.6000000005588, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 227.70000000065193, + "DefenceAdd": 3.7950000003911555, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110412, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 269.28000000026077, + "AttackAdd": 3.9600000008940697, + "DefenceBase": 258.0600000000559, + "DefenceAdd": 3.7950000003911555, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1225, + "Set4IDList": [ + 119, + 111, + 118 + ], + "Set2IDList": [ + 316, + 308, + 307 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "StatusProbabilityBase" + ], + "ScoreRankList": [ + 271, + 213 + ] + } + }, + "1301": { + "Name": "갤러거", + "Desc": "페나코니 사냥개 가문의 보안관. 손님에게 예의를 차리지만 경계심이 있다. 복잡한 과거가 있는 것 같지만, 절대 먼저 이야기를 꺼내지 않는다", + "CharaInfo": { + "Camp": "페나코니", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "gallagher", + "SPNeed": 110, + "BaseType": "Priest", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 130101, + "Name": "솔티 도그", + "Desc": "갤러거가 전투 진입 후 에너지를 #1[i]pt 회복하고, 효과 저항이 #2[i]% 증가한다", + "ParamList": [ + 20, + 0.5000000004656613 + ] + }, + "2": { + "Id": 130102, + "Name": "라이온스 테일", + "Desc": "전투 스킬 발동 시 지정된 단일 아군의 디버프 효과#1[i]개 해제하고, 해당 아군의 효과 저항을 #2[i]% 증가시킨다. 지속 시간: #3[i]턴", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 130103, + "Name": "코프스 리바이버", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 130104, + "Name": "라스트 워드", + "Desc": "갤러거가 필살기로 가하는 [만취] 상태의 지속 시간이 #1[i]턴 증가한다", + "ParamList": [ + 1 + ] + }, + "5": { + "Id": 130105, + "Name": "데스 인 디 애프터눈", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 130106, + "Name": "블러드 앤 샌드", + "Desc": "갤러거의 격파 특수효과가 #1[i]% 증가하고, 약점 격파 효율이 #2[i]% 증가한다", + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + } + }, + "Skills": { + "130101": { + "Id": 130101, + "Name": "콜키지", + "Desc": "지정된 단일 적에게 갤러거 공격력의 #1[i]%만큼 화염 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130102": { + "Id": 130102, + "Name": "특제 캔 음료", + "Desc": "즉시 지정된 단일 아군의 HP를 #1[i]pt 회복한다", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 200 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 340 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 480 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 676 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 830 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1138 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1292 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1446 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1600 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1684 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1768 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1852 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1936 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2020 + ] + } + } + }, + "130103": { + "Id": 130103, + "Name": "샴페인 에티켓", + "Desc": "모든 적을 [만취] 상태에 빠트린다. 지속 시간: #2[i]턴. 동시에 모든 적에게 갤러거 공격력의 #1[i]%만큼 화염 속성 피해를 가하고, 다음번 일반 공격을 [솟구치는 거품]으로 강화한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 2 + ] + } + } + }, + "130104": { + "Id": 130104, + "Name": "통쾌한 전투", + "Desc": "[만취]는 목표가 받는 격파 피해#1[f1]% 증가시킨다. [만취] 상태의 목표가 아군 캐릭터의 공격을 받을 때마다 공격자는 HP를 #2[i]pt 회복한다", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 80 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06599999964237213, + 136 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.07199999992735684, + 192 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.07799999951384962, + 270.40000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08399999979883432, + 332 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 393.6000000005588 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09749999991618097, + 455.20000000018626 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1049999997485429, + 516.8000000007451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.11250000027939677, + 578.4000000003725 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.12000000011175871, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.12599999969825149, + 673.6000000005588 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1319999999832362, + 707.2000000001863 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.13799999956972897, + 740.8000000007451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.14399999985471368, + 774.4000000003725 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.1500000001396984, + 808 + ] + } + } + }, + "130106": { + "Id": 130106, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130107": { + "Id": 130107, + "Name": "빈티지 개봉", + "Desc": "적을 바로 공격하며, 전투 진입 후 모든 적을 [만취] 상태에 빠트린다. 지속 시간: #1[i]턴. 또한, 모든 적에게 갤러거 공격력의 #2[i]%만큼 화염 속성 피해를 가한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.5000000004656613 + ] + } + } + }, + "130108": { + "Id": 130108, + "Name": "솟구치는 거품", + "Desc": "지정된 단일 적에게 갤러거 공격력의 #1[i]%만큼 화염 속성 피해를 가하고, 목표의 공격력을 #2[f1]% 감소시킨다. 지속 시간: #3[i]턴", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5000000004656613, + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.750000000698492, + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2500000002328306, + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5000000004656613, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.750000000698492, + 0.1600000001490116, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.17000000015832484, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.2500000002328306, + 0.18000000016763806, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.5000000004656613, + 0.1900000001769513, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Normal.png", + "LevelUpSkillID": [ + 130101, + 130108 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1301001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_BP.png", + "LevelUpSkillID": [ + 130102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Ultra.png", + "LevelUpSkillID": [ + 130103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_Passive.png", + "LevelUpSkillID": [ + 130104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1301004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1301_Maze.png", + "LevelUpSkillID": [ + 130107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ], + "PointID": 1301101, + "PointName": "새로운 레시피", + "PointDesc": "자신이 제공하는 치유량이 격파 특수효과의 #1[i]%만큼 증가한다. 제공하는 치유량은 최대 #2[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301102, + "PointName": "천연 효모", + "PointDesc": "필살기 발동 후 즉시 자신의 행동 게이지가 100% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1301_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301103, + "PointName": "위하여!", + "PointDesc": "갤러거가 [솟구치는 거품]을 발동하여 [만취] 상태에 빠진 목표를 공격하면 이번에 특성이 제공하는 HP 회복 효과가 아군 동료에게도 적용된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301201, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301202, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1301101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301203, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1301202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1301203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301205, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1301102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301206, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1301205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301207, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1301206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1301103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301209, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1301103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "효과 저항" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1301210, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 72, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 60, + "DefenceAdd": 3, + "HPBase": 177.6000000005588, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 100.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 84, + "DefenceAdd": 3, + "HPBase": 248.64000000059605, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 129.6000000005588, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 108, + "DefenceAdd": 3, + "HPBase": 319.6800000006333, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 158.40000000037253, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 132, + "DefenceAdd": 3, + "HPBase": 390.72000000067055, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 187.20000000018626, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 156, + "DefenceAdd": 3, + "HPBase": 461.7600000007078, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 216, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 180, + "DefenceAdd": 3, + "HPBase": 532.8000000007451, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 244.80000000074506, + "AttackAdd": 3.6000000005587935, + "DefenceBase": 204, + "DefenceAdd": 3, + "HPBase": 603.8400000007823, + "HPAdd": 8.880000000819564, + "SpeedBase": 98, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1301, + "Set4IDList": [ + 119, + 111, + 101 + ], + "Set2IDList": [ + 316, + 307, + 302 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "BreakDamageAddedRatioBase", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 309, + 254 + ] + } + }, + "1302": { + "Name": "아젠티", + "Desc": "「미(美)의 기사단」의 고전적인 기사. 실종된 「미」의 에이언즈 이드릴라를 경건한 마음으로 흠모하고 있다.\\n정직하고 당당하며, 우주를 유람하면서 이드릴라의 명성을 널리 알린다", + "CharaInfo": { + "Camp": "미(美)의 기사단", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "argenti", + "SPNeed": 180, + "BaseType": "Mage", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 130201, + "Name": "심미왕국의 결함", + "Desc": "[승격] 스택마다 추가로 치명타 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.0400000000372529 + ] + }, + "2": { + "Id": 130202, + "Name": "아게이트의 겸손", + "Desc": "필살기 발동 시 적이 #1[i]기 이상일 경우 공격력이 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "ParamList": [ + 3, + 0.40000000037252903, + 1 + ] + }, + "3": { + "Id": 130203, + "Name": "가시밭길의 영광", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 130204, + "Name": "나팔의 헌신", + "Desc": "전투 시작 시 [승격]을 #1[i]스택 획득하고, 특성의 효과 최대 중첩수가 #2[i]스택 증가한다", + "ParamList": [ + 2, + 2 + ] + }, + "5": { + "Id": 130205, + "Name": "우주 어딘가의 눈", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 130206, + "Name": "「그분」의 빛", + "Desc": "필살기 발동 시 적의 방어력을 #1[i]% 무시한다", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "130201": { + "Id": 130201, + "Name": "덧없는 향기", + "Desc": "지정된 단일 적에게 아젠티 공격력의 #1[i]%만큼 물리 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130202": { + "Id": 130202, + "Name": "공정, 이곳에 피어나다", + "Desc": "모든 적에게 아젠티 공격력의 #1[i]%만큼 물리 속성 피해를 준다", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613 + ] + } + } + }, + "130203": { + "Id": 130203, + "Name": "정원에서 선사하는 극한의 미", + "Desc": "에너지를 #2[i]pt 소모하고, 모든 적에게 아젠티 공격력의 #1[i]%만큼 물리 속성 피해를 준다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 90 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 90 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 90 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 90 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 90 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 90 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 90 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 90 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 90 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 90 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 90 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 90 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 90 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 90 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 90 + ] + } + } + }, + "130204": { + "Id": 130204, + "Name": "숭고한 객체", + "Desc": "일반 공격, 전투 스킬, 필살기 발동 시 적을 1기 명중할 때마다 아젠티의 에너지가 #1[i]pt 회복되고, [승격]을 1스택 획득하며, 아젠티의 치명타 확률이 #2[f1]% 증가한다. 해당 효과 최대 중첩수: #3[i]스택", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.010000000009313226, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.011500000255182385, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.012999999802559614, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.014500000048428774, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.015999999595806003, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.017499999841675162, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.019375000149011612, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.02125000045634806, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.02312500006519258, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.0249999996740371, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.02649999991990626, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.027999999467283487, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.029499999713152647, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.030999999959021807, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.032500000204890966, + 10 + ] + } + } + }, + "130206": { + "Id": 130206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130207": { + "Id": 130207, + "Name": "순수하고 고결한 선언", + "Desc": "비술 사용 후 일정 구역 내의 적을 #1[i]초 동안 현기증 상태에 빠트린다. 현기증 상태인 적은 아군을 선공할 수 없다.\\n현기증 상태에 빠진 적을 선공해 전투 진입 시, 모든 적에게 아젠티 공격력의 #2[i]%만큼 물리 속성 피해를 가하고, 아젠티의 에너지가 #3[i]pt 회복된다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.8000000007450581, + 15 + ] + } + } + }, + "130214": { + "Id": 130214, + "Name": "정원에서 「내」가 수여한 공훈", + "Desc": "에너지를 #4[i]pt 소모하고 모든 적에게 아젠티 공격력의 #1[i]%만큼 물리 속성 피해를 준다. 추가로 피해를 #2[i]회 주며, 피해를 가할 때마다 랜덤 단일 적에게 아젠티 공격력의 #3[i]%만큼 물리 속성 피해를 준다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.6800000006332994, + 6, + 0.5700000005308539, + 180 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.792000000597909, + 6, + 0.6080000000074506, + 180 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9040000005625188, + 6, + 0.6460000001825392, + 180 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.015999999595806, + 6, + 0.6840000003576279, + 180 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1279999995604157, + 6, + 0.7220000005327165, + 180 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2400000002235174, + 6, + 0.7600000007078052, + 180 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3800000003539026, + 6, + 0.80750000057742, + 180 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.5200000004842877, + 6, + 0.8550000004470348, + 180 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.660000000614673, + 6, + 0.9025000010151416, + 180 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 6, + 0.9500000008847564, + 180 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.912000000709668, + 6, + 0.9880000003613532, + 180 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.023999999742955, + 6, + 1.0259999996051192, + 180 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.1359999997075647, + 6, + 1.0639999997802079, + 180 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.2479999996721745, + 6, + 1.1019999999552965, + 180 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.360000000335276, + 6, + 1.1400000001303852, + 180 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Normal.png", + "LevelUpSkillID": [ + 130201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1302001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_BP.png", + "LevelUpSkillID": [ + 130202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Ultra.png", + "LevelUpSkillID": [ + 130203, + 130214 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_Passive.png", + "LevelUpSkillID": [ + 130204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1302004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1302_Maze.png", + "LevelUpSkillID": [ + 130207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1302101, + "PointName": "경건", + "PointDesc": "턴 시작 시 즉시 [승격]을 #1[i]스택 획득한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2 + ], + "PointID": 1302102, + "PointName": "너그러움", + "PointDesc": "적이 전투 진입 시 자신의 에너지를 즉시 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1302_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110503, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ], + "PointID": 1302103, + "PointName": "용기", + "PointDesc": "현재 HP 백분율이 #1[i]% 이하인 적에게 주는 피해가 #2[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302202, + "PointName": "피해 강화•물리", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1302101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.031999999890103936, + "Name": "물리 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1302202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1302202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1302102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302206, + "PointName": "피해 강화•물리", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1302205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.04799999948590994, + "Name": "물리 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1302205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1302103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconPhysicalAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302209, + "PointName": "피해 강화•물리", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1302103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "PhysicalAddedRatio", + "Value": 0.06399999978020787, + "Name": "물리 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1302210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 100.32000000029802, + "AttackAdd": 5.015999999595806, + "DefenceBase": 49.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 140.44799999985844, + "AttackAdd": 5.015999999595806, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 180.57600000011735, + "AttackAdd": 5.015999999595806, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 2.4750000000931323, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 220.70400000037625, + "AttackAdd": 5.015999999595806, + "DefenceBase": 108.90000000083819, + "DefenceAdd": 2.4750000000931323, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 260.83200000063516, + "AttackAdd": 5.015999999595806, + "DefenceBase": 128.70000000065193, + "DefenceAdd": 2.4750000000931323, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 300.96000000089407, + "AttackAdd": 5.015999999595806, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 2.4750000000931323, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110411, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 341.08799999952316, + "AttackAdd": 5.015999999595806, + "DefenceBase": 168.3000000002794, + "DefenceAdd": 2.4750000000931323, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1302, + "Set4IDList": [ + 122, + 105, + 108 + ], + "Set2IDList": [ + 306, + 313, + 305 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1303": { + "Name": "완•매", + "Desc": "지니어스 클럽 회원이자 생명과학 분야의 전문가로, 헤르타 일행과 함께 시뮬레이션 우주를 연구하고 있다", + "CharaInfo": { + "Camp": "우주정거장 「헤르타」", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "ruanmei", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 130301, + "Name": "신경망 자수", + "Desc": "필살기로 펼친 결계가 활성화되는 동안 모든 아군이 가하는 피해는 목표의 방어력을 #1[i]% 무시한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Id": 130302, + "Name": "갈대밭을 거닐며", + "Desc": "완•매가 필드에 있으면 모든 아군이 약점 격파 상태의 적에게 피해를 가할 때 공격력이 #1[i]% 증가한다", + "ParamList": [ + 0.40000000037252903 + ] + }, + "3": { + "Id": 130303, + "Name": "아른대는 담록빛", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 130304, + "Name": "청동거울 앞에서 신을 찾네", + "Desc": "적의 약점이 격파될 시 완•매의 격파 특수효과가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 1, + 3 + ] + }, + "5": { + "Id": 130305, + "Name": "비녀로 단정히 다듬은 머리", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 130306, + "Name": "반쯤 내린 면사, 땅에 떨군 부채", + "Desc": "필살기로 펼친 결계의 지속 시간이 #1[i]턴 연장된다. 특성이 가하는 격파 피해 배율이 추가로 #2[i]% 증가한다", + "ParamList": [ + 1, + 2 + ] + } + }, + "Skills": { + "130301": { + "Id": 130301, + "Name": "그윽한 일침", + "Desc": "지정된 단일 적에게 완•매 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130302": { + "Id": 130302, + "Name": "우아한 연주", + "Desc": "전투 스킬 발동 후 완•매는 [현의 여음]을 획득한다. 지속 시간: #3[i]턴. 완•매의 턴이 시작될 때마다 지속 턴 수가 1 감소한다. 완•매가 [현의 여음]을 보유하면 모든 아군의 피해가 #1[f1]% 증가하며 약점 격파 효율이 #2[i]% 증가한다", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.17599999974481761, + 0.5000000004656613, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.19200000003911555, + 0.5000000004656613, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.20799999963492155, + 0.5000000004656613, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.22399999992921948, + 0.5000000004656613, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3200000002980232, + 0.5000000004656613, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3359999998938292, + 0.5000000004656613, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.35200000018812716, + 0.5000000004656613, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.36799999978393316, + 0.5000000004656613, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3840000000782311, + 0.5000000004656613, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 3 + ] + } + } + }, + "130303": { + "Id": 130303, + "Name": "꽃잎에 인 물결, 옷을 물들인 꽃", + "Desc": "완•매가 #2[i]턴간 결계를 펼치고, 자신의 턴이 시작될 때마다 지속 턴 수가 1 감소한다.\\n결계 안에 있는 모든 아군의 모든 속성 저항 관통이 #1[f1]% 증가하고, 공격 시 적에게 [다시 핀 매화]를 부여한다.\\n[다시 핀 매화]는 적이 약점 격파 상태에서 회복하려고 할 때 발동하며, 목표의 약점 격파 상태를 연장하고 행동 게이지를 감소시킨다. 감소 수치는 완매 격파 특수효과의 #3[i]%#4[i]%를 더한 값이며, 해당 목표에게 격파 피해를 완•매의 얼음 속성 격파 피해#5[i]%만큼 가한다.\\n적이 약점 격파 상태에서 회복하기 전까지는 [다시 핀 매화]를 추가로 부여할 수 없다", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1600000001490116, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.17000000015832484, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3400000003166497 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.18000000016763806, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3600000003352761 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1900000001769513, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.3800000003539026 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21250000037252903, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.42500000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2249999998603016, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.45000000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23750000004656613, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.47500000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.26000000024214387, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2700000002514571, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5400000005029142 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2800000002607703, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5600000005215406 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.29000000027008355, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.5800000005401671 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 2, + 0.20000000018626451, + 0.10000000009313226, + 0.6000000005587935 + ] + } + } + }, + "130304": { + "Id": 130304, + "Name": "프랙탈 나선", + "Desc": "자신을 제외한 동료의 속도가 #1[f1]% 증가한다. 모든 아군이 적의 약점을 격파하면 완•매는 해당 목표에게 자신의 얼음 속성 격파 피해의 #2[f1]%만큼 격파 피해를 가한다", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0800000000745058, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.08199999993667006, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.08599999966099858, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.08799999952316284, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.09000000008381903, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.09250000026077032, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09499999973922968, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09749999991618097, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.10199999995529652, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.10399999981746078, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.10599999967962503, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.1079999995417893, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.11000000010244548, + 1.5000000004656613 + ] + } + } + }, + "130306": { + "Id": 130306, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130307": { + "Id": 130307, + "Name": "매무새를 가다듬으며", + "Desc": "비술을 사용하면 [매무새를 가다듬으며]를 획득하고 다음 전투가 시작될 때 자동으로 전투 스킬을 #1[i]회 발동하며, 이번 발동은 전투 스킬 포인트를 소모하지 않는다.\\n시뮬레이션 우주 및 차분화 우주에서 완•매가 [매무새를 가다듬으며]를 보유했을 때 아군이 적을 선공하면 약점을 이용해 전투에 진입한 것으로 간주되며, 이번 공격은 약점 속성을 무시하고 모든 적의 강인성을 감소시킨다. 약점을 격파하면 공격자 속성의 약점 격파 효과를 발동한다. 축복을 1개 보유할 때마다 이번 공격의 강인성 감소 수치가 추가로 #2[i]% 증가하고, 적의 약점을 격파한 후 해당 적에게 격파 피해를 완•매의 얼음 속성 격파 피해의 #3[i]%만큼 가한다. (최대 #4[i]개의 축복까지 계산)", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1, + 1, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Normal.png", + "LevelUpSkillID": [ + 130301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1303001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_BP.png", + "LevelUpSkillID": [ + 130302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Ultra.png", + "LevelUpSkillID": [ + 130303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_Passive.png", + "LevelUpSkillID": [ + 130304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1303004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1303_Maze.png", + "LevelUpSkillID": [ + 130307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451 + ], + "PointID": 1303101, + "PointName": "물체 호흡 중", + "PointDesc": "모든 아군의 격파 특수효과가 #1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1303102, + "PointName": "해가 질수록 늘어나는 생각", + "PointDesc": "완•매의 턴 시작 시 자신의 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1303_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.2000000001862645, + 0.10000000009313226, + 0.060000000055879354, + 0.3600000003352761 + ], + "PointID": 1303103, + "PointName": "수면에 일렁이는 촛불", + "PointDesc": "전투 중 완•매의 격파 특수효과가 #1[i]%를 초과할 시 #2[i]% 초과할 때마다 전투 스킬로 인한 모든 아군의 피해 증가 효과가 추가로 #3[i]% 증가한다. (최대 #4[i]%까지 증가)", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303201, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303202, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1303101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303203, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1303202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303204, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1303201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303205, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1303102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303206, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1303205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303207, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1303201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303208, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1303103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303209, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1303208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1303210, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1303208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "격파 특수효과" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110413, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1303, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 312, + 308 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 241, + 187 + ] + } + }, + "1304": { + "Name": "어벤츄린", + "Desc": "스타피스 컴퍼니 「전략투자부」의 고위 간부.\\n리스크를 즐기며, 미소를 띠고 있지만 진심을 가늠하기 어렵다", + "CharaInfo": { + "Camp": "스타피스 컴퍼니", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "aventurine", + "SPNeed": 110, + "BaseType": "Knight", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 130401, + "Name": "죄수의 딜레마", + "Desc": "[견고한 칩]을 보유한 아군의 치명타 피해가 #1[i]% 증가한다. 필살기 발동 후 모든 아군에게 실드 [견고한 칩]을 제공한다. 실드량은 전투 스킬이 제공하는 실드량의 #2[i]%다. 지속 시간: #3[i]턴", + "ParamList": [ + 0.20000000018626451, + 1, + 3 + ] + }, + "2": { + "Id": 130402, + "Name": "제한된 합리성", + "Desc": "일반 공격 발동 시 목표의 모든 속성 저항이 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "ParamList": [ + 1.2000000001862645, + 0.12000000011175871, + 3 + ] + }, + "3": { + "Id": 130403, + "Name": "최고 배당", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 130404, + "Name": "사형수의 역설", + "Desc": "특성의 추가 공격 발동 시, 우선 어벤츄린의 방어력이 #1[i]% 증가한다, 지속 시간: #2[i]턴. 또한, 특성 추가 공격의 공격 단수가 추가로 #3[i]단 증가한다", + "ParamList": [ + 0.40000000037252903, + 2, + 3 + ] + }, + "5": { + "Id": 130405, + "Name": "모호성 회피", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 130406, + "Name": "사슴 사냥 게임", + "Desc": "실드를 보유한 동료 1명마다 어벤츄린이 가하는 피해가 #1[i]% 증가하며, 최대 #2[i]%를 초과하지 않는다", + "ParamList": [ + 0.5000000004656613, + 1.5000000004656613 + ] + } + }, + "Skills": { + "130401": { + "Id": 130401, + "Name": "직관적 베팅", + "Desc": "지정된 단일 적에게 어벤츄린 방어력의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130402": { + "Id": 130402, + "Name": "번영의 초석", + "Desc": "모든 아군에게 어벤츄린 방어력의 #1[f1]%+#2[i]만큼 피해를 상쇄할 수 있는 실드 [견고한 칩]을 제공한다. 지속 시간: #3[i]턴. [견고한 칩]을 중복 획득 시 실드량은 중첩되며, 현재 전투 스킬이 제공하는 실드량의 #4[i]%를 초과하지 않는다", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1600000001490116, + 80, + 3, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.17000000015832484, + 128, + 3, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 164, + 3, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1900000001769513, + 200, + 3, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.20000000018626451, + 224, + 3, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20799999963492155, + 248, + 3, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21599999978207052, + 266, + 3, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.22399999992921948, + 284, + 3, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23200000007636845, + 302, + 3, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 320, + 3, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24799999967217445, + 338, + 3, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2559999998193234, + 356, + 3, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2639999999664724, + 374, + 3, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27200000011362135, + 392, + 3, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2800000002607703, + 410, + 3, + 2 + ] + } + } + }, + "130403": { + "Id": 130403, + "Name": "룰렛 샤크", + "Desc": "랜덤으로 [블라인드 베팅] 1~#1[i]pt를 획득하고, 지정된 단일 적을 [당황] 상태에 빠트린다. 지속 시간: #4[i]턴. 또한, 지정된 단일 적에게 어벤츄린 방어력의 #2[i]%만큼 허수 속성 피해를 가한다. 아군이 [당황] 상태의 적 명중 시 가하는 치명타 피해가 #3[f1]% 증가한다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 7, + 1.62000000057742, + 0.09000000008381903, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 7, + 1.7280000001192093, + 0.09599999967031181, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 7, + 1.8360000003594905, + 0.10199999995529652, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 7, + 1.9440000005997717, + 0.1079999995417893, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7, + 2.0519999999087304, + 0.113999999826774, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7, + 2.1600000001490116, + 0.12000000011175871, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7, + 2.294999999925494, + 0.12749999994412065, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 7, + 2.4300000004004687, + 0.13499999977648258, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 7, + 2.5650000001769513, + 0.14250000030733645, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 7, + 2.700000000651926, + 0.1500000001396984, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 7, + 2.808000000193715, + 0.15599999972619116, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 7, + 2.9160000004339963, + 0.16200000001117587, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 7, + 3.023999999742955, + 0.16799999959766865, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 7, + 3.131999999983236, + 0.17399999988265336, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 7, + 3.2400000002235174, + 0.18000000016763806, + 3 + ] + } + } + }, + "130404": { + "Id": 130404, + "Name": "우측에 장전된 총알", + "Desc": "[견고한 칩]을 보유한 단일 아군의 효과 저항이 #4[f1]% 증가한다. 해당 아군이 피격되면 어벤츄린은 [블라인드 베팅]을 1pt 획득한다. 어벤츄린은 [견고한 칩] 보유 시 제어류 디버프 상태에 저항할 수 있다. 해당 효과는 #5[i]턴 후 다시 발동할 수 있으며, 피격 후 추가로 [블라인드 베팅]을 #1[i]pt 획득한다. [블라인드 베팅]이 7pt를 도달하면 어벤츄린은 충전 포인트를 7pt 소모하여 #2[i]추가 공격을 발동하고, 공격 단수마다 랜덤 단일 적에게 어벤츄린 방어력의 #3[i]%만큼 허수 속성 피해를 가한다. [블라인드 베팅] 최대치: 10pt", + "Type": null, + "Tag": "Bounce", + "SPBase": 1, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 10, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 7, + 0.12499999976716936, + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 7, + 0.13749999995343387, + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 7, + 0.1500000001396984, + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 7, + 0.1625000003259629, + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 7, + 0.17499999981373549, + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 7, + 0.1875, + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 7, + 0.20312500023283064, + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 7, + 0.2187500004656613, + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 7, + 0.23437500069849193, + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 7, + 0.25000000023283064, + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 7, + 0.26250000041909516, + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 7, + 0.27499999990686774, + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 7, + 0.28750000009313226, + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 7, + 0.3000000002793968, + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 7, + 0.3125000004656613, + 0.6250000002328306, + 2 + ] + } + } + }, + "130406": { + "Id": 130406, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130407": { + "Id": 130407, + "Name": "빨강과 검정 사이", + "Desc": "비술 발동 후 다음 효과 중 1개를 획득한다. \\n일정 확률로 방어력 #1[i]% 증가\\n높은 확률로 방어력 #2[i]% 증가\\n낮은 확률로 방어력 #3[i]% 증가\\n중복 사용 시 수치가 가장 높은 효과가 유지된다.\\n다음 전투 시작 시 모든 아군의 방어력이 대응하는 수치만큼 증가한다. 지속 시간: #4[i]턴", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 0.6000000005587935, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Normal.png", + "LevelUpSkillID": [ + 130401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1304001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_BP.png", + "LevelUpSkillID": [ + 130402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Ultra.png", + "LevelUpSkillID": [ + 130403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_Passive.png", + "LevelUpSkillID": [ + 130404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1304004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1304_Maze.png", + "LevelUpSkillID": [ + 130407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.02000000001862645, + 0.48000000044703484, + 1600 + ], + "PointID": 1304101, + "PointName": "레버리지", + "PointDesc": "어벤츄린의 방어력이 #3[i]pt보다 높으면 방어력이 100pt 초과할 때마다 자신의 치명타 확률이 #1[i]% 증가하며, 최대 #2[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 1304201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 1 + ], + "PointID": 1304102, + "PointName": "핫 핸드", + "PointDesc": "전투 시작 시 모든 아군에게 실드 [견고한 칩]을 제공한다. 실드량은 전투 스킬이 제공하는 실드량의 #2[i]%다. 지속 시간: #1[i]턴", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 1304201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1304_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.07199999992735684, + 96, + 3, + 0.07199999992735684, + 96 + ], + "PointID": 1304103, + "PointName": "빙고!", + "PointDesc": "[견고한 칩]을 보유한 동료가 추가 공격을 발동하면 어벤츄린은 [블라인드 베팅]을 1pt 누적한다. 해당 효과 최대 발동수: #3[i]회. 어벤츄린의 턴이 시작될 때, 해당 효과 발동 횟수는 초기화된다. 어벤츄린은 특성의 추가 공격 발동 후, 모든 아군에게 어벤츄린 방어력의 #1[i]%+#2[i]만큼 피해를 상쇄할 수 있는 [견고한 칩]을 제공하고, 실드량이 가장 낮은 아군에게 추가로 어벤츄린 방어력의 #4[i]%+#5[i]만큼 피해를 상쇄할 수 있는 [견고한 칩]을 제공한다. 지속 시간: 3턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304201, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304202, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1304101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304203, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1304202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304205, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1304102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304206, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1304205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304207, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1304103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304209, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1304208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1304210, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1304208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 89.10000000009313, + "DefenceAdd": 4.455000000074506, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 4.455000000074506, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 160.3800000003539, + "DefenceAdd": 4.455000000074506, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 196.02000000001863, + "DefenceAdd": 4.455000000074506, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 231.66000000061467, + "DefenceAdd": 4.455000000074506, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 267.3000000002794, + "DefenceAdd": 4.455000000074506, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 302.94000000087544, + "DefenceAdd": 4.455000000074506, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1304, + "Set4IDList": [ + 103, + 117, + 120 + ], + "Set2IDList": [ + 306, + 304, + 310 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "DefenceAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "CriticalChanceBase", + "CriticalDamageBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 301, + 247 + ], + "LocalCriticalChance": 0.48000000044703484 + } + }, + "1305": { + "Name": "Dr. 레이시오", + "Desc": "지식학회 학자.\\n성정이 괴팍하고 언사가 야박하지만 품위가 있다.\\n기이한 석고 마스크 아래의 용모는 의외로 준수하다", + "CharaInfo": { + "Camp": "지식학회", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 75, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 76, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "drratio", + "SPNeed": 140, + "BaseType": "Rogue", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 130501, + "Name": "교만은 재앙을 낳는다", + "Desc": "행적 [귀납]의 중첩 스택 수 상한이 #1[i]스택 증가한다. 전투 시작 시 [귀납] #2[i]스택을 즉시 획득한다. 먼저 행적 [귀납]을 개방해야 한다", + "ParamList": [ + 4, + 4 + ] + }, + "2": { + "Id": 130502, + "Name": "작은 것에 숨겨진 진리", + "Desc": "특성의 추가 공격이 목표를 명중할 시, 목표가 디버프 효과를 1개 보유할 때마다 추가로 Dr. 레이시오 공격력의 #1[i]%만큼 허수 속성 추가 피해를 가한다. 해당 효과는 추가 공격을 할 때마다 최대 #2[i]회 발동된다", + "ParamList": [ + 0.20000000018626451, + 4 + ] + }, + "3": { + "Id": 130503, + "Name": "너 자신을 알라", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 130504, + "Name": "맹목은 미련을 낳는다", + "Desc": "특성 발동 시 Dr. 레이시오가 추가로 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 15 + ] + }, + "5": { + "Id": 130505, + "Name": "노 없는 배는 바다를 건널 수 없다", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 130506, + "Name": "영원한 것은 진리뿐", + "Desc": "[현자의 짧은 생각]의 발동 효과가 추가로 #1[i]회 증가하고, 특성의 추가 공격으로 가하는 피해가 #2[i]% 증가한다", + "ParamList": [ + 1, + 0.5000000004656613 + ] + } + }, + "Skills": { + "130501": { + "Id": 130501, + "Name": "아는 것이 힘", + "Desc": "지정된 단일 적에게 Dr. 레이시오 공격력의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130502": { + "Id": 130502, + "Name": "지적 산파술", + "Desc": "지정된 단일 적에게 Dr. 레이시오 공격력의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613 + ] + } + } + }, + "130503": { + "Id": 130503, + "Name": "삼단논법의 역설", + "Desc": "지정된 단일 적에게 Dr. 레이시오 공격력의 #1[i]%만큼 허수 속성 피해를 가하고 [현자의 짧은 생각]을 부여한다. Dr. 레이시오의 동료가 [현자의 짧은 생각]을 보유한 목표를 공격하면 Dr. 레이시오는 해당 목표에게 특성 추가 공격을 1회 발동한다.\\n[현자의 짧은 생각] 효과는 최대 #2[i]회 발동되며, 가장 최근 Dr. 레이시오가 필살기를 발동한 목표에게만 적용된다. 필살기 발동 후 해당 효과 발동 횟수는 초기화된다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.440000000409782, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5360000000800937, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6320000004488975, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7280000001192093, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.824000000488013, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.9200000008568168, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.040000000037253, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1600000001490116, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2800000002607703, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.496000000042841, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.5920000004116446, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.6880000000819564, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.78400000045076, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.880000000819564, + 2 + ] + } + } + }, + "130504": { + "Id": 130504, + "Name": "나는 생각한다, 고로 존재한다", + "Desc": "전투 스킬 발동 시 #2[i]%고정 확률로 해당 목표에게 추가 공격을 1회 발동하며, Dr. 레이시오 공격력의 #1[i]%만큼 허수 속성 피해를 가한다. 목표가 디버프 효과를 1개 보유할 때마다 추가 공격을 발동할 고정 확률#3[i]% 증가한다. 만약 추가 공격 발동 전에 목표가 처치되면 랜덤의 단일 적에게 추가 공격을 발동한다", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.350000000325963, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.4850000001024455, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.62000000057742, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7550000003539026, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.890000000828877, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.024999999674037, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.193750000791624, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.3625000005122274, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.5312500009313226, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.8350000004284084, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.970000000903383, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.104999999748543, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.2400000002235174, + 0.40000000037252903, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.375, + 0.40000000037252903, + 0.20000000018626451 + ] + } + } + }, + "130506": { + "Id": 130506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130507": { + "Id": 130507, + "Name": "우상 형상화", + "Desc": "비술 사용 후 특수 영역을 만들어 주변의 적을 도발한다. 지속 시간: #1[i]초. 특수 영역 내의 적은 전투 진입 후 #2[i]%기본 확률로 각 단일 적의 속도가 #3[i]% 감소한다. 지속 시간: #4[i]턴. 아군이 생성한 영역 효과는 최대 1개만 존재할 수 있다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 1, + 0.1500000001396984, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Normal.png", + "LevelUpSkillID": [ + 130501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1305001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_BP.png", + "LevelUpSkillID": [ + 130502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Ultra.png", + "LevelUpSkillID": [ + 130503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_Passive.png", + "LevelUpSkillID": [ + 130504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1305004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1305_Maze.png", + "LevelUpSkillID": [ + 130507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0249999996740371, + 0.05000000004656613, + 6 + ], + "PointID": 1305101, + "PointName": "귀납", + "PointDesc": "전투 스킬 발동 시 목표가 보유한 디버프 효과 1개당 Dr. 레이시오의 치명타 확률이 #1[f1]% 증가하고, 치명타 피해가 #2[i]% 증가한다. 최대 중첩수: #3[i]스택", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.10000000009313226, + 2 + ], + "PointID": 1305102, + "PointName": "연역", + "PointDesc": "전투 스킬을 발동하여 적을 공격하면 #1[i]%기본 확률로 피격된 적의 효과 저항이 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1305_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.10000000009313226, + 0.5000000004656613 + ], + "PointID": 1305103, + "PointName": "추리", + "PointDesc": "피해를 가할 시 목표의 디버프 상태가 #1[i]개 이상일 경우, 목표가 보유한 디버프 효과 1개당 Dr. 레이시오가 해당 목표에게 가하는 피해가 #2[i]% 증가하며, 최대 #3[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1305101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1305202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1305102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1305205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1305103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1305208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1305210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1305208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 105.6000000005588, + "AttackAdd": 5.28000000026077, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 147.8400000007823, + "AttackAdd": 5.28000000026077, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 190.0800000000745, + "AttackAdd": 5.28000000026077, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 232.32000000029802, + "AttackAdd": 5.28000000026077, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 274.56000000052154, + "AttackAdd": 5.28000000026077, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 316.80000000074506, + "AttackAdd": 5.28000000026077, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110417, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 359.04000000003725, + "AttackAdd": 5.28000000026077, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1305, + "Set4IDList": [ + 117, + 112, + 115 + ], + "Set2IDList": [ + 315, + 306, + 311 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ImaginaryAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ], + "LocalCriticalChance": 0.10000000009313226 + } + }, + "1306": { + "Name": "스파클", + "Desc": "「가면의 우인」 멤버 중 한 명, 종잡을 수 없으며 목적을 이루기 위해 수단과 방법을 가리지 않는다.\\n역할극에 심취한 위험한 연극 대가. 천의 얼굴을 지닌 그녀는 수많은 모습을 가지고 있다.\\n스파클에게 재물, 지위, 권력 따위는 중요하지 않다. 그녀를 움직일 수 있는 건 오직 「재미」 뿐이다", + "CharaInfo": { + "Camp": "가면의 우인", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sparkle", + "SPNeed": 110, + "BaseType": "Shaman", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 130601, + "Name": "불신의 정지", + "Desc": "필살기가 부여하는 [기이한 수수께끼]의 지속 시간이 추가로 1턴 증가하며, [기이한 수수께끼]를 보유한 아군의 공격력이 #1[i]% 증가한다", + "ParamList": [ + 0.40000000037252903 + ] + }, + "2": { + "Id": 130602, + "Name": "실없는 허구", + "Desc": "특성의 각 스택 효과는 추가로 아군이 피해를 가할 시 목표의 방어력을 #1[i]% 무시하게 한다", + "ParamList": [ + 0.0800000000745058 + ] + }, + "3": { + "Id": 130603, + "Name": "몽환의 포영", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 130604, + "Name": "유희적 인간", + "Desc": "필살기가 전투 스킬 포인트를 추가로 1pt 회복시키고, 특성의 전투 스킬 포인트 최대치 증가 효과가 추가로 1pt 증가한다", + "ParamList": [] + }, + "5": { + "Id": 130605, + "Name": "양면의 진실", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 130606, + "Name": "다중 해답", + "Desc": "전투 스킬의 치명타 피해 증가 효과가 스파클 치명타 피해의 #1[i]%만큼 추가로 증가한다. 스파클이 전투 스킬을 발동하면, 전투 스킬의 치명타 피해 증가 효과는 [기이한 수수께끼]를 보유한 모든 동료에게 적용된다. 스파클이 필살기 발동 시 단일 아군 중 전투 스킬의 치명타 피해 증가 효과를 보유한 목표가 있으면, 해당 효과는 [기이한 수수께끼]를 보유한 동료에게까지 확산된다", + "ParamList": [ + 0.3000000002793968 + ] + } + }, + "Skills": { + "130601": { + "Id": 130601, + "Name": "모노드라마", + "Desc": "지정된 단일 적에게 스파클 공격력의 #1[i]%만큼 양자 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130602": { + "Id": 130602, + "Name": "꿈을 헤엄치는 물고기", + "Desc": "지정된 단일 아군의 치명타 피해가 스파클 치명타 피해의 #1[f1]%#2[f1]%를 더한 값만큼 증가한다. 지속 시간: #3[i]턴. 또한, 해당 목표의 행동 게이지가 #4[i]% 증가한다.\\n스파클이 자신에게 해당 스킬을 발동하면 행동 게이지 증가 효과가 발동하지 않는다", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 0.2700000002514571, + 1, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1319999999832362, + 0.28799999970942736, + 1, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14399999985471368, + 0.30599999986588955, + 1, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.15599999972619116, + 0.32400000002235174, + 1, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.16799999959766865, + 0.34200000017881393, + 1, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19499999983236194, + 0.38250000053085387, + 1, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21000000019557774, + 0.4050000000279397, + 1, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2249999998603016, + 0.4275000002235174, + 1, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.45000000041909516, + 1, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2520000000949949, + 0.4679999998770654, + 1, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2639999999664724, + 0.4860000000335276, + 1, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.27599999983794987, + 0.5040000001899898, + 1, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.28799999970942736, + 0.522000000346452, + 1, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.5400000005029142, + 1, + 0.5000000004656613 + ] + } + } + }, + "130603": { + "Id": 130603, + "Name": "천의 얼굴", + "Desc": "아군의 전투 스킬 포인트를 #2[i]pt 회복하고 모든 아군이 [기이한 수수께끼] 효과를 획득한다. [기이한 수수께끼]를 보유한 아군은 스파클 특성으로 발동되는 피해 증가 효과가 스택당 추가로 #3[f1]% 증가한다. 지속 시간: #4[i]턴", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 4, + 0.060000000055879354, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 4, + 0.06399999978020787, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 4, + 0.06799999950453639, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 4, + 0.07199999992735684, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 4, + 0.07599999965168536, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 4, + 0.0800000000745058, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 4, + 0.08499999972991645, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 4, + 0.09000000008381903, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 4, + 0.09499999973922968, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 4, + 0.10000000009313226, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 4, + 0.10399999981746078, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 4, + 0.1079999995417893, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 4, + 0.11199999996460974, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 4, + 0.11599999968893826, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 4, + 0.12000000011175871, + 2 + ] + } + } + }, + "130604": { + "Id": 130604, + "Name": "서술 트릭", + "Desc": "스파클이 필드에 있을 시 전투 스킬 포인트 최대치가 추가로 #3[i]pt 증가한다. 아군이 전투 스킬 포인트를 1pt 소모할 때마다 모든 아군이 가하는 피해가 #2[f1]% 증가한다, 해당 효과 지속 시간: #1[i]턴, 최대 중첩수: #4[i]스택", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 0.030000000027939677, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2, + 0.032999999821186066, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2, + 0.035999999614432454, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.03899999940767884, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2, + 0.04199999989941716, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.04499999969266355, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2, + 0.04875000030733645, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2, + 0.05250000022351742, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2, + 0.056250000139698386, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.060000000055879354, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2, + 0.06299999984912574, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2, + 0.06599999964237213, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2, + 0.06899999943561852, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2, + 0.07199999992735684, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.07499999972060323, + 2, + 3 + ] + } + } + }, + "130606": { + "Id": 130606, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130607": { + "Id": 130607, + "Name": "믿을 수 없는 화자", + "Desc": "비술 사용 후 모든 아군이 #2[i]초 동안 [미혹] 상태에 진입한다. [미혹] 상태에선 적에게 들키지 않으며, [미혹] 중에 전투 진입 시 아군이 전투 스킬 포인트를 #1[i]pt 회복한다", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 20 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Normal.png", + "LevelUpSkillID": [ + 130601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1306001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_BP.png", + "LevelUpSkillID": [ + 130602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Ultra.png", + "LevelUpSkillID": [ + 130603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_Passive.png", + "LevelUpSkillID": [ + 130604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1306004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1306_Maze.png", + "LevelUpSkillID": [ + 130607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1306101, + "PointName": "세시기", + "PointDesc": "일반 공격 발동 시 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306102, + "PointName": "인조화", + "PointDesc": "전투 스킬이 제공하는 치명타 피해 증가 효과가 목표의 다음 턴 시작까지 연장된다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1306_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613, + 0.1500000001396984, + 0.3000000002793968, + 0.1500000001396984 + ], + "PointID": 1306103, + "PointName": "야상곡", + "PointDesc": "모든 아군의 공격력이 #4[i]% 증가한다. 아군 파티 중 양자 속성 캐릭터가 1명/2명/3명 존재 시 아군 양자 속성 캐릭터의 공격력이 추가로 #1[i]%/#2[i]%/#3[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306201, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306202, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1306101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306203, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1306202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1306201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306205, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1306102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306206, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1306205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306207, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1306201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1306103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306209, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1306208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1306210, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1306208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 190.0800000000745, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 342.1439999998547, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 418.1759999997448, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 494.2079999996349, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 570.2400000002235, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 646.2720000001136, + "HPAdd": 9.50400000018999, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1306, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 317, + 310, + 312 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 187 + ], + "LocalCriticalChance": 1 + } + }, + "1307": { + "Name": "블랙 스완", + "Desc": "기억의 정원의 기억하는 자. 나른하고 신비로운 점술가.\\n인내심을 가지고 타인의 「기억」을 경청하여 운명을 읽는다", + "CharaInfo": { + "Camp": "기억의 정원", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "blackswan", + "SPNeed": 120, + "BaseType": "Warlock", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 130701, + "Name": "지혜의 일곱 기둥", + "Desc": "블랙 스완이 전투 가능 상태일 시 풍화, 열상, 연소, 감전 상태인 적의 상응하는 바람, 물리, 화염, 번개 속성 저항이 각각 #1[i]% 감소한다", + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Id": 130702, + "Name": "어린양이여, 날 위해 울지 말아다오", + "Desc": "[아르카나] 상태의 적이 처치될 시 #1[i]%기본 확률로 인접한 목표를 [아르카나] #2[i]스택에 빠트린다", + "ParamList": [ + 1, + 6 + ] + }, + "3": { + "Id": 130703, + "Name": "위에서도 그러하듯 아래서도 그러하다", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 130704, + "Name": "눈물은 선물이기도 하다", + "Desc": "[발로] 상태에서 적의 효과 저항이 #1[i]% 감소하고, 턴이 시작되거나 처치될 시 블랙 스완의 에너지가 #2[i]pt 회복된다. 에너지 회복 효과는 [발로] 상태 지속 시간 동안 최대 1회 발동한다. 다시 한번 [발로] 상태에 빠뜨리면 발동 횟수가 갱신된다", + "ParamList": [ + 0.10000000009313226, + 8 + ] + }, + "5": { + "Id": 130705, + "Name": "움직이는 별", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 130706, + "Name": "신은 선하나, 고난 당하는 자는 알지 못한다", + "Desc": "적이 블랙 스완의 동료의 공격을 받으면, 블랙 스완은 #2[i]%기본 확률로 목표를 [아르카나] 1스택에 빠트린다.\\n블랙 스완이 적을 [아르카나]에 빠트릴 때마다 #1[i]%고정 확률로 이번에 중첩되는 [아르카나] 스택 수가 추가로 #3[i]스택 증가한다", + "ParamList": [ + 0.5000000004656613, + 0.6500000006053597, + 1 + ] + } + }, + "Skills": { + "130701": { + "Id": 130701, + "Name": "통찰, 침묵의 새벽", + "Desc": "지정된 단일 적에게 블랙 스완 공격력의 #1[i]%만큼 바람 속성 피해를 가하고 #2[i]%기본 확률로 목표를 [아르카나] 1스택에 빠뜨린다. 또한 풍화, 열상, 연소, 감전 상태에 빠진 목표를 공격하면 각각 #3[i]%기본 확률로 추가로 목표를 [아르카나] 1스택에 빠뜨린다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3600000003352761, + 0.530000000493601, + 0.530000000493601 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 0.5600000005215406, + 0.5600000005215406 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.48000000044703484, + 0.5900000005494803, + 0.5900000005494803 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5400000005029142, + 0.62000000057742, + 0.62000000057742 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 0.6500000006053597, + 0.6500000006053597 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6600000006146729, + 0.6800000006332994, + 0.6800000006332994 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7200000006705523, + 0.710000000661239, + 0.710000000661239 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7800000007264316, + 0.7400000006891787, + 0.7400000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.840000000782311, + 0.7700000007171184, + 0.7700000007171184 + ] + } + } + }, + "130702": { + "Id": 130702, + "Name": "실추, 거짓된 신의 황혼", + "Desc": "지정된 단일 적 및 인접한 목표에게 블랙 스완 공격력의 #1[i]%만큼 바람 속성 피해를 가하고, 동시에 #2[i]%기본 확률로 목표 및 인접한 목표를 [아르카나] 1스택에 빠뜨린다. 또한, #3[i]%기본 확률로 목표 및 인접한 목표의 방어력을 #4[f1]% 감소시킨다, 지속 시간: #5[i]턴", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 1, + 1, + 0.1479999995790422, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.4950000001117587, + 1, + 1, + 0.1539999998640269, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5400000005029142, + 1, + 1, + 0.1600000001490116, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5850000001955777, + 1, + 1, + 0.1659999997355044, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6300000005867332, + 1, + 1, + 0.1720000000204891, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6750000002793968, + 1, + 1, + 0.17799999960698187, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.7312500011175871, + 1, + 1, + 0.18550000013783574, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7875000005587935, + 1, + 1, + 0.19299999997019768, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.8437500013969839, + 1, + 1, + 0.20050000050105155, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.9000000008381903, + 1, + 1, + 0.20799999963492155, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.9450000005308539, + 1, + 1, + 0.21399999991990626, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.9900000009220093, + 1, + 1, + 0.22000000020489097, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.0349999996833503, + 1, + 1, + 0.22599999979138374, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.0800000000745058, + 1, + 1, + 0.23200000007636845, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.1249999997671694, + 1, + 1, + 0.23799999966286123, + 3 + ] + } + } + }, + "130703": { + "Id": 130703, + "Name": "저편의 품에 취해", + "Desc": "모든 적을 [발로] 상태에 빠뜨린다. 지속 시간: #2[i]턴\\n[발로] 상태에서 적은 자신의 턴 동안 받는 피해가 #3[i]% 증가하고 적이 [아르카나] 상태일 시 동시에 풍화, 열상, 연소, 감전 상태에 빠진 것으로 간주한다. 또한 [아르카나]가 매턴 시작 시 피해를 가한 후 스택 수가 초기화되지 않는다. [아르카나] 스택 수가 초기화되지 않는 효과는 [발로] 상태 지속 시간 동안 최대 #4[i]회 발동하며, 다시 한번 [발로] 상태에 빠질 시 발동 횟수가 갱신된다.\\n모든 적에게 블랙 스완 공격력의 #1[i]%만큼 바람 속성 피해를 가한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523, + 2, + 0.1500000001396984, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622, + 2, + 0.1600000001490116, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641, + 2, + 0.17000000015832484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659, + 2, + 0.18000000016763806, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678, + 2, + 0.1900000001769513, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697, + 2, + 0.20000000018626451, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265, + 2, + 0.21250000037252903, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 2, + 0.2249999998603016, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852, + 2, + 0.23750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 2, + 0.25000000023283064, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745, + 2, + 0.26000000024214387, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763, + 2, + 0.2700000002514571, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782, + 2, + 0.2800000002607703, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538, + 2, + 0.29000000027008355, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782, + 2, + 0.3000000002793968, + 1 + ] + } + } + }, + "130704": { + "Id": 130704, + "Name": "변덕스러운 운명의 베틀", + "Desc": "적의 턴이 시작될 때마다 적이 받는 지속 피해 1회당 #2[i]%기본 확률로 적을 [아르카나] 1스택에 빠트린다.\\n[아르카나] 상태에서 적의 턴이 시작될 때마다 적은 블랙 스완 공격력의 #1[i]%만큼 바람 속성 지속 피해를 받는다. [아르카나] 스택당 해당 피해 배율이 #3[f1]% 증가하며, 이후 1스택으로 초기화된다. [아르카나] 최대 중첩수: #8[i]스택\\n적의 턴 시작 시, [아르카나]가 피해를 가할 때만 적의 [아르카나] 스택 수에 따라 블랙 스완이 추가 효과를 발동한다.\\n#4[i]스택 이상일 경우, 인접한 목표에게 블랙 스완 공격력의 #5[i]%만큼 바람 속성 지속 피해를 가하고, #2[i]%기본 확률로 인접한 목표를 [아르카나] 1스택에 빠트린다.\\n#6[i]스택 이상일 경우, 이번에 가하는 지속 피해는 해당 목표 및 인접한 목표의 방어력을 #7[i]% 무시한다", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.5000000004656613, + 0.04799999948590994, + 3, + 0.7200000006705523, + 7, + 0.20000000018626451, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1183999998029321, + 0.5150000001303852, + 0.0559200004208833, + 3, + 0.838800000725314, + 7, + 0.20000000018626451, + 50 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2768000003416091, + 0.530000000493601, + 0.06384000065736473, + 3, + 0.9576000007800758, + 7, + 0.20000000018626451, + 50 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.4352000001817942, + 0.5450000001583248, + 0.07176000089384615, + 3, + 1.076399999903515, + 7, + 0.20000000018626451, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.5936000007204711, + 0.5600000005215406, + 0.07968000043183565, + 3, + 1.1951999999582767, + 7, + 0.20000000018626451, + 50 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.7520000005606562, + 0.5750000001862645, + 0.08759999996982515, + 3, + 1.3140000000130385, + 7, + 0.20000000018626451, + 50 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.8960000004153699, + 0.5937500011641532, + 0.0948000003118068, + 3, + 1.4220000002533197, + 7, + 0.20000000018626451, + 50 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.040000000037253, + 0.6125000007450581, + 0.10199999995529652, + 3, + 1.530000000493601, + 7, + 0.20000000018626451, + 50 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.220000000204891, + 0.6312500010244548, + 0.11100000003352761, + 3, + 1.6650000002700835, + 7, + 0.20000000018626451, + 50 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.6500000006053597, + 0.12000000011175871, + 3, + 1.800000000745058, + 7, + 0.20000000018626451, + 50 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.6650000002700835, + 0.12599999969825149, + 3, + 1.890000000828877, + 7, + 0.20000000018626451, + 50 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.6800000006332994, + 0.1319999999832362, + 3, + 1.9800000009126961, + 7, + 0.20000000018626451, + 50 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.6950000002980232, + 0.13799999956972897, + 3, + 2.0700000000651926, + 7, + 0.20000000018626451, + 50 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.710000000661239, + 0.14399999985471368, + 3, + 2.1600000001490116, + 7, + 0.20000000018626451, + 50 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.7250000003259629, + 0.1500000001396984, + 3, + 2.2500000002328306, + 7, + 0.20000000018626451, + 50 + ] + } + } + }, + "130706": { + "Id": 130706, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130707": { + "Id": 130707, + "Name": "진상을 파악하고 표징을 버려라", + "Desc": "비술 사용 후, 다음 전투 시작 시 #1[i]%기본 확률로 각 단일 적을 [아르카나] 1스택에 빠뜨리고, [아르카나]에 빠진 목표를 다시 한번 [아르카나] 1스택에 빠뜨리며, 해당 목표를 [아르카나] 상태에 빠뜨리지 못할 때까지 효과를 반복한다. 매번 목표를 [아르카나]에 빠뜨릴 기본 확률은 지난번 해당 목표를 [아르카나]에 빠뜨렸을 시의 기본 확률#2[i]%이다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Normal.png", + "LevelUpSkillID": [ + 130701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1307001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_BP.png", + "LevelUpSkillID": [ + 130702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Ultra.png", + "LevelUpSkillID": [ + 130703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_Passive.png", + "LevelUpSkillID": [ + 130704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1307004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1307_Maze.png", + "LevelUpSkillID": [ + 130707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6500000006053597 + ], + "PointID": 1307101, + "PointName": "요동치는 내장", + "PointDesc": "전투 스킬을 발동하여 풍화, 열상, 연소, 감전 상태의 지정된 단일 적을 공격하면 각각 #1[i]%기본 확률로 추가로 적을 [아르카나] 1스택에 빠트린다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6500000006053597, + 3 + ], + "PointID": 1307102, + "PointName": "컵 바닥의 흔적", + "PointDesc": "적이 전투 진입 시 #1[i]%기본 확률로 [아르카나] 1스택에 빠진다.\\n아군의 단일 공격 중 지속 피해를 1회 받을 때마다 #1[i]%기본 확률로 [아르카나] 1스택에 빠지며, 단일 공격 내 최대 #2[i]스택까지 빠질 수 있다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1307_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935, + 0.7200000006705523 + ], + "PointID": 1307103, + "PointName": "촛불 그림자의 징조", + "PointDesc": "자신이 가하는 피해를 효과 명중의 #1[i]%만큼 증가시킨다. 최대 #2[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307202, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1307101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1307202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307204, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1307203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1307102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307206, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1307205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1307206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307208, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1307103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307209, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1307103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1307210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1307201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110415, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1307, + "Set4IDList": [ + 116, + 110, + 102 + ], + "Set2IDList": [ + 303, + 322, + 301 + ], + "PropertyList3": [ + "StatusProbabilityBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "WindAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "StatusProbabilityBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "StatusProbabilityBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 323, + 268 + ] + } + }, + "1308": { + "Name": "아케론", + "Desc": "「갤럭시 레인저」를 자칭하는 여행자. 본명은 알 수 없다.\\n긴 검 한 자루를 차고 홀로 은하를 항해하고 있다", + "CharaInfo": { + "Camp": "갤럭시 레인저", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 23, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 24, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 25, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 26, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 27, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 28, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 29, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "acheron", + "SPNeed": 9, + "BaseType": "Warlock", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 130801, + "Name": "적막의 하늘, 진언의 시작", + "Desc": "디버프 효과를 보유한 적에게 피해를 가할 시 치명타 확률이 #1[i]% 증가한다", + "ParamList": [ + 0.18000000016763806 + ] + }, + "2": { + "Id": 130802, + "Name": "고요한 뇌명, 잠잠해진 폭풍", + "Desc": "행적 [나락] 최대치 도달에 필요한 「공허」 운명의 길 캐릭터의 수가 1명 감소한다. 자신의 턴이 시작되면 [꿈 조각]을 1pt 획득하고, 동시에 [아즈사카]가 가장 많은 적에게 [아즈사카]를 1스택 부여한다", + "ParamList": [] + }, + "3": { + "Id": 130803, + "Name": "영면을 깨운 추위", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 130804, + "Name": "거울 속 존재를 비추는 불길", + "Desc": "적이 전투 진입 시 해당 적을 필살기 피해 취약 상태에 빠트려 받는 필살기 피해를 #1[i]% 증가시킨다", + "ParamList": [ + 0.0800000000745058 + ] + }, + "5": { + "Id": 130805, + "Name": "부서진 땅, 떠도는 영혼", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 130806, + "Name": "속박을 푼 재앙", + "Desc": "아케론이 가하는 필살기 피해의 모든 속성 저항 관통#1[i]% 증가한다. 일반 공격과 전투 스킬을 발동하여 가하는 피해는 동시에 필살기 피해로 간주되며, 약점 속성을 무시하고 적의 강인성을 소모한다. 약점 격파 시 번개 속성의 약점 격파 효과를 발동한다", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "130801": { + "Id": 130801, + "Name": "삼도의 횡목", + "Desc": "지정된 단일 적에게 아케론 공격력의 #1[i]%만큼 번개 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130802": { + "Id": 130802, + "Name": "팔뢰비도", + "Desc": "[꿈 조각]을 #3[i]pt 획득한다. 지정된 단일 적에게 [아즈사카]를 #3[i]스택 부여하고, 아케론 공격력의 #1[i]%만큼 번개 속성 피해를 가한다. 동시에 인접한 목표에게 아케론 공격력의 #2[i]%만큼 번개 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581, + 0.3000000002793968, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639, + 0.33000000030733645, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697, + 0.3600000003352761, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253, + 0.3900000003632158, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587, + 0.4200000003911555, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645, + 0.45000000041909516, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968, + 0.4875000002793968, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529, + 0.5250000001396984, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613, + 0.5625000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 0.6000000005587935, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994, + 0.6300000005867332, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052, + 0.6600000006146729, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311, + 0.6900000006426126, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168, + 0.7200000006705523, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2, + 0.7500000006984919, + 1 + ] + } + } + }, + "130803": { + "Id": 130803, + "Name": "단칼에 끊어낸 붉은 꿈 조각", + "Desc": "차례대로 [눈물 베기] 3회, [황천의 귀환] 1회를 발동하여 지정된 단일 적에게 최대 아케론 공격력의 #6[i]%만큼 번개 속성 피해를 가하고, 다른 목표에게 최대 아케론 공격력의 #7[i]%만큼 번개 속성 피해를 가한다.\\n[눈물 베기]: 지정된 단일 적에게 아케론 공격력의 #1[f1]%만큼 번개 속성 피해를 가하고, 목표의 [아즈사카]를 최대 3스택 소거한다. [아즈사카] 소거 시 즉시 모든 적에게 아케론 공격력의 #2[f1]%만큼 번개 속성 피해를 가하고, [아즈사카]를 1스택 소거할 때마다 이번 피해 배율이 추가로 증가하고, 최대 #5[f1]%까지 증가한다.\\n[황천의 귀환]: 모든 적에게 아케론 공격력의 #3[i]%만큼 번개 속성 피해를 가하고 모든 [아즈사카]를 해제한다.\\n필살기 발동 중에는 적에게 [아즈사카]를 부여할 수 없다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523, + 9, + 0.3600000003352761, + 2.2320000000763685, + 1.800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622, + 9, + 0.3840000000782311, + 2.380800000857562, + 1.9200000008568168 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641, + 9, + 0.40799999982118607, + 2.5296000002417713, + 2.040000000037253 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659, + 9, + 0.43200000026263297, + 2.678400000324473, + 2.1600000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678, + 9, + 0.45600000000558794, + 2.8272000004071742, + 2.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697, + 9, + 0.48000000044703484, + 2.9760000004898757, + 2.400000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265, + 9, + 0.5100000004749745, + 3.162000000011176, + 2.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058, + 9, + 0.5400000005029142, + 3.3479999997653067, + 2.700000000651926 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852, + 9, + 0.5700000005308539, + 3.5340000002179295, + 2.850000000791624 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645, + 9, + 0.6000000005587935, + 3.7200000006705523, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745, + 9, + 0.6240000003017485, + 3.8688000007532537, + 3.1200000001117587 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763, + 9, + 0.6480000000447035, + 4.017599999904633, + 3.2400000002235174 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782, + 9, + 0.6720000004861504, + 4.166399999987334, + 3.360000000335276 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538, + 9, + 0.6960000002291054, + 4.3152000000700355, + 3.480000000447035 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782, + 9, + 0.7200000006705523, + 4.464000000152737, + 3.6000000005587935 + ] + } + } + }, + "130804": { + "Id": 130804, + "Name": "비에 젖은 단풍, 끝없는 하늘", + "Desc": "[꿈 조각]이 #1[i]pt에 도달하면 필살기를 활성화할 수 있다. 필살기 발동 중에는 약점 속성을 무시하고 적의 강인성을 소모할 수 있으며, 모든 적의 모든 속성 저항을 #2[i]% 감소시킨다. 해당 효과는 필살기가 종료될 때까지 지속된다.\\n임의의 유닛이 스킬을 발동하는 동안 적을 디버프 효과에 빠트리면 아케론은 [꿈 조각]을 1pt 획득하고 목표에게 [아즈사카]를 1스택 부여한다. 만약 여러 목표를 디버프 효과에 빠트리면, 그중 [아즈사카]가 가장 많은 적에게 [아즈사카]를 1스택 부여한다. 해당 효과는 스킬을 발동할 때마다 최대 1회 발동한다.\\n아케론이 필드에 있을 시 적이 퇴장 혹은 임의의 유닛에게 처치되면 보유한 [아즈사카]는 필드 내 [아즈사카]가 가장 많은 적에게 이전된다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 9, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 9, + 0.11000000010244548 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 9, + 0.12000000011175871 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 9, + 0.13000000012107193 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 9, + 0.14000000013038516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 9, + 0.1500000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 9, + 0.1625000003259629 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 9, + 0.17499999981373549 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9, + 0.1875 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 9, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 9, + 0.21000000019557774 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 9, + 0.22000000020489097 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 9, + 0.2300000002142042 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 9, + 0.24000000022351742 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 9, + 0.25000000023283064 + ] + } + } + }, + "130806": { + "Id": 130806, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130807": { + "Id": 130807, + "Name": "피상을 절단한 자아", + "Desc": "즉시 적을 공격한다. 웨이브가 시작될 때마다 [피상을 절단한 자아]를 획득한다. 모든 적에게 아케론 공격력의 #1[i]%만큼 번개 속성 피해를 가하며, 약점 속성을 무시하고 모든 적의 강인성을 소모한다. 약점 격파 시 번개 속성 약점 격파 효과를 발동한다.\\n[피상을 절단한 자아]: 필살기 발동 후 아케론은 [꿈 조각]을 #2[i]pt 획득하고, 랜덤 단일 적에게 [아즈사카]를 #2[i]스택 부여한다.\\n일반 적을 공격하면 해당 적을 즉시 처치하고 전투에 진입하지 않는다. 적을 명중하지 못하면 비술 포인트를 소모하지 않는다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 1 + ] + } + } + }, + "130814": { + "Id": 130814, + "Name": "눈물 베기", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130815": { + "Id": 130815, + "Name": "눈물 베기", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130816": { + "Id": 130816, + "Name": "눈물 베기", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.14399999985471368, + 0.09000000008381903, + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1536000003106892, + 0.09599999967031181, + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1632000000681728, + 0.10199999995529652, + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17280000052414834, + 0.1079999995417893, + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 0.113999999826774, + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.19200000003911555, + 0.12000000011175871, + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20399999991059303, + 0.12749999994412065, + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21599999978207052, + 0.13499999977648258, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.227999999653548, + 0.14250000030733645, + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 0.1500000001396984, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.24959999998100102, + 0.15599999972619116, + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2591999997384846, + 0.16200000001117587, + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.26880000019446015, + 0.16799999959766865, + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.27839999995194376, + 0.17399999988265336, + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.28799999970942736, + 0.18000000016763806, + 1.440000000409782 + ] + } + } + }, + "130817": { + "Id": 130817, + "Name": "황천의 귀환", + "Desc": null, + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7200000006705523 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.7680000001564622 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.8160000003408641 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8640000005252659 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9120000007096678 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9600000008940697 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0200000000186265 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1400000001303852 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2479999996721745 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2959999998565763 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3440000000409782 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.39200000022538 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.440000000409782 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Normal.png", + "LevelUpSkillID": [ + 130801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1308001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_BP.png", + "LevelUpSkillID": [ + 130802 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Ultra.png", + "LevelUpSkillID": [ + 130803, + 130814, + 130815, + 130816, + 130817 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_Passive.png", + "LevelUpSkillID": [ + 130804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1308004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1308_Maze.png", + "LevelUpSkillID": [ + 130807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 3 + ], + "PointID": 1308101, + "PointName": "적귀", + "PointDesc": "전투 시작 시, 즉시 [꿈 조각]을 #1[i]pt 획득하고 임의의 적 1기에게 [아즈사카]를 #1[i]스택 부여한다. [꿈 조각]이 최대치에 도달하면 [꿈 조각]이 1pt 초과될 때마다 [피상을 절단한 자아]를 1스택 획득하고, [피상을 절단한 자아]는 최대 #2[i]스택까지 중첩된다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.1500000001396984, + 1.6000000005587935 + ], + "PointID": 1308102, + "PointName": "나락", + "PointDesc": "아군 파티에 아케론을 제외한 「공허」 운명의 길 캐릭터가 1명/2명 존재 시, 아케론의 일반 공격, 전투 스킬, 필살기로 가하는 피해가 기존 피해의 #1[i]%/#2[i]%가 된다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1308_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 3, + 3, + 6, + 0.25000000023283064 + ], + "PointID": 1308103, + "PointName": "뇌심", + "PointDesc": "필살기의 [눈물 베기]로 [아즈사카]를 보유한 적 명중 시 아케론이 가하는 피해가 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택, 지속 시간: #3[i]턴. 또한, [황천의 귀환] 발동 시 추가로 피해를 #4[i]회 가하고, 피해를 가할 때마다 랜덤 단일 적에게 아케론 공격력의 #5[i]%만큼 번개 속성 피해를 가하며, 해당 피해는 필살기 피해로 간주한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308202, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1308101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1308202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308204, + "PointName": "피해 강화•번개", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1308203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "번개 속성 피해 증가" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1308102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308206, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1308205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1308206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308208, + "PointName": "피해 강화•번개", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1308103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "번개 속성 피해 증가" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308209, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1308103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1308210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1308201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 153.12000000011176, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 214.36799999978393, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 275.6160000001546, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 336.86400000052527, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 398.1119999999646, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 459.3600000003353, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110414, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 520.6080000000075, + "HPAdd": 7.6560000001918525, + "SpeedBase": 101, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1308, + "Set4IDList": [ + 117, + 122, + 109 + ], + "Set2IDList": [ + 314, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1309": { + "Name": "로빈", + "Desc": "페나코니에서 태어난 은하에서 유명한 헤일로족 가수. 차분하고 우아한 분위기의 소녀다.\\n이번에 가족의 초대를 받고 고향으로 돌아와 「조화의 축제」에서 손님들을 위해 노래를 부르게 되었다.\\n「화합」의 힘을 빌려 노랫소리를 전하고, 팬들뿐만 아니라 만계의 생령들에게 「공명」을 일으킬 수 있다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "robin", + "SPNeed": 160, + "BaseType": "Shaman", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 130901, + "Name": "미소의 국가", + "Desc": "[협주] 상태일 시 모든 아군의 모든 속성 저항 관통#1[i]% 증가한다", + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "Id": 130902, + "Name": "두 사람의 애프터눈 티", + "Desc": "[협주] 상태일 시 모든 아군의 속도가 #1[i]% 증가한다. 특성의 에너지 회복 효과가 추가로 #2[i]pt 증가한다", + "ParamList": [ + 0.1600000001490116, + 1 + ] + }, + "3": { + "Id": 130903, + "Name": "뒤집힌 현의 궁전", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 필살기 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 130904, + "Name": "빗방울의 열쇠", + "Desc": "필살기 발동 시 모든 아군의 제어류 디버프 상태를 해제하고, 모든 아군은 로빈이 [협주] 상태일 동안 효과 저항이 #1[i]% 증가한다", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 130905, + "Name": "고독한 별의 눈물", + "Desc": "일반 공격 레벨+1, 최대 Lv.10. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 130906, + "Name": "달이 숨은 자정", + "Desc": "[협주] 상태일 시 필살기로 가하는 물리 속성 추가 피해의 치명타 피해가 추가로 #2[i]% 증가한다. [달이 숨은 자정] 효과는 최대 #1[i]회 발동되며, 필살기를 발동할 때마다 발동 횟수가 초기화된다", + "ParamList": [ + 8, + 4.500000000465661 + ] + } + }, + "Skills": { + "130901": { + "Id": 130901, + "Name": "날갯짓으로 전해지는 노랫소리", + "Desc": "지정된 단일 적에게 로빈 공격력의 #1[i]%만큼 물리 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "130902": { + "Id": 130902, + "Name": "깃털의 아리아", + "Desc": "모든 아군이 가하는 피해를 #1[i]% 증가시킨다, 지속 시간: #2[i]턴. 로빈 턴이 시작될 때마다 지속 턴 수가 1 감소한다", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 3 + ] + } + } + }, + "130903": { + "Id": 130903, + "Name": "천음의 합주, 뭇별의 푸가", + "Desc": "로빈이 [협주] 상태에 진입하고, 자신 이외의 동료를 즉시 행동하게 한다.\\n[협주] 상태일 시 모든 아군의 공격력이 증가한다. 증가 수치는 로빈 공격력의 #1[f1]%+#3[i]pt이며, 아군이 공격을 발동할 때마다 로빈은 추가로 자신의 공격력의 #4[i]%만큼 물리 속성 추가 피해를 1회 가한다. 해당 피해의 치명타 확률은 #5[i]%, 치명타 피해는 #6[i]%로 고정된다.\\n[협주] 상태일 시 로빈은 제어류 디버프 상태에 면역되고, [협주] 상태 종료 전에는 자신의 턴에 진입하지 않으며 행동할 수 없다.\\n행동 서열에 [협주] 카운트다운이 나타나고, 카운트다운 턴 시작 시 로빈은 [협주] 상태를 종료하고 즉시 행동한다. 카운트다운이 보유한 고정 속도는 #2[i]pt이다", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.15200000000186265, + 90, + 50, + 0.7200000006705523, + 1, + 1.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.159599999897182, + 90, + 65, + 0.7680000001564622, + 1, + 1.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.16719999979250133, + 90, + 80, + 0.8160000003408641, + 1, + 1.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1748000003863126, + 90, + 95, + 0.8640000005252659, + 1, + 1.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18240000028163195, + 90, + 110, + 0.9120000007096678, + 1, + 1.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1900000001769513, + 90, + 125, + 0.9600000008940697, + 1, + 1.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19949999987147748, + 90, + 143.7500000006985, + 1.0200000000186265, + 1, + 1.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.20899999956600368, + 90, + 162.50000000046566, + 1.0800000000745058, + 1, + 1.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2184999999590218, + 90, + 181.25000000023283, + 1.1400000001303852, + 1, + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.227999999653548, + 90, + 200, + 1.2000000001862645, + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.23560000024735928, + 90, + 215, + 1.2479999996721745, + 1, + 1.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.24320000014267862, + 90, + 230, + 1.2959999998565763, + 1, + 1.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2508000007364899, + 90, + 245, + 1.3440000000409782, + 1, + 1.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.2583999999333173, + 90, + 260, + 1.39200000022538, + 1, + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.26599999982863665, + 90, + 275, + 1.440000000409782, + 1, + 1.5000000004656613 + ] + } + } + }, + "130904": { + "Id": 130904, + "Name": "조성의 합창", + "Desc": "모든 아군의 치명타 피해가 #1[f1]% 증가하고, 아군이 적 공격 후 로빈이 추가로 자신의 에너지를 #2[i]pt 회복한다", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.06499999971129, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.0800000000745058, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09499999973922968, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12499999976716936, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.14375000074505806, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.18125000060535967, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2149999998509884, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.24499999987892807, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.26000000024214387, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.27499999990686774, + 2 + ] + } + } + }, + "130906": { + "Id": 130906, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "130907": { + "Id": 130907, + "Name": "심취의 서곡", + "Desc": "비술 발동 후 자기 주변에 #1[i]초 동안 지속되는 특수 영역을 펼친다. 영역 내의 적은 로빈을 공격하지 않고, 영역이 전개되어 있는 동안 로빈을 따라다닌다. 영역이 전개되어 있는 동안 전투에 진입하면, 웨이브가 시작될 때마다 로빈은 에너지를 #2[i]pt 회복한다. 아군이 만든 영역 효과는 최대 1개만 존재할 수 있다", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 5 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Normal.png", + "LevelUpSkillID": [ + 130901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1309001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_BP.png", + "LevelUpSkillID": [ + 130902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Ultra.png", + "LevelUpSkillID": [ + 130903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_Passive.png", + "LevelUpSkillID": [ + 130904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1309004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1309_Maze.png", + "LevelUpSkillID": [ + 130907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1309101, + "PointName": "콜로라투라 카덴차", + "PointDesc": "전투 시작 시 자신의 행동 게이지가 #1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 1309102, + "PointName": "즉흥 꾸밈음", + "PointDesc": "[협주] 상태일 시 모든 아군이 추가 공격을 발동하여 가하는 치명타 피해가 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1309_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5 + ], + "PointID": 1309103, + "PointName": "시퀀스 악절", + "PointDesc": "전투 스킬 발동 시 추가로 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1309101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1309202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309204, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1309201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1309102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1309205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1309201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309208, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1309103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1309208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1309210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1309208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 174.24000000022352, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 243.93600000045262, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 313.6320000004489, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 383.3279999997467, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 453.02399999974295, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 522.7200000006706, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 592.4159999999683, + "HPAdd": 8.712000000523403, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1309, + "Set4IDList": [ + 102, + 105, + 116 + ], + "Set2IDList": [ + 302, + 301, + 308 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "AttackAddedRatio", + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "AttackAddedRatio", + "AttackDelta", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 313, + 272 + ] + } + }, + "1310": { + "Name": "반디", + "Desc": "스텔라론 헌터의 멤버로, 기갑 「샘」을 입고 전투를 벌인다. 임무에 충실하고 강인한 성격을 가졌다.\\n곤충 떼를 물리치기 위한 병기로 태어났으며, 성장 속도가 평범한 사람보다 빠르지만 수명이 매우 짧다.\\n「삶」의 기회를 찾기 위해 스텔라론 헌터에 합류하여 운명을 거스를 방법을 찾고 있다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sam", + "SPNeed": 240, + "BaseType": "Warrior", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 131001, + "Name": "나는 잠들었네, 붉은 고치 안에서", + "Desc": "강화된 전투 스킬 발동 시 목표의 방어력을 #1[i]% 무시하고, 강화된 전투 스킬은 전투 스킬 포인트를 소모하지 않는다", + "ParamList": [ + 0.1500000001396984 + ] + }, + "2": { + "Id": 131002, + "Name": "부서진 하늘에서 추락해", + "Desc": "「완전연소」 상태에서 강화된 일반 공격, 강화된 전투 스킬을 발동해 적을 처치하거나 적을 약점 격파 상태에 빠트릴 시 기갑 「샘」이 즉시 보너스 턴을 1개 획득한다. 해당 효과는 #2[i]턴 후 다시 발동할 수 있다", + "ParamList": [ + 1, + 1 + ] + }, + "3": { + "Id": 131003, + "Name": "고요한 성하에 깊이 잠들고", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 131004, + "Name": "나는 보리라, 반딧불이의 불빛을", + "Desc": "「완전연소」 상태일 때 기갑 「샘」의 효과 저항이 #1[i]% 증가한다", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 131005, + "Name": "꿈 없는 긴밤에서 비추며", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 131006, + "Name": "종극의 내일에 피어나리", + "Desc": "「완전연소」 상태에서 기갑 「샘」의 화염 속성 저항 관통#1[i]% 증가한다. 강화된 일반 공격, 강화된 전투 스킬 발동 시 약점 격파 효율이 #2[i]% 증가한다", + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + } + }, + "Skills": { + "131001": { + "Id": 131001, + "Name": "지령-폭연 추진", + "Desc": "지정된 단일 적에게 기갑 「샘」 공격력의 #1[i]%만큼 화염 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131002": { + "Id": 131002, + "Name": "지령-천공 포격", + "Desc": "자신의 HP 최대치의 #2[i]%만큼 HP를 소모해 자신의 에너지 최대치의 #3[i]%만큼 에너지를 고정으로 회복한다. 지정된 단일 적에게 기갑 「샘」 공격력의 #1[i]%만큼 화염 속성 피해를 가한다. 현재 HP가 부족하면 전투 스킬 발동 시 기갑 「샘」의 현재 HP가 1pt로 감소한다. 자신의 다음번 행동 게이지#4[i]% 증가시킨다", + "Type": "BPSkill", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903, + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.40000000037252903, + 0.5100000004749745, + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903, + 0.5200000004842877, + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.40000000037252903, + 0.530000000493601, + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.40000000037252903, + 0.5400000005029142, + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.40000000037252903, + 0.5500000005122274, + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.40000000037252903, + 0.5625000006984919, + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.40000000037252903, + 0.5750000001862645, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.40000000037252903, + 0.587500000372529, + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.40000000037252903, + 0.6000000005587935, + 0.25000000023283064 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903, + 0.6100000005681068, + 0.25000000023283064 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.40000000037252903, + 0.62000000057742, + 0.25000000023283064 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.40000000037252903, + 0.6300000005867332, + 0.25000000023283064 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903, + 0.6400000005960464, + 0.25000000023283064 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 0.40000000037252903, + 0.6500000006053597, + 0.25000000023283064 + ] + } + } + }, + "131003": { + "Id": 131003, + "Name": "반딧불이 Type-IV•완전연소", + "Desc": "「완전연소」 상태에 진입하고 자신의 행동 게이지가 100% 증가하며, 일반 공격 강화 및 전투 스킬 강화를 획득한다. 「완전연소」 상태에서는 속도가 #3[i]pt 증가하며, 강화된 일반 공격 및 강화된 전투 스킬 발동 시 자신의 약점 격파 효율이 #2[i]% 증가하고, 적이 기갑 「샘」으로부터 받는 격파 피해가 #1[f1]% 증가하며, 이번 공격이 끝날 때까지 지속된다.\\n행동 서열에 「완전연소」 카운트다운이 나타나고, 카운트다운 턴 시작 시 기갑 「샘」이 「완전연소」 상태를 해제한다. 카운트다운이 보유한 고정 속도는 #4[i]이다.\\n기갑 「샘」은 「완전연소」 상태에서 필살기를 발동할 수 없다", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 30, + 70 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 0.5000000004656613, + 33, + 70 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 36, + 70 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 0.5000000004656613, + 39, + 70 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 42, + 70 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 45, + 70 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 0.5000000004656613, + 48.75000000069849, + 70 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 0.5000000004656613, + 52.50000000046566, + 70 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 0.5000000004656613, + 56.25000000023283, + 70 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 60, + 70 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 0.5000000004656613, + 63, + 70 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 66, + 70 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 0.5000000004656613, + 69, + 70 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 72, + 70 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 75, + 70 + ] + } + } + }, + "131004": { + "Id": 131004, + "Name": "고치형 원초 화염 중추", + "Desc": "HP가 낮을수록 받는 피해가 감소한다. HP가 #3[i]% 이하일 경우 피해 감소 효과가 최대치에 도달하며, 최대 #1[i]% 감소한다. 「완전연소」 상태에서는 피해 감소 효과가 최대치를 유지하며, 효과 저항이 #4[i]% 증가한다.\\n전투 시작 시 에너지가 #2[i]% 미만일 경우 에너지를 #2[i]%까지 회복한다. 에너지가 최대치까지 회복되면 자신의 모든 디버프 효과가 해제된다", + "Type": null, + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 0.20000000018626451, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613, + 0.20000000018626451, + 0.12000000011175871 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.20000000018626451, + 0.14000000013038516 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613, + 0.20000000018626451, + 0.1600000001490116 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 0.20000000018626451, + 0.18000000016763806 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.5000000004656613, + 0.20000000018626451, + 0.2249999998603016 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.5000000004656613, + 0.20000000018626451, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.5000000004656613, + 0.20000000018626451, + 0.27499999990686774 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 0.20000000018626451, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.5000000004656613, + 0.20000000018626451, + 0.3200000002980232 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.5000000004656613, + 0.20000000018626451, + 0.3400000003166497 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.5000000004656613, + 0.20000000018626451, + 0.3600000003352761 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.5000000004656613, + 0.20000000018626451, + 0.3800000003539026 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613, + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "131006": { + "Id": 131006, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131007": { + "Id": 131007, + "Name": "Δ지령-초토화 운석 폭격", + "Desc": "공중으로 도약해 #1[i]초 동안 자유롭게 이동하며, 이때 낙하 공격을 발동하면 지속 시간을 조기 종료한다. 지속 시간이 종료되면 낙하해 즉시 일정 범위 내 모든 적을 공격하고, 매 웨이브 시작 시 모든 적에게 화염 속성 약점을 추가한다, 지속 시간: #3[i]턴. 이후 모든 적에게 기갑 「샘」 공격력의 #2[i]%만큼 화염 속성 피해를 가한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5, + 2, + 2 + ] + } + } + }, + "131008": { + "Id": 131008, + "Name": "반딧불이 Type-IV•뇌관 참격", + "Desc": "자신의 HP 최대치의 #2[i]%만큼 HP를 회복한다. 지정된 단일 적에게 기갑 「샘」 공격력의 #1[i]%만큼 화염 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 45, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2000000001862645, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.400000000372529, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6000000005587935, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.800000000745058, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2000000001862645, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.400000000372529, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6000000005587935, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 0.20000000018626451 + ] + } + } + }, + "131009": { + "Id": 131009, + "Name": "반딧불이 Type-IV•데스 스타 과부하", + "Desc": "자신의 HP 최대치의 #3[i]%만큼 HP를 회복한다. 지정된 단일 적에게 화염 속성 약점을 부여한다, 지속 시간: #4[i]턴. 해당 목표에게 기갑 「샘」 공격력의 (#5[f1]x격파 특수효과+#1[f1]%)만큼 화염 속성 피해를 가하고, 인접한 목표에게 기갑 「샘」 공격력의 (#6[f1]x격파 특수효과+#2[f1]%)만큼 화염 속성 피해를 가한다. 격파 특수효과는 최대 #7[i]%까지 계산한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 45 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.8125000009313226, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1.0500000000465661, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1.1000000000931323, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1.1500000001396984, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1.2000000001862645, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1.2500000002328306, + 0.25000000023283064, + 2, + 0.20000000018626451, + 0.10000000009313226, + 3.6000000005587935 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Normal.png", + "LevelUpSkillID": [ + 131001, + 131008 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1310001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_BP.png", + "LevelUpSkillID": [ + 131002, + 131009 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Ultra.png", + "LevelUpSkillID": [ + 131003 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_Passive.png", + "LevelUpSkillID": [ + 131004 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1310004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1310_Maze.png", + "LevelUpSkillID": [ + 131007 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5500000005122274 + ], + "PointID": 1310101, + "PointName": "α모듈-안티랙 아웃버스트", + "PointDesc": "「완전연소」 상태에서 화염 속성 약점이 없는 적을 공격해도 강인성을 감소시킬 수 있다. 효과는 기존 스킬 강인성 감소 수치의 #1[i]%만큼이다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 2, + 3.6000000005587935, + 0.3500000003259629, + 0.5000000004656613 + ], + "PointID": 1310102, + "PointName": "β모듈-자기 제어 기갑", + "PointDesc": "「완전연소」 상태에서 기갑 「샘」의 격파 특수효과가 #1[i]%/#2[i]% 이상일 시, 약점 격파 상태의 적을 공격하면 이번 공격의 강인성 감소 수치가 #3[i]%/#4[i]%슈퍼 격파 피해 1회로 전환된다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1310_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1800, + 10, + 0.007999999448657036 + ], + "PointID": 1310103, + "PointName": "γ모듈-과부하 코어", + "PointDesc": "기갑 「샘」의 공격력이 #1[i]pt보다 높으면 공격력이 #2[i]pt 초과할 때마다 자신의 격파 특수효과가 #3[f1]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310201, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310202, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1310101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310203, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1310202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310204, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1310203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310205, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1310102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310206, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1310205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310207, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1310206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310208, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1310103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310209, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1310208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "효과 저항" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1310210, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1310208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "격파 특수효과" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 105.6000000005588, + "DefenceAdd": 5.28000000026077, + "HPBase": 110.88000000081956, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 147.8400000007823, + "DefenceAdd": 5.28000000026077, + "HPBase": 155.23200000007637, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 190.0800000000745, + "DefenceAdd": 5.28000000026077, + "HPBase": 199.5840000002645, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 232.32000000029802, + "DefenceAdd": 5.28000000026077, + "HPBase": 243.93600000045262, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 274.56000000052154, + "DefenceAdd": 5.28000000026077, + "HPBase": 288.2879999997094, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 316.80000000074506, + "DefenceAdd": 5.28000000026077, + "HPBase": 332.64000000059605, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110422, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 359.04000000003725, + "DefenceAdd": 5.28000000026077, + "HPBase": 376.9920000007842, + "HPAdd": 5.544000000227243, + "SpeedBase": 104, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1310, + "Set4IDList": [ + 119, + 112, + 107 + ], + "Set2IDList": [ + 316, + 307, + 309 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 246, + 190 + ] + } + }, + "1312": { + "Name": "미샤", + "Desc": "예의바른 페나코니 호텔의 벨보이.\\n무명객을 동경하며, 언젠가 자신만의 여행을 떠나는 걸 꿈꾼다", + "CharaInfo": { + "Camp": "페나코니", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": "..." + }, + "Stories": { + "0": "...", + "1": "...", + "2": "...", + "3": "...", + "4": "..." + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 19, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 20, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 21, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 22, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 51, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 52, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 53, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 54, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 55, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 56, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 57, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 58, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 59, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 60, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 61, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 62, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 63, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 64, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 65, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 66, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 67, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 68, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 69, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 70, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 71, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 72, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 73, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 74, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType4", + "AvatarVOTag": "misha", + "SPNeed": 100, + "BaseType": "Warrior", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 131201, + "Name": "흔들리는 환영", + "Desc": "필살기 발동 시 필드 위 적 1명당 해당 필살기 공격 단수가 추가로 #1[i]단 증가하며, 최대 추가로 #2[i]단까지 증가한다", + "ParamList": [ + 1, + 5 + ] + }, + "2": { + "Id": 131202, + "Name": "청춘의 창연한 눈빛", + "Desc": "필살기의 단수별 공격 전 #3[i]%기본 확률로 목표의 방어력을 #1[i]% 감소시킨다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.1600000001490116, + 3, + 0.24000000022351742 + ] + }, + "3": { + "Id": 131203, + "Name": "행복한 세월의 그림자", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 131204, + "Name": "다정한 모습", + "Desc": "필살기의 단수별 공격 피해 배율이 #1[i]% 증가한다", + "ParamList": [ + 0.060000000055879354 + ] + }, + "5": { + "Id": 131205, + "Name": "최초의 사랑과 우정", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 131206, + "Name": "오랫동안 잊고 있던 동경", + "Desc": "필살기 발동 시, 자신이 가하는 피해가 자신의 턴이 종료될 때까지 #2[i]% 증가하며, 다음 전투 스킬 발동 후 아군이 전투 스킬 포인트를 #1[i]pt 회복한다", + "ParamList": [ + 1, + 0.3000000002793968 + ] + } + }, + "Skills": { + "131201": { + "Id": 131201, + "Name": "지… 지나갈게요!", + "Desc": "지정된 단일 적에게 미샤 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131202": { + "Id": 131202, + "Name": "룸… 룸서비스입니다!", + "Desc": "미샤의 다음 필살기 공격 단수가 #3[i]단 증가한다. 지정된 단일 적에게 미샤 공격력의 #1[i]%만큼 얼음 속성 피해를 가하고 인접한 목표에게 미샤 공격력의 #2[i]%만큼 얼음 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.40000000037252903, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.44000000040978193, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.48000000044703484, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.5200000004842877, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.5600000005215406, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.6500000006053597, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.7000000006519258, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.7500000006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 0.8000000007450581, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 0.8800000008195639, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 0.9200000008568168, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 0.9600000008940697, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1, + 1 + ] + } + } + }, + "131203": { + "Id": 131203, + "Name": "지… 지각하겠어!", + "Desc": "기본 상태에서 공격 단수를 #1[i]단 보유한다. 우선 1단 공격을 발동하여 지정된 단일 적에게 미샤 공격력의 #2[i]%만큼 얼음 속성 피해를 가하고 나머지 단수별 공격은 랜덤 단일 적에게 미샤 공격력의 #2[i]%만큼 얼음 속성 피해를 가한다. 단수별 공격 전 #3[f1]%기본 확률로 목표를 빙결 상태에 빠뜨린다. 지속 시간: 1턴\\n빙결 상태에서 적은 행동할 수 없으며, 턴이 시작될 때마다 미샤 공격력의 #4[i]%만큼 얼음 속성 추가 피해를 받는다.\\n필살기 공격 단수는 최대 #5[i]단까지 누적되며, 필살기 발동 후 공격 단수는 기본 상태로 복구된다", + "Type": "Ultra", + "Tag": "Bounce", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 0.3600000003352761, + 0.12000000011175871, + 0.18000000016763806, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 0.3840000000782311, + 0.12799999956041574, + 0.19200000003911555, + 10 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 0.40799999982118607, + 0.1359999997075647, + 0.20399999991059303, + 10 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 0.43200000026263297, + 0.14399999985471368, + 0.21599999978207052, + 10 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 0.45600000000558794, + 0.15200000000186265, + 0.227999999653548, + 10 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 0.48000000044703484, + 0.1600000001490116, + 0.24000000022351742, + 10 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 0.5100000004749745, + 0.17000000015832484, + 0.2549999998882413, + 10 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.5400000005029142, + 0.18000000016763806, + 0.2700000002514571, + 10 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 0.5700000005308539, + 0.1900000001769513, + 0.28499999991618097, + 10 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 0.6000000005587935, + 0.20000000018626451, + 0.3000000002793968, + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 0.6240000003017485, + 0.20799999963492155, + 0.31200000015087426, + 10 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 0.6480000000447035, + 0.21599999978207052, + 0.32400000002235174, + 10 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 0.6720000004861504, + 0.22399999992921948, + 0.3359999998938292, + 10 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 0.6960000002291054, + 0.23200000007636845, + 0.3479999997653067, + 10 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.7200000006705523, + 0.24000000022351742, + 0.3600000003352761, + 10 + ] + } + } + }, + "131204": { + "Id": 131204, + "Name": "탈진기", + "Desc": "모든 아군이 전투 스킬 포인트를 1pt 소모할 때마다 미샤의 다음 필살기 공격 단수가 #2[i]단 증가하고, 미샤의 에너지가 #1[f1]pt 회복된다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1 + ] + } + } + }, + "131206": { + "Id": 131206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131207": { + "Id": 131207, + "Name": "멈추어라, 너 정말 아름답구나!", + "Desc": "비술 사용 후 #1[i]초 동안 지속되는 특수 영역을 만든다. 특수 영역 내에 있는 적은 [꿈세계 감옥] 상태에 빠진다. [꿈세계 감옥] 상태에 빠진 적은 모든 행동을 중지한다. [꿈세계 감옥] 상태의 적과 전투 진입 후 미샤의 다음 필살기 공격 단수는 #2[i]단 증가한다. 아군이 만든 영역 효과는 최대 1개만 존재할 수 있다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Normal.png", + "LevelUpSkillID": [ + 131201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1312001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_BP.png", + "LevelUpSkillID": [ + 131202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Ultra.png", + "LevelUpSkillID": [ + 131203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_Passive.png", + "LevelUpSkillID": [ + 131204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1312004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1312_Maze.png", + "LevelUpSkillID": [ + 131207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581 + ], + "PointID": 1312101, + "PointName": "릴리즈", + "PointDesc": "필살기의 첫 1단 공격 전 목표가 빙결 상태에 빠질 기본 확률#1[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935 + ], + "PointID": 1312102, + "PointName": "인터로크", + "PointDesc": "필살기 발동 시 해당 필살기 행동이 종료될 때까지 효과 명중이 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1312_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1312103, + "PointName": "트랜스미션", + "PointDesc": "빙결 상태에 빠진 적에게 피해를 가할 시 치명타 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312201, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312202, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1312101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312203, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1312202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312204, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1312203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312205, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1312102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312206, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1312205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312207, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1312206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312208, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1312103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312209, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1312208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1312210, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1312208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "얼음 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.6000000005588, + "AttackAdd": 4.080000000074506, + "DefenceBase": 54, + "DefenceAdd": 2.700000000651926, + "HPBase": 172.80000000074506, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.24000000022352, + "AttackAdd": 4.080000000074506, + "DefenceBase": 75.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 241.92000000085682, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 146.88000000081956, + "AttackAdd": 4.080000000074506, + "DefenceBase": 97.20000000018626, + "DefenceAdd": 2.700000000651926, + "HPBase": 311.04000000003725, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 2 + } + ] + }, + "3": { + "AttackBase": 179.5200000004843, + "AttackAdd": 4.080000000074506, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 2.700000000651926, + "HPBase": 380.160000000149, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 5 + } + ] + }, + "4": { + "AttackBase": 212.160000000149, + "AttackAdd": 4.080000000074506, + "DefenceBase": 140.40000000037253, + "DefenceAdd": 2.700000000651926, + "HPBase": 449.28000000026077, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 15 + } + ] + }, + "5": { + "AttackBase": 244.80000000074506, + "AttackAdd": 4.080000000074506, + "DefenceBase": 162, + "DefenceAdd": 2.700000000651926, + "HPBase": 518.4000000003725, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 28 + } + ] + }, + "6": { + "AttackBase": 277.4400000004098, + "AttackAdd": 4.080000000074506, + "DefenceBase": 183.6000000005588, + "DefenceAdd": 2.700000000651926, + "HPBase": 587.5200000004843, + "HPAdd": 8.640000000596046, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1312, + "Set4IDList": [ + 104, + 122, + 102 + ], + "Set2IDList": [ + 306, + 301, + 311 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1313": { + "Name": "선데이", + "Desc": "「질서」의 좋은꿈은 이미 사라졌지만 여전히 초심을 버리지 않는 사람도 있다.\\n——날개가 꺾여 추락한 여행자, 그의 발걸음은 어디로 향할 것인가?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "sunday", + "SPNeed": 130, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 131301, + "Name": "천년의 고요한 끝", + "Desc": "선데이가 전투 스킬 발동 시 목표 캐릭터가 피해를 가하면 목표의 방어력을 #2[i]% 무시하고, 소환물이 피해를 가하면 목표의 방어력을 #3[i]% 무시한다, 지속 시간: #1[i]턴", + "ParamList": [ + 2, + 0.1600000001490116, + 0.40000000037252903 + ] + }, + "2": { + "Id": 131302, + "Name": "부족함을 메우는 믿음", + "Desc": "처음 필살기 발동 후 전투 스킬 포인트를 #2[i]pt 회복한다. [은혜 입은 자]가 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 131303, + "Name": "가시의 은둔처", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 131304, + "Name": "조각의 머리말", + "Desc": "턴 시작 시 에너지를 #1[i]pt 회복한다", + "ParamList": [ + 8 + ] + }, + "5": { + "Id": 131305, + "Name": "은하를 표류하는 종이배", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 131306, + "Name": "뭇별의 떠들썩한 첫걸음", + "Desc": "특성의 치명타 확률 증가 효과가 최대 #1[i]스택 중첩되며, 특성의 지속 시간이 #3[i]턴 증가한다. 선데이가 필살기 발동 시 목표에게 특성의 치명타 확률 증가 효과를 부여할 수 있다. 특성의 치명타 확률 증가 효과 발동 시 목표의 치명타 확률이 100%를 초과하면, 1%를 초과할 때마다 치명타 피해가 #2[i]% 증가한다", + "ParamList": [ + 3, + 0.02000000001862645, + 1 + ] + } + }, + "Skills": { + "131301": { + "Id": 131301, + "Name": "번쩍이는 권계", + "Desc": "지정된 단일 적에게 선데이 공격력의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131302": { + "Id": 131302, + "Name": "종이와 의전의 은혜", + "Desc": "지정된 단일 아군 캐릭터 및 해당 캐릭터의 소환물을 즉시 행동하게 하고, 대상이 가하는 피해를 #2[i]% 증가시키며, 목표가 소환물을 보유하면 가하는 피해 증가 효과가 추가로 #4[i]% 증가한다, 지속 시간: #3[i]턴\\n[은혜 입은 자]에게 전투 스킬 발동 후 전투 스킬 포인트를 1pt 회복한다.\\n선데이가 「화합」 운명의 길 캐릭터에게 해당 스킬을 발동하면 즉시 행동 효과는 발동되지 않는다", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.1500000001396984, + 2, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1, + 0.16499999980442226, + 2, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1, + 0.18000000016763806, + 2, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1, + 0.19499999983236194, + 2, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1, + 0.21000000019557774, + 2, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.2249999998603016, + 2, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1, + 0.24375000083819032, + 2, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1, + 0.26250000041909516, + 2, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1, + 0.28125000069849193, + 2, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 0.3000000002793968, + 2, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1, + 0.31499999994412065, + 2, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1, + 0.33000000030733645, + 2, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1, + 0.3449999999720603, + 2, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1, + 0.3600000003352761, + 2, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 0.375, + 2, + 0.6250000002328306 + ] + } + } + }, + "131303": { + "Id": 131303, + "Name": "깃과 상흔의 찬송", + "Desc": "지정된 단일 아군 캐릭터의 에너지를 에너지 최대치의 #1[f1]%만큼 회복하고, 목표 및 목표의 소환물을 [은혜 입은 자]로 만든다. [은혜 입은 자]의 치명타 피해는 선데이 치명타 피해의 #2[f1]%#4[f1]%를 더한 값만큼 증가한다.\\n선데이 자신의 턴이 시작될 때마다 [은혜 입은 자] 상태의 지속 턴 수가 1 감소하고, 총 #3[i]턴 지속되며, 선데이를 제외한 최근 필살기의 대상이 된 목표에게만 적용된다. 선데이가 전투 불능 상태에 빠질 시 [은혜 입은 자] 효과도 해제된다", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.12000000011175871, + 3, + 0.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 0.13799999956972897, + 3, + 0.08399999979883432 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.20000000018626451, + 0.15599999972619116, + 3, + 0.08799999952316284 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.20000000018626451, + 0.17399999988265336, + 3, + 0.09199999994598329 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.20000000018626451, + 0.19200000003911555, + 3, + 0.09599999967031181 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.21000000019557774, + 3, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.20000000018626451, + 0.23250000039115548, + 3, + 0.1049999997485429 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.20000000018626451, + 0.2549999998882413, + 3, + 0.11000000010244548 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.20000000018626451, + 0.27750000008381903, + 3, + 0.11499999975785613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 3, + 0.12000000011175871 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.20000000018626451, + 0.31799999973736703, + 3, + 0.12399999983608723 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.20000000018626451, + 0.3359999998938292, + 3, + 0.12799999956041574 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20000000018626451, + 0.3540000000502914, + 3, + 0.1319999999832362 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.20000000018626451, + 0.3720000002067536, + 3, + 0.1359999997075647 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.20000000018626451, + 0.3900000003632158, + 3, + 0.14000000013038516 + ] + } + } + }, + "131304": { + "Id": 131304, + "Name": "고해의 육신", + "Desc": "전투 스킬 발동 시 목표의 치명타 확률이 #1[f1]% 증가한다, 지속 시간: #2[i]턴", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 3 + ] + } + } + }, + "131306": { + "Id": 131306, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131307": { + "Id": 131307, + "Name": "영광의 신비", + "Desc": "비술 사용 후 다음 전투에서 선데이가 처음으로 아군에게 스킬을 발동하면 목표가 가하는 피해가 #1[i]% 증가한다, 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Normal.png", + "LevelUpSkillID": [ + 131301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1313001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_BP.png", + "LevelUpSkillID": [ + 131302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Ultra.png", + "LevelUpSkillID": [ + 131303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_Passive.png", + "LevelUpSkillID": [ + 131304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1313004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1313_Maze.png", + "LevelUpSkillID": [ + 131307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 40 + ], + "PointID": 1313101, + "PointName": "주일을 향한 갈망", + "PointDesc": "필살기 발동 시 목표에게 회복한 에너지가 #1[i]pt 미만일 시, 회복하는 에너지가 #1[i]pt까지 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 25 + ], + "PointID": 1313102, + "PointName": "먼지를 털어내는 숭고함", + "PointDesc": "전투 시작 시 선데이의 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1313_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1313103, + "PointName": "손바닥 위 안식처", + "PointDesc": "전투 스킬 발동 시 목표의 디버프 효과#1[i]개 해제한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313201, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313202, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1313101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313203, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1313202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1313201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313205, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1313102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313206, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1313205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313207, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1313201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1313103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313209, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1313208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "효과 저항" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1313210, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1313208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 72.6000000005588, + "DefenceAdd": 3.630000000586733, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 101.64000000059605, + "DefenceAdd": 3.630000000586733, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 3.630000000586733, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 159.72000000067055, + "DefenceAdd": 3.630000000586733, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 3.630000000586733, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 3.630000000586733, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 246.8400000007823, + "DefenceAdd": 3.630000000586733, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1313, + "Set4IDList": [ + 121, + 114, + 110 + ], + "Set2IDList": [ + 317, + 310, + 308 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 247, + 187 + ], + "LocalCriticalChance": 1 + } + }, + "1314": { + "Name": "제이드", + "Desc": "스타피스 컴퍼니 「전략투자부」의 고위 간부로, 「10인의 스톤하트」 중 한 명이다. 초석은 「전당의 비취」.\\n서늘하게 아름답고 우아한 이 대금업자는 사람 마음을 꿰뚫어 보는 데 능하고, 「보나제이드 전당포」라는 개인적인 취미를 갖고 있다.\\n가치가 높은 것들을 얻기 위해서라면 인내심을 갖고 기다리며, 가진 게 없어 보이는 고객으로부터 가치를 쥐어짜 내는 데 능하다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "jade", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 131401, + "Name": "이타심? 역시 거래 가능", + "Desc": "제이드 특성의 추가 공격 피해가 #1[i]% 증가한다. [빚 수금업자] 상태를 보유한 캐릭터가 공격 발동 후 명중한 적의 수량이 2/1기일 시 제이드가 충전을 추가로 #2[i]/#3[i]pt 획득한다", + "ParamList": [ + 0.3200000002980232, + 1, + 2 + ] + }, + "2": { + "Id": 131402, + "Name": "도덕? 담보 승인", + "Desc": "[전당품]이 #1[i]스택까지 중첩될 시 제이드의 치명타 확률이 #2[i]% 증가한다", + "ParamList": [ + 15, + 0.18000000016763806 + ] + }, + "3": { + "Id": 131403, + "Name": "솔직? 저당 대상이 될 뿐", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 131404, + "Name": "진심? 풋옵션만 가능", + "Desc": "필살기 발동 시 제이드가 가하는 피해가 적의 방어력을 #1[i]% 무시한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "5": { + "Id": 131405, + "Name": "희망? 유전물이 된 지 오래", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 131406, + "Name": "공평? 여전히 보증 필요", + "Desc": "필드 위에 [빚 수금업자] 상태인 캐릭터가 있을 시 제이드의 양자 속성 저항 관통#1[i]% 증가하고, 제이드가 [빚 수금업자] 상태를 획득한다", + "ParamList": [ + 0.20000000018626451 + ] + } + }, + "Skills": { + "131401": { + "Id": 131401, + "Name": "갈취의 채찍", + "Desc": "지정된 단일 적에게 제이드 공격력의 #1[i]%만큼 양자 속성 피해를 가하고, 동시에 인접한 목표에게 제이드 공격력의 #2[i]%만큼 양자 속성 피해를 가한다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5400000005029142, + 0.18000000016763806 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6300000005867332, + 0.21000000019557774 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7200000006705523, + 0.24000000022351742 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8100000007543713, + 0.2700000002514571 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9900000009220093, + 0.33000000030733645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0800000000745058, + 0.3600000003352761 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1700000001583248, + 0.3900000003632158 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2600000002421439, + 0.4200000003911555 + ] + } + } + }, + "131402": { + "Id": 131402, + "Name": "병탄 합병의 담보", + "Desc": "지정된 단일 아군을 [빚 수금업자]로 만들며, 해당 목표의 속도가 #1[i]pt 증가한다, 지속 시간: #4[i]턴\\n[빚 수금업자]가 공격 발동 후 명중한 모든 적에게 제이드 공격력의 #3[i]%만큼 양자 속성 추가 피해를 1회 가하고, [빚 수금업자] HP 최대치의 #2[i]%만큼 HP를 소모한다. 현재 HP가 부족하면 HP가 1pt로 감소한다.\\n제이드가 [빚 수금업자]가 되면 속도 증가 효과를 획득할 수 없고 공격 후 HP를 소모하지 않는다.\\n필드에 [빚 수금업자]가 존재할 시 제이드는 전투 스킬을 발동할 수 없으며, 제이드의 턴이 시작될 때마다 [빚 수금업자] 상태의 지속 턴 수가 1 감소한다", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1500000001396984, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1600000001490116, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 30, + 0.02000000001862645, + 0.17000000015832484, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 30, + 0.02000000001862645, + 0.18000000016763806, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 30, + 0.02000000001862645, + 0.1900000001769513, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 30, + 0.02000000001862645, + 0.20000000018626451, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 30, + 0.02000000001862645, + 0.21250000037252903, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2249999998603016, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 30, + 0.02000000001862645, + 0.23750000004656613, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 30, + 0.02000000001862645, + 0.25000000023283064, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 30, + 0.02000000001862645, + 0.26000000024214387, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2700000002514571, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 30, + 0.02000000001862645, + 0.2800000002607703, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 30, + 0.02000000001862645, + 0.29000000027008355, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 30, + 0.02000000001862645, + 0.3000000002793968, + 3 + ] + } + } + }, + "131403": { + "Id": 131403, + "Name": "서약의 심연, 영원의 계약", + "Desc": "모든 적에게 제이드 공격력의 #3[i]%만큼 양자 속성 피해를 가한다. 또한 제이드 특성의 추가 공격이 강화되고, 추가 공격으로 가하는 피해 배율이 #1[i]% 증가한다. 강화 효과는 #2[i]회 적용된다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 2, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 2, + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 2, + 1.440000000409782 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 2, + 1.5600000005215406 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 2, + 1.6800000006332994 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 2, + 1.800000000745058 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 2, + 1.9500000008847564 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 2, + 2.1000000000931323 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 2, + 2.2500000002328306 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 2, + 2.400000000372529 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 2, + 2.5200000004842877 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 2, + 2.6400000005960464 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 2, + 2.760000000707805 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 2, + 2.880000000819564 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 2, + 3 + ] + } + } + }, + "131404": { + "Id": 131404, + "Name": "보석을 골라내는 이빨", + "Desc": "제이드 혹은 [빚 수금업자]가 된 목표가 공격 발동 후, 적을 1기 명중할 때마다 충전을 1pt 획득한다. 충전이 #3[i]pt에 도달하면 충전을 #3[i]pt 소모하여 추가 공격을 1회 발동하고, 모든 적에게 제이드 공격력의 #5[i]%만큼 양자 속성 피해를 가한다. 이번 추가 공격은 충전을 획득할 수 없다.\\n제이드가 특성의 추가 공격을 발동하면 즉시 [전당품]을 #4[i]스택 획득하며, [전당품] 스택마다 치명타 피해가 #1[f1]% 증가한다, 최대 중첩수: #2[i]스택", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.011999999871477485, + 50, + 8, + 5, + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.013199999928474426, + 50, + 8, + 5, + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.014399999985471368, + 50, + 8, + 5, + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.01560000004246831, + 50, + 8, + 5, + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.01680000009946525, + 50, + 8, + 5, + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.01799999945797026, + 50, + 8, + 5, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.01949999970383942, + 50, + 8, + 5, + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.02099999994970858, + 50, + 8, + 5, + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.02250000019557774, + 50, + 8, + 5, + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.02399999974295497, + 50, + 8, + 5, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.02519999979995191, + 50, + 8, + 5, + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.026399999856948853, + 50, + 8, + 5, + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.027599999913945794, + 50, + 8, + 5, + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.028799999970942736, + 50, + 8, + 5, + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.030000000027939677, + 50, + 8, + 5, + 1.5000000004656613 + ] + } + } + }, + "131406": { + "Id": 131406, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131407": { + "Id": 131407, + "Name": "사냥꾼의 시야", + "Desc": "비술 사용 후 일정 구역 내의 적을 #1[i]초 동안 [맹종] 상태에 빠트린다. [맹종] 상태의 적은 아군을 선공하지 않는다. [맹종] 상태의 적을 선공해 전투 진입 시 모든 [맹종] 상태의 적이 동시에 전투에 진입한다. 전투 진입 후 모든 적에게 제이드 공격력의 #2[i]%만큼 양자 속성 피해를 가하고, 즉시 [전당품]을 #3[i]스택 획득한다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 15 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Normal.png", + "LevelUpSkillID": [ + 131401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1314001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_BP.png", + "LevelUpSkillID": [ + 131402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Ultra.png", + "LevelUpSkillID": [ + 131403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_Passive.png", + "LevelUpSkillID": [ + 131404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1314004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1314_Maze.png", + "LevelUpSkillID": [ + 131407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 1 + ], + "PointID": 1314101, + "PointName": "리버스 레포", + "PointDesc": "적이 전투에 진입하면 제이드는 [전당품]을 #2[i]스택 획득한다. [빚 수금업자] 상태인 캐릭터의 턴이 시작되면 [전당품]을 추가로 #1[i]스택 획득한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613 + ], + "PointID": 1314102, + "PointName": "전당표", + "PointDesc": "전투 시작 시 제이드의 행동 게이지가 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1314_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.004999999655410647 + ], + "PointID": 1314103, + "PointName": "유전물", + "PointDesc": "특성의 [전당품] 1스택마다 추가로 제이드의 공격력을 #1[f1]% 증가시킨다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314201, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1314101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314203, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1314202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1314202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314205, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1314102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314206, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1314205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314207, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1314205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1314103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314209, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1314103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1314210, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "양자 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 89.7600000007078, + "AttackAdd": 4.487999999895692, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 125.664000000339, + "AttackAdd": 4.487999999895692, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 161.5679999999702, + "AttackAdd": 4.487999999895692, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 197.4720000002999, + "AttackAdd": 4.487999999895692, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 233.37599999993108, + "AttackAdd": 4.487999999895692, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 269.28000000026077, + "AttackAdd": 4.487999999895692, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110426, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 305.18399999989197, + "AttackAdd": 4.487999999895692, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1314, + "Set4IDList": [ + 108, + 115, + 102 + ], + "Set2IDList": [ + 313, + 306, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase" + ], + "PropertyList4": [ + "AttackAddedRatio", + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 337, + 282 + ] + } + }, + "1315": { + "Name": "부트힐", + "Desc": "은하를 떠도는 개조 인간 카우보이. 극도로 낙관적이고 자유분방하다.\\n「갤럭시 레인저」의 일원으로, 악을 처단하기 위해서라면 무슨 짓이든 할 수 있다——\\n그의 대담한 행동은 복수의 대상인 「스타피스 컴퍼니」의 이목을 끌기 위함이다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "boothill", + "SPNeed": 115, + "BaseType": "Rogue", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 131501, + "Name": "황야의 론스타", + "Desc": "전투 시작 시 [포켓 어드벤티지]를 1스택 획득한다. 부트힐이 피해를 가할 시 적의 방어력을 #1[i]% 무시한다", + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "Id": 131502, + "Name": "마일스톤 딜러", + "Desc": "[목숨 건 대치] 상태에서 [포켓 어드벤티지] 획득 시, 전투 스킬 포인트를 #1[i]개 회복하고 격파 특수효과가 #2[i]% 증가한다. 지속 시간: #3[i]턴. 해당 효과는 1턴 내에 중복 발동할 수 없으며, [포켓 어드벤티지]를 초과해 획득할 때도 발동된다", + "ParamList": [ + 1, + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 131503, + "Name": "대리석 과수원의 파수꾼", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 131504, + "Name": "냉육 주방장", + "Desc": "[목숨 건 대치] 상태의 적이 부트힐에게 피격 시 받는 피해가 추가로 #1[i]% 증가한다. 부트힐이 [목숨 건 대치] 상태의 적에게 피격 시 받는 피해 증가 효과가 #2[i]% 감소한다", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "5": { + "Id": 131505, + "Name": "그루터기 연설가", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 131506, + "Name": "쇠창살 여관의 라쿤", + "Desc": "특성을 발동하여 격파 피해를 가할 시, 목표에게 추가로 기존 피해 배율의 #1[i]%만큼 격파 피해를 가하고, 인접한 목표에게 추가로 기존 피해 배율의 #2[i]%만큼 격파 피해를 가한다", + "ParamList": [ + 0.40000000037252903, + 0.7000000006519258 + ] + } + }, + "Skills": { + "131501": { + "Id": 131501, + "Name": "두개골을 부수는 발굽", + "Desc": "지정된 단일 적에게 부트힐 공격력의 #1[i]%만큼 물리 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131502": { + "Id": 131502, + "Name": "뜨거운 자갈 위 탱고", + "Desc": "지정된 단일 적과 자신이 [목숨 건 대치] 상태에 진입한다. 부트힐의 일반 공격이 강화되고 전투 스킬을 발동할 수 없다, 지속 시간: #3[i]턴. 부트힐의 턴이 시작될 때마다 지속 턴 수가 1 감소한다.\\n[목숨 건 대치] 상태의 적은 도발 상태에 빠진다. 해당 목표/부트힐이 상대의 공격을 받을 시 받는 피해가 #1[i]%/#2[i]% 증가한다.\\n해당 목표가 처치되거나 약점이 격파된 후, 부트힐은 [포켓 어드벤티지]를 1스택 획득하고, [목숨 건 대치]가 해제된다.\\n해당 전투 스킬은 에너지를 회복할 수 없다. 해당 전투 스킬 발동 후, 이번 턴은 종료되지 않는다", + "Type": "BPSkill", + "Tag": "Impair", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 0.1500000001396984, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 0.1500000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 0.1500000001396984, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 0.1500000001396984, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 0.1500000001396984, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 0.1500000001396984, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 0.1500000001396984, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 0.1500000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 0.1500000001396984, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 0.1500000001396984, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 0.1500000001396984, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 0.1500000001396984, + 2 + ] + } + } + }, + "131503": { + "Id": 131503, + "Name": "더스트 데빌의 선셋 로데오", + "Desc": "지정된 단일 적에게 물리 약점을 부여한다, 지속 시간: #3[i]턴\\n해당 목표에게 부트힐 공격력의 #1[i]%만큼 물리 속성 피해를 가하고, 행동 게이지를 #2[i]% 감소시킨다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.400000000372529, + 0.3000000002793968, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.5600000005215406, + 0.31000000028871, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.7200000006705523, + 0.3200000002980232, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.880000000819564, + 0.33000000030733645, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.040000000037253, + 0.3400000003166497, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.2000000001862645, + 0.3500000003259629, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.400000000372529, + 0.3625000005122274, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.6000000005587935, + 0.375, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.800000000745058, + 0.3875000001862645, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.40000000037252903, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.160000000149012, + 0.41000000038184226, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.320000000298023, + 0.4200000003911555, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.480000000447035, + 0.4300000004004687, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.6400000005960464, + 0.44000000040978193, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.800000000745058, + 0.45000000041909516, + 2 + ] + } + } + }, + "131504": { + "Id": 131504, + "Name": "실린더 속 다섯 발", + "Desc": "[포켓 어드벤티지] 1스택마다 강화된 일반 공격의 강인성 감소 수치가 #4[i]% 증가한다. 최대 중첩수: #5[i]스택\\n강화된 일반 공격 발동 중에 목표가 약점 격파 상태일 경우, [포켓 어드벤티지] 스택 수에 따라 목표에게 부트힐 물리 속성 격파 피해의 #1[i]%/#2[i]%/#3[i]%만큼 격파 피해를 가한다. 해당 피해에 계산되는 강인성 최대치는 일반 공격 [두개골을 부수는 발굽]의 기초 강인성 감소 수치의 #6[i]배를 넘을 수 없다.\\n전투 승리 후, 부트힐은 [포켓 어드벤티지]를 다음 전투까지 보류할 수 있다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 0.6000000005587935, + 0.8500000007916242, + 0.5000000004656613, + 3, + 16 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 0.6600000006146729, + 0.9350000005215406, + 0.5000000004656613, + 3, + 16 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 0.7200000006705523, + 1.0200000000186265, + 0.5000000004656613, + 3, + 16 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 0.7800000007264316, + 1.104999999748543, + 0.5000000004656613, + 3, + 16 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 0.840000000782311, + 1.1900000001769513, + 0.5000000004656613, + 3, + 16 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 0.9000000008381903, + 1.2749999999068677, + 0.5000000004656613, + 3, + 16 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 0.9750000005587935, + 1.3812500007916242, + 0.5000000004656613, + 3, + 16 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 1.0500000000465661, + 1.4875000002793968, + 0.5000000004656613, + 3, + 16 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 1.1249999997671694, + 1.5937500011641532, + 0.5000000004656613, + 3, + 16 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 1.2000000001862645, + 1.7000000006519258, + 0.5000000004656613, + 3, + 16 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 1.2600000002421439, + 1.7850000003818423, + 0.5000000004656613, + 3, + 16 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 1.3200000002980232, + 1.8700000008102506, + 0.5000000004656613, + 3, + 16 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 1.3800000003539026, + 1.955000000540167, + 0.5000000004656613, + 3, + 16 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 1.440000000409782, + 2.040000000037253, + 0.5000000004656613, + 3, + 16 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 1.5000000004656613, + 2.1249999997671694, + 0.5000000004656613, + 3, + 16 + ] + } + } + }, + "131506": { + "Id": 131506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131507": { + "Id": 131507, + "Name": "3-9x의 미소", + "Desc": "비술 사용 후 다음번 전투에서 처음 전투 스킬을 발동할 시, 목표에게 필살기와 동일한 물리 약점을 부여한다. 지속 시간: #1[i]턴", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2 + ] + } + } + }, + "131508": { + "Id": 131508, + "Name": "리볼버 패닝", + "Desc": "지정된 단일 적에게 부트힐 공격력의 #1[i]%만큼 물리 속성 피해를 가한다.\\n강화된 일반 공격은 전투 스킬 포인트를 회복할 수 없으며, [목숨 건 대치] 상태의 적만을 목표로 삼을 수 있다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.1000000000931323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.5400000005029142 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.7600000007078052 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9800000009126961 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.4200000003911555 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.6400000005960464 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.8600000008009374 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.080000000074506 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Normal.png", + "LevelUpSkillID": [ + 131501, + 131508 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1315001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_BP.png", + "LevelUpSkillID": [ + 131502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Ultra.png", + "LevelUpSkillID": [ + 131503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_Passive.png", + "LevelUpSkillID": [ + 131504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1315004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1315_Maze.png", + "LevelUpSkillID": [ + 131507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 0.5000000004656613, + 1.5000000004656613 + ], + "PointID": 1315101, + "PointName": "고스트 로딩", + "PointDesc": "자신의 치명타 확률/치명타 피해가 증가한다. 증가 수치는 격파 특수효과의 #1[i]%/#3[i]%이며, 치명타 확률/치명타 피해는 최대 #2[i]%/#4[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 1315102, + "PointName": "어보브 스네이크", + "PointDesc": "부트힐이 [목숨 건 대치] 상태일 시 [목숨 건 대치] 상태가 아닌 목표에게 받는 피해가 #1[i]% 감소한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1315_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10 + ], + "PointID": 1315103, + "PointName": "포인트 블랭크", + "PointDesc": "[목숨 건 대치] 상태에서 [포켓 어드벤티지] 획득 시, 에너지를 #1[i]pt 회복한다. 해당 효과는 [포켓 어드벤티지]를 초과해 획득할 때도 발동된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315201, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1315101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315203, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1315202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315205, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1315102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315206, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1315205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315207, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1315103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315209, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1315208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1315210, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1315208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "격파 특수효과" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 59.40000000037253, + "DefenceAdd": 2.970000000903383, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 83.16000000014901, + "DefenceAdd": 2.970000000903383, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 106.92000000085682, + "DefenceAdd": 2.970000000903383, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 130.6800000006333, + "DefenceAdd": 2.970000000903383, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 2.970000000903383, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 2.970000000903383, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110421, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 201.96000000089407, + "DefenceAdd": 2.970000000903383, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 107, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1315, + "Set4IDList": [ + 111, + 119, + 102 + ], + "Set2IDList": [ + 307, + 316, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio", + "CriticalChanceBase" + ], + "ScoreRankList": [ + 280, + 226 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1317": { + "Name": "라파", + "Desc": "축시 삼각의 섬광탄처럼 페나코니에 나타나 자신을 닌자라고 칭하며, 세간의 모든 것을 「인법」으로 귀결하는 기묘한 소녀.\\n닌자•진언을 읊고, 요란•닌자 부적을 그리고, 닌자•법첩의 「닌자•도」를 수련하며——즉 랩, 그래피티, 만화——자신의 의지를 갈고닦는 한편, 성간을 누비며 의로운 일을 행하고 있다.\\n「갤럭시 레인저」의 일원으로서 줄곧 「원숭이 통치자•사닌」이라고 불리는 악당을 은하의 끝까지 쫓고 있다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "rappa", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 131701, + "Name": "삼도천을 건너려나 육도전 없네", + "Desc": "필살기를 발동하여 [결인] 상태에 진입하는 동안 라파가 가하는 피해가 목표의 방어력을 #1[i]% 무시하고, [결인] 상태 해제 후 에너지를 #2[i]pt 회복한다", + "ParamList": [ + 0.1500000001396984, + 20 + ] + }, + "2": { + "Id": 131702, + "Name": "하이쿠를 외우니 근심 걱정 없네", + "Desc": "강화된 일반 공격의 처음 2단 공격이 지정된 단일 적에게 가하는 강인성 감소 수치가 #1[i]% 증가한다", + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Id": 131703, + "Name": "사찰 즐비해도 말법의 무간옥이라네", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 131704, + "Name": "시간이 흘러 임협마저 인의를 잃었네", + "Desc": "[결인] 상태 동안 모든 아군의 속도가 #1[i]% 증가한다", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 131705, + "Name": "일심불란의 화살은 빗나가지 않네", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 131706, + "Name": "파사현정의 응보는 자비가 없네", + "Desc": "전투 시작 시 라파가 특성 효과의 충전을 #1[i]pt 획득하고, 충전 상한이 #2[i]pt 증가한다. [인구•항마의 꽃잎]의 3번째 공격 발동 후 충전을 #1[i]pt 획득한다", + "ParamList": [ + 5, + 5 + ] + } + }, + "Skills": { + "131701": { + "Id": 131701, + "Name": "인술•칠전팔기", + "Desc": "지정된 단일 적에게 라파 공격력의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "131702": { + "Id": 131702, + "Name": "인절•초지일관", + "Desc": "모든 적에게 라파 공격력의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613 + ] + } + } + }, + "131703": { + "Id": 131703, + "Name": "인도•극•애사천류", + "Desc": "[결인] 상태에 진입하고 즉시 보너스 턴 1개 및 [채묵]을 #3[i]pt 획득한다. 동시에 약점 격파 효율이 #1[i]% 증가하고 격파 특수효과가 #2[i]% 증가한다.\\n[결인] 상태에서 일반 공격은 강화되며, 전투 스킬과 필살기를 발동할 수 없다. 강화된 일반 공격을 발동하면 [채묵]을 1pt 소모하며, 소진 시 [결인] 상태가 종료된다", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 0.12000000011175871, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 0.14000000013038516, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 0.1600000001490116, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 0.18000000016763806, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 0.2249999998603016, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 0.27499999990686774, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 0.3200000002980232, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 0.3400000003166497, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 0.3600000003352761, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 0.3800000003539026, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903, + 3 + ] + } + } + }, + "131704": { + "Id": 131704, + "Name": "닌자•과학•감인 주머니", + "Desc": "적의 약점이 격파될 때마다 라파가 충전을 1pt 획득하고, 최대 #1[i]pt의 충전을 보유한다. 라파가 다음번에 [인구•항마의 꽃잎]의 3번째 공격 발동 시 추가로 모든 적에게 라파 허수 속성 격파 피해의 #3[i]%만큼 격파 피해를 가한다. 해당 피해는 약점 속성을 무시하고 강인성을 #4[i]pt 감소시키며, 충전을 모두 소모한다. 충전 1pt당 이번 격파 피해 배율이 #5[i]% 증가하고, 약점 속성을 무시하는 강인성 감소 수치가 #6[i]pt 증가한다.\\n약점 격파 시 허수 속성의 약점 격파 효과를 발동한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 6, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0, + 0.3000000002793968, + 2, + 0.25000000023283064, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 10, + 0, + 0.33000000030733645, + 2, + 0.27499999990686774, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 10, + 0, + 0.3600000003352761, + 2, + 0.3000000002793968, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 10, + 0, + 0.3900000003632158, + 2, + 0.32499999995343387, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 10, + 0, + 0.4200000003911555, + 2, + 0.3500000003259629, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 10, + 0, + 0.45000000041909516, + 2, + 0.375, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 10, + 0, + 0.4875000002793968, + 2, + 0.4062500004656613, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 10, + 0, + 0.5250000001396984, + 2, + 0.43750000023283064, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 10, + 0, + 0.5625000006984919, + 2, + 0.46875000069849193, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10, + 0, + 0.6000000005587935, + 2, + 0.5000000004656613, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10, + 0, + 0.6300000005867332, + 2, + 0.5250000001396984, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 10, + 0, + 0.6600000006146729, + 2, + 0.5500000005122274, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 10, + 0, + 0.6900000006426126, + 2, + 0.5750000001862645, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 10, + 0, + 0.7200000006705523, + 2, + 0.6000000005587935, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 10, + 0, + 0.7500000006984919, + 2, + 0.6250000002328306, + 1 + ] + } + } + }, + "131706": { + "Id": 131706, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "131707": { + "Id": 131707, + "Name": "인보•혈의리", + "Desc": "비술을 사용하면 #1[i]초 동안 [그래피티] 상태에 진입한다. [그래피티] 상태에서는 빠른 속도로 전방을 향해 일정 거리 이동하고 접촉한 적을 공격한다. 빠른 이동 중에는 적의 모든 공격을 막을 수 있다. [그래피티] 상태에서 공격 발동 시 지속 시간을 조기 종료할 수 있으며, 적을 선공해 전투에 진입하면 각각의 적에게 약점 속성을 무시하는 강인성 감소를 #5[i]pt 가하고, 라파 허수 속성 격파 피해의 #2[i]%만큼 격파 피해를 가하며, 대상의 인접한 목표에게 라파 허수 속성 격파 피해의 #3[i]%만큼 격파 피해를 가한다. 동시에 자신은 에너지를 #4[i]pt 획득한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20, + 2, + 1.800000000745058, + 10, + 30 + ] + } + } + }, + "131708": { + "Id": 131708, + "Name": "인구•항마의 꽃잎", + "Desc": "[인구•항마의 꽃잎]을 발동한다. 처음 2단 공격은 지정된 단일 적에게 라파 공격력의 #1[i]%만큼 허수 속성 피해를 가하고, 인접한 목표에게 라파 공격력의 #2[i]%만큼 허수 속성 피해를 가한다. 3번째 공격은 모든 적에게 라파 공격력의 #3[i]%만큼 허수 속성 피해를 가한다.\\n강화된 일반 공격은 전투 스킬 포인트를 회복할 수 없고, 허수 약점이 없는 적을 공격해도 강인성을 감소시킬 수 있으며, 효과는 기존 강인성 감소 수치의 #4[i]%다. 약점 격파 시 허수 속성의 약점 격파 효과를 발동한다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497, + 0.6800000006332994, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026, + 0.7600000007078052, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.840000000782311, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084, + 0.9200000008568168, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142, + 1.0800000000745058, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671, + 1.1600000001490116, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742, + 1.2400000002235174, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 1.3200000002980232, + 0.5000000004656613 + ] + } + } + }, + "131710": { + "Id": 131710, + "Name": "인구•항마의 꽃잎", + "Desc": null, + "Type": "Normal", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729 + ] + } + } + }, + "131712": { + "Id": 131712, + "Name": "인구•항마의 꽃잎", + "Desc": null, + "Type": "Normal", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232 + ] + } + } + }, + "131718": { + "Id": 131718, + "Name": "인구•항마의 꽃잎", + "Desc": "[인구•항마의 꽃잎]을 발동한다. 처음 2단 공격은 지정된 단일 적에게 라파 공격력의 #1[i]%만큼 허수 속성 피해를 가하고, 인접한 목표에게 라파 공격력의 #2[i]%만큼 허수 속성 피해를 가한다. 3번째 공격은 모든 적에게 라파 공격력의 #3[i]%만큼 허수 속성 피해를 가한다.\\n강화된 일반 공격은 전투 스킬 포인트를 회복할 수 없고, 허수 약점이 없는 적을 공격해도 강인성을 감소시킬 수 있으며, 효과는 기존 강인성 감소 수치의 #4[i]%다. 약점 격파 시 허수 속성의 약점 격파 효과를 발동한다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 75, + 0, + 45 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6800000006332994, + 0.3400000003166497, + 0.6800000006332994, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7600000007078052, + 0.3800000003539026, + 0.7600000007078052, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.840000000782311, + 0.4200000003911555, + 0.840000000782311, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9200000008568168, + 0.4600000004284084, + 0.9200000008568168, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 0.5000000004656613, + 1, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0800000000745058, + 0.5400000005029142, + 1.0800000000745058, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.1600000001490116, + 0.5800000005401671, + 1.1600000001490116, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.2400000002235174, + 0.62000000057742, + 1.2400000002235174, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.3200000002980232, + 0.6600000006146729, + 1.3200000002980232, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Normal.png", + "LevelUpSkillID": [ + 131701, + 131708, + 131710, + 131712, + 131718 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1317001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_BP.png", + "LevelUpSkillID": [ + 131702 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Ultra.png", + "LevelUpSkillID": [ + 131703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_Passive.png", + "LevelUpSkillID": [ + 131704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1317004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1317_Maze.png", + "LevelUpSkillID": [ + 131707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 1 + ], + "PointID": 1317101, + "PointName": "인법첩•마천", + "PointDesc": "정예급 이상 적의 약점이 격파될 시 라파는 추가로 충전을 #2[i]pt 획득하고 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.6000000005587935 + ], + "PointID": 1317102, + "PointName": "인법첩•해명", + "PointDesc": "[결인] 상태 동안 라파가 약점 격파 상태인 적에게 강화된 일반 공격을 발동해 피해를 가하면, 이번 피해의 강인성 감소 수치가 #1[i]%슈퍼 격파 피해 1회로 전환된다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1317_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.02000000001862645, + 2400, + 0.010000000009313226, + 0.0800000000745058, + 2 + ], + "PointID": 1317103, + "PointName": "인법첩•고엽", + "PointDesc": "적의 약점이 격파될 시 받는 격파 피해#1[i]% 증가한다. 만약 라파의 현재 공격력이 #2[i]pt보다 높을 경우, 공격력이 100pt 초과할 때마다 해당 수치가 추가로 #3[i]% 증가한다(최대 추가로 #4[i]% 증가), 효과 지속 시간: #5[i]턴", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317202, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1317101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1317202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317204, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1317202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1317102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317206, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1317205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1317205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317208, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1317103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317209, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1317103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "속도" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1317210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 97.6800000006333, + "AttackAdd": 4.884000000543892, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 136.75200000056066, + "AttackAdd": 4.884000000543892, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 175.824000000488, + "AttackAdd": 4.884000000543892, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 214.89600000041537, + "AttackAdd": 4.884000000543892, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 253.96800000034273, + "AttackAdd": 4.884000000543892, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 293.04000000003725, + "AttackAdd": 4.884000000543892, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110427, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 332.1119999999646, + "AttackAdd": 4.884000000543892, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1317, + "Set4IDList": [ + 119, + 111, + 118 + ], + "Set2IDList": [ + 307, + 316, + 301 + ], + "PropertyList3": [ + "AttackAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "AttackAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 246, + 189 + ] + } + }, + "1401": { + "Name": "더 헤르타", + "Desc": "존귀한 「지니어스 클럽」 #83. 젊고 아름답고 사랑스러운 인간 여성.\\n그녀는 은하 변경에 은거하며 그곳을 벗어나는 일이 거의 없다고 전해진다. 이번에 모습을 드러낸 건——\\n직접 나설 수밖에 없는 어떤 문제 때문이 아닐까?", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "theherta", + "SPNeed": 220, + "BaseType": "Mage", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 140101, + "Name": "뭇별이 떨어지는 밤", + "Desc": "강화된 전투 스킬이 [해독] 스택 수 계산 시, 추가로 주목표 및 인접한 목표 중 스택이 가장 높은 목표의 현재 [해독] 스택 수의 #1[i]%를 계산한다. 강화된 전투 스킬을 발동해 [해독] 초기화 시 스택 수가 #2[i]스택으로 초기화된다", + "ParamList": [ + 0.5000000004656613, + 15 + ] + }, + "2": { + "Id": 140102, + "Name": "열쇠 구멍으로 부는 바람", + "Desc": "더 헤르타가 전투 진입 및 필살기 발동 후 추가로 [영감]을 1스택 획득한다. 강화된 전투 스킬 발동 후, 더 헤르타의 다음 행동 게이지가 #1[i]% 증가한다", + "ParamList": [ + 0.3500000003259629, + 42, + 0.25000000023283064 + ] + }, + "3": { + "Id": 140103, + "Name": "여름으로 가는 문", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 140104, + "Name": "열여섯 번째 열쇠", + "Desc": "파티 내 「지식」 운명의 길 캐릭터의 속도가 #1[i]% 증가한다", + "ParamList": [ + 0.12000000011175871 + ] + }, + "5": { + "Id": 140105, + "Name": "쓴 약 같은 진리", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 140106, + "Name": "달콤한 미끼 같은 답", + "Desc": "더 헤르타의 얼음 속성 저항 관통이 #4[i]% 증가한다. 필드 위 적의 수량이 3 이상/2/1일 시 필살기의 피해 배율이 #1[i]%/#2[i]%/#3[i]% 증가한다", + "ParamList": [ + 1.400000000372529, + 2.5000000004656613, + 4, + 0.20000000018626451 + ] + } + }, + "Skills": { + "140101": { + "Id": 140101, + "Name": "깨달았어?", + "Desc": "지정된 단일 적에게 더 헤르타 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 3, + 1, + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 3, + 1, + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 3, + 1, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 3, + 1, + 0.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 3, + 1, + 0.3000000002793968 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 3, + 1, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 3, + 1, + 0.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 3, + 1, + 0.3000000002793968 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 3, + 1, + 0.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 3, + 1, + 0.3000000002793968 + ] + } + } + }, + "140102": { + "Id": 140102, + "Name": "시야를 넓혀 봐", + "Desc": "지정된 단일 적에게 더 헤르타 공격력의 #1[i]%만큼 얼음 속성 피해를 가하고 [해독]을 #2[i]스택 부여한다. 이번 전투 스킬에 명중한 목표 및 인접한 목표에게 더 헤르타 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다. 해당 효과는 2회 반복할 수 있다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 45, + 15, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 1 + ] + } + } + }, + "140103": { + "Id": 140103, + "Name": "마법이라고 했잖아", + "Desc": "모든 적의 [해독] 스택 수를 재정렬한다. 스택이 높은 [해독]은 정예급 이상의 목표에게 우선 이전되며, 모든 적에게 더 헤르타 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다. 필살기 발동 시 더 헤르타의 공격력이 #4[i]% 증가한다, 지속 시간: #5[i]턴. 발동 후 더 헤르타는 즉시 행동하며, [영감]을 1스택 획득한다. [영감]은 최대 #6[i]스택 보유할 수 있으며, [영감] 보유 시 전투 스킬이 [내게 대담한 생각이 있어]로 강화된다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 2, + 1, + 0.40000000037252903, + 3, + 4 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 2, + 1, + 0.44000000040978193, + 3, + 4 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 2, + 1, + 0.48000000044703484, + 3, + 4 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 2, + 1, + 0.5200000004842877, + 3, + 4 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 2, + 1, + 0.5600000005215406, + 3, + 4 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 2, + 1, + 0.6000000005587935, + 3, + 4 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 2, + 1, + 0.6500000006053597, + 3, + 4 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 2, + 1, + 0.7000000006519258, + 3, + 4 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 2, + 1, + 0.7500000006984919, + 3, + 4 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 2, + 1, + 0.8000000007450581, + 3, + 4 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 2, + 1, + 0.840000000782311, + 3, + 4 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 2, + 1, + 0.8800000008195639, + 3, + 4 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 2, + 1, + 0.9200000008568168, + 3, + 4 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 2, + 1, + 0.9600000008940697, + 3, + 4 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 2, + 1, + 1, + 3, + 4 + ] + } + } + }, + "140104": { + "Id": 140104, + "Name": "가져와", + "Desc": "적이 전투 진입 시, 더 헤르타가 대상에게 [해독]을 1스택 부여한다. 웨이브가 시작될 때마다 랜덤 적 1기에게 [해독]을 #6[i]스택 부여하며, 정예급 이상의 목표에게 우선 부여한다. 강화된 전투 스킬의 주목표가 [해독] 보유 시, 스택마다 주목표/다른 목표에게 가하는 피해 배율이 #1[f1]%/#2[f1]% 증가하며, 파티에 「지식」 운명의 길 캐릭터가 2명 이상 있을 시, 스택마다 주목표/다른 목표에게 가하는 피해 배율이 추가로 #1[f1]%/#2[f1]% 증가한다. [해독]은 최대 #3[i]스택 중첩되며, 강화된 전투 스킬 사용 시 주목표의 [해독]은 1스택으로 초기화된다. 적이 퇴장하거나 임의 유닛에게 처치되면 [해독]은 이전되며, 정예급 이상의 목표에게 우선 이전된다", + "Type": null, + "Tag": "Enhance", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 0.02000000001862645, + 42, + 1, + 42, + 25 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04399999976158142, + 0.02199999988079071, + 42, + 1, + 42, + 25 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04799999948590994, + 0.02399999974295497, + 42, + 1, + 42, + 25 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.05199999990873039, + 0.02599999960511923, + 42, + 1, + 42, + 25 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.055999999633058906, + 0.027999999467283487, + 42, + 1, + 42, + 25 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.060000000055879354, + 0.030000000027939677, + 42, + 1, + 42, + 25 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06499999971129, + 0.032500000204890966, + 42, + 1, + 42, + 25 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.07000000006519258, + 0.034999999683350325, + 42, + 1, + 42, + 25 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07499999972060323, + 0.037499999860301614, + 42, + 1, + 42, + 25 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529, + 42, + 1, + 42, + 25 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.08399999979883432, + 0.04199999989941716, + 42, + 1, + 42, + 25 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.08799999952316284, + 0.04399999976158142, + 42, + 1, + 42, + 25 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.09199999994598329, + 0.04599999962374568, + 42, + 1, + 42, + 25 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.09599999967031181, + 0.04799999948590994, + 42, + 1, + 42, + 25 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.10000000009313226, + 0.05000000004656613, + 42, + 1, + 42, + 25 + ] + } + } + }, + "140106": { + "Id": 140106, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140107": { + "Id": 140107, + "Name": "좋은 걸 보여줄게", + "Desc": "비술 사용 후, 다음 전투 시작 시 더 헤르타의 공격력이 #1[i]% 증가한다, 지속 시간: #2[i]턴\\n현재 맵에 일반 전리품이 존재할 경우, 비술 사용 후 일반 전리품의 위치를 최대 #3[i]개 표시한다.\\n시뮬레이션 우주, 차분화 우주에서 비술을 사용하고 전투에 진입한 후, 웨이브가 시작될 때마다 정예급 미만의 적에게 목표 HP 최대치의 #4[i]%만큼 확정 피해를 가하고, 정예급 이상의 목표에게 목표 HP 최대치의 #5[i]%만큼 확정 피해를 가한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 2, + 3, + 0.9900000009220093, + 0.3000000002793968, + 25 + ] + } + } + }, + "140109": { + "Id": 140109, + "Name": "내게 대담한 생각이 있어", + "Desc": "[영감]을 1스택 소모한다. 지정된 단일 적에게 더 헤르타 공격력의 #1[i]%만큼 얼음 속성 피해를 가하고 [해독]을 #2[i]스택 부여한다. 이번 전투 스킬에 명중한 목표 및 인접한 목표에게 더 헤르타 공격력의 #1[i]%만큼 얼음 속성 피해를 가하며, 2회 반복한다. 마지막으로 모든 적에게 더 헤르타 공격력의 #3[i]%만큼 얼음 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 15, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.44000000040978193, + 1, + 0.22000000020489097 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.48000000044703484, + 1, + 0.24000000022351742 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5200000004842877, + 1, + 0.26000000024214387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5600000005215406, + 1, + 0.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6000000005587935, + 1, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.6500000006053597, + 1, + 0.32499999995343387 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7000000006519258, + 1, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.7500000006984919, + 1, + 0.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.8000000007450581, + 1, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.840000000782311, + 1, + 0.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.8800000008195639, + 1, + 0.44000000040978193 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.9200000008568168, + 1, + 0.4600000004284084 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.9600000008940697, + 1, + 0.48000000044703484 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1, + 1, + 0.5000000004656613 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Normal.png", + "LevelUpSkillID": [ + 140101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1401001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_BP.png", + "LevelUpSkillID": [ + 140102, + 140109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Ultra.png", + "LevelUpSkillID": [ + 140103 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_Passive.png", + "LevelUpSkillID": [ + 140104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1401004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1401_Maze.png", + "LevelUpSkillID": [ + 140107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3, + 0.5000000004656613 + ], + "PointID": 1401101, + "PointName": "냉정한 정직", + "PointDesc": "아군이 공격 시 명중한 적에게 [해독]을 1스택 부여한다. 공격 후, 이번 공격에서 명중한 목표 1기당 더 헤르타의 에너지를 고정으로 #1[i]pt 회복하며, 최대 5개 목표까지 계산한다. 강화된 전투 스킬 발동 시 주목표의 [해독]이 42스택에 도달하면 더 헤르타가 가하는 피해가 #2[i]% 증가하며, 이번 공격이 종료될 때까지 지속된다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.8000000007450581, + 3, + 1, + 2 + ], + "PointID": 1401102, + "PointName": "시야 밖의 편지", + "PointDesc": "전투 진입 시 파티 내 「지식」 운명의 길 캐릭터가 2명 이상일 경우 모든 아군의 치명타 피해가 #1[i]% 증가한다. 행적 [냉정한 정직]이 명중한 목표 계산 시 최소 #2[i]기의 목표를 계산하고, 공격 후 명중한 적 중 [해독] 스택 수가 가장 높은 목표에게 [해독]을 #3[i]스택 부여하며, 공격자가 「지식」 운명의 길 캐릭터일 경우 추가로 [해독]을 #4[i]스택 부여한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1401_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.010000000009313226, + 99 + ], + "PointID": 1401103, + "PointName": "허기의 풍경", + "PointDesc": "적에게 [해독]이 1스택 부여될 때마다 더 헤르타가 [수수께끼의 답]을 1스택 획득한다, 최대 중첩수: #2[i]스택. 필살기 발동 시 [수수께끼의 답]을 1스택 보유할 때마다 이번 필살기의 피해 배율이 #1[f1]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401201, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1401101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401203, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1401202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.031999999890103936, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401204, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1401202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401205, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1401102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401206, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1401205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401207, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1401205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.04799999948590994, + "Name": "얼음 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401208, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1401103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401209, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1401103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconIceAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1401210, + "PointName": "피해 강화•얼음", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "IceAddedRatio", + "Value": 0.06399999978020787, + "Name": "얼음 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 92.40000000037253, + "AttackAdd": 4.62000000057742, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 158.40000000037253, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 129.36000000033528, + "AttackAdd": 4.62000000057742, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 166.32000000029802, + "AttackAdd": 4.62000000057742, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 285.12000000011176, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 203.28000000026077, + "AttackAdd": 4.62000000057742, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 348.48000000044703, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 240.24000000022352, + "AttackAdd": 4.62000000057742, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 411.8400000007823, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 277.20000000018626, + "AttackAdd": 4.62000000057742, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 475.20000000018626, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110423, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 314.160000000149, + "AttackAdd": 4.62000000057742, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 538.5600000005215, + "HPAdd": 7.920000000856817, + "SpeedBase": 99, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1401, + "Set4IDList": [ + 122, + 104, + 102 + ], + "Set2IDList": [ + 314, + 309, + 313 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1402": { + "Name": "아글라이아", + "Desc": "여명이 비추는 거룩한 도시에서 방직공은 금실을 어루만지며 운명을 잇는다.\\n「낭만」의 불씨를 짊어진 황금의 후예는 세간의 영웅들을 불러 모아 그들을 이끌고 다시 기나긴 여정에 올랐다.\\n——신들을 쓰러뜨리고 신의 불을 반환하여 멸망에 다다른 앰포리어스에 신생을 부여하기 위해", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "aglaea", + "SPNeed": 350, + "BaseType": "Memory", + "DamageType": "Thunder", + "Ranks": { + "1": { + "Id": 140201, + "Name": "흔들리는 금성의 행렬", + "Desc": "[틈새를 메우는 실] 상태의 적이 받는 피해가 #1[i]% 증가한다. 아글라이아 또는 의상공이 해당 목표를 공격하면 추가로 에너지를 #2[i]pt 회복한다", + "ParamList": [ + 0.1500000001396984, + 20 + ] + }, + "2": { + "Id": 140202, + "Name": "운명의 눈꺼풀을 지나는 나룻배", + "Desc": "아글라이아 또는 의상공이 행동 시 아글라이아와 의상공이 가하는 피해가 목표의 방어력을 #1[i]% 무시한다. 해당 효과는 최대 #2[i]스택 중첩되며, 자신과 의상공을 제외한 임의의 유닛이 직접 스킬을 발동할 때까지 지속된다", + "ParamList": [ + 0.14000000013038516, + 3 + ] + }, + "3": { + "Id": 140203, + "Name": "화려한 이슬의 선물", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10. 기억 정령 특성 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 140204, + "Name": "대리석 속 반짝임", + "Desc": "기억 정령 특성의 속도 증가 효과 스택 수 상한이 #1[i]스택 증가한다. 아글라이아가 공격 발동 후에도 의상공이 기억 정령 특성의 속도 증가 효과를 획득할 수 있다", + "ParamList": [ + 1, + 2 + ] + }, + "5": { + "Id": 140205, + "Name": "칠흑의 고난을 엮는 자", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15. 기억 정령 스킬 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 140206, + "Name": "변화무상한 금실", + "Desc": "아글라이아가 [지고의 자태] 상태일 시 자신과 의상공의 번개 속성 저항 관통#1[i]% 증가한다. 아글라이아 또는 의상공의 속도가 160/240/320pt를 초과할 시 가하는 연계 공격 피해가 #2[i]%/#3[i]%/#4[i]% 증가한다", + "ParamList": [ + 0.20000000018626451, + 0.10000000009313226, + 0.3000000002793968, + 0.6000000005587935 + ] + } + }, + "Skills": { + "140201": { + "Id": 140201, + "Name": "정곡을 찌르는 달콤함", + "Desc": "지정된 단일 적에게 아글라이아 공격력의 #1[i]%만큼 번개 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529, + 1 + ] + } + } + }, + "140202": { + "Id": 140202, + "Name": "높이 들어라, 숭고한 이름을", + "Desc": "의상공의 HP를 대상의 HP 최대치의 #1[i]%만큼 회복한다. 의상공이 필드에 없을 시 기억 정령 의상공을 소환하고 자신이 즉시 행동한다", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 0, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 0, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 0, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 0, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 0, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 0, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 0, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 0, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 0, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 0, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 0, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 0, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 0, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 0, + 5 + ] + } + } + }, + "140203": { + "Id": 140203, + "Name": "춤추자, 운명의 의상공이여", + "Desc": "기억 정령 의상공을 소환한다. 의상공이 필드에 있을 시 대상의 HP를 최대치까지 회복한다. 아글라이아는 [지고의 자태] 상태에 진입하고 즉시 행동한다.\\n[지고의 자태] 상태에서 아글라이아는 의상공 기억 정령 특성의 속도 증가 스택을 획득하고, 스택마다 자신의 속도가 #1[f1]% 증가하며, 일반 공격이 [고독한 검날의 입맞춤]으로 강화되고 전투 스킬을 발동할 수 없다. 또한, 의상공은 제어류 디버프 상태에 면역된다.\\n행동 서열에 카운트다운이 나타난다. 카운트다운이 보유한 고정 속도는 #4[i]이며, 카운트다운이 존재하는 동안 다시 필살기를 발동하면 카운트다운이 초기화되고, 턴 시작 시 의상공은 자멸한다. 의상공이 사라질 시 아글라이아는 [지고의 자태] 상태를 해제한다", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0, + 0, + 100, + 0, + 0 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1049999997485429, + 0, + 0, + 100, + 0, + 0 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.11000000010244548, + 0, + 0, + 100, + 0, + 0 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.11499999975785613, + 0, + 0, + 100, + 0, + 0 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.12000000011175871, + 0, + 0, + 100, + 0, + 0 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12499999976716936, + 0, + 0, + 100, + 0, + 0 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.13125000055879354, + 0, + 0, + 100, + 0, + 0 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.13749999995343387, + 0, + 0, + 100, + 0, + 0 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.14375000074505806, + 0, + 0, + 100, + 0, + 0 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.1500000001396984, + 0, + 0, + 100, + 0, + 0 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.15499999979510903, + 0, + 0, + 100, + 0, + 0 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.1600000001490116, + 0, + 0, + 100, + 0, + 0 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.16499999980442226, + 0, + 0, + 100, + 0, + 0 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.17000000015832484, + 0, + 0, + 100, + 0, + 0 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.17499999981373549, + 0, + 0, + 100, + 0, + 0 + ] + } + } + }, + "140204": { + "Id": 140204, + "Name": "황금 장미의 손가락", + "Desc": "기억 정령 의상공은 기본 상태에서 아글라이아 속도의 #4[i]%만큼 속도를 보유하고, 아글라이아 HP 최대치의 #5[i]%+#6[i]만큼 HP 최대치를 보유한다. 의상공이 필드에 있을 시 아글라이아가 공격을 발동하면 목표를 [틈새를 메우는 실] 상태에 빠트리며, [틈새를 메우는 실] 상태의 적을 공격하면 추가로 아글라이아 공격력의 #1[i]%만큼 번개 속성 추가 피해를 가한다. [틈새를 메우는 실]은 가장 최근에 부여된 목표에게만 적용된다", + "Type": null, + "Tag": "Enhance", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 0, + 0, + 0.3500000003259629, + 0.44000000040978193, + 180 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.13799999956972897, + 0, + 0, + 0.3500000003259629, + 0.4675000002607703, + 247.50000000046566 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.15599999972619116, + 0, + 0, + 0.3500000003259629, + 0.4950000001117587, + 315 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.17399999988265336, + 0, + 0, + 0.3500000003259629, + 0.522500000661239, + 382.50000000046566 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.19200000003911555, + 0, + 0, + 0.3500000003259629, + 0.5500000005122274, + 450 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.21000000019557774, + 0, + 0, + 0.3500000003259629, + 0.5720000003930181, + 504 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.23250000039115548, + 0, + 0, + 0.3500000003259629, + 0.5940000002738088, + 558 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2549999998882413, + 0, + 0, + 0.3500000003259629, + 0.6160000001545995, + 612 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.27750000008381903, + 0, + 0, + 0.3500000003259629, + 0.6380000000353903, + 666 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0, + 0, + 0.3500000003259629, + 0.6600000006146729, + 720 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31799999973736703, + 0, + 0, + 0.3500000003259629, + 0.6820000004954636, + 774 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3359999998938292, + 0, + 0, + 0.3500000003259629, + 0.7040000003762543, + 828 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3540000000502914, + 0, + 0, + 0.3500000003259629, + 0.726000000257045, + 882 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3720000002067536, + 0, + 0, + 0.3500000003259629, + 0.7480000001378357, + 936 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3900000003632158, + 0, + 0, + 0.3500000003259629, + 0.7700000007171184, + 990 + ] + } + } + }, + "140206": { + "Id": 140206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140207": { + "Id": 140207, + "Name": "별을 가르는 신속", + "Desc": "기억 정령 의상공을 소환하고 함께 전방을 향해 공격한다. 전투 진입 후 에너지를 #2[i]pt 회복하고 모든 적에게 아글라이아 공격력의 #1[i]%만큼 번개 속성 피해를 가하며, 이후 랜덤 적을 [틈새를 메우는 실] 상태에 빠트린다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 30 + ] + } + } + }, + "140208": { + "Id": 140208, + "Name": "고독한 검날의 입맞춤", + "Desc": "아글라이아와 의상공이 목표에게 연계 공격을 발동하며, 목표에게 각각 아글라이아 공격력의 #1[f1]%와 의상공 공격력의 #3[f1]%만큼 번개 속성 피해를 가하고, 인접한 목표에게 각각 아글라이아 공격력의 #2[i]%와 의상공 공격력의 #4[i]%만큼 번개 속성 피해를 가한다.\\n[고독한 검날의 입맞춤]은 전투 스킬 포인트를 회복할 수 없다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.45000000041909516, + 1, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.2000000001862645, + 0.5400000005029142, + 1.2000000001862645, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.400000000372529, + 0.6300000005867332, + 1.400000000372529, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.6000000005587935, + 0.7200000006705523, + 1.6000000005587935, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.800000000745058, + 0.8100000007543713, + 1.800000000745058, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2, + 0.9000000008381903, + 2, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2000000001862645, + 0.9900000009220093, + 2.2000000001862645, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.400000000372529, + 1.0800000000745058, + 2.400000000372529, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6000000005587935, + 1.1700000001583248, + 2.6000000005587935, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.2600000002421439, + 2.800000000745058, + 1.2600000002421439 + ] + } + } + }, + "140209": { + "Id": 140209, + "Name": "높이 들어라, 숭고한 이름을", + "Desc": null, + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 20, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Normal.png", + "LevelUpSkillID": [ + 140201, + 140208 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_BP.png", + "LevelUpSkillID": [ + 140202, + 140209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Ultra.png", + "LevelUpSkillID": [ + 140203 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_Passive.png", + "LevelUpSkillID": [ + 140204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1402004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1402_Maze.png", + "LevelUpSkillID": [ + 140207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 7.2000000001862645, + 3.6000000005587935 + ], + "PointID": 1402101, + "PointName": "좁은 시야에 대한 징벌", + "PointDesc": "[지고의 자태] 상태일 시 아글라이아와 의상공의 공격력이 아글라이아 속도의 #1[i]%+의상공 속도의 #2[i]%만큼 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 1402102, + "PointName": "운명의 한계를 엮어", + "PointDesc": "의상공이 사라질 시 기억 정령 특성의 속도 증가 스택 수가 최대 #1[i]스택 유지되고, 의상공이 다시 소환될 시 대응하는 스택 수의 속도 증가 효과를 획득한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1402_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.5000000004656613 + ], + "PointID": 1402103, + "PointName": "질주의 태양", + "PointDesc": "전투 시작 시 자신의 에너지가 #1[i]% 미만이면 자신의 에너지를 #2[i]%까지 회복한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402201, + "PointName": "피해 강화•번개", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "번개 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1402201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402203, + "PointName": "피해 강화•번개", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1402201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.031999999890103936, + "Name": "번개 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1402101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402205, + "PointName": "피해 강화•번개", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1402101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "번개 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1402102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402207, + "PointName": "피해 강화•번개", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1402102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.04799999948590994, + "Name": "번개 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1402103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1402208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconThunderAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1402210, + "PointName": "피해 강화•번개", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1402209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ThunderAddedRatio", + "Value": 0.06399999978020787, + "Name": "번개 속성 피해 증가" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "정곡을 찌르는 함정", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "정곡을 찌르는 함정", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "정곡을 찌르는 함정", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "정곡을 찌르는 함정", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "정곡을 찌르는 함정", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_Servant01.png", + "LevelUpSkillID": [ + 1140201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402301, + "PointName": "정곡을 찌르는 함정", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "눈물로 단조한 장인의 몸", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "눈물로 단조한 장인의 몸", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "눈물로 단조한 장인의 몸", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "눈물로 단조한 장인의 몸", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "눈물로 단조한 장인의 몸", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11402_ServantPassive.png", + "LevelUpSkillID": [ + 1140203, + 1140205, + 1140206 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1402302, + "PointName": "눈물로 단조한 장인의 몸", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "의상공", + "Icon": "SpriteOutput/ServantIconTeam/11402B.png", + "HPBase": "#6", + "HPInherit": "#5", + "HPSkill": 140204, + "SpeedBase": "0", + "SpeedInherit": "#4", + "SpeedSkill": 140204, + "Aggro": 125, + "Skills": { + "1140201": { + "Name": "정곡을 찌르는 함정", + "Desc": "단일 적에게 공격력의 #1[i]%만큼 번개 속성 피해를 가하고, 대상과 인접한 목표에게 공격력의 #2[i]%만큼 번개 속성 피해를 가한다", + "Type": "Servant", + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 0.33000000030733645, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.3959999999497086, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7700000007171184, + 0.46200000029057264, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8800000008195639, + 0.5279999999329448, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9900000009220093, + 0.5940000002738088, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1000000000931323, + 0.6600000006146729, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2100000001955777, + 0.726000000257045, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3200000002980232, + 0.7920000005979091, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4300000004004687, + 0.8580000002402812, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5400000005029142, + 0.9240000005811453, + 1 + ] + } + } + }, + "1140203": { + "Name": "눈물로 단조한 장인의 몸", + "Desc": "[틈새를 메우는 실] 상태의 적 공격 후 자신의 속도가 #1[i]pt 증가한다, 해당 효과 최대 중첩수: #3[i]스택. 의상공 행동 시 자동으로 [정곡을 찌르는 함정]을 발동하고, [틈새를 메우는 실] 상태의 적을 우선 공격한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 44, + 3, + 6 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 46.200000000186265, + 3, + 6 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 48.40000000037253, + 3, + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 50.60000000055879, + 3, + 6 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 52.80000000074506, + 3, + 6 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 55, + 3, + 6 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 57.200000000186265, + 3, + 6 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 59.40000000037253, + 3, + 6 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 61.60000000055879, + 3, + 6 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 63.80000000074506, + 3, + 6 + ] + } + } + }, + "1140205": { + "Name": "질주의 여름", + "Desc": "의상공이 소환될 시 자신의 행동 게이지가 #1[i]% 증가한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1 + ] + } + } + }, + "1140206": { + "Name": "메마른 풀의 풍성함", + "Desc": "의상공이 사라질 시 아글라이아의 에너지가 #1[i]pt 회복된다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 20 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 20 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 20 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 20 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 20 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 20 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 20 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 20 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 95.04000000003725, + "AttackAdd": 4.752000000560656, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 133.05599999963306, + "AttackAdd": 4.752000000560656, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 171.07199999992736, + "AttackAdd": 4.752000000560656, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 209.08799999952316, + "AttackAdd": 4.752000000560656, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 247.10399999981746, + "AttackAdd": 4.752000000560656, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 285.12000000011176, + "AttackAdd": 4.752000000560656, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110424, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 323.13599999970756, + "AttackAdd": 4.752000000560656, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 102, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1402, + "Set4IDList": [ + 123, + 102, + 109 + ], + "Set2IDList": [ + 318, + 302, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "ThunderAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ThunderAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1403": { + "Name": "트리비", + "Desc": "삼상의 신탁의 자비를 받은 성지에서, 전달자는 수많은 몸으로 나뉘어 먼 길을 떠났다.\\n야누소폴리스의 성녀 트리스비오스, 「통로」의 불씨를 훔친 황금의 후예. 사람들을 위해 바삐 돌아다니며 구세의 소식을 온 땅에 전한다.\\n——황금 피가 흐르는 사람의 아이를 찾아 세상의 어둠을 뚫고 별과 달이 가득한 내일을 향해 나아가길", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "tribbie", + "SPNeed": 120, + "BaseType": "Shaman", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140301, + "Name": "설탕을 줍는 축제", + "Desc": "결계 지속 시간 동안 아군이 적을 공격하면 결계가 추가 피해를 가하는 목표에게 추가로 이번 공격 총 피해량의 #1[i]%만큼 확정 피해를 가한다", + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "Id": 140302, + "Name": "좋은 꿈을 탐방하는 길잡이", + "Desc": "결계가 가하는 추가 피해가 기존 피해의 #1[i]%로 증가한다. 결계가 추가 피해를 가할 시 추가 피해를 #2[i]회 추가로 가한다", + "ParamList": [ + 1.2000000001862645, + 1 + ] + }, + "3": { + "Id": 140303, + "Name": "아침 햇살이 가득한 보물", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 140304, + "Name": "마음이 통하는 평안", + "Desc": "[신의 계시] 지속 시간 동안, 모든 아군이 피해를 가할 시 목표의 방어력을 #1[i]% 무시한다", + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "Id": 140305, + "Name": "기적을 여는 시계", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 140306, + "Name": "별과 달이 가득한 내일", + "Desc": "트리비가 필살기 발동 후, 모든 적에게 특성의 추가 공격을 발동한다. 특성의 추가 공격이 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 7.2900000002700835 + ] + } + }, + "Skills": { + "140301": { + "Id": 140301, + "Name": "100층짜리 미니 로켓", + "Desc": "지정된 단일 적에게 트리비 HP 최대치의 #1[i]%만큼 양자 속성 피해를 가하고, 인접한 목표에게 트리비 HP 최대치의 #2[i]%만큼 양자 속성 피해를 가한다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 15 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.07499999972060323 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.21000000019557774, + 0.1049999997485429 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2700000002514571, + 0.13499999977648258 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.33000000030733645, + 0.16499999980442226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3900000003632158, + 0.19499999983236194 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774 + ] + } + } + }, + "140302": { + "Id": 140302, + "Name": "선물이 다 어디 갔지?", + "Desc": "#2[i]턴 동안 지속되는 [신의 계시]를 획득하며, 자신의 턴이 시작될 때마다 지속 턴 수가 1 감소한다. 트리비가 [신의 계시]를 보유할 시 모든 아군의 모든 속성 저항 관통#1[f1]% 증가한다", + "Type": "BPSkill", + "Tag": "Support", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1319999999832362, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14399999985471368, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.15599999972619116, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.16799999959766865, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.19499999983236194, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.2249999998603016, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.2520000000949949, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2639999999664724, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.27599999983794987, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.28799999970942736, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 3 + ] + } + } + }, + "140303": { + "Id": 140303, + "Name": "여기에 누가 살고 있게?", + "Desc": "결계를 활성화하고, 모든 적에게 트리비 HP 최대치의 #1[i]%만큼 양자 속성 피해를 가한다.\\n결계 지속 시간 동안 적이 받는 피해가 #2[f1]% 증가한다. 아군에게 피격 후, 피격된 목표가 1기 있을 때마다 피격된 목표 중 현재 HP가 가장 높은 목표에게 트리비 HP 최대치의 #3[f1]%만큼 양자 속성 추가 피해를 1회 가한다.\\n결계는 #4[i]턴 동안 지속되며, 자신의 턴이 시작될 때마다 결계 지속 턴 수가 1 감소한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0.1500000001396984, + 0.060000000055879354, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 0.16499999980442226, + 0.06599999964237213, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 0.18000000016763806, + 0.07199999992735684, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 0.19499999983236194, + 0.07799999951384962, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 0.21000000019557774, + 0.08399999979883432, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 0.2249999998603016, + 0.09000000008381903, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 0.24375000083819032, + 0.09749999991618097, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 0.26250000041909516, + 0.1049999997485429, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 0.28125000069849193, + 0.11250000027939677, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.12000000011175871, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 0.31499999994412065, + 0.12599999969825149, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 0.33000000030733645, + 0.1319999999832362, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 0.3449999999720603, + 0.13799999956972897, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761, + 0.14399999985471368, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 0.375, + 0.1500000001396984, + 2 + ] + } + } + }, + "140304": { + "Id": 140304, + "Name": "트리비는 너무 바빠", + "Desc": "다른 아군 캐릭터가 필살기를 발동하면 트리비가 추가 공격을 발동하여 모든 적에게 트리비 HP 최대치의 #1[f1]%만큼 양자 속성 피해를 가한다. 해당 효과는 캐릭터마다 최대 1회 발동하며, 트리비가 필살기를 발동할 시 다른 아군 캐릭터의 발동 가능 횟수가 초기화된다. 추가 공격 발동 전에 목표가 처치되면 필드에 새로 등장한 적에게 추가 공격을 발동한다", + "Type": null, + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.09000000008381903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.0989999994635582 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.1079999995417893 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.11699999962002039 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.12599999969825149 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.13499999977648258 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.14625000022351742 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.15749999997206032 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.16875000041909516 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.18000000016763806 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.18899999954737723 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.19799999962560833 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.20699999970383942 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.21599999978207052 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.2249999998603016 + ] + } + } + }, + "140306": { + "Id": 140306, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140307": { + "Id": 140307, + "Name": "모두 다 같이 손뼉을", + "Desc": "비술 사용 후 전투 진입 시 [신의 계시]를 획득한다, 지속 시간: #1[i]턴", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Normal.png", + "LevelUpSkillID": [ + 140301 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1403001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_BP.png", + "LevelUpSkillID": [ + 140302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Ultra.png", + "LevelUpSkillID": [ + 140303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_Passive.png", + "LevelUpSkillID": [ + 140304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1403004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1403_Maze.png", + "LevelUpSkillID": [ + 140307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.7200000006705523, + 3, + 3 + ], + "PointID": 1403101, + "PointName": "성벽 밖의 어린양…", + "PointDesc": "특성의 추가 공격 발동 후, 트리비가 가하는 피해가 #1[i]% 증가한다, 해당 효과 최대 중첩수: #2[i]스택, 지속 시간: #3[i]턴", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.09000000008381903 + ], + "PointID": 1403102, + "PointName": "날개 달린 유리구슬!", + "PointDesc": "결계 지속 시간 동안 트리비의 HP 최대치가 모든 아군 캐릭터 HP 최대치 총합의 #1[i]%만큼 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1403_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 30, + 1.5000000004656613 + ], + "PointID": 1403103, + "PointName": "갈림길 옆 돌멩이?", + "PointDesc": "전투 시작 시 트리비의 에너지가 #1[i]pt 회복된다. 다른 아군이 공격 후 목표를 1기 명중할 때마다 트리비의 에너지가 #2[f1]pt 회복된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403201, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1403101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403203, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1403202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1403201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403205, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1403102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1403205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403207, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1403201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1403103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1403208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1403210, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1403208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 99, + "DefenceAdd": 4.9500000008847564, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 4.9500000008847564, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 4.9500000008847564, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.9500000008847564, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 297, + "DefenceAdd": 4.9500000008847564, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 336.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 96, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1403, + "Set4IDList": [ + 124, + 108, + 102 + ], + "Set2IDList": [ + 319, + 302, + 317 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "HPAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio" + ], + "ScoreRankList": [ + 324, + 268 + ] + } + }, + "1404": { + "Name": "마이데이", + "Desc": "안개로 뒤덮인 크렘노스, 혼란과 전쟁의 성! 그 왕실에는 친족에게 칼을 겨누는 혈통이 이어지고 있으며, 그곳의 신은 재앙이라고 불린다.\\n불사의 마이데이모스, 무리를 떠난 사자이자 「분쟁」의 불씨를 쫓는 황금의 후예. 수많은 죽음을 견디고 피를 뒤집어쓴 채 고향으로 돌아가며, 왕을 죽여 왕이 되고, 신을 죽여 신이 되는 광기의 숙명을 홀로 짊어졌다.\\n정벌의 말발굽이 온 황야를 휩쓸었다 해도, 결국엔 고향의 피를 묻힐 것이다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "mydei", + "SPNeed": 160, + "BaseType": "Warrior", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 140401, + "Name": "한풍이 조각한 불굴의 의지", + "Desc": "[신을 죽여 신이 된 자]가 주목표에게 가하는 피해 배율이 #1[i]% 증가하고, 모든 적에게 주목표 피해 배율만큼 허수 속성 피해를 가하는 것으로 변경된다", + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Id": 140402, + "Name": "유해의 울부짖음을 목격한 분쟁", + "Desc": "[피의 원한] 상태 동안, 마이데이가 가하는 피해는 적의 방어력을 #1[i]% 무시하며, 치유를 받으면 치유량의 #2[i]%가 충전으로 전환된다. 누적 전환되는 충전은 #3[i]pt를 초과하지 않는다. 임의 유닛 행동 후 누적 가능한 충전이 초기화된다", + "ParamList": [ + 0.1500000001396984, + 0.40000000037252903, + 40 + ] + }, + "3": { + "Id": 140403, + "Name": "불변의 연회를 비추는 영광", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 140404, + "Name": "침묵하는 사자를 깨우는 호각", + "Desc": "[피의 원한] 상태 동안 치명타 피해가 #2[i]% 증가하며, 적의 공격을 받으면 자신의 HP 최대치의 #1[i]%만큼 HP를 회복한다", + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "5": { + "Id": 140405, + "Name": "육체의 화염을 조각하는 병기", + "Desc": "필살기 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 140406, + "Name": "침적된 혈산을 오르는 과거", + "Desc": "전투 진입 시 즉시 [피의 원한] 상태에 진입하고, [신을 죽여 신이 된 자]에 필요한 충전치가 #1[i]pt로 감소한다", + "ParamList": [ + 100 + ] + } + }, + "Skills": { + "140401": { + "Id": 140401, + "Name": "여정을 답파하는 맹세", + "Desc": "지정된 단일 적에게 마이데이 HP 최대치의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140402": { + "Id": 140402, + "Name": "후회 없는 수많은 죽음", + "Desc": "마이데이 현재 HP의 #3[i]%만큼 HP를 소모해 지정된 단일 적에게 마이데이 HP 최대치의 #1[i]%만큼 허수 속성 피해를 가하고, 인접한 목표에게 마이데이 HP 최대치의 #2[i]%만큼 허수 속성 피해를 가한다.\\n현재 HP가 부족하면 전투 스킬 발동 시 마이데이의 현재 HP가 1pt까지 감소한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.45000000041909516, + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.4950000001117587, + 0.27499999990686774, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5400000005029142, + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5850000001955777, + 0.32499999995343387, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.6300000005867332, + 0.3500000003259629, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.6750000002793968, + 0.375, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.7312500011175871, + 0.4062500004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.7875000005587935, + 0.43750000023283064, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.8437500013969839, + 0.46875000069849193, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.9000000008381903, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.9450000005308539, + 0.5250000001396984, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.9900000009220093, + 0.5500000005122274, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.0349999996833503, + 0.5750000001862645, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.0800000000745058, + 0.6000000005587935, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.1249999997671694, + 0.6250000002328306, + 0.5000000004656613 + ] + } + } + }, + "140403": { + "Id": 140403, + "Name": "세상을 불태우는 왕좌", + "Desc": "마이데이 HP 최대치의 #3[f1]%만큼 HP를 회복하고, 특성 충전을 #5[i]pt 누적한다. 지정된 단일 적에게 마이데이 HP 최대치의 #1[i]%만큼 허수 속성 피해를 가하고, 동시에 인접한 목표에게 마이데이 HP 최대치의 #2[i]%만큼 허수 속성 피해를 가하며, 목표 및 인접한 목표를 도발 상태에 빠트린다, 지속 시간: #4[i]턴. 다음번 [신을 죽여 신이 된 자]는 지정된 단일 적을 우선 공격하며, 해당 효과는 가장 최근의 목표에게만 적용된다", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9600000008940697, + 0.6000000005587935, + 0.1500000001396984, + 2, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.023999999742955, + 0.6400000005960464, + 0.15499999979510903, + 2, + 20 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0879999995231628, + 0.6800000006332994, + 0.1600000001490116, + 2, + 20 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1520000000018626, + 0.7200000006705523, + 0.16499999980442226, + 2, + 20 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2159999997820705, + 0.7600000007078052, + 0.17000000015832484, + 2, + 20 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2800000002607703, + 0.8000000007450581, + 0.17499999981373549, + 2, + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3600000003352761, + 0.8500000007916242, + 0.18125000060535967, + 2, + 20 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.440000000409782, + 0.9000000008381903, + 0.1875, + 2, + 20 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5200000004842877, + 0.9500000008847564, + 0.1937500007916242, + 2, + 20 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935, + 1, + 0.20000000018626451, + 2, + 20 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6640000003390014, + 1.040000000037253, + 0.20499999984167516, + 2, + 20 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7280000001192093, + 1.0800000000745058, + 0.21000000019557774, + 2, + 20 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.792000000597909, + 1.1200000001117587, + 0.2149999998509884, + 2, + 20 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.856000000378117, + 1.1600000001490116, + 0.22000000020489097, + 2, + 20 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.9200000008568168, + 1.2000000001862645, + 0.2249999998603016, + 2, + 20 + ] + } + } + }, + "140404": { + "Id": 140404, + "Name": "피에는 피로", + "Desc": "HP를 1% 잃을 때마다 충전을 1pt 누적하고, 최대 200pt까지 누적할 수 있다. 충전이 100에 도달하면 충전을 100pt 소모해 [피의 원한] 상태에 진입하며, 마이데이 HP 최대치의 #1[i]%만큼 HP를 회복하고 행동 게이지가 100% 증가한다. [피의 원한] 상태에서는 HP 최대치가 현재 HP 최대치의 #5[i]%만큼 증가하고 방어력이 0으로 유지된다. 자신의 턴이 시작되면 [왕을 죽여 왕이 된 자]가 자동으로 발동된다.\\n[피의 원한] 상태 동안 충전이 #3[i]pt에 도달하면 마이데이가 즉시 보너스 턴을 1개 획득하며, [신을 죽여 신이 된 자]가 자동으로 발동된다.\\n[피의 원한] 상태 동안 마이데이가 치명적인 공격을 받을 시 전투 불능 상태에 빠지지 않는 대신 충전이 초기화되고 [피의 원한] 상태가 해제되며, 자신 HP 최대치의 #4[i]%만큼 HP를 회복한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.1600000001490116, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.17000000015832484, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.18000000016763806, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1900000001769513, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.21250000037252903, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2249999998603016, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.23750000004656613, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.26000000024214387, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.2700000002514571, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2800000002607703, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.29000000027008355, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0, + 150, + 0.5000000004656613, + 0.5000000004656613 + ] + } + } + }, + "140406": { + "Id": 140406, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140407": { + "Id": 140407, + "Name": "부러진 창의 감옥", + "Desc": "비술을 사용하면 일정 구역 내의 적을 끌어당기고 #1[i]초 동안 현기증 상태에 빠트린다. 현기증 상태인 적은 아군을 선공할 수 없다.\\n현기증 상태에 빠진 적을 선공해 전투 진입 시, 모든 적에게 마이데이 HP 최대치의 #2[i]%만큼 허수 속성 피해를 가하고, 목표를 도발 상태에 빠트린다, 지속 시간: #4[i]턴. 자신은 특성 충전을 #5[i]pt 누적한다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.8000000007450581, + 1, + 1, + 50 + ] + } + } + }, + "140409": { + "Id": 140409, + "Name": "왕을 죽여 왕이 된 자", + "Desc": "마이데이 현재 HP의 #3[i]%만큼 HP를 소모해 단일 적에게 마이데이 HP 최대치의 #1[i]%만큼 허수 속성 피해를 가하고, 인접한 목표에게 마이데이 HP 최대치의 #2[i]%만큼 허수 속성 피해를 가한다.\\n현재 HP가 부족하면 전투 스킬 발동 시 마이데이의 현재 HP가 1pt까지 감소한다.\\n해당 스킬은 자동으로 발동된다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5500000005122274, + 0.33000000030733645, + 0.3500000003259629 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6050000002142042, + 0.3630000001285225, + 0.3500000003259629 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6600000006146729, + 0.3959999999497086, + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7150000003166497, + 0.42899999977089465, + 0.3500000003259629 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7700000007171184, + 0.46200000029057264, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.8250000004190952, + 0.4950000001117587, + 0.3500000003259629 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.89375000144355, + 0.5362500005867332, + 0.3500000003259629 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.962500001071021, + 0.5775000003632158, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.0312500004656613, + 0.6187500008381903, + 0.3500000003259629 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.1000000000931323, + 0.6600000006146729, + 0.3500000003259629 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.154999999795109, + 0.693000000435859, + 0.3500000003259629 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.2100000001955777, + 0.726000000257045, + 0.3500000003259629 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.2649999998975545, + 0.7590000000782311, + 0.3500000003259629 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.3200000002980232, + 0.7920000005979091, + 0.3500000003259629 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.375, + 0.8250000004190952, + 0.3500000003259629 + ] + } + } + }, + "140411": { + "Id": 140411, + "Name": "신을 죽여 신이 된 자", + "Desc": "충전을 #3[i]pt 소모해 단일 적에게 마이데이 HP 최대치의 #1[i]%만큼 허수 속성 피해를 가하고, 인접한 목표에게 마이데이 HP 최대치의 #2[i]%만큼 허수 속성 피해를 가한다.\\n해당 스킬은 자동으로 발동된다. 이 스킬을 발동하는 동안 충전이 누적되지 않는다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.400000000372529, + 0.840000000782311, + 150 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5400000005029142, + 0.9240000005811453, + 150 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.6800000006332994, + 1.007999999448657, + 150 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.8200000007636845, + 1.0919999999459833, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.9600000008940697, + 1.1759999997448176, + 150 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.1000000000931323, + 1.2600000002421439, + 150 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.2749999999068677, + 1.3649999999906868, + 150 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.450000000419095, + 1.4700000004377216, + 150 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.6250000002328306, + 1.5750000001862645, + 150 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.800000000745058, + 1.6800000006332994, + 150 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.940000000875443, + 1.7640000004321337, + 150 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.080000000074506, + 1.848000000230968, + 150 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.220000000204891, + 1.9320000007282943, + 150 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.360000000335276, + 2.015999999595806, + 150 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.5000000004656613, + 2.1000000000931323, + 150 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Normal.png", + "LevelUpSkillID": [ + 140401 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1404001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_BP.png", + "LevelUpSkillID": [ + 140402, + 140409, + 140411 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Ultra.png", + "LevelUpSkillID": [ + 140403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_Passive.png", + "LevelUpSkillID": [ + 140404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1404004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1404_Maze.png", + "LevelUpSkillID": [ + 140407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1404101, + "PointName": "물과 흙", + "PointDesc": "[피의 원한] 상태에서 마이데이가 치명적인 공격을 받을 시 [피의 원한] 상태가 해제되지 않는다. 해당 효과는 단일 전투 중 #1[i]회 발동할 수 있다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404102, + "PointName": "30인 참주", + "PointDesc": "[피의 원한] 상태에서 마이데이가 제어류 디버프 상태에 면역된다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1404_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 4000, + 4000, + 0.011999999871477485, + 0.0249999996740371, + 0.007499999832361937 + ], + "PointID": 1404103, + "PointName": "혈조의 의복", + "PointDesc": "전투 시작 시 마이데이의 HP 최대치가 #1[i]pt보다 높으면 100pt 초과할 때마다 자신의 치명타 확률이 #3[f1]% 증가하고, 마이데이가 적으로부터 받은 피해로 인한 충전 비율이 #4[f1]% 증가하며, 치유를 받을 시의 회복량이 #5[f2]% 증가한다. 초과한 HP는 최대 #2[i]pt까지 계산된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404201, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1404101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404203, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1404202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404204, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1404203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404205, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1404102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1404205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404207, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1404206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404208, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1404103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1404208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1404210, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1404208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 58.080000000074506, + "AttackAdd": 2.904000000562519, + "DefenceBase": 26.40000000037253, + "DefenceAdd": 1.3200000002980232, + "HPBase": 211.20000000018626, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 81.31200000015087, + "AttackAdd": 2.904000000562519, + "DefenceBase": 36.96000000089407, + "DefenceAdd": 1.3200000002980232, + "HPBase": 295.6800000006333, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 104.54400000022724, + "AttackAdd": 2.904000000562519, + "DefenceBase": 47.52000000048429, + "DefenceAdd": 1.3200000002980232, + "HPBase": 380.160000000149, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 127.77600000030361, + "AttackAdd": 2.904000000562519, + "DefenceBase": 58.080000000074506, + "DefenceAdd": 1.3200000002980232, + "HPBase": 464.64000000059605, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 151.00799999944866, + "AttackAdd": 2.904000000562519, + "DefenceBase": 68.64000000059605, + "DefenceAdd": 1.3200000002980232, + "HPBase": 549.1200000001118, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 174.24000000022352, + "AttackAdd": 2.904000000562519, + "DefenceBase": 79.20000000018626, + "DefenceAdd": 1.3200000002980232, + "HPBase": 633.6000000005588, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110437, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 197.4720000002999, + "AttackAdd": 2.904000000562519, + "DefenceBase": 89.7600000007078, + "DefenceAdd": 1.3200000002980232, + "HPBase": 718.0800000000745, + "HPAdd": 10.56000000052154, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1404, + "Set4IDList": [ + 122, + 113, + 112 + ], + "Set2IDList": [ + 319, + 309, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "HPAddedRatio" + ], + "PropertyList5": [ + "ImaginaryAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "ImaginaryAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 333, + 275 + ], + "LocalCriticalChance": 0.45000000041909516 + } + }, + "1405": { + "Name": "아낙사", + "Desc": "깨달음의 나무 정원, 지식을 자양하는 학부이자 철학자를 탄생시키는 요람.\\n하나 신을 모독한 아낙사고라스, 「이성」의 불씨를 추궁하는 황금의 후예여, 그대에게 묻는다. 오명을 뒤집어쓰더라도, 예언을 거스르고 의심의 나뭇가지를 지혜의 성스러운 나무에 찌를 것인가?\\n——「우습군. 이 세계는 온통 거짓이고, 오직 나만이 진실이지」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "anaxa", + "SPNeed": 140, + "BaseType": "Mage", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 140501, + "Name": "달로 별밤을 가린 마술사", + "Desc": "처음 전투 스킬을 발동한 후 전투 스킬 포인트를 #3[i]pt 회복한다. 전투 스킬을 발동해 적 명중 시 목표의 방어력을 #1[i]% 감소시킨다, 지속 시간: #2[i]턴", + "ParamList": [ + 0.1600000001490116, + 2, + 1 + ] + }, + "2": { + "Id": 140502, + "Name": "진실된 역사의 자연인", + "Desc": "적이 필드 진입 시 특성의 약점 부여 효과를 1회 발동하며, 대상의 모든 속성 저항을 #1[i]% 감소시킨다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "3": { + "Id": 140503, + "Name": "하늘 밖에 새겨진 눈동자", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 140504, + "Name": "산골짜기에 떨어진 열기", + "Desc": "전투 스킬 발동 시 공격력이 #1[i]% 증가한다, 지속 시간: #2[i]턴, 해당 효과 최대 중첩수: #3[i]스택", + "ParamList": [ + 0.3000000002793968, + 2, + 2 + ] + }, + "5": { + "Id": 140505, + "Name": "소용돌이의 원심을 벗어난 씨앗", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 140506, + "Name": "만물은 모두 만물 속에", + "Desc": "아낙사가 가하는 피해가 기존 피해의 #1[i]%가 된다. 행적 [필요한 공백]의 두 가지 효과가 바로 발동되며, 더 이상 아군 파티 내 「지식」 운명의 길 캐릭터 수에 의존하지 않는다", + "ParamList": [ + 1.3000000002793968 + ] + } + }, + "Skills": { + "140501": { + "Id": 140501, + "Name": "참된 지식을 빚어내는 고통", + "Desc": "지정된 단일 적에게 아낙사 공격력의 #1[i]%만큼 바람 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140502": { + "Id": 140502, + "Name": "헛된 지식을 몰아내는 프랙털", + "Desc": "지정된 단일 적에게 아낙사 공격력의 #1[i]%만큼 바람 속성 피해를 가하고, 추가로 피해를 #2[i]회 가한다. 피해를 가할 때마다 랜덤 단일 적에게 아낙사 공격력의 #1[i]%만큼 바람 속성 피해를 가하며, 이번 전투 스킬에 명중되지 않은 적에게 우선으로 바운스한다.\\n발동 시 필드 위에 공격 가능한 적이 1기 있을 때마다 이번 전투 스킬로 가하는 피해가 #3[i]% 증가한다", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3500000003259629, + 4, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3850000000093132, + 4, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 4, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4550000000745058, + 4, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.49000000045634806, + 4, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5250000001396984, + 4, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5687500007916242, + 4, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6125000007450581, + 4, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6562500006984919, + 4, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258, + 4, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.7350000003352761, + 4, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.7700000007171184, + 4, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.8050000004004687, + 4, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.840000000782311, + 4, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.8750000004656613, + 4, + 0.20000000018626451 + ] + } + } + }, + "140503": { + "Id": 140503, + "Name": "대지를 뚫고 나온 생명, 창조된 세계", + "Desc": "모든 적을 [승화] 상태에 빠트리고, 이후 모든 적에게 아낙사 공격력의 #1[i]%만큼 바람 속성 피해를 가한다.\\n[승화] 상태에서 목표는 동시에 물리, 화염, 얼음, 번개, 바람, 양자, 허수 속성 약점이 부여되며, 목표의 턴이 시작될 때까지 지속된다. 목표가 제어 저항을 보유하지 않았을 경우 [승화] 상태에서는 행동할 수 없다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.8000000007450581 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8800000008195639 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9600000008940697 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.040000000037253 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.1200000001117587 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.400000000372529 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.6000000005587935 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.6800000006332994 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.7600000007078052 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.840000000782311 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.9200000008568168 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2 + ] + } + } + }, + "140504": { + "Id": 140504, + "Name": "네 가지 명철함, 세 번의 위대함", + "Desc": "아낙사가 적을 1회 명중할 때마다 목표에게 랜덤 속성 약점을 1개 부여한다, 지속 시간: #2[i]턴. 목표가 보유하지 않은 약점을 우선으로 부여한다.\\n아낙사가 필드에 있을 시, 최소 #3[i]가지 다른 속성 약점을 보유한 적을 [성질 발로] 상태에 빠트린다. 아낙사가 [성질 발로] 상태의 목표에게 가하는 피해가 #1[i]% 증가하고, 또한 대상에게 일반 공격 또는 전투 스킬을 발동하면 해당 목표에게 추가로 전투 스킬을 1회 발동한다. 추가 전투 스킬은 전투 스킬 포인트를 소모하지 않으며, 해당 효과를 다시 발동하지 않는다. 만약 추가 전투 스킬 발동 전에 목표가 처치되면 랜덤 단일 적에게 발동한다", + "Type": null, + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.19200000003911555, + 3, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.20399999991059303, + 3, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.21599999978207052, + 3, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.227999999653548, + 3, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.24000000022351742, + 3, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.2549999998882413, + 3, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.2700000002514571, + 3, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28499999991618097, + 3, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31200000015087426, + 3, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.32400000002235174, + 3, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3359999998938292, + 3, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3479999997653067, + 3, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3600000003352761, + 3, + 5 + ] + } + } + }, + "140506": { + "Id": 140506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140507": { + "Id": 140507, + "Name": "눈동자의 색채", + "Desc": "비술 사용 후 일정 구역 내의 적을 공포 상태에 빠트린다. 공포 상태의 적은 아낙사에게서 도망친다, 지속 시간: #1[i]초. 아군이 공포 상태에 빠진 적을 선공하면 약점을 이용해 전투에 진입한 것으로 간주하며, 전투 진입 후 아낙사는 각 단일 적에게 공격자 속성의 약점을 1개 부여한다, 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 3 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Normal.png", + "LevelUpSkillID": [ + 140501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1405001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_BP.png", + "LevelUpSkillID": [ + 140502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Ultra.png", + "LevelUpSkillID": [ + 140503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_Passive.png", + "LevelUpSkillID": [ + 140504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1405004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1405_Maze.png", + "LevelUpSkillID": [ + 140507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 30 + ], + "PointID": 1405101, + "PointName": "유랑하는 시니피앙", + "PointDesc": "일반 공격 발동 시 추가로 에너지를 #1[i]pt 회복한다.\\n턴 시작 시 필드 위에 [성질 발로] 상태인 적이 없을 경우 즉시 에너지를 #2[i]pt 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1.400000000372529, + 0.5000000004656613 + ], + "PointID": 1405102, + "PointName": "필요한 공백", + "PointDesc": "아군 파티 내 「지식」 운명의 길 캐릭터의 수에 따라 이번 전투에서 아래 중 하나의 효과를 발동한다.\\n1명: 아낙사의 치명타 피해가 #1[i]% 증가한다\\n최소 2명: 모든 아군이 가하는 피해가 #2[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1405_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0400000000372529 + ], + "PointID": 1405103, + "PointName": "성질의 변환", + "PointDesc": "적이 서로 다른 속성의 약점을 1개 보유할 때마다 아낙사가 대상에게 가하는 피해는 방어력을 #1[i]% 무시하며, 최대 7개까지 계산한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405201, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405202, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1405101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405203, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1405202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.031999999890103936, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1405202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405205, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1405102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405206, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1405205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405207, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1405205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.04799999948590994, + "Name": "바람 속성 피해 증가" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1405103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405209, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1405103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconWindAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1405210, + "PointName": "피해 강화•바람", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "WindAddedRatio", + "Value": 0.06399999978020787, + "Name": "바람 속성 피해 증가" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 102.96000000089407, + "AttackAdd": 5.147999999579042, + "DefenceBase": 75.90000000083819, + "DefenceAdd": 3.7950000003911555, + "HPBase": 132, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 144.1439999998547, + "AttackAdd": 5.147999999579042, + "DefenceBase": 106.26000000024214, + "DefenceAdd": 3.7950000003911555, + "HPBase": 184.80000000074506, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 185.32799999974668, + "AttackAdd": 5.147999999579042, + "DefenceBase": 136.62000000057742, + "DefenceAdd": 3.7950000003911555, + "HPBase": 237.6000000005588, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 226.51200000033714, + "AttackAdd": 5.147999999579042, + "DefenceBase": 166.9800000009127, + "DefenceAdd": 3.7950000003911555, + "HPBase": 290.40000000037253, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 267.6960000002291, + "AttackAdd": 5.147999999579042, + "DefenceBase": 197.34000000031665, + "DefenceAdd": 3.7950000003911555, + "HPBase": 343.20000000018626, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 308.88000000081956, + "AttackAdd": 5.147999999579042, + "DefenceBase": 227.70000000065193, + "DefenceAdd": 3.7950000003911555, + "HPBase": 396, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 350.0639999997802, + "AttackAdd": 5.147999999579042, + "DefenceBase": 258.0600000000559, + "DefenceAdd": 3.7950000003911555, + "HPBase": 448.80000000074506, + "HPAdd": 6.6000000005587935, + "SpeedBase": 97, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 75, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1405, + "Set4IDList": [ + 110, + 117, + 122 + ], + "Set2IDList": [ + 309, + 314, + 308 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "WindAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "WindAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "1406": { + "Name": "사이퍼", + "Desc": "사라진 도적의 도시 도로스, 300 의적이 유희를 벌이며 거침없이 날뛴다.\\n발 빠른 도둑 별 사이퍼라, 「계략」의 불씨를 희롱하는 황금의 후예여, 달려라. 그대의 거짓말이 바람과 함께 이 세상 곳곳에 불기를——\\n「훗, 날 속이려고? 어림도 없지!」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "cipher", + "SPNeed": 130, + "BaseType": "Warlock", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140601, + "Name": "바쁘게 굴러가는 눈, 목표는 웃는 얼굴", + "Desc": "사이퍼가 기록하는 피해량이 기존 기록 수치의 #3[i]%가 된다. 특성의 추가 공격 발동 시 사이퍼의 공격력이 #1[i]% 증가한다, 지속 시간: #2[i]턴", + "ParamList": [ + 0.8000000007450581, + 2, + 1.5000000004656613 + ] + }, + "2": { + "Id": 140602, + "Name": "주머니를 쓱, 곤경을 틈탄 소매치기", + "Desc": "사이퍼가 적 명중 시 #2[i]%기본 확률로 대상이 받는 피해가 #3[i]% 증가한다, 지속 시간: #1[i]턴", + "ParamList": [ + 2, + 1.2000000001862645, + 0.3000000002793968 + ] + }, + "3": { + "Id": 140603, + "Name": "뒤섞인 진실과 거짓, 구별 불가", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 140604, + "Name": "발각된 악행, 걸음아 날 살려라", + "Desc": "[단골손님]이 아군의 공격을 받은 후, 사이퍼는 대상에게 사이퍼 공격력의 #1[i]%만큼 양자 속성 추가 피해를 가한다", + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Id": 140605, + "Name": "파놓은 토끼굴, 쏜살같이 도망", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 140606, + "Name": "세상에 이름을 남기지 않은, 대도", + "Desc": "사이퍼 특성의 추가 공격이 가하는 피해가 #2[i]% 증가하고, 기록 시 추가로 해당 공격이 가하는 비초과 피해의 #3[i]%를 기록한다. 필살기를 발동하여 기록 수치가 초기화되면 이번에 초기화된 기록 수치의 #1[i]%를 반환한다", + "ParamList": [ + 0.20000000018626451, + 3.5000000004656613, + 0.1600000001490116 + ] + } + }, + "Skills": { + "140601": { + "Id": 140601, + "Name": "앗! 그물을 빠져나간 물고기", + "Desc": "지정된 단일 적에게 사이퍼 공격력의 #1[i]%만큼 양자 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140602": { + "Id": 140602, + "Name": "헷, 공짜 보물", + "Desc": "#6[i]%기본 확률로 지정된 단일 적 및 인접한 목표를 허약 상태에 빠트리며, 가하는 피해를 #3[i]% 감소시키고 사이퍼의 공격력을 #5[i]% 증가시킨다, 지속 시간: #4[i]턴. 또한 지정된 단일 적에게 사이퍼 공격력의 #1[i]%만큼 양자 속성 피해를 가하고, 인접한 목표에게 사이퍼 공격력의 #2[i]%만큼 양자 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.1000000000931323, + 0.5500000005122274, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.2000000001862645, + 0.6000000005587935, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.3000000002793968, + 0.6500000006053597, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.400000000372529, + 0.7000000006519258, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.5000000004656613, + 0.7500000006984919, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.6250000002328306, + 0.8125000009313226, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.750000000698492, + 0.8750000004656613, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.8750000004656613, + 0.9375000006984919, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2, + 1, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.1000000000931323, + 1.0500000000465661, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.2000000001862645, + 1.1000000000931323, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.3000000002793968, + 1.1500000001396984, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.400000000372529, + 1.2000000001862645, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 2.5000000004656613, + 1.2500000002328306, + 0.10000000009313226, + 2, + 0.3000000002793968, + 1.2000000001862645 + ] + } + } + }, + "140603": { + "Id": 140603, + "Name": "고양이 괴도 드림!", + "Desc": "지정된 단일 적에게 사이퍼 공격력의 #1[i]%만큼 양자 속성 피해를 가한다. 이후 지정된 단일 적에게 현재 특성 기록 수치의 #2[i]%만큼 확정 피해를 가한다. 또한, 지정된 단일 적 및 인접한 목표에게 사이퍼 공격력의 #4[i]%만큼 양자 속성 피해를 가하고, 현재 특성 기록 수치의 총 #3[i]%만큼 확정 피해를 가하며, 해당 확정 피해는 모든 스킬 목표가 균등 분담한다", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6000000005587935, + 0.25000000023283064, + 0.7500000006984919, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6600000006146729, + 0.25000000023283064, + 0.7500000006984919, + 0.22000000020489097 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7200000006705523, + 0.25000000023283064, + 0.7500000006984919, + 0.24000000022351742 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.7800000007264316, + 0.25000000023283064, + 0.7500000006984919, + 0.26000000024214387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.840000000782311, + 0.25000000023283064, + 0.7500000006984919, + 0.2800000002607703 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9000000008381903, + 0.25000000023283064, + 0.7500000006984919, + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.9750000005587935, + 0.25000000023283064, + 0.7500000006984919, + 0.32499999995343387 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.0500000000465661, + 0.25000000023283064, + 0.7500000006984919, + 0.3500000003259629 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1249999997671694, + 0.25000000023283064, + 0.7500000006984919, + 0.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2000000001862645, + 0.25000000023283064, + 0.7500000006984919, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.2600000002421439, + 0.25000000023283064, + 0.7500000006984919, + 0.4200000003911555 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.3200000002980232, + 0.25000000023283064, + 0.7500000006984919, + 0.44000000040978193 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.3800000003539026, + 0.25000000023283064, + 0.7500000006984919, + 0.4600000004284084 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.440000000409782, + 0.25000000023283064, + 0.7500000006984919, + 0.48000000044703484 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.5000000004656613, + 0.25000000023283064, + 0.7500000006984919, + 0.5000000004656613 + ] + } + } + }, + "140604": { + "Id": 140604, + "Name": "열정적이고 친절한 도로스인", + "Desc": "필드 위에 [단골손님] 상태에 빠진 적이 없을 시 사이퍼는 즉시 현재 필드 위 HP 최대치가 가장 높은 단일 적을 [단골손님]으로 만든다. 전투 스킬과 필살기 발동 시 주목표를 [단골손님] 으로 만든다. [단골손님] 상태는 가장 최근에 부여된 목표에게만 적용된다.\\n[단골손님]이 다른 아군의 공격을 받으면 사이퍼는 즉시 [단골손님]에게 추가 공격을 발동하고, 사이퍼 공격력의 #1[i]%만큼 양자 속성 피해를 가한다. 해당 효과는 턴마다 최대 #3[i]회 발동할 수 있으며, 사이퍼 턴 시작 시 발동 가능 횟수가 초기화된다.\\n사이퍼는 아군이 [단골손님]에게 가한 피해(확정 피해 제외)의 #2[i]%를 기록한다. 초과 피해는 기록하지 않으며, 필살기 발동 후 기록 수치는 초기화된다", + "Type": null, + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.7500000006984919, + 0.12000000011175871, + 1, + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.8250000004190952, + 0.12000000011175871, + 1, + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.9000000008381903, + 0.12000000011175871, + 1, + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.9750000005587935, + 0.12000000011175871, + 1, + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.0500000000465661, + 0.12000000011175871, + 1, + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.1249999997671694, + 0.12000000011175871, + 1, + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.2187500004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.3125000004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.4062500004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.5000000004656613, + 0.12000000011175871, + 1, + 5 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.5750000001862645, + 0.12000000011175871, + 1, + 5 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.6500000006053597, + 0.12000000011175871, + 1, + 5 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.725000000325963, + 0.12000000011175871, + 1, + 5 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.800000000745058, + 0.12000000011175871, + 1, + 5 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.8750000004656613, + 0.12000000011175871, + 1, + 5 + ] + } + } + }, + "140606": { + "Id": 140606, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140607": { + "Id": 140607, + "Name": "장화 신은 고양이", + "Desc": "[자그레우스의 축복]을 획득한다, 지속 시간: #1[i]초. 지속 시간 동안 사이퍼는 적에게 발각되지 않으며, 이동 속도가 50% 증가한다. 일반 맵/시뮬레이션 우주/차분화 우주의 적에게 다가갈 시 즉시 랜덤 소모품을 획득하며, 하루에 최대 #4[i]회 획득할 수 있다.\\n[자그레우스의 축복]을 보유하는 동안 전투에 진입하면 모든 적에게 사이퍼 공격력의 #3[i]%만큼 양자 속성 피해를 가하고, 사이퍼가 해당 피해로 획득하는 기록 수치가 #2[i]% 증가한다", + "Type": "Maze", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 2, + 1, + 50 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Normal.png", + "LevelUpSkillID": [ + 140601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1406001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_BP.png", + "LevelUpSkillID": [ + 140602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Ultra.png", + "LevelUpSkillID": [ + 140603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_Passive.png", + "LevelUpSkillID": [ + 140604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1406004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1406_Maze.png", + "LevelUpSkillID": [ + 140607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 0.5000000004656613, + 1 + ], + "PointID": 1406101, + "PointName": "신행의 신발", + "PointDesc": "사이퍼의 속도가 140/170 이상일 시 치명타 확률이 #1[i]%/#2[i]% 증가하고, 획득하는 기록 수치가 #3[i]%/#4[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.0800000000745058 + ], + "PointID": 1406102, + "PointName": "300 의적", + "PointDesc": "사이퍼는 아군이 [단골손님]을 제외한 적에게 가하는 피해(확정 피해 제외)의 #1[i]%를 기록한다. 초과 피해는 기록되지 않는다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1406_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903, + 1 + ], + "PointID": 1406103, + "PointName": "해를 바꿔치기한 대도", + "PointDesc": "특성의 추가 공격이 가하는 치명타 피해가 #2[i]% 증가한다. 사이퍼가 필드에 있을 시 모든 적이 받는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406201, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406202, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1406101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406203, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1406202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406204, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1406203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.0400000000372529, + "Name": "효과 명중" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406205, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1406102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406206, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1406205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406207, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1406206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusProbability.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406208, + "PointName": "효과 명중 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1406103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusProbabilityBase", + "Value": 0.060000000055879354, + "Name": "효과 명중" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406209, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1406103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1406210, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1406201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "속도" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 87.12000000011176, + "AttackAdd": 4.355999999912456, + "DefenceBase": 69.3000000002794, + "DefenceAdd": 3.465000000083819, + "HPBase": 126.72000000067055, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 121.96800000034273, + "AttackAdd": 4.355999999912456, + "DefenceBase": 97.02000000001863, + "DefenceAdd": 3.465000000083819, + "HPBase": 177.4079999998212, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 156.81600000034086, + "AttackAdd": 4.355999999912456, + "DefenceBase": 124.74000000068918, + "DefenceAdd": 3.465000000083819, + "HPBase": 228.0959999996703, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 191.664000000339, + "AttackAdd": 4.355999999912456, + "DefenceBase": 152.4600000004284, + "DefenceAdd": 3.465000000083819, + "HPBase": 278.78400000045076, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 226.51200000033714, + "AttackAdd": 4.355999999912456, + "DefenceBase": 180.18000000016764, + "DefenceAdd": 3.465000000083819, + "HPBase": 329.4720000002999, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 261.3600000003353, + "AttackAdd": 4.355999999912456, + "DefenceBase": 207.9000000008382, + "DefenceAdd": 3.465000000083819, + "HPBase": 380.160000000149, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 296.2079999996349, + "AttackAdd": 4.355999999912456, + "DefenceBase": 235.62000000057742, + "DefenceAdd": 3.465000000083819, + "HPBase": 430.84800000023097, + "HPAdd": 6.335999999893829, + "SpeedBase": 106, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1406, + "Set4IDList": [ + 117, + 108, + 114 + ], + "Set2IDList": [ + 317, + 302, + 308 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "QuantumAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio", + "SPRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "SpeedDelta", + "AttackAddedRatio", + "CriticalDamageBase", + "CriticalChanceBase" + ], + "ScoreRankList": [ + 273, + 236 + ], + "LocalCriticalChance": 0.5000000004656613 + } + }, + "1407": { + "Name": "카스토리스", + "Desc": "죽음을 경애하는 나라, 종일 눈이 내리는 아이도니아는 오늘날 곤히 단잠에 빠졌다.\\n저승의 강의 딸 카스토리스, 「죽음」의 불씨를 찾는 황금의 후예여, 출발하라. 세상의 영혼의 통곡을 감싸고, 운명의 고독을 끌어안아라.\\n——죽음과 삶은 모두 여정이요, 나비가 나뭇가지 끝에 내려앉을 때 시들어가던 것이 다시 태어나리니", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "castorice", + "SPNeed": null, + "BaseType": "Memory", + "DamageType": "Quantum", + "Ranks": { + "1": { + "Id": 140701, + "Name": "기억을 대가로 납관하는 설원의 성녀", + "Desc": "적의 현재 HP가 자신의 HP 최대치의 #1[i]%/#2[i]% 이하일 시, [뼈의 발톱, 저승 용의 포옹], [어둠을 찢는 발톱], [암흑을 불태우는 화염의 숨결], [묘지를 불사르는 어둠의 날개]가 대상에게 가하는 피해가 기존 피해의 #3[i]%/#4[i]%가 된다", + "ParamList": [ + 0.8000000007450581, + 0.5000000004656613, + 1.2000000001862645, + 1.400000000372529 + ] + }, + "2": { + "Id": 140702, + "Name": "날갯짓하는 꽃으로 왕관을 씌우리", + "Desc": "기억 정령 죽음의 용을 소환한 후, 카스토리스는 [타오르는 의지]를 #1[i]스택 획득한다. [타오르는 의지]는 최대 #2[i]스택 보유할 수 있으며, 죽음의 용 기억 정령 스킬 [암흑을 불태우는 화염의 숨결]의 HP 소모를 대체할 수 있다. 또한, 카스토리스의 행동 게이지가 100% 증가하며, 다음번 강화된 전투 스킬 발동 시 카스토리스가 [새로운 꽃술] 최대치의 #3[i]%만큼 [새로운 꽃술] 포인트를 획득한다", + "ParamList": [ + 2, + 2, + 0.3000000002793968 + ] + }, + "3": { + "Id": 140703, + "Name": "사경에서 춤추는 경건한 나그네", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10. 기억 정령 특성 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 140704, + "Name": "슬픔을 안고 애가 속에 잠드니", + "Desc": "카스토리스가 필드에 있을 시, 모든 아군이 치유를 받을 시의 회복량이 #1[i]% 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + }, + "5": { + "Id": 140705, + "Name": "예언으로 장식한 순백의 새로운 장", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15. 기억 정령 스킬 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 140706, + "Name": "세월이 고치를 깨길 기다리네", + "Desc": "카스토리스와 죽음의 용이 피해를 가할 시 양자 속성 저항 관통#1[i]% 증가한다. 죽음의 용은 공격 중에 약점 속성을 무시하고 적의 강인성을 감소시킬 수 있으며, 약점 격파 시 양자 속성의 약점 격파 효과를 발동하고, 특성 [묘지를 불사르는 어둠의 날개]의 바운스 발동 횟수가 추가로 #2[i]회 증가한다", + "ParamList": [ + 0.20000000018626451, + 3 + ] + } + }, + "Skills": { + "140701": { + "Id": 140701, + "Name": "애도, 사해의 파문", + "Desc": "지정된 단일 적에게 카스토리스 HP 최대치의 #1[i]%만큼 양자 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140702": { + "Id": 140702, + "Name": "침묵, 나비의 손길", + "Desc": "모든 아군의 현재 HP를 #1[i]% 소모해 지정된 단일 적에게 카스토리스 HP 최대치의 #2[i]%만큼 양자 속성 피해를 가하고, 인접한 목표에게 카스토리스 HP 최대치의 #3[i]%만큼 양자 속성 피해를 가한다.\\n현재 HP가 부족하면 HP를 최대 1pt까지 감소시킨다.\\n죽음의 용이 필드에 있으면 전투 스킬이 [뼈의 발톱, 저승 용의 포옹]으로 전환된다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.25000000023283064, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968, + 0.27499999990686774, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968, + 0.32499999995343387, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968, + 0.3500000003259629, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.375, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 0.4062500004656613, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968, + 0.43750000023283064, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968, + 0.46875000069849193, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.3000000002793968, + 0.5250000001396984, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.3000000002793968, + 0.5500000005122274, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3000000002793968, + 0.5750000001862645, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3000000002793968, + 0.6000000005587935, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.3000000002793968, + 0.6250000002328306, + 0.375 + ] + } + } + }, + "140703": { + "Id": 140703, + "Name": "포효하는 망자, 소생의 종", + "Desc": "기억 정령 죽음의 용을 소환하고 대상의 행동 게이지를 100% 증가시키며, 동시에 경계 [세상을 잊은 저승]을 전개하여 모든 적의 모든 속성 저항을 #4[i]% 감소시킨다. 카스토리스가 특성의 가하는 피해 증가 효과를 보유할 시, 해당 효과를 죽음의 용에게 확산시킨다. 죽음의 용은 기본 상태에서 #1[i]pt의 속도와 [새로운 꽃술] 최대치의 #3[i]%만큼 고정 HP 최대치를 보유한다.\\n죽음의 용은 #2[i]턴 후 또는 HP가 0이 되면 사라지며, 동시에 경계 [세상을 잊은 저승]이 해제된다", + "Type": "Ultra", + "Tag": "Summon", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 165, + 3, + 1, + 0.10000000009313226, + 0 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 165, + 3, + 1, + 0.11000000010244548, + 0 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 165, + 3, + 1, + 0.12000000011175871, + 0 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 165, + 3, + 1, + 0.13000000012107193, + 0 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 165, + 3, + 1, + 0.14000000013038516, + 0 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 165, + 3, + 1, + 0.1500000001396984, + 0 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 165, + 3, + 1, + 0.1625000003259629, + 0 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 165, + 3, + 1, + 0.17499999981373549, + 0 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 165, + 3, + 1, + 0.1875, + 0 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 165, + 3, + 1, + 0.20000000018626451, + 0 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 165, + 3, + 1, + 0.21000000019557774, + 0 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 165, + 3, + 1, + 0.22000000020489097, + 0 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 165, + 3, + 1, + 0.2300000002142042, + 0 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 165, + 3, + 1, + 0.24000000022351742, + 0 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 165, + 3, + 1, + 0.25000000023283064, + 0 + ] + } + } + }, + "140704": { + "Id": 140704, + "Name": "손바닥에 흐르는 황무", + "Desc": "[새로운 꽃술] 최대치는 필드 위 모든 캐릭터의 레벨에 영향을 받는다. 모든 아군이 HP를 1pt 잃을 때마다 카스토리스는 [새로운 꽃술]을 1pt 획득하고, [새로운 꽃술]이 최대치에 도달하면 필살기를 활성화할 수 있다. 아군이 HP를 잃을 시 카스토리스와 죽음의 용이 가하는 피해가 #2[i]% 증가한다, 해당 효과 최대 중첩수: #3[i]스택, 지속 시간: #4[i]턴.\\n죽음의 용이 필드에 있을 시 특성을 통해 [새로운 꽃술]을 획득할 수 없으며, 죽음의 용을 제외한 모든 아군이 HP를 1pt 잃을 때마다 같은 양의 죽음의 용 HP로 전환된다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0, + 0.10000000009313226, + 3, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0, + 0.11000000010244548, + 3, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0, + 0.12000000011175871, + 3, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0, + 0.13000000012107193, + 3, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0, + 0.14000000013038516, + 3, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0, + 0.1500000001396984, + 3, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0, + 0.1625000003259629, + 3, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0, + 0.17499999981373549, + 3, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0, + 0.1875, + 3, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0, + 0.20000000018626451, + 3, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0, + 0.21000000019557774, + 3, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0, + 0.22000000020489097, + 3, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0, + 0.2300000002142042, + 3, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0, + 0.24000000022351742, + 3, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0, + 0.25000000023283064, + 3, + 3 + ] + } + } + }, + "140706": { + "Id": 140706, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140707": { + "Id": 140707, + "Name": "비명, 죽음을 하사하는 선성", + "Desc": "비술 사용 후 #3[i]초 동안 [아득한 어둠] 상태에 진입한다. [아득한 어둠] 상태의 적은 카스토리스에게 직접 다가올 수 없다.\\n[아득한 어둠] 상태에서 선공하면 범위 내 모든 적을 전투에 진입시키고, 동시에 기억 정령 죽음의 용을 소환하고 행동 게이지를 100% 증가시키며, 경계 [세상을 잊은 저승]을 펼친다. 또한, 죽음의 용은 [새로운 꽃술] 최대치의 #2[i]%만큼 현재 HP를 보유한다. 전투 진입 후, 죽음의 용을 제외한 모든 아군의 현재 HP를 #1[i]% 소모한다.\\n전투 진입 후 죽음의 용이 소환되지 않을 시 카스토리스는 [새로운 꽃술]을 [새로운 꽃술] 최대치의 #4[i]%만큼 획득한다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.5000000004656613, + 20, + 0.3000000002793968 + ] + } + } + }, + "140709": { + "Id": 140709, + "Name": "뼈의 발톱, 저승 용의 포옹", + "Desc": "죽음의 용을 제외한 모든 아군의 현재 HP를 #1[i]% 소모하고, 카스토리스와 죽음의 용이 목표에게 연계 공격을 발동해 모든 적에게 카스토리스 HP 최대치의 #2[f1]%#3[f1]%만큼 양자 속성 피해를 가한다.\\n현재 HP가 부족하면 HP를 최대 1pt까지 감소시킨다", + "Type": "BPSkill", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 0.1500000001396984, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.40000000037252903, + 0.16499999980442226, + 0.27499999990686774 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.40000000037252903, + 0.18000000016763806, + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903, + 0.19499999983236194, + 0.32499999995343387 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.40000000037252903, + 0.21000000019557774, + 0.3500000003259629 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 0.2249999998603016, + 0.375 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.40000000037252903, + 0.24375000083819032, + 0.4062500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.40000000037252903, + 0.26250000041909516, + 0.43750000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.40000000037252903, + 0.28125000069849193, + 0.46875000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.3000000002793968, + 0.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.40000000037252903, + 0.31499999994412065, + 0.5250000001396984 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.40000000037252903, + 0.33000000030733645, + 0.5500000005122274 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.40000000037252903, + 0.3449999999720603, + 0.5750000001862645 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.40000000037252903, + 0.3600000003352761, + 0.6000000005587935 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.40000000037252903, + 0.375, + 0.6250000002328306 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Normal.png", + "LevelUpSkillID": [ + 140701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_BP.png", + "LevelUpSkillID": [ + 140702, + 140709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Ultra.png", + "LevelUpSkillID": [ + 140703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_Passive.png", + "LevelUpSkillID": [ + 140704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1407004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1407_Maze.png", + "LevelUpSkillID": [ + 140707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.12000000011175871 + ], + "PointID": 1407101, + "PointName": "수용된 암조", + "PointDesc": "죽음의 용을 제외한 아군이 치유를 받으면 치유량의 #1[i]%가 [새로운 꽃술]로 전환되고, 죽음의 용이 필드에 있으면 죽음의 용의 HP로 전환된다. 각 아군의 누적 전환 수치는 [새로운 꽃술] 최대치의 #2[i]%를 초과하지 않는다. 임의의 유닛이 행동하면 모든 유닛이 누적한 전환 수치가 초기화된다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903, + 1 + ], + "PointID": 1407102, + "PointName": "뒤집힌 횃불", + "PointDesc": "카스토리스의 현재 HP가 자신의 HP 최대치의 #1[i]% 이상일 시 카스토리스의 속도가 #2[i]% 증가한다. 죽음의 용이 [암흑을 불태우는 화염의 숨결]을 발동해 필드 위 모든 적에게 치명적인 피해를 가하거나 적의 HP가 더 이상 감소되지 않을 시 죽음의 용의 속도가 #3[i]% 증가한다, 지속 시간: 1턴", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1407_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 6 + ], + "PointID": 1407103, + "PointName": "발걸음을 묶는 서풍", + "PointDesc": "죽음의 용이 [암흑을 불태우는 화염의 숨결]을 발동할 때마다 가하는 피해가 #1[i]% 증가한다, 해당 효과 최대 중첩수: #2[i]스택, 이번 턴이 종료될 때까지 지속된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407201, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407202, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1407201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.031999999890103936, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407203, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1407201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407204, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1407101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407205, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1407101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407206, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1407102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.04799999948590994, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407207, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1407102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407208, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1407103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconQuantumAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407209, + "PointName": "피해 강화•양자", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1407208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "QuantumAddedRatio", + "Value": 0.06399999978020787, + "Name": "양자 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1407210, + "PointName": "치명타 확률 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1407209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "어둠을 찢는 발톱", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "어둠을 찢는 발톱", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "어둠을 찢는 발톱", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "어둠을 찢는 발톱", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "어둠을 찢는 발톱", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_Servant01.png", + "LevelUpSkillID": [ + 1140701, + 1140702, + 1140710, + 1140711 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407301, + "PointName": "어둠을 찢는 발톱", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "암흑을 불태우는 화염의 숨결", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "암흑을 불태우는 화염의 숨결", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "암흑을 불태우는 화염의 숨결", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "암흑을 불태우는 화염의 숨결", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "암흑을 불태우는 화염의 숨결", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11407_ServantPassive.png", + "LevelUpSkillID": [ + 1140703, + 1140712, + 1140706, + 1140705 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1407302, + "PointName": "암흑을 불태우는 화염의 숨결", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "죽음의 용•폴룩스", + "Icon": "SpriteOutput/ServantIconTeam/11407B.png", + "HPBase": "0", + "HPInherit": "0", + "HPSkill": null, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 140703, + "Aggro": 100, + "Skills": { + "1140701": { + "Name": "어둠을 찢는 발톱", + "Desc": "모든 적에게 카스토리스 HP 최대치의 #1[f1]%만큼 양자 속성 피해를 가한다", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406 + ] + } + } + }, + "1140702": { + "Name": "암흑을 불태우는 화염의 숨결", + "Desc": "[암흑을 불태우는 화염의 숨결]을 발동하면 죽음의 용의 HP를 HP 최대치의 #1[i]%만큼 소모하고, 모든 적에게 카스토리스 HP 최대치의 #2[f1]%만큼 양자 속성 피해를 가한다.\\n1회의 공격 동안 [암흑을 불태우는 화염의 숨결]을 중복 발동할 수 있으며, 중복 발동 시 피해 배율이 순차대로 #3[f1]%/#4[f1]%로 증가하며, #4[f1]%에 도달하면 더 이상 증가하지 않는다. 피해 배율 증가 효과는 죽음의 용이 사라지기 전까지 감소하지 않는다.\\n죽음의 용의 현재 HP가 자신의 HP 최대치의 #5[i]% 이하일 시 해당 스킬을 발동하면 HP가 1pt로 감소하고, 특성 [묘지를 불사르는 어둠의 날개]와 동일한 스킬 효과를 발동한다", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 0.12000000011175871, + 0.14000000013038516, + 0.17000000015832484, + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064, + 0.14399999985471368, + 0.16799999959766865, + 0.20399999991059303, + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064, + 0.16799999959766865, + 0.19599999976344407, + 0.23799999966286123, + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064, + 0.19200000003911555, + 0.22399999992921948, + 0.27200000011362135, + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064, + 0.21599999978207052, + 0.2520000000949949, + 0.30599999986588955, + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064, + 0.24000000022351742, + 0.2800000002607703, + 0.3400000003166497, + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064, + 0.2639999999664724, + 0.3079999997280538, + 0.37400000006891787, + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064, + 0.28799999970942736, + 0.3359999998938292, + 0.40799999982118607, + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064, + 0.31200000015087426, + 0.36400000005960464, + 0.4420000002719462, + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064, + 0.3359999998938292, + 0.39200000022538006, + 0.4760000000242144, + 0.25000000023283064 + ] + } + } + }, + "1140703": { + "Name": "달의 고치에 가려진 몸체", + "Desc": "죽음의 용이 필드에 있을 시 아군을 후방 지원하며, 아군이 피해를 받거나 HP를 소모할 시 현재 HP가 최대 1pt까지 감소하고, 이후에는 죽음의 용이 대신 감당하나 죽음의 용이 기존 수치의 #1[i]%만큼 HP를 소모한다. 해당 효과는 죽음의 용이 사라질 때까지 지속된다", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 5 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 5 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 5 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 5 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 5 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 5 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 5 + ] + } + } + }, + "1140705": { + "Name": "적막한 땅을 뒤흔드는 포효", + "Desc": "죽음의 용이 소환될 시, 모든 아군이 가하는 피해가 #1[i]% 증가한다, 지속 시간: #2[i]턴", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.10000000009313226, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + } + }, + "1140706": { + "Name": "묘지를 불사르는 어둠의 날개", + "Desc": "죽음의 용이 사라질 시 피해를 #2[i]회 가하며, 피해당 랜덤 단일 적에게 카스토리스 HP 최대치의 #1[f1]%만큼 양자 속성 피해를 가하고, 모든 아군의 HP를 카스토리스 HP 최대치의 #3[i]%+#4[i]pt만큼 회복한다", + "Type": null, + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 6, + 0.030000000027939677, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742, + 6, + 0.035999999614432454, + 480 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703, + 6, + 0.04199999989941716, + 560 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232, + 6, + 0.04799999948590994, + 640 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761, + 6, + 0.05399999977089465, + 720 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 6, + 0.060000000055879354, + 800 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193, + 6, + 0.06599999964237213, + 880 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484, + 6, + 0.07199999992735684, + 960 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877, + 6, + 0.07799999951384962, + 1040 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406, + 6, + 0.08399999979883432, + 1120 + ] + } + } + }, + "1140710": { + "Name": "암흑을 불태우는 화염의 숨결", + "Desc": null, + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1140711": { + "Name": "암흑을 불태우는 화염의 숨결", + "Desc": null, + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1140712": { + "Name": "묘지를 불사르는 어둠의 날개", + "Desc": "모든 HP를 소모하고 피해를 #2[i]회 가하며, 피해당 랜덤 단일 적에게 카스토리스 HP 최대치의 #1[f1]%만큼 양자 속성 피해를 가하고, 모든 아군의 HP를 카스토리스 HP 최대치의 #3[i]%+#4[i]pt만큼 회복한다", + "Type": "Servant", + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 6, + 0.030000000027939677, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.24000000022351742, + 6, + 0.035999999614432454, + 480 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2800000002607703, + 6, + 0.04199999989941716, + 560 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3200000002980232, + 6, + 0.04799999948590994, + 640 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3600000003352761, + 6, + 0.05399999977089465, + 720 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.40000000037252903, + 6, + 0.060000000055879354, + 800 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.44000000040978193, + 6, + 0.06599999964237213, + 880 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.48000000044703484, + 6, + 0.07199999992735684, + 960 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5200000004842877, + 6, + 0.07799999951384962, + 1040 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5600000005215406, + 6, + 0.08399999979883432, + 1120 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": { + "140704": { + "Tag": "서포트", + "Name": "달의 고치의 비호", + "Desc": "카스토리스 획득 후 또는 현재 파티에 카스토리스가 존재할 시 다음 효과를 획득한다. 전투 중 아군 캐릭터가 치명적인 공격을 받으면, 이번 행동에서 치명적인 공격을 받은 모든 아군 캐릭터가 [달의 고치] 상태를 획득한다. [달의 고치] 상태의 캐릭터는 전투 불능 상태에 빠지는 게 잠시 지연되며, 정상적으로 행동할 수 있다. 행동 후, 다음 턴 시작 전에 현재 HP가 증가하거나 실드를 획득할 경우 [달의 고치] 상태가 해제되며, 그렇지 않을 경우 즉시 전투 불능 상태에 빠진다. 해당 효과는 단일 전투에서 최대 1회 발동한다", + "Param": [ + 0.10000000009313226 + ] + } + }, + "Stats": { + "0": { + "AttackBase": 71.28000000026077, + "AttackAdd": 3.564000000245869, + "DefenceBase": 66, + "DefenceAdd": 3.3000000002793968, + "HPBase": 221.7600000007078, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 99.79200000059791, + "AttackAdd": 3.564000000245869, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 310.46400000015274, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 128.30400000000373, + "AttackAdd": 3.564000000245869, + "DefenceBase": 118.80000000074506, + "DefenceAdd": 3.3000000002793968, + "HPBase": 399.16799999959767, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 156.81600000034086, + "AttackAdd": 3.564000000245869, + "DefenceBase": 145.20000000018626, + "DefenceAdd": 3.3000000002793968, + "HPBase": 487.8720000006724, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 185.32799999974668, + "AttackAdd": 3.564000000245869, + "DefenceBase": 171.6000000005588, + "DefenceAdd": 3.3000000002793968, + "HPBase": 576.5760000001173, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 213.8400000007823, + "AttackAdd": 3.564000000245869, + "DefenceBase": 198, + "DefenceAdd": 3.3000000002793968, + "HPBase": 665.2800000002608, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 242.35200000018813, + "AttackAdd": 3.564000000245869, + "DefenceBase": 224.40000000037253, + "DefenceAdd": 3.3000000002793968, + "HPBase": 753.984000000637, + "HPAdd": 11.087999999523163, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1407, + "Set4IDList": [ + 124, + 108, + 113 + ], + "Set2IDList": [ + 319, + 302, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase", + "CriticalChanceBase" + ], + "PropertyList4": [ + "HPAddedRatio" + ], + "PropertyList5": [ + "QuantumAddedRatio" + ], + "PropertyList6": [ + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "QuantumAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "HPAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "HPAddedRatio" + ], + "ScoreRankList": [ + 319, + 261 + ] + } + }, + "1408": { + "Name": "파이논", + "Desc": "속세를 벗어난 변방 마을 엘리사이 에데스는 오늘날 안개에 싸인 전설로만 남아있다.\\n이름 없는 영웅 █████, 「부세」의 불씨를 담은 황금의 후예여, 세상의 이상을 기억하고 모든 이의 운명을 짊어지며, 신세계에 첫 번째 서광을 가져와라.\\n——「그러나 여명이 처음부터 존재하지 않았다면, 분노의 불길로 이 몸을 불태워 내일의 뜨거운 태양이 되리라!」", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "phainon", + "SPNeed": 12, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 140801, + "Name": "파이논의 성혼 1", + "Desc": "█████의 보너스 턴 속도가 █████ 기본 속도의 #1[i]%로 증가한다. [불씨]가 최대치에 도달하면 자신의 물리 속성 저항 관통#2[i]% 증가한다, 지속 시간: #3[i]턴", + "ParamList": [ + 0.7200000006705523, + 0.1500000001396984, + 2 + ] + }, + "2": { + "Id": 140802, + "Name": "파이논의 성혼 2", + "Desc": "█████이(가) 공격 발동으로 가하는 피해가 기존 피해의 #2[i]%가 된다. [파괴]#1[i]pt 소모하여 [기둥•죽음의 별의 심판] 발동 시 보너스 턴을 1개 획득한다", + "ParamList": [ + 4, + 1.2000000001862645 + ] + }, + "3": { + "Id": 140803, + "Name": "파이논의 성혼 3", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 140804, + "Name": "파이논의 성혼 4", + "Desc": "[재앙•영혼과 천명의 소멸] 발동 시 추가로 [영혼을 파쇄하는 불길]을 #1[i]스택 획득한다", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 140805, + "Name": "파이논의 성혼 5", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "6": { + "Id": 140806, + "Name": "파이논의 성혼 6", + "Desc": "[파괴]의 최대치가 2pt 증가한다. [창생•피 묻은 가시의 장송] 또는 [재앙•영혼과 천명의 소멸] 발동 시 [파괴]를 추가로 #2[i]pt 획득한다. [기둥•죽음의 별의 심판]의 공격 발동 후 HP가 가장 높은 적에게 추가로 이번 공격 총 피해량의 #1[i]%만큼 확정 피해를 가한다", + "ParamList": [ + 0.20000000018626451, + 2 + ] + } + }, + "Skills": { + "140801": { + "Id": 140801, + "Name": "불을 쫓는 구세의 길, 끝내 닿으리", + "Desc": "지정된 단일 적에게 파이논 공격력의 #1[i]%만큼 물리 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "140802": { + "Id": 140802, + "Name": "여명의 창세, 천지를 개벽할지니", + "Desc": "[불씨]를 #3[i]pt 획득하고 지정된 단일 적에게 파이논 공격력의 #1[i]%만큼 물리 속성 피해를 가하며, 인접한 목표에게 파이논 공격력의 #2[i]%만큼 물리 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": null, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.5000000004656613, + 0.6000000005587935, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.6500000006053597, + 0.6600000006146729, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.9500000008847564, + 0.7800000007264316, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1000000000931323, + 0.840000000782311, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 0.9000000008381903, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.4375000002328306, + 0.9750000005587935, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.6250000002328306, + 1.0500000000465661, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.8125000009313226, + 1.1249999997671694, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1.2000000001862645, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.1500000001396984, + 1.2600000002421439, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.3000000002793968, + 1.3200000002980232, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3.450000000419095, + 1.3800000003539026, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.6000000005587935, + 1.440000000409782, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.750000000698492, + 1.5000000004656613, + 2 + ] + } + } + }, + "140803": { + "Id": 140803, + "Name": "영원히 타오르는 세상, 그가 짊어지리라", + "Desc": "█████(으)로 변신하며, 변신 중에는 경계를 펼친다. 경계 내 다른 동료는 퇴장하고 행동할 수 없으며, 모든 적은 항상 물리 속성 약점을 보유한다.\\n█████은(는) 자신의 턴에 진입하지 않는 대신 █████의 보너스 턴#4[i]개 보유하고, 속도는 █████ 기본 속도의 #3[i]%로 고정된다. 마지막 █████의 보너스 턴 시작 시 즉시 마지막 일격을 발동하고 █████ 공격력의 #1[i]%만큼 모든 적이 균등 분담하는 물리 속성 필살기 피해를 가한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4.800000000745058, + 12, + 0.6000000005587935, + 8 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.28000000026077, + 12, + 0.6000000005587935, + 8 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 5.760000000707805, + 12, + 0.6000000005587935, + 8 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.240000000223517, + 12, + 0.6000000005587935, + 8 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 6.720000000670552, + 12, + 0.6000000005587935, + 8 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.2000000001862645, + 12, + 0.6000000005587935, + 8 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 7.800000000745058, + 12, + 0.6000000005587935, + 8 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.400000000372529, + 12, + 0.6000000005587935, + 8 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9, + 12, + 0.6000000005587935, + 8 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 9.600000000558794, + 12, + 0.6000000005587935, + 8 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.080000000074506, + 12, + 0.6000000005587935, + 8 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 10.56000000052154, + 12, + 0.6000000005587935, + 8 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.040000000037253, + 12, + 0.6000000005587935, + 8 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 11.520000000484288, + 12, + 0.6000000005587935, + 8 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12, + 12, + 0.6000000005587935, + 8 + ] + } + } + }, + "140804": { + "Id": 140804, + "Name": "이 몸을 횃불 삼아", + "Desc": "파이논의 특성. [불씨]가 #4[i]pt에 도달하면 필살기가 활성화되며, 최대치 도달 후 최대 #3[i]pt 초과할 수 있다.\\n파이논이 아군 또는 임의의 단일 적의 스킬 목표가 될 시 [불씨]를 1pt 획득한다. 아군의 스킬 목표가 될 시 치명타 피해가 #1[i]% 증가한다, 지속 시간: #2[i]턴", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984, + 3, + 3, + 12 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.16499999980442226, + 3, + 3, + 12 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.18000000016763806, + 3, + 3, + 12 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.19499999983236194, + 3, + 3, + 12 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.21000000019557774, + 3, + 3, + 12 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2249999998603016, + 3, + 3, + 12 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.24375000083819032, + 3, + 3, + 12 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.26250000041909516, + 3, + 3, + 12 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.28125000069849193, + 3, + 3, + 12 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968, + 3, + 3, + 12 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.31499999994412065, + 3, + 3, + 12 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.33000000030733645, + 3, + 3, + 12 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.3449999999720603, + 3, + 3, + 12 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.3600000003352761, + 3, + 3, + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.375, + 3, + 3, + 12 + ] + } + } + }, + "140805": { + "Id": 140805, + "Name": "운명•이 몸이 곧 신이로다", + "Desc": "█████의 특성. 변신 시 [파괴]#1[i]pt 획득한다. 이때 아군의 턴일 경우 해당 목표의 모든 버프 효과 지속 시간이 1턴 연장되며, 이번 턴은 종료된다.\\n█████은(는) 제어류 디버프 상태에 면역되고, 강화된 일반 공격 1개와 강화된 전투 스킬 2개를 보유하며 필살기를 발동할 수 없다. 변신 중에는 공격력이 #4[i]% 증가하고 HP 최대치가 #5[i]% 증가하며, 공격을 발동하면 자신의 HP 최대치의 #7[i]%만큼 HP를 회복한다. █████이(가) 치명적인 공격을 받을 시 전투 불능 상태에 빠지는 대신 자신의 HP 최대치의 #2[i]%만큼 HP를 회복하고 즉시 마지막 일격을 발동한다. 남은 █████의 보너스 턴당 마지막 일격의 피해 배율이 기존 배율의 #3[f1]%만큼 감소한다.\\n변신 종료 시 모든 아군의 속도가 #6[i]% 증가한다, 지속 시간: 1턴", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.40000000037252903, + 1.2000000001862645, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.44000000040978193, + 1.3200000002980232, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.48000000044703484, + 1.440000000409782, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.5200000004842877, + 1.5600000005215406, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.5600000005215406, + 1.6800000006332994, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.6000000005587935, + 1.800000000745058, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.6500000006053597, + 1.9500000008847564, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.7000000006519258, + 2.1000000000931323, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.7500000006984919, + 2.2500000002328306, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.8000000007450581, + 2.400000000372529, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.840000000782311, + 2.5200000004842877, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.8800000008195639, + 2.6400000005960464, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.9200000008568168, + 2.760000000707805, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 0.9600000008940697, + 2.880000000819564, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4, + 0.25000000023283064, + 0.12499999976716936, + 1, + 3, + 0.1500000001396984, + 0.20000000018626451 + ] + } + } + }, + "140806": { + "Id": 140806, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140807": { + "Id": 140807, + "Name": "종결의 시작", + "Desc": "파이논이 파티에 있을 시 비술 포인트 최대치가 3pt 증가한다.\\n비술을 직접 발동하면 비술 포인트를 2pt 소모하고 즉시 일정 범위 내의 모든 적을 공격한다. 전투 진입 후 아군의 에너지를 #3[i]pt 회복시키고, [파괴] #2[i]pt와 전투 스킬 포인트 #4[i]pt를 획득하며, 웨이브가 시작될 때마다 모든 적에게 파이논 공격력의 #1[i]%만큼 물리 속성 피해를 가한다.\\n일반 적을 공격하면 대상을 즉시 처치하며 전투에 진입하지 않는다. 적을 명중하지 못하면 비술 포인트를 소모하지 않는다", + "Type": "Maze", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2, + 2, + 25, + 1 + ] + } + } + }, + "140808": { + "Id": 140808, + "Name": "창생•피 묻은 가시의 장송", + "Desc": "[파괴]#3[i]pt 획득하고 지정된 단일 적에게 █████ 공격력의 #1[i]%만큼 물리 속성 피해를 가하며, 인접한 목표에게 █████ 공격력의 #2[i]%만큼 물리 속성 피해를 가한다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 60 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2500000002328306, + 0.375, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.5000000004656613, + 0.45000000041909516, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.750000000698492, + 0.5250000001396984, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2, + 0.6000000005587935, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.2500000002328306, + 0.6750000002793968, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.5000000004656613, + 0.7500000006984919, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.750000000698492, + 0.8250000004190952, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 0.9000000008381903, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3.2500000002328306, + 0.9750000005587935, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3.5000000004656613, + 1.0500000000465661, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3.7800000007264316, + 0.9450000005308539, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3.9600000008940697, + 0.9900000009220093, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.140000000130385, + 1.0349999996833503, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 4.320000000298023, + 1.0800000000745058, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 4.500000000465661, + 1.1249999997671694, + 2 + ] + } + } + }, + "140809": { + "Id": 140809, + "Name": "재앙•영혼과 천명의 소멸", + "Desc": "모든 적의 수만큼 [파괴]를 획득하고, 이후 모든 적을 즉시 행동하게 하며 [영혼을 파쇄하는 불길]을 1스택 획득한다. \\n[영혼을 파쇄하는 불길] 상태에서 █████은(는) 받는 피해가 #2[i]% 감소하고, 적이 공격 또는 행동 후 [영혼을 파쇄하는 불길]을 1스택 중첩한다. 즉시 행동한 모든 적이 행동하고 나면 반격을 발동하며, 모든 적에게 █████ 공격력의 #1[i]%만큼 물리 속성 피해를 가하고 추가로 피해를 #3[i]회 가하며, 매번 랜덤 단일 적에게 █████ 공격력의 #4[i]%만큼 물리 속성 피해를 가하고, 이후 [영혼을 파쇄하는 불길]을 해제한다. [영혼을 파쇄하는 불길] 스택마다 이번 반격의 피해 배율을 기존 배율의 #5[i]%만큼 증가시킨다.\\n해당 스킬을 통해 피해를 가할 시 전투 스킬 피해를 가한 것으로 간주한다. █████의 보너스 턴 시작 시 [영혼을 파쇄하는 불길]을 보유할 경우 즉시 반격을 발동한다", + "Type": "BPSkill", + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 15, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.20000000018626451, + 0.7500000006984919, + 4, + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.22000000020489097, + 0.7500000006984919, + 4, + 0.16499999980442226, + 0.20000000018626451 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.24000000022351742, + 0.7500000006984919, + 4, + 0.18000000016763806, + 0.20000000018626451 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.26000000024214387, + 0.7500000006984919, + 4, + 0.19499999983236194, + 0.20000000018626451 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.2800000002607703, + 0.7500000006984919, + 4, + 0.21000000019557774, + 0.20000000018626451 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968, + 0.7500000006984919, + 4, + 0.2249999998603016, + 0.20000000018626451 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.32499999995343387, + 0.7500000006984919, + 4, + 0.24375000083819032, + 0.20000000018626451 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3500000003259629, + 0.7500000006984919, + 4, + 0.26250000041909516, + 0.20000000018626451 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.375, + 0.7500000006984919, + 4, + 0.28125000069849193, + 0.20000000018626451 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.40000000037252903, + 0.7500000006984919, + 4, + 0.3000000002793968, + 0.20000000018626451 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.4200000003911555, + 0.7500000006984919, + 4, + 0.31499999994412065, + 0.20000000018626451 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.44000000040978193, + 0.7500000006984919, + 4, + 0.33000000030733645, + 0.20000000018626451 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.4600000004284084, + 0.7500000006984919, + 4, + 0.3449999999720603, + 0.20000000018626451 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.48000000044703484, + 0.7500000006984919, + 4, + 0.3600000003352761, + 0.20000000018626451 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919, + 4, + 0.375, + 0.20000000018626451 + ] + } + } + }, + "140811": { + "Id": 140811, + "Name": "기둥•죽음의 별의 심판", + "Desc": "자신의 모든 디버프 효과를 해제하고, 이후 최대 █████ 공격력의 #5[i]%만큼 물리 속성 피해를 가한다.\\n그중 [파괴]를 1pt 소모할 때마다 피해를 #3[i]회 가하며, 매번 랜덤 단일 적에게 █████ 공격력의 #2[i]%만큼 물리 속성 피해를 가한다. [파괴] #4[i]pt 소모 시 추가로 █████ 공격력의 #1[i]%만큼 물리 속성 피해를 가하며, 해당 피해는 모든 적이 균등 분담한다", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 10, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 2.2500000002328306, + 0.2249999998603016, + 4, + 4, + 5.850000000791624 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 2.4750000000931323, + 0.24750000005587935, + 4, + 4, + 6.435000000055879 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 2.700000000651926, + 0.2700000002514571, + 4, + 4, + 7.0200000000186265 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.9250000005122274, + 0.29250000044703484, + 4, + 4, + 7.605000000214204 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.1500000001396984, + 0.31499999994412065, + 4, + 4, + 8.190000000176951 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.375, + 0.3375000001396984, + 4, + 4, + 8.775000000372529 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.656250000698492, + 0.36562500055879354, + 4, + 4, + 9.506250000558794 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3.937500000698492, + 0.3937500009778887, + 4, + 4, + 10.237500000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.218750000465661, + 0.42187500139698386, + 4, + 4, + 10.968750001164153 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 0.45000000041909516, + 4, + 4, + 11.700000000651926 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.725000000325963, + 0.4725000006146729, + 4, + 4, + 12.284999999916181 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.9500000008847564, + 0.4950000001117587, + 4, + 4, + 12.87000000081025 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 5.1749999998137355, + 0.5175000003073364, + 4, + 4, + 13.455000000074506 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.400000000372529, + 0.5400000005029142, + 4, + 4, + 14.040000000037253 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.625000000232831, + 0.5625000006984919, + 4, + 4, + 14.62500000023283 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Normal.png", + "LevelUpSkillID": [ + 140801, + 140808 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1408001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_BP.png", + "LevelUpSkillID": [ + 140802, + 140809, + 140811 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Ultra.png", + "LevelUpSkillID": [ + 140803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 7, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_Passive.png", + "LevelUpSkillID": [ + 140804, + 140805 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 300000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 14, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1408004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1408_Maze.png", + "LevelUpSkillID": [ + 140807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 3 + ], + "PointID": 1408101, + "PointName": "세계의 종착지를 향해", + "PointDesc": "변신 종료 시 [불씨]를 #1[i]pt 획득한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.40000000037252903, + 4, + 1 + ], + "PointID": 1408102, + "PointName": "수많은 횃불을 짊어진 몸", + "PointDesc": "동료가 제공하는 치유 효과 또는 실드를 받을 시 가하는 피해가 #1[i]% 증가한다, 지속 시간: #2[i]턴. 해당 효과는 단일 턴 내에 중복 발동되지 않는다.\\n동료가 제공하는 에너지 회복 스킬 효과를 받을 시 [불씨]를 #3[i]pt 획득한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1408_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110507, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 2 + ], + "PointID": 1408103, + "PointName": "투영된 영웅의 본색", + "PointDesc": "전투 진입 또는 변신 종료 시 공격력이 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408201, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408202, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1408101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.026999999536201358, + "Name": "치명타 확률" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408203, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1408202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408204, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1408203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408205, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1408102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408206, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1408205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.0400000000372529, + "Name": "치명타 확률" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408207, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1408206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408208, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1408103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconCriticalChance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408209, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1408208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalChanceBase", + "Value": 0.05299999983981252, + "Name": "치명타 확률" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1408210, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1408208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 76.56000000052154, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 99, + "DefenceAdd": 4.9500000008847564, + "HPBase": 195.36000000033528, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 107.18399999989197, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 138.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 273.50400000019, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 137.80800000019372, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 178.20000000018626, + "DefenceAdd": 4.9500000008847564, + "HPBase": 351.6480000000447, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 168.43200000026263, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 217.80000000074506, + "DefenceAdd": 4.9500000008847564, + "HPBase": 429.7920000005979, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 199.05599999963306, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.9500000008847564, + "HPBase": 507.9360000004526, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 229.6800000006333, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 297, + "DefenceAdd": 4.9500000008847564, + "HPBase": 586.0800000000745, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110436, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 260.3040000000037, + "AttackAdd": 3.8280000002123415, + "DefenceBase": 336.6000000005588, + "DefenceAdd": 4.9500000008847564, + "HPBase": 664.2239999999292, + "HPAdd": 9.768000000156462, + "SpeedBase": 94, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1408, + "Set4IDList": [ + 126, + 105, + 122 + ], + "Set2IDList": [ + 321, + 309, + 301 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "AttackAddedRatio" + ], + "PropertyList5": [ + "PhysicalAddedRatio", + "AttackAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "AttackAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 324, + 266 + ] + } + }, + "1409": { + "Name": "히아킨", + "Desc": "구름 속 도시 국가는 세월을 따라 분열되었으나, 놀빛 정원은 다시금 문을 열어 영원한 밤에 희미한 빛을 가져다주었다.\\n의사 히아킨티아, 「하늘」의 불씨를 수호하는 황금의 후예. 선조의 의지를 계승하여 찢어진 조석을 메꾼다.\\n——무지갯빛이 쏟아져 원한을 녹이고, 여명이 대지에 다시 돌아오기를", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "hyacine", + "SPNeed": 140, + "BaseType": "Memory", + "DamageType": "Wind", + "Ranks": { + "1": { + "Id": 140901, + "Name": "어두운 밤의 촛불을 지키며", + "Desc": "히아킨이 [비 온 뒤 맑음] 상태일 시 모든 아군의 HP 최대치가 추가로 #1[i]% 증가하고, 공격 발동 후 즉시 히아킨 HP 최대치의 #2[i]%만큼 HP를 회복한다", + "ParamList": [ + 0.5000000004656613, + 0.0800000000745058 + ] + }, + "2": { + "Id": 140902, + "Name": "제 정원에 앉았다 가세요", + "Desc": "아군의 HP가 감소하면 속도가 #1[i]% 증가한다, 지속 시간: #2[i]턴", + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "Id": 140903, + "Name": "출발! 태양을 향한 모험", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10. 기억 정령 스킬 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 140904, + "Name": "햇빛 호박을 그대에게", + "Desc": "행적 [잔잔해진 폭풍]이 강화된다. 속도가 #1[i]pt 초과할 때마다 히아킨과 이카의 치명타 피해가 추가로 #2[i]% 증가한다", + "ParamList": [ + 1, + 0.02000000001862645 + ] + }, + "5": { + "Id": 140905, + "Name": "바다의 뒷면에 비치는 붉은 노을", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15. 기억 정령 특성 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 140906, + "Name": "하늘이… 나의 기도에 응답하리", + "Desc": "이카가 기억 정령 스킬을 발동하고 초기화되는 누적 치유 수치가 #1[i]%로 변경된다. 이카가 필드에 있을 시 모든 아군의 모든 속성 저항 관통#2[i]% 증가한다", + "ParamList": [ + 0.12000000011175871, + 0.20000000018626451 + ] + } + }, + "Skills": { + "140901": { + "Id": 140901, + "Name": "산들바람이 구름을 스치는 순간", + "Desc": "지정된 단일 적에게 히아킨 HP 최대치의 #1[i]%만큼 바람 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3500000003259629 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.45000000041909516 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5500000005122274 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.6000000005587935 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.6500000006053597 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.7000000006519258 + ] + } + } + }, + "140902": { + "Id": 140902, + "Name": "무지갯빛이 쏟아질 때의 사랑", + "Desc": "기억 정령 이카를 소환하며, 이카를 제외한 모든 아군의 HP를 히아킨 HP 최대치의 #1[f1]%+#2[i]만큼 회복하고, 이카의 HP를 히아킨 HP 최대치의 #3[f1]%+#4[i]만큼 회복한다", + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 40, + 0.05000000004656613, + 50 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04499999969266355, + 64, + 0.056250000139698386, + 80 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.05000000004656613, + 82, + 0.06250000023283064, + 102.50000000046566 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.054999999701976776, + 100, + 0.0687500003259629, + 125 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.060000000055879354, + 112, + 0.07499999972060323, + 140 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.06399999978020787, + 124, + 0.0800000000745058, + 155 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.06799999950453639, + 133, + 0.08499999972991645, + 166.25000000023283 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.07199999992735684, + 142, + 0.09000000008381903, + 177.50000000046566 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.07599999965168536, + 151, + 0.09499999973922968, + 188.7500000006985 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0800000000745058, + 160, + 0.10000000009313226, + 200 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.08399999979883432, + 169, + 0.1049999997485429, + 211.25000000023283 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.08799999952316284, + 178, + 0.11000000010244548, + 222.50000000046566 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.09199999994598329, + 187, + 0.11499999975785613, + 233.7500000006985 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.09599999967031181, + 196, + 0.12000000011175871, + 245 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.10000000009313226, + 205, + 0.12499999976716936, + 256.25000000023283 + ] + } + } + }, + "140903": { + "Id": 140903, + "Name": "조석 속으로 날아가는 우리", + "Desc": "기억 정령 이카를 소환하며, 이카를 제외한 모든 아군의 HP를 히아킨 HP 최대치의 #1[f1]%+#2[i]만큼 회복하고, 이카의 HP를 히아킨 HP 최대치의 #6[f1]%+#7[i]만큼 회복한다. 히아킨이 [비 온 뒤 맑음] 상태에 진입한다, 지속 시간: #5[i]턴, 히아킨의 턴이 시작될 때마다 지속 턴 수가 1 감소한다. [비 온 뒤 맑음] 상태일 시 모든 아군의 HP 최대치가 #3[f1]%+#4[i]pt 증가한다", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.05000000004656613, + 50, + 0.1500000001396984, + 150, + 3, + 0.060000000055879354, + 60 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.056250000139698386, + 80, + 0.16499999980442226, + 240, + 3, + 0.06749999988824129, + 96 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.06250000023283064, + 102.50000000046566, + 0.18000000016763806, + 307.50000000046566, + 3, + 0.07499999972060323, + 123 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.0687500003259629, + 125, + 0.19499999983236194, + 375, + 3, + 0.0825000002514571, + 150 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.07499999972060323, + 140, + 0.21000000019557774, + 420, + 3, + 0.09000000008381903, + 168 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0800000000745058, + 155, + 0.2249999998603016, + 465, + 3, + 0.09599999967031181, + 186 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.08499999972991645, + 166.25000000023283, + 0.24375000083819032, + 498.7500000006985, + 3, + 0.10199999995529652, + 199.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.09000000008381903, + 177.50000000046566, + 0.26250000041909516, + 532.5000000004657, + 3, + 0.1079999995417893, + 213 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.09499999973922968, + 188.7500000006985, + 0.28125000069849193, + 566.2500000002328, + 3, + 0.113999999826774, + 226.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.10000000009313226, + 200, + 0.3000000002793968, + 600, + 3, + 0.12000000011175871, + 240 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.1049999997485429, + 211.25000000023283, + 0.31499999994412065, + 633.7500000006985, + 3, + 0.12599999969825149, + 253.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.11000000010244548, + 222.50000000046566, + 0.33000000030733645, + 667.5000000004657, + 3, + 0.1319999999832362, + 267 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.11499999975785613, + 233.7500000006985, + 0.3449999999720603, + 701.2500000002328, + 3, + 0.13799999956972897, + 280.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.12000000011175871, + 245, + 0.3600000003352761, + 735, + 3, + 0.14399999985471368, + 294 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.12499999976716936, + 256.25000000023283, + 0.375, + 768.7500000006985, + 3, + 0.1500000001396984, + 307.50000000046566 + ] + } + } + }, + "140904": { + "Id": 140904, + "Name": "세상을 치유하는 아침햇살", + "Desc": "기억 정령 이카는 기본 상태에서 히아킨 HP 최대치의 #1[i]%만큼 HP를 보유한다. 히아킨 또는 이카가 치유 제공 시 이카가 가하는 피해가 #3[i]% 증가한다, 지속 시간: #4[i]턴, 최대 중첩수: #5[i]스택", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 1, + 0.40000000037252903, + 2, + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613, + 1, + 0.44000000040978193, + 2, + 3 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613, + 1, + 0.48000000044703484, + 2, + 3 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613, + 1, + 0.5200000004842877, + 2, + 3 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613, + 1, + 0.5600000005215406, + 2, + 3 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613, + 1, + 0.6000000005587935, + 2, + 3 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613, + 1, + 0.6500000006053597, + 2, + 3 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613, + 1, + 0.7000000006519258, + 2, + 3 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613, + 1, + 0.7500000006984919, + 2, + 3 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 0.8000000007450581, + 2, + 3 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5000000004656613, + 1, + 0.840000000782311, + 2, + 3 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5000000004656613, + 1, + 0.8800000008195639, + 2, + 3 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5000000004656613, + 1, + 0.9200000008568168, + 2, + 3 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5000000004656613, + 1, + 0.9600000008940697, + 2, + 3 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5000000004656613, + 1, + 1, + 2, + 3 + ] + } + } + }, + "140906": { + "Id": 140906, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "140907": { + "Id": 140907, + "Name": "날씨 좋고, 모든 게 귀엽고!", + "Desc": "다음 전투 시작 시 모든 아군이 히아킨 HP 최대치의 #1[i]%+#2[i]만큼 HP를 회복하고, HP 최대치가 #3[i]% 증가한다, 지속 시간: #4[i]턴", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 600, + 0.20000000018626451, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "먹구름, 저리 가!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "먹구름, 저리 가!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "먹구름, 저리 가!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "먹구름, 저리 가!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "먹구름, 저리 가!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_Servant.png", + "LevelUpSkillID": [ + 1140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409301, + "PointName": "먹구름, 저리 가!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "맑은 하늘의 손을 잡고", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "맑은 하늘의 손을 잡고", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "맑은 하늘의 손을 잡고", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "맑은 하늘의 손을 잡고", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "맑은 하늘의 손을 잡고", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_11409_ServantPassive.png", + "LevelUpSkillID": [ + 1140903, + 1140905, + 1140906 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409302, + "PointName": "맑은 하늘의 손을 잡고", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Normal.png", + "LevelUpSkillID": [ + 140901 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 1409001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_BP.png", + "LevelUpSkillID": [ + 140902 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Ultra.png", + "LevelUpSkillID": [ + 140903 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 25000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 35000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 70000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 4, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_Passive.png", + "LevelUpSkillID": [ + 140904 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 13, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 1409004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_1409_Maze.png", + "LevelUpSkillID": [ + 140907 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1, + 0.5000000004656613, + 0.25000000023283064 + ], + "PointID": 1409101, + "PointName": "미소 짓는 먹구름", + "PointDesc": "히아킨과 이카의 치명타 확률이 #1[i]% 증가한다. 현재 HP가 자신의 HP 최대치의 #2[i]% 이하인 아군에게 치유 제공 시, 히아킨과 이카의 치유량이 #3[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.5000000004656613, + 1 + ], + "PointID": 1409102, + "PointName": "부드러운 뇌우", + "PointDesc": "히아킨의 효과 저항이 #1[i]% 증가한다. 전투 스킬과 필살기 발동 시 모든 아군의 디버프 효과#2[i]개 해제한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_1409_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110505, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 200, + 0.20000000018626451, + 1, + 0.010000000009313226, + 200 + ], + "PointID": 1409103, + "PointName": "잔잔해진 폭풍", + "PointDesc": "히아킨의 속도가 #1[i]보다 높을 시 히아킨과 이카의 HP 최대치가 #2[i]% 증가하고, 이후 속도가 #3[i]pt 초과할 때마다 히아킨과 이카가 제공하는 치유량이 #4[i]% 증가한다. 초과한 속도는 최대 #5[i]pt까지 계산된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2500, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409201, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 6, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409202, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 1409201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409203, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 1409201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 2, + "Name": "속도" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 9000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 1409101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 19000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409205, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 1409101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409206, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 1409102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 45000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409207, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 1409102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 3, + "Name": "속도" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 140000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 7, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 1409103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409209, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 1409208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0800000000745058, + "Name": "효과 저항" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconSpeed.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 1409210, + "PointName": "속도 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 1409209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "SpeedDelta", + "Value": 4, + "Name": "속도" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "이카", + "Icon": "SpriteOutput/ServantIconTeam/11409B.png", + "HPBase": "0", + "HPInherit": "#1", + "HPSkill": 140904, + "SpeedBase": "0", + "SpeedInherit": "0", + "SpeedSkill": 140904, + "Aggro": 100, + "Skills": { + "1140901": { + "Name": "먹구름, 저리 가!", + "Desc": "모든 적에게 이번 전투 중 히아킨과 이카 누적 치유 수치의 #1[i]%만큼 바람 속성 피해를 가하고, 누적 치유 수치의 #2[i]%를 초기화한다", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.22000000020489097, + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.26000000024214387, + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613 + ] + } + } + }, + "1140903": { + "Name": "맑은 하늘의 손을 잡고", + "Desc": "이카의 속도가 0으로 유지되고 디버프 효과에 면역되며, 행동 서열에 나타나지 않는다.\\n이카를 제외한 아군의 HP가 감소하면, 이카는 임의 목표의 턴 시작 시 또는 행동 후 자신의 HP 최대치의 #1[i]%만큼 HP를 소모하고, HP가 감소한 아군의 HP를 히아킨 HP 최대치의 #2[f1]%+#3[i]만큼 회복시킨다.\\n히아킨이 [비 온 뒤 맑음] 상태일 시 이카는 히아킨이 스킬을 발동한 후 즉시 보너스 턴을 1개 획득하고 자동으로 [먹구름, 저리 가!]를 발동하며, 이카가 특성의 치유 효과 발동 시 추가로 모든 아군의 HP를 히아킨 HP 최대치의 #4[f1]%+#5[i]만큼 회복시킨다. 이카가 스킬을 발동하면 자신의 모든 지속 효과 지속 턴 수가 1 감소한다", + "Type": null, + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 0.010000000009313226, + 10, + 0.010000000009313226, + 10 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.0400000000372529, + 0.011999999871477485, + 12, + 0.011999999871477485, + 12 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.0400000000372529, + 0.013999999733641744, + 14, + 0.013999999733641744, + 14 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.0400000000372529, + 0.015999999595806003, + 16, + 0.015999999595806003, + 16 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.0400000000372529, + 0.01799999945797026, + 18, + 0.01799999945797026, + 18 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.0400000000372529, + 0.02000000001862645, + 20, + 0.02000000001862645, + 20 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.0400000000372529, + 0.02199999988079071, + 22, + 0.02199999988079071, + 22 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.0400000000372529, + 0.02399999974295497, + 24, + 0.02399999974295497, + 24 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.0400000000372529, + 0.02599999960511923, + 26, + 0.02599999960511923, + 26 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.0400000000372529, + 0.027999999467283487, + 28, + 0.027999999467283487, + 28 + ] + } + } + }, + "1140905": { + "Name": "날개를 펼쳐, 태양을 향해", + "Desc": "소환될 시 히아킨의 에너지를 #1[i]pt 회복한다. 처음으로 소환될 시 추가로 에너지를 #2[i]pt 회복한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 15, + 30 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 15, + 30 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 15, + 30 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 15, + 30 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 15, + 30 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 15, + 30 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 15, + 30 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 15, + 30 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 15, + 30 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 15, + 30 + ] + } + } + }, + "1140906": { + "Name": "추락, 그리고 비상", + "Desc": "사라질 시 히아킨의 행동 게이지가 #1[i]% 증가한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3000000002793968 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3000000002793968 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3000000002793968 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3000000002793968 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3000000002793968 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 52.80000000074506, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5 + } + ] + }, + "1": { + "AttackBase": 73.92000000085682, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10 + } + ] + }, + "2": { + "AttackBase": 95.04000000003725, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 3 + } + ] + }, + "3": { + "AttackBase": 116.16000000014901, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 7 + } + ] + }, + "4": { + "AttackBase": 137.28000000026077, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 20 + } + ] + }, + "5": { + "AttackBase": 158.40000000037253, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 9 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110425, + "ItemNum": 35 + } + ] + }, + "6": { + "AttackBase": 179.5200000004843, + "AttackAdd": 2.6400000005960464, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 110, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 1409, + "Set4IDList": [ + 125, + 101, + 114 + ], + "Set2IDList": [ + 320, + 302, + 308 + ], + "PropertyList3": [ + "HealRatioBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "HPAddedRatio", + "WindAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "HPAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HealRatioBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "HPAddedRatio", + "SpeedDelta", + "StatusResistanceBase", + "CriticalDamageBase" + ], + "ScoreRankList": [ + 304, + 253 + ] + } + }, + "8001": { + "Name": "{NICKNAME}", + "Desc": "은하열차에 탑승한 {F#소녀}{M#소년}.\\n스텔라론이 가져온 위기를 해결하기 위해, 은하열차와의 동행을 선택한다", + "CharaInfo": { + "Camp": "은하열차", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 101, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 102, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 103, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 104, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 105, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 106, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 107, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 108, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 109, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 110, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 111, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 112, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 113, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 114, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 115, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 116, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 117, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 118, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 119, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 120, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 121, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 122, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 123, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 124, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 125, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 126, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 127, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 128, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 129, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 130, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 131, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 132, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 133, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 134, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 995, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 996, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 992, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 993, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 997, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 994, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 998, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 999, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 800101, + "Name": "만계에 떨어진 별빛", + "Desc": "필살기를 발동하여 적 처치 시 개척자는 에너지를 추가로 #1[i]pt 회복한다. 해당 효과는 공격할 때마다 1회만 발동할 수 있다", + "ParamList": [ + 10 + ] + }, + "2": { + "Id": 800102, + "Name": "가합의 인연", + "Desc": "공격 발동 후 명중한 적의 약점이 물리 속성이면 개척자 공격력 #1[i]%만큼의 HP를 회복한다", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 800103, + "Name": "앞길을 제시하는 언령", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 800104, + "Name": "파멸의 순간을 응시하는 눈", + "Desc": "약점 격파 상태의 적 공격 시 치명타 확률이 #1[i]% 증가한다", + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Id": 800105, + "Name": "남겨진 부활의 희망", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 800106, + "Name": "우주 개척의 의지", + "Desc": "개척자가 적 처치 시에도 특성을 발동한다", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800101": { + "Id": 800101, + "Name": "끝내기 안타", + "Desc": "지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800102": { + "Id": 800102, + "Name": "안식 홈런", + "Desc": "지정된 단일 적과 인접한 목표에게 개척자 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.562500000698492 + ] + } + } + }, + "800103": { + "Id": 800103, + "Name": "스타더스트의 에이스", + "Desc": "두 가지 모드 중 하나를 선택해 전력의 일격을 가한다.\\n[압승•끝내기 안타]: 지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 물리 속성 피해를 준다.\\n[압승•안식 홈런]: 지정된 단일 적에게 개척자 공격력 #2[i]%만큼의 물리 속성 피해를 주고, 인접한 목표에게도 개척자 공격력 #3[i]%만큼의 물리 속성 피해를 준다", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968, + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095, + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935, + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492, + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492, + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169, + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661, + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536, + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058, + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564, + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132, + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831, + 3.1500000001396984, + 1.890000000828877 + ] + } + } + }, + "800104": { + "Id": 800104, + "Name": "도루 견제", + "Desc": "적의 약점을 격파할 때마다 개척자의 공격력이 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "800106": { + "Id": 800106, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800107": { + "Id": 800107, + "Name": "불멸의 삼진", + "Desc": "비술 발동 후 즉시 모든 아군은 자신의 HP 최대치 #1[i]%만큼의 HP를 회복한다", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + } + } + }, + "800108": { + "Id": 800108, + "Name": "압승•끝내기 안타", + "Desc": "지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831 + ] + } + } + }, + "800109": { + "Id": 800109, + "Name": "압승•안식 홈런", + "Desc": "지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 물리 속성 피해를 주며, 인접한 목표에게 개척자 공격력 #2[i]%만큼의 물리 속성 피해를 준다", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800101 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8001001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800102 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800103, + 800108, + 800109 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800104 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8001004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Maze.png", + "LevelUpSkillID": [ + 800107 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 8001101, + "PointName": "전투 준비", + "PointDesc": "전투 시작 시 즉시 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 8001102, + "PointName": "강인", + "PointDesc": "특성의 효과는 스택마다 동시에 개척자의 방어력을 #1[i]% 증가시킨다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 8001103, + "PointName": "투지", + "PointDesc": "전투 스킬 또는 필살기 [압승•안식 홈런] 발동 시 지정된 적에게 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8001101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8001202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8001203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8001102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8001205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8001206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8001103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8001210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8001208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8001, + "Set4IDList": [ + 105, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "8002": { + "Name": "{NICKNAME}", + "Desc": "은하열차에 탑승한 {F#소녀}{M#소년}.\\n스텔라론이 가져온 위기를 해결하기 위해, 은하열차와의 동행을 선택한다", + "CharaInfo": { + "Camp": "은하열차", + "VA": { + "Chinese": "...", + "Japanese": "...", + "Korean": "...", + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [ + { + "VoiceID": 1, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 2, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 3, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 4, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 5, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 6, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 7, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 8, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 9, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 10, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 11, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 12, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 13, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 14, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 15, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 16, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 17, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 18, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": false + }, + { + "VoiceID": 101, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 102, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 103, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 104, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 105, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 106, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 107, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 108, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 109, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 110, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 111, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 112, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 113, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 114, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 115, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 116, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 117, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 118, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 119, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 120, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 121, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 122, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 123, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 124, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 125, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 126, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 127, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 128, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 129, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 130, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 131, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 132, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 133, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 134, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 995, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 996, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 992, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 993, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 997, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 994, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 998, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + }, + { + "VoiceID": 999, + "VoiceTitle": "...", + "VoiceM": "...", + "UnlockDesc": null, + "IsBattleVoice": true + } + ] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl", + "SPNeed": 120, + "BaseType": "Warrior", + "DamageType": "Physical", + "Ranks": { + "1": { + "Id": 800201, + "Name": "만계에 떨어진 별빛", + "Desc": "필살기를 발동하여 적 처치 시 개척자는 에너지를 추가로 #1[i]pt 회복한다. 해당 효과는 공격할 때마다 1회만 발동할 수 있다", + "ParamList": [ + 10 + ] + }, + "2": { + "Id": 800202, + "Name": "가합의 인연", + "Desc": "공격 발동 후 명중한 적의 약점이 물리 속성이면 개척자 공격력 #1[i]%만큼의 HP를 회복한다", + "ParamList": [ + 0.05000000004656613 + ] + }, + "3": { + "Id": 800203, + "Name": "앞길을 제시하는 언령", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 800204, + "Name": "파멸의 순간을 응시하는 눈", + "Desc": "약점 격파 상태의 적 공격 시 치명타 확률이 #1[i]% 증가한다", + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Id": 800205, + "Name": "남겨진 부활의 희망", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 800206, + "Name": "우주 개척의 의지", + "Desc": "개척자가 적 처치 시에도 특성을 발동한다", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800201": { + "Id": 800201, + "Name": "끝내기 안타", + "Desc": "지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800202": { + "Id": 800202, + "Name": "안식 홈런", + "Desc": "지정된 단일 적과 인접한 목표에게 개척자 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "BPSkill", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.6250000002328306 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6875000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7500000006984919 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8125000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.8750000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.9375000006984919 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.0156250002328306 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.093750000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.1718750011641532 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.2500000002328306 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.3125000004656613 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.375 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.4375000002328306 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.5000000004656613 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.562500000698492 + ] + } + } + }, + "800203": { + "Id": 800203, + "Name": "스타더스트의 에이스", + "Desc": "두 가지 모드 중 하나를 선택해 전력의 일격을 가한다.\\n[압승•끝내기 안타]: 지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 물리 속성 피해를 준다.\\n[압승•안식 홈런]: 지정된 단일 적에게 개척자 공격력 #2[i]%만큼의 물리 속성 피해를 주고, 인접한 목표에게도 개척자 공격력 #3[i]%만큼의 물리 속성 피해를 준다", + "Type": "Ultra", + "Tag": "Enhance", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968, + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095, + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935, + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492, + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492, + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169, + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661, + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661, + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536, + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058, + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564, + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132, + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831, + 3.1500000001396984, + 1.890000000828877 + ] + } + } + }, + "800204": { + "Id": 800204, + "Name": "도루 견제", + "Desc": "적의 약점을 격파할 때마다 개척자의 공격력이 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.11000000010244548, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.13000000012107193, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.1500000001396984, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1625000003259629, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.17499999981373549, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.1875, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.20000000018626451, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.21000000019557774, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.22000000020489097, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.2300000002142042, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "800206": { + "Id": 800206, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800207": { + "Id": 800207, + "Name": "불멸의 삼진", + "Desc": "비술 발동 후 즉시 모든 아군은 자신의 HP 최대치 #1[i]%만큼의 HP를 회복한다", + "Type": "Maze", + "Tag": "Restore", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.1500000001396984 + ] + } + } + }, + "800208": { + "Id": 800208, + "Name": "압승•끝내기 안타", + "Desc": "지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 물리 속성 피해를 준다", + "Type": "Ultra", + "Tag": "SingleAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 90, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3.1500000001396984 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3.3000000002793968 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3.450000000419095 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3.6000000005587935 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3.750000000698492 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3.937500000698492 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 4.124999999767169 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 4.312500000465661 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 4.500000000465661 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 4.65000000060536 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 4.800000000745058 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 4.9500000008847564 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 5.100000000093132 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 5.250000000232831 + ] + } + } + }, + "800209": { + "Id": 800209, + "Name": "압승•안식 홈런", + "Desc": "지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 물리 속성 피해를 주며, 인접한 목표에게 개척자 공격력 #2[i]%만큼의 물리 속성 피해를 준다", + "Type": "Ultra", + "Tag": "Blast", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 60, + 0, + 60 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.800000000745058, + 1.0800000000745058 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.890000000828877, + 1.1339999998454005 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.9800000009126961, + 1.187999999616295 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 2.0700000000651926, + 1.2420000000856817 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 2.1600000001490116, + 1.2959999998565763 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 2.2500000002328306, + 1.350000000325963 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 2.3625000005122274, + 1.4175000002142042 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.4750000000931323, + 1.4850000001024455 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.587500000372529, + 1.5525000006891787 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.700000000651926, + 1.62000000057742 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.790000000735745, + 1.6740000003483146 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.880000000819564, + 1.7280000001192093 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.970000000903383, + 1.7820000005885959 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3.0600000000558794, + 1.8360000003594905 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3.1500000001396984, + 1.890000000828877 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Normal.png", + "LevelUpSkillID": [ + 800201 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8002001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_BP.png", + "LevelUpSkillID": [ + 800202 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Ultra.png", + "LevelUpSkillID": [ + 800203, + 800208, + 800209 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_Passive.png", + "LevelUpSkillID": [ + 800204 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8002004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8001_Maze.png", + "LevelUpSkillID": [ + 800207 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 15 + ], + "PointID": 8002101, + "PointName": "전투 준비", + "PointDesc": "전투 시작 시 즉시 에너지를 #1[i]pt 회복한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.10000000009313226 + ], + "PointID": 8002102, + "PointName": "강인", + "PointDesc": "특성의 효과는 스택마다 동시에 개척자의 방어력을 #1[i]% 증가시킨다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8001_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.25000000023283064 + ], + "PointID": 8002103, + "PointName": "투지", + "PointDesc": "전투 스킬 또는 필살기 [압승•안식 홈런] 발동 시 지정된 적에게 가하는 피해가 #1[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002201, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002202, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8002101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002203, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8002202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002204, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8002203 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002205, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8002102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8002205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002207, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8002206 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002208, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8002103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8002210, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8002208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 84.48000000044703, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 62.700000000651926, + "DefenceAdd": 3.1349999997764826, + "HPBase": 163.6800000006333, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 118.27200000011362, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 87.78000000072643, + "DefenceAdd": 3.1349999997764826, + "HPBase": 229.15200000000186, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 152.0639999997802, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 112.86000000080094, + "DefenceAdd": 3.1349999997764826, + "HPBase": 294.62400000030175, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 185.85600000037812, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 137.94000000087544, + "DefenceAdd": 3.1349999997764826, + "HPBase": 360.0959999996703, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 219.6480000000447, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 163.02000000001863, + "DefenceAdd": 3.1349999997764826, + "HPBase": 425.5679999999702, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 253.44000000040978, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 188.10000000009313, + "DefenceAdd": 3.1349999997764826, + "HPBase": 491.04000000003725, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 287.23200000007637, + "AttackAdd": 4.2239999999292195, + "DefenceBase": 213.18000000016764, + "DefenceAdd": 3.1349999997764826, + "HPBase": 556.5120000003371, + "HPAdd": 8.183999999891967, + "SpeedBase": 100, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 125, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8002, + "Set4IDList": [ + 105, + 122, + 102 + ], + "Set2IDList": [ + 309, + 301, + 306 + ], + "PropertyList3": [ + "CriticalChanceBase", + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "PhysicalAddedRatio" + ], + "PropertyList6": [ + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalChanceBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "PhysicalAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "AttackAddedRatio" + } + ], + "SubAffixPropertyList": [ + "CriticalChanceBase", + "CriticalDamageBase", + "AttackAddedRatio", + "SpeedDelta" + ], + "ScoreRankList": [ + 346, + 287 + ] + } + }, + "8003": { + "Name": "{NICKNAME}", + "Desc": "은하열차에 탑승한 {F#소녀}{M#소년}.\\n스텔라론이 가져온 위기를 해결하기 위해, 은하열차와의 동행을 선택한다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy2", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 800301, + "Name": "대지의 울부짖음", + "Desc": "일반 공격 발동 시 추가로 개척자 방어력 #1[i]%만큼의 화염 속성 피해를 가한다. 일반 공격 강화 발동 시 추가로 개척자 방어력 #2[i]%만큼의 화염 속성 피해를 가한다", + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Id": 800302, + "Name": "옛 한철의 굳건함", + "Desc": "특성 발동 시 모든 아군에게 제공한 실드가 개척자 방어력 #1[i]%+#2[i]만큼의 피해를 추가로 상쇄할 수 있다", + "ParamList": [ + 0.02000000001862645, + 27 + ] + }, + "3": { + "Id": 800303, + "Name": "미래를 축조하는 청사진", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 800304, + "Name": "문명에 머무는 맹세", + "Desc": "전투 시작 시 [불타는 의지]를 즉시 #1[i]스택 획득한다", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 800305, + "Name": "불을 지필 용기", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 800306, + "Name": "영원토록 굳건한 성벽", + "Desc": "일반 공격 강화 혹은 필살기 발동 후 개척자의 방어력이 #1[i]% 증가한다. 최대 중첩수: #2[i]스택", + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + }, + "Skills": { + "800301": { + "Id": 800301, + "Name": "얼음을 관통하는 빛", + "Desc": "지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 화염 속성 피해를 주며, [불타는 의지]를 1스택 중첩한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800302": { + "Id": 800302, + "Name": "타오르는 불멸의 앰버", + "Desc": "전투 스킬 발동 후 개척자가 받는 피해가 #1[i]% 감소하고 [불타는 의지]를 1스택 중첩한다. #2[i]%기본 확률로 모든 적이 도발 상태에 빠진다. 지속 시간: #3[i]턴", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.41000000038184226, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4300000004004687, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4625000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.47500000009313226, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4875000002793968, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5100000004749745, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.530000000493601, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5400000005029142, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5500000005122274, + 1, + 1 + ] + } + } + }, + "800303": { + "Id": 800303, + "Name": "임전무퇴 화염의 랜스", + "Desc": "모든 적에게 개척자 공격력 #1[i]%+방어력 #2[i]%만큼의 화염 속성 피해를 준다. 다음 일반 공격 발동 시 자동으로 강화를 획득하며 [불타는 의지]를 소모하지 않는다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 1.8750000004656613 + ] + } + } + }, + "800304": { + "Id": 800304, + "Name": "축성가의 유물", + "Desc": "피격될 때마다 [불타는 의지]를 1스택 중첩한다. 최대 중첩수: #3[i]스택\\n[불타는 의지]가 4스택 이상일 경우 일반 공격이 강화되며, 지정된 단일 적 및 인접한 목표에게 피해를 준다.\\n개척자가 일반 공격, 전투 스킬, 필살기 발동 후 모든 아군에게 개척자 방어력 #1[f1]%+#4[i]만큼의 피해를 상쇄할 수 있는 실드를 제공한다. 지속 시간: #2[i]턴", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 2, + 8, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04250000021420419, + 2, + 8, + 32 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04499999969266355, + 2, + 8, + 41 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04749999986961484, + 2, + 8, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.05000000004656613, + 2, + 8, + 56 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.05199999990873039, + 2, + 8, + 62 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.05399999977089465, + 2, + 8, + 66.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.055999999633058906, + 2, + 8, + 71 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.057999999495223165, + 2, + 8, + 75.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.060000000055879354, + 2, + 8, + 80 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.06199999991804361, + 2, + 8, + 84.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.06399999978020787, + 2, + 8, + 89 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.06599999964237213, + 2, + 8, + 93.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.06799999950453639, + 2, + 8, + 98 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.07000000006519258, + 2, + 8, + 102.50000000046566 + ] + } + } + }, + "800306": { + "Id": 800306, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800307": { + "Id": 800307, + "Name": "수호자의 부름", + "Desc": "비술 발동 후 다음 전투 시작 시 자신에게 개척자 방어력 #1[i]%+#2[i]만큼의 피해를 상쇄할 수 있는 실드를 제공한다. 지속 시간: #3[i]턴", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 384, + 1 + ] + } + } + }, + "800308": { + "Id": 800308, + "Name": "얼음을 관통하는 빛", + "Desc": "[불타는 의지]를 4스택 소모하고 일반 공격을 강화한다. 지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 화염 속성 피해를 주며, 인접한 목표에게도 개척자 공격력 #2[i]%만큼의 화염 속성 피해를 준다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800301, + 800308 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8003001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800302 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800303 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800304 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8003004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Maze.png", + "LevelUpSkillID": [ + 800307 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 0.1500000001396984, + 1 + ], + "PointID": 8003101, + "PointName": "약자를 돕는 강자", + "PointDesc": "전투 스킬 발동 후 모든 아군이 받는 피해가 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 8003201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8003102, + "PointName": "죽음 앞의 생", + "PointDesc": "개척자가 일반 공격 강화를 발동하면 자신 HP 최대치의 #1[i]%만큼의 HP를 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 8003201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.1500000001396984 + ], + "PointID": 8003103, + "PointName": "생각보다 행동", + "PointDesc": "턴 시작 시 개척자가 실드의 가호를 지닌 경우, 행동이 끝날 때까지 공격력이 #2[i]% 증가하고 에너지를 #1[i]pt 회복한다. 행동 종료까지 지속된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003201, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8003101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003203, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8003202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003205, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8003102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003206, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8003205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003207, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8003103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003209, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8003208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8003210, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8003208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8003, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 302 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 278, + 215 + ] + } + }, + "8004": { + "Name": "{NICKNAME}", + "Desc": "은하열차에 탑승한 {F#소녀}{M#소년}.\\n스텔라론이 가져온 위기를 해결하기 위해, 은하열차와의 동행을 선택한다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl2", + "SPNeed": 120, + "BaseType": "Knight", + "DamageType": "Fire", + "Ranks": { + "1": { + "Id": 800401, + "Name": "대지의 울부짖음", + "Desc": "일반 공격 발동 시 추가로 개척자 방어력 #1[i]%만큼의 화염 속성 피해를 가한다. 일반 공격 강화 발동 시 추가로 개척자 방어력 #2[i]%만큼의 화염 속성 피해를 가한다", + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613 + ] + }, + "2": { + "Id": 800402, + "Name": "옛 한철의 굳건함", + "Desc": "특성 발동 시 모든 아군에게 제공한 실드가 개척자 방어력 #1[i]%+#2[i]만큼의 피해를 추가로 상쇄할 수 있다", + "ParamList": [ + 0.02000000001862645, + 27 + ] + }, + "3": { + "Id": 800403, + "Name": "미래를 축조하는 청사진", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 800404, + "Name": "문명에 머무는 맹세", + "Desc": "전투 시작 시 [불타는 의지]를 즉시 #1[i]스택 획득한다", + "ParamList": [ + 4 + ] + }, + "5": { + "Id": 800405, + "Name": "불을 지필 용기", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 800406, + "Name": "영원토록 굳건한 성벽", + "Desc": "일반 공격 강화 혹은 필살기 발동 후 개척자의 방어력이 #1[i]% 증가한다. 최대 중첩수: #2[i]스택", + "ParamList": [ + 0.10000000009313226, + 3 + ] + } + }, + "Skills": { + "800401": { + "Id": 800401, + "Name": "얼음을 관통하는 빛", + "Desc": "지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 화염 속성 피해를 주며, [불타는 의지]를 1스택 중첩한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800402": { + "Id": 800402, + "Name": "타오르는 불멸의 앰버", + "Desc": "전투 스킬 발동 후 개척자가 받는 피해가 #1[i]% 감소하고 [불타는 의지]를 1스택 중첩한다. #2[i]%기본 확률로 모든 적이 도발 상태에 빠진다. 지속 시간: #3[i]턴", + "Type": "BPSkill", + "Tag": "Defence", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": 20, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.40000000037252903, + 1, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.41000000038184226, + 1, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.4200000003911555, + 1, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.4300000004004687, + 1, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.44000000040978193, + 1, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 1, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4625000006053597, + 1, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.47500000009313226, + 1, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4875000002793968, + 1, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 1, + 1 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5100000004749745, + 1, + 1 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5200000004842877, + 1, + 1 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.530000000493601, + 1, + 1 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.5400000005029142, + 1, + 1 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.5500000005122274, + 1, + 1 + ] + } + } + }, + "800403": { + "Id": 800403, + "Name": "임전무퇴 화염의 랜스", + "Desc": "모든 적에게 개척자 공격력 #1[i]%+방어력 #2[i]%만큼의 화염 속성 피해를 준다. 다음 일반 공격 발동 시 자동으로 강화를 획득하며 [불타는 의지]를 소모하지 않는다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": 30, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613, + 0.7500000006984919 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5500000005122274, + 0.8250000004190952 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.6000000005587935, + 0.9000000008381903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.6500000006053597, + 0.9750000005587935 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.7000000006519258, + 1.0500000000465661 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.7500000006984919, + 1.1249999997671694 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.8125000009313226, + 1.2187500004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.8750000004656613, + 1.3125000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.9375000006984919, + 1.4062500004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1, + 1.5000000004656613 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 1.0500000000465661, + 1.5750000001862645 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 1.1000000000931323, + 1.6500000006053597 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 1.1500000001396984, + 1.725000000325963 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 1.2000000001862645, + 1.800000000745058 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 1.2500000002328306, + 1.8750000004656613 + ] + } + } + }, + "800404": { + "Id": 800404, + "Name": "축성가의 유물", + "Desc": "피격될 때마다 [불타는 의지]를 1스택 중첩한다. 최대 중첩수: #3[i]스택\\n[불타는 의지]가 4스택 이상일 경우 일반 공격이 강화되며, 지정된 단일 적 및 인접한 목표에게 피해를 준다.\\n개척자가 일반 공격, 전투 스킬, 필살기 발동 후 모든 아군에게 개척자 방어력 #1[f1]%+#4[i]만큼의 피해를 상쇄할 수 있는 실드를 제공한다. 지속 시간: #2[i]턴", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.0400000000372529, + 2, + 8, + 20 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.04250000021420419, + 2, + 8, + 32 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.04499999969266355, + 2, + 8, + 41 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.04749999986961484, + 2, + 8, + 50 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.05000000004656613, + 2, + 8, + 56 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.05199999990873039, + 2, + 8, + 62 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.05399999977089465, + 2, + 8, + 66.50000000046566 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.055999999633058906, + 2, + 8, + 71 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.057999999495223165, + 2, + 8, + 75.50000000046566 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.060000000055879354, + 2, + 8, + 80 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.06199999991804361, + 2, + 8, + 84.50000000046566 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.06399999978020787, + 2, + 8, + 89 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.06599999964237213, + 2, + 8, + 93.50000000046566 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.06799999950453639, + 2, + 8, + 98 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.07000000006519258, + 2, + 8, + 102.50000000046566 + ] + } + } + }, + "800406": { + "Id": 800406, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800407": { + "Id": 800407, + "Name": "수호자의 부름", + "Desc": "비술 발동 후 다음 전투 시작 시 자신에게 개척자 방어력 #1[i]%+#2[i]만큼의 피해를 상쇄할 수 있는 실드를 제공한다. 지속 시간: #3[i]턴", + "Type": "Maze", + "Tag": "Defence", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 384, + 1 + ] + } + } + }, + "800408": { + "Id": 800408, + "Name": "얼음을 관통하는 빛", + "Desc": "[불타는 의지]를 4스택 소모하고 일반 공격을 강화한다. 지정된 단일 적에게 개척자 공격력 #1[i]%만큼의 화염 속성 피해를 주며, 인접한 목표에게도 개척자 공격력 #2[i]%만큼의 화염 속성 피해를 준다", + "Type": "Normal", + "Tag": "Blast", + "SPBase": 30, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 60, + 0, + 30 + ], + "SkillComboValueDelta": 10, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.9900000009220093, + 0.3959999999497086 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.0800000000745058, + 0.43200000026263297 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.1700000001583248, + 0.4679999998770654 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.2600000002421439, + 0.5040000001899898 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.350000000325963, + 0.5400000005029142 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.4625000006053597, + 0.5850000001955777 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.5750000001862645, + 0.6300000005867332 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.6875000004656613, + 0.6750000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.800000000745058, + 0.7200000006705523 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Normal.png", + "LevelUpSkillID": [ + 800401, + 800408 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8004001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_BP.png", + "LevelUpSkillID": [ + 800402 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Ultra.png", + "LevelUpSkillID": [ + 800403 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_Passive.png", + "LevelUpSkillID": [ + 800404 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8004004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8003_Maze.png", + "LevelUpSkillID": [ + 800407 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 10, + 0.1500000001396984, + 1 + ], + "PointID": 8004101, + "PointName": "약자를 돕는 강자", + "PointDesc": "전투 스킬 발동 후 모든 아군이 받는 피해가 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [ + 8004201 + ], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8004102, + "PointName": "죽음 앞의 생", + "PointDesc": "개척자가 일반 공격 강화를 발동하면 자신 HP 최대치의 #1[i]%만큼의 HP를 회복한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [ + 8004201 + ], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8003_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110501, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 5, + 0.1500000001396984 + ], + "PointID": 8004103, + "PointName": "생각보다 행동", + "PointDesc": "턴 시작 시 개척자가 실드의 가호를 지닌 경우, 행동이 끝날 때까지 공격력이 #2[i]% 증가하고 에너지를 #1[i]pt 회복한다. 행동 종료까지 지속된다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004201, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8004101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004203, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8004202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.05000000004656613, + "Name": "방어력" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004204, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0400000000372529, + "Name": "HP" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004205, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8004102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004206, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8004205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004207, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.07499999972060323, + "Name": "방어력" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004208, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8004103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004209, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8004208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0800000000745058, + "Name": "공격력" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconDefence.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8004210, + "PointName": "방어 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8004208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "DefenceAddedRatio", + "Value": 0.10000000009313226, + "Name": "방어력" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 81.84000000078231, + "AttackAdd": 4.091999999945983, + "DefenceBase": 82.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 168.96000000089407, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 114.57600000011735, + "AttackAdd": 4.091999999945983, + "DefenceBase": 115.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 236.54400000022724, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 147.31200000015087, + "AttackAdd": 4.091999999945983, + "DefenceBase": 148.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 304.1279999995604, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 180.0479999994859, + "AttackAdd": 4.091999999945983, + "DefenceBase": 181.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 371.7120000005234, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 212.78400000045076, + "AttackAdd": 4.091999999945983, + "DefenceBase": 214.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 439.2959999998566, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 245.5200000004843, + "AttackAdd": 4.091999999945983, + "DefenceBase": 247.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 506.88000000081956, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 278.2559999998193, + "AttackAdd": 4.091999999945983, + "DefenceBase": 280.50000000046566, + "DefenceAdd": 4.124999999767169, + "HPBase": 574.4640000001527, + "HPAdd": 8.447999999858439, + "SpeedBase": 95, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 150, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8004, + "Set4IDList": [ + 103, + 106, + 102 + ], + "Set2IDList": [ + 304, + 310, + 302 + ], + "PropertyList3": [ + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio" + ], + "PropertyList6": [ + "DefenceAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "DefenceAddedRatio" + } + ], + "SubAffixPropertyList": [ + "DefenceAddedRatio", + "SpeedDelta", + "StatusResistanceBase" + ], + "ScoreRankList": [ + 278, + 215 + ] + } + }, + "8005": { + "Name": "{NICKNAME}", + "Desc": "은하열차에 탑승한 {F#소녀}{M#소년}.\\n스텔라론이 가져온 위기를 해결하기 위해, 은하열차와의 동행을 선택한다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy3", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 800501, + "Name": "최고의 관중석", + "Desc": "처음으로 전투 스킬을 발동한 후 즉시 전투 스킬 포인트를 #1[i]pt 회복한다", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 800502, + "Name": "탈옥의 레인보우 스텝", + "Desc": "전투 시작 시 개척자의 에너지 회복효율이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "Id": 800503, + "Name": "쉼표의 요양원", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 800504, + "Name": "비둘기를 감춘 모자", + "Desc": "개척자가 필드에 있을 시, 자신을 제외한 동료의 격파 특수효과를 개척자의 격파 특수효과의 #1[i]%만큼 증가시킨다", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 800505, + "Name": "오래된 리듬을 간직한 시", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 800506, + "Name": "내일은 스포트라이트 아래서 휴식을", + "Desc": "전투 스킬의 피해 횟수가 추가로 #1[i]회 증가한다", + "ParamList": [ + 2 + ] + } + }, + "Skills": { + "800501": { + "Id": 800501, + "Name": "스윙 댄스 에티켓", + "Desc": "지정된 단일 적에게 개척자 공격력의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800502": { + "Id": 800502, + "Name": "인터미션에 내리는 비", + "Desc": "지정된 단일 적에게 개척자 공격력의 #1[i]%만큼 허수 속성 피해를 가하며, 추가로 피해를 4회 가한다. 피해를 가할 때마다 랜덤 단일 적에게 개척자 공격력의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 2 + ] + } + } + }, + "800503": { + "Id": 800503, + "Name": "떠들썩한 풋라이트 퍼레이드", + "Desc": "모든 아군에게 [댄스 파트너] 효과를 부여한다. 지속 시간: #1[i]턴. 개척자의 턴이 시작될 때마다 지속 턴 수가 1 감소한다. [댄스 파트너]를 보유한 아군의 격파 특수효과가 #3[i]% 증가하고, 약점 격파 상태의 적을 공격하면 이번 공격의 강인성 감소 수치가 1회의 슈퍼 격파 피해로 전환된다", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 1, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 1, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 1, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 1, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 0.375 + ] + } + } + }, + "800504": { + "Id": 800504, + "Name": "올 채널 에어리얼 댄스", + "Desc": "적의 약점이 격파되면 개척자는 즉시 에너지를 #1[f1]pt 회복한다", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "800506": { + "Id": 800506, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800507": { + "Id": 800507, + "Name": "원맨 밴드, 출격!", + "Desc": "비술 발동 후 다음 전투 시작 시 모든 아군의 격파 특수효과가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800501 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8005001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800502 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800503 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800504 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8005004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Maze.png", + "LevelUpSkillID": [ + 800507 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.40000000037252903, + 0.5000000004656613, + 0.6000000005587935 + ], + "PointID": 8005101, + "PointName": "나와 함께 춤을", + "PointDesc": "필드 위 적이 5기 이상/4기/3기/2기/1기일 때, [댄스 파트너] 효과로 발동되는 슈퍼 격파 피해#1[i]%/#2[i]%/#3[i]%/#4[i]%/#5[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 8005102, + "PointName": "흐름에 몸을 맡기고", + "PointDesc": "전투 스킬 발동 시, 첫 번째 피해의 강인성 감소 수치가 추가로 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 8005103, + "PointName": "극장의 모자", + "PointDesc": "아군이 약점 격파를 가한 후 추가로 적의 행동 게이지가 #1[i]% 감소한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005201, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005202, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8005101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005203, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8005202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005205, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8005102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005206, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8005205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005207, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8005201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8005103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005209, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8005208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8005210, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8005208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "격파 특수효과" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 4.62000000057742, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 129.36000000033528, + "DefenceAdd": 4.62000000057742, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 166.32000000029802, + "DefenceAdd": 4.62000000057742, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 203.28000000026077, + "DefenceAdd": 4.62000000057742, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 240.24000000022352, + "DefenceAdd": 4.62000000057742, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 277.20000000018626, + "DefenceAdd": 4.62000000057742, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 314.160000000149, + "DefenceAdd": 4.62000000057742, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8005, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 316, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 243, + 191 + ] + } + }, + "8006": { + "Name": "{NICKNAME}", + "Desc": "은하열차에 탑승한 {F#소녀}{M#소년}.\\n스텔라론이 가져온 위기를 해결하기 위해, 은하열차와의 동행을 선택한다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl3", + "SPNeed": 140, + "BaseType": "Shaman", + "DamageType": "Imaginary", + "Ranks": { + "1": { + "Id": 800601, + "Name": "최고의 관중석", + "Desc": "처음으로 전투 스킬을 발동한 후 즉시 전투 스킬 포인트를 #1[i]pt 회복한다", + "ParamList": [ + 1 + ] + }, + "2": { + "Id": 800602, + "Name": "탈옥의 레인보우 스텝", + "Desc": "전투 시작 시 개척자의 에너지 회복효율이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "Id": 800603, + "Name": "쉼표의 요양원", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15", + "ParamList": [] + }, + "4": { + "Id": 800604, + "Name": "비둘기를 감춘 모자", + "Desc": "개척자가 필드에 있을 시, 자신을 제외한 동료의 격파 특수효과를 개척자의 격파 특수효과의 #1[i]%만큼 증가시킨다", + "ParamList": [ + 0.1500000001396984 + ] + }, + "5": { + "Id": 800605, + "Name": "오래된 리듬을 간직한 시", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 800606, + "Name": "내일은 스포트라이트 아래서 휴식을", + "Desc": "전투 스킬의 피해 횟수가 추가로 #1[i]회 증가한다", + "ParamList": [ + 2 + ] + } + }, + "Skills": { + "800601": { + "Id": 800601, + "Name": "스윙 댄스 에티켓", + "Desc": "지정된 단일 적에게 개척자 공격력의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800602": { + "Id": 800602, + "Name": "인터미션에 내리는 비", + "Desc": "지정된 단일 적에게 개척자 공격력의 #1[i]%만큼 허수 속성 피해를 가하며, 추가로 피해를 4회 가한다. 피해를 가할 때마다 랜덤 단일 적에게 개척자 공격력의 #1[i]%만큼 허수 속성 피해를 가한다", + "Type": "BPSkill", + "Tag": "Bounce", + "SPBase": 6, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 30 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064, + 2 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.27499999990686774, + 2 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.32499999995343387, + 2 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.3500000003259629, + 2 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.375, + 2 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4062500004656613, + 2 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43750000023283064, + 2 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.46875000069849193, + 2 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613, + 2 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.5250000001396984, + 2 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.5500000005122274, + 2 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.5750000001862645, + 2 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.6000000005587935, + 2 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.6250000002328306, + 2 + ] + } + } + }, + "800603": { + "Id": 800603, + "Name": "떠들썩한 풋라이트 퍼레이드", + "Desc": "모든 아군에게 [댄스 파트너] 효과를 부여한다. 지속 시간: #1[i]턴. 개척자의 턴이 시작될 때마다 지속 턴 수가 1 감소한다. [댄스 파트너]를 보유한 아군의 격파 특수효과가 #3[i]% 증가하고, 약점 격파 상태의 적을 공격하면 이번 공격의 강인성 감소 수치가 1회의 슈퍼 격파 피해로 전환된다", + "Type": "Ultra", + "Tag": "Support", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 3, + 1, + 0.1500000001396984 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 3, + 1, + 0.16499999980442226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 3, + 1, + 0.18000000016763806 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 3, + 1, + 0.19499999983236194 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 3, + 1, + 0.21000000019557774 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 3, + 1, + 0.2249999998603016 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 3, + 1, + 0.24375000083819032 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 3, + 1, + 0.26250000041909516 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 3, + 1, + 0.28125000069849193 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 3, + 1, + 0.3000000002793968 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 3, + 1, + 0.31499999994412065 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 3, + 1, + 0.33000000030733645 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 3, + 1, + 0.3449999999720603 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 3, + 1, + 0.3600000003352761 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 1, + 0.375 + ] + } + } + }, + "800604": { + "Id": 800604, + "Name": "올 채널 에어리얼 댄스", + "Desc": "적의 약점이 격파되면 개척자는 즉시 에너지를 #1[f1]pt 회복한다", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 5 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 5.500000000465661 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 6 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 6.500000000465661 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 7 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 7.500000000465661 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 8.12499999976717 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 8.750000000698492 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 9.375 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 10 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 10.500000000465661 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 11 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 11.500000000465661 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 12 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 12.500000000465661 + ] + } + } + }, + "800606": { + "Id": 800606, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800607": { + "Id": 800607, + "Name": "원맨 밴드, 출격!", + "Desc": "비술 발동 후 다음 전투 시작 시 모든 아군의 격파 특수효과가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Type": "Maze", + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Normal.png", + "LevelUpSkillID": [ + 800601 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8006001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_BP.png", + "LevelUpSkillID": [ + 800602 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Ultra.png", + "LevelUpSkillID": [ + 800603 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 24000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_Passive.png", + "LevelUpSkillID": [ + 800604 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 240000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 11, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8006004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8005_Maze.png", + "LevelUpSkillID": [ + 800607 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 0.40000000037252903, + 0.5000000004656613, + 0.6000000005587935 + ], + "PointID": 8006101, + "PointName": "나와 함께 춤을", + "PointDesc": "필드 위 적이 5기 이상/4기/3기/2기/1기일 때, [댄스 파트너] 효과로 발동되는 슈퍼 격파 피해#1[i]%/#2[i]%/#3[i]%/#4[i]%/#5[i]% 증가한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 1 + ], + "PointID": 8006102, + "PointName": "흐름에 몸을 맡기고", + "PointDesc": "전투 스킬 발동 시, 첫 번째 피해의 강인성 감소 수치가 추가로 #1[i]% 증가한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8005_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110504, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968 + ], + "PointID": 8006103, + "PointName": "극장의 모자", + "PointDesc": "아군이 약점 격파를 가한 후 추가로 적의 행동 게이지가 #1[i]% 감소한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006201, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006202, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8006101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.031999999890103936, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006203, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8006202 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.05299999983981252, + "Name": "격파 특수효과" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006204, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.0400000000372529, + "Name": "효과 저항" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 3, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006205, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8006102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006206, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8006205 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.04799999948590994, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006207, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8006201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.0800000000745058, + "Name": "격파 특수효과" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconStatusResistance.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006208, + "PointName": "효과 저항 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8006103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "StatusResistanceBase", + "Value": 0.060000000055879354, + "Name": "효과 저항" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconImaginaryAddedRatio.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006209, + "PointName": "피해 강화•허수", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8006208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "ImaginaryAddedRatio", + "Value": 0.06399999978020787, + "Name": "허수 속성 피해 증가" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconBreakUp.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8006210, + "PointName": "격파 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8006208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "BreakDamageAddedRatioBase", + "Value": 0.10699999961070716, + "Name": "격파 특수효과" + } + ] + } + } + }, + "Enhanced": {}, + "Memosprite": {}, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 60.72000000067055, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 92.40000000037253, + "DefenceAdd": 4.62000000057742, + "HPBase": 147.8400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 85.00799999944866, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 129.36000000033528, + "DefenceAdd": 4.62000000057742, + "HPBase": 206.97600000048988, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 109.29599999985658, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 166.32000000029802, + "DefenceAdd": 4.62000000057742, + "HPBase": 266.1119999999646, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 133.5840000002645, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 203.28000000026077, + "DefenceAdd": 4.62000000057742, + "HPBase": 325.2479999996722, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 157.87200000067241, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 240.24000000022352, + "DefenceAdd": 4.62000000057742, + "HPBase": 384.38400000007823, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 182.160000000149, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 277.20000000018626, + "DefenceAdd": 4.62000000057742, + "HPBase": 443.5200000004843, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 206.44799999985844, + "AttackAdd": 3.0359999996144325, + "DefenceBase": 314.160000000149, + "DefenceAdd": 4.62000000057742, + "HPBase": 502.65600000019185, + "HPAdd": 7.39200000022538, + "SpeedBase": 105, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8006, + "Set4IDList": [ + 118, + 111, + 114 + ], + "Set2IDList": [ + 307, + 316, + 302 + ], + "PropertyList3": [ + "HPAddedRatio", + "DefenceAddedRatio" + ], + "PropertyList4": [ + "SpeedDelta" + ], + "PropertyList5": [ + "DefenceAddedRatio", + "HPAddedRatio" + ], + "PropertyList6": [ + "BreakDamageAddedRatioBase" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "HPAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "DefenceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "BreakDamageAddedRatioBase" + } + ], + "SubAffixPropertyList": [ + "BreakDamageAddedRatioBase", + "SpeedDelta" + ], + "ScoreRankList": [ + 243, + 191 + ] + } + }, + "8007": { + "Name": "{NICKNAME}", + "Desc": "은하열차에 탑승한 {F#소녀}{M#소년}.\\n스텔라론이 가져온 위기를 해결하기 위해, 은하열차와의 동행을 선택한다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playerboy4", + "SPNeed": 160, + "BaseType": "Memory", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 800701, + "Name": "현재의 서술자", + "Desc": "[미미의 응원]을 보유한 아군의 치명타 확률이 #1[i]% 증가한다. 아군이 [미미의 응원] 보유 시 해당 목표의 기억 정령/기억 마스터에게도 [미미의 응원] 효과가 적용되며, 해당 효과는 중첩되지 않는다", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 800702, + "Name": "과거의 습득자", + "Desc": "미미를 제외한 아군 기억 정령이 행동 시 개척자가 에너지를 #1[i]pt 회복한다. 해당 효과는 턴마다 최대 #2[i]회 발동하며, 개척자의 턴 시작 시 발동 가능 횟수가 초기화된다", + "ParamList": [ + 8, + 1 + ] + }, + "3": { + "Id": 800703, + "Name": "미래의 영창자", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15. 기억 정령 특성 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 800704, + "Name": "뮤즈의 새 댄스 파트너", + "Desc": "에너지 최대치가 0인 아군이 직접 스킬을 발동하면 미미도 충전을 #1[i]% 획득하고, 해당 목표가 [미미의 응원]을 통해 가하는 확정 피해 배율이 추가로 #2[i]% 증가한다", + "ParamList": [ + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "5": { + "Id": 800705, + "Name": "시편의 재봉사", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10. 기억 정령 스킬 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 800706, + "Name": "계시의 전달자", + "Desc": "필살기의 치명타 확률이 100%로 고정된다", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800701": { + "Id": 800701, + "Name": "나한테 맡겨!", + "Desc": "지정된 단일 적에게 개척자 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800702": { + "Id": 800702, + "Name": "너로 정했다!", + "Desc": "기억 정령 미미를 소환한다. 미미가 필드에 있을 시 미미의 HP를 미미 HP 최대치의 #1[i]%만큼 회복하고, 미미가 충전을 #2[i]% 획득한다", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919, + 0.10000000009313226 + ] + } + } + }, + "800703": { + "Id": 800703, + "Name": "가자, 미미!", + "Desc": "기억 정령 미미를 소환한다. 미미가 충전을 #2[i]% 획득하고 모든 적에게 미미 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.40000000037252903 + ] + } + } + }, + "800704": { + "Id": 800704, + "Name": "만능 파트너", + "Desc": "기억 정령 미미의 기본 속도는 #1[i]pt이며, 기본 HP 최대치는 개척자 HP 최대치의 #2[i]%+#4[i]이다. 모든 아군이 에너지를 #3[i]pt 누적 회복할 때마다 미미가 충전을 1% 획득한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 130, + 0.5000000004656613, + 10, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 130, + 0.530000000493601, + 10, + 424 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 130, + 0.5600000005215406, + 10, + 448 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 130, + 0.5900000005494803, + 10, + 472 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 130, + 0.62000000057742, + 10, + 496 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 130, + 0.6500000006053597, + 10, + 520 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 130, + 0.6875000004656613, + 10, + 550 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 130, + 0.7250000003259629, + 10, + 580 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 130, + 0.7625000008847564, + 10, + 610 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 130, + 0.8000000007450581, + 10, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 130, + 0.8300000007729977, + 10, + 664 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 130, + 0.8600000008009374, + 10, + 688 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 130, + 0.8900000008288771, + 10, + 712 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 130, + 0.9200000008568168, + 10, + 736 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 130, + 0.9500000008847564, + 10, + 760 + ] + } + } + }, + "800706": { + "Id": 800706, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800707": { + "Id": 800707, + "Name": "되살아난 기억", + "Desc": "비술 사용 후 #1[i]초 동안 지속되는 특수 영역을 만든다. 특수 영역 내에 있는 적은 시간 정지 상태에 빠진다. 시간 정지 상태의 적은 움직일 수 없다.\\n시간 정지 상태의 적과 전투에 진입하면 모든 적의 행동 게이지가 #2[i]% 감소하고, 모든 적에게 개척자 공격력의 #3[i]%만큼 얼음 속성 피해를 가한다.\\n아군이 만든 영역 효과는 최대 1개만 존재할 수 있다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 1 + ] + } + } + }, + "800709": { + "Id": 800709, + "Name": "너로 정했다!", + "Desc": null, + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + }, + "2": { + "Level": 2, + "ParamList": [] + }, + "3": { + "Level": 3, + "ParamList": [] + }, + "4": { + "Level": 4, + "ParamList": [] + }, + "5": { + "Level": 5, + "ParamList": [] + }, + "6": { + "Level": 6, + "ParamList": [] + }, + "7": { + "Level": 7, + "ParamList": [] + }, + "8": { + "Level": 8, + "ParamList": [] + }, + "9": { + "Level": 9, + "ParamList": [] + }, + "10": { + "Level": 10, + "ParamList": [] + }, + "11": { + "Level": 11, + "ParamList": [] + }, + "12": { + "Level": 12, + "ParamList": [] + }, + "13": { + "Level": 13, + "ParamList": [] + }, + "14": { + "Level": 14, + "ParamList": [] + }, + "15": { + "Level": 15, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800701 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800702, + 800709 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800703 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800704 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8007004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Maze.png", + "LevelUpSkillID": [ + 800707 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.40000000037252903 + ], + "PointID": 8007101, + "PointName": "추념의 지팡이", + "PointDesc": "전투 시작 시 개척자의 행동 게이지가 #1[i]% 증가한다. 미미를 처음 소환할 시 미미는 충전을 #2[i]% 획득한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8007102, + "PointName": "자그마한 서사시", + "PointDesc": "미미가 [나쁜 녀석! 성가셔!] 발동 시 즉시 충전을 #1[i]% 획득한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 100, + 10, + 0.02000000001862645, + 0.20000000018626451 + ], + "PointID": 8007103, + "PointName": "자석과 사슬", + "PointDesc": "[미미의 응원] 효과를 보유한 아군의 에너지 최대치가 #1[i]pt보다 높을 경우, #2[i]pt를 초과할 때마다 [미미의 응원]으로 가하는 확정 피해 배율이 추가로 #3[f1]% 증가하고, 최대 #4[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007201, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8007201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007203, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8007201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007204, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8007101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 15200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007205, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8007101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8007102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007207, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8007102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007208, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8007103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8007208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8007210, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8007209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8007302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "미미", + "Icon": "SpriteOutput/ServantIconTeam/18007B.png", + "HPBase": "#4", + "HPInherit": "#2", + "HPSkill": 800704, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 800704, + "Aggro": 100, + "Skills": { + "1800701": { + "Name": "나쁜 녀석! 성가셔!", + "Desc": "피해를 #2[i]회 가하고, 1회마다 랜덤 단일 적에게 미미 공격력의 #1[f1]%만큼 얼음 속성 피해를 가한다. 이후 모든 적에게 미미 공격력의 #3[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 4, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.21599999978207052, + 4, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2520000000949949, + 4, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 4, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.32400000002235174, + 4, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3600000003352761, + 4, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3959999999497086, + 4, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43200000026263297, + 4, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4679999998770654, + 4, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5040000001899898, + 4, + 1.2600000002421439 + ] + } + } + }, + "1800703": { + "Name": "파트너! 함께!", + "Desc": "모든 아군의 치명타 피해가 미미 치명타 피해의 #1[f1]%#2[f1]%를 더한 값만큼 증가한다.\\n충전이 100% 미만일 시 미미가 행동하면 자동으로 [나쁜 녀석! 성가셔!]를 발동한다. 충전 100% 도달 시 미미가 즉시 행동하고, 다음번 행동 시 단일 아군을 선택해 [내가! 도와줄게!]를 발동할 수 있다", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.16799999959766865 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09599999967031181, + 0.19200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1079999995417893, + 0.21599999978207052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1319999999832362, + 0.2639999999664724 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.14399999985471368, + 0.28799999970942736 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.15599999972619116, + 0.31200000015087426 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.16799999959766865, + 0.3359999998938292 + ] + } + } + }, + "1800705": { + "Name": "미미, 파이팅!", + "Desc": "미미가 소환될 시 즉시 충전을 #1[i]% 획득한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + } + } + }, + "1800706": { + "Name": "아쉬움… 남기지 마", + "Desc": "미미가 사라질 시 개척자의 행동 게이지가 #1[i]% 증가한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1800707": { + "Name": "내가! 도와줄게!", + "Desc": "지정된 단일 아군의 행동 게이지를 #3[i]% 증가시키고 [미미의 응원]을 부여한다, 지속 시간: #2[i]턴\\n[미미의 응원]을 보유한 목표가 피해를 1회 가할 때마다 추가로 기존 피해의 #1[i]%만큼 확정 피해를 1회 가한다.\\n자신에게 해당 스킬 발동 시 행동 게이지 증가 효과를 발동할 수 없다", + "Type": "Servant", + "Tag": "Support", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 3, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.22000000020489097, + 3, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 3, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.26000000024214387, + 3, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2800000002607703, + 3, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3200000002980232, + 3, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3400000003166497, + 3, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 3, + 1 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8007, + "Set4IDList": [ + 123, + 104, + 110 + ], + "Set2IDList": [ + 317, + 312, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 294, + 237 + ], + "LocalCriticalChance": 1 + } + }, + "8008": { + "Name": "{NICKNAME}", + "Desc": "은하열차에 탑승한 {F#소녀}{M#소년}.\\n스텔라론이 가져온 위기를 해결하기 위해, 은하열차와의 동행을 선택한다", + "CharaInfo": { + "Camp": null, + "VA": { + "Chinese": null, + "Japanese": null, + "Korean": null, + "English": null + }, + "Stories": { + "0": null, + "1": null, + "2": null, + "3": null, + "4": null + }, + "Voicelines": [] + }, + "Rarity": "CombatPowerAvatarRarityType5", + "AvatarVOTag": "playergirl4", + "SPNeed": 160, + "BaseType": "Memory", + "DamageType": "Ice", + "Ranks": { + "1": { + "Id": 800801, + "Name": "현재의 서술자", + "Desc": "[미미의 응원]을 보유한 아군의 치명타 확률이 #1[i]% 증가한다. 아군이 [미미의 응원] 보유 시 해당 목표의 기억 정령/기억 마스터에게도 [미미의 응원] 효과가 적용되며, 해당 효과는 중첩되지 않는다", + "ParamList": [ + 0.10000000009313226 + ] + }, + "2": { + "Id": 800802, + "Name": "과거의 습득자", + "Desc": "미미를 제외한 아군 기억 정령이 행동 시 개척자가 에너지를 #1[i]pt 회복한다. 해당 효과는 턴마다 최대 #2[i]회 발동하며, 개척자의 턴 시작 시 발동 가능 횟수가 초기화된다", + "ParamList": [ + 8, + 1 + ] + }, + "3": { + "Id": 800803, + "Name": "미래의 영창자", + "Desc": "전투 스킬 레벨+2, 최대 Lv.15. 특성 레벨+2, 최대 Lv.15. 기억 정령 특성 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "4": { + "Id": 800804, + "Name": "뮤즈의 새 댄스 파트너", + "Desc": "에너지 최대치가 0인 아군이 직접 스킬을 발동하면 미미도 충전을 #1[i]% 획득하고, 해당 목표가 [미미의 응원]을 통해 가하는 확정 피해 배율이 추가로 #2[i]% 증가한다", + "ParamList": [ + 0.030000000027939677, + 0.060000000055879354 + ] + }, + "5": { + "Id": 800805, + "Name": "시편의 재봉사", + "Desc": "필살기 레벨+2, 최대 Lv.15. 일반 공격 레벨+1, 최대 Lv.10. 기억 정령 스킬 레벨+1, 최대 Lv.10", + "ParamList": [] + }, + "6": { + "Id": 800806, + "Name": "계시의 전달자", + "Desc": "필살기의 치명타 확률이 100%로 고정된다", + "ParamList": [ + 1 + ] + } + }, + "Skills": { + "800801": { + "Id": 800801, + "Name": "나한테 맡겨!", + "Desc": "지정된 단일 적에게 개척자 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Normal", + "Tag": "SingleAttack", + "SPBase": 20, + "BPNeed": -0.9999999997671694, + "BPAdd": 1, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.7000000006519258 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.8000000007450581 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.9000000008381903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.1000000000931323 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 1.2000000001862645 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 1.3000000002793968 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 1.400000000372529 + ] + } + } + }, + "800802": { + "Id": 800802, + "Name": "너로 정했다!", + "Desc": "기억 정령 미미를 소환한다. 미미가 필드에 있을 시 미미의 HP를 미미 HP 최대치의 #1[i]%만큼 회복하고, 미미가 충전을 #2[i]% 획득한다", + "Type": "BPSkill", + "Tag": "Summon", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.3000000002793968, + 0.10000000009313226 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.33000000030733645, + 0.10000000009313226 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.3600000003352761, + 0.10000000009313226 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.3900000003632158, + 0.10000000009313226 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.45000000041909516, + 0.10000000009313226 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.4875000002793968, + 0.10000000009313226 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5250000001396984, + 0.10000000009313226 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5625000006984919, + 0.10000000009313226 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 0.6300000005867332, + 0.10000000009313226 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 0.6600000006146729, + 0.10000000009313226 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 0.6900000006426126, + 0.10000000009313226 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 0.7200000006705523, + 0.10000000009313226 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 0.7500000006984919, + 0.10000000009313226 + ] + } + } + }, + "800803": { + "Id": 800803, + "Name": "가자, 미미!", + "Desc": "기억 정령 미미를 소환한다. 미미가 충전을 #2[i]% 획득하고 모든 적에게 미미 공격력의 #1[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Ultra", + "Tag": "AoEAttack", + "SPBase": 5, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 60, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 1.2000000001862645, + 0.40000000037252903 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 1.3200000002980232, + 0.40000000037252903 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 1.440000000409782, + 0.40000000037252903 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 1.5600000005215406, + 0.40000000037252903 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 1.6800000006332994, + 0.40000000037252903 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 1.800000000745058, + 0.40000000037252903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 1.9500000008847564, + 0.40000000037252903 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 2.1000000000931323, + 0.40000000037252903 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 2.2500000002328306, + 0.40000000037252903 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 2.400000000372529, + 0.40000000037252903 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 2.5200000004842877, + 0.40000000037252903 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 2.6400000005960464, + 0.40000000037252903 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 2.760000000707805, + 0.40000000037252903 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 2.880000000819564, + 0.40000000037252903 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 3, + 0.40000000037252903 + ] + } + } + }, + "800804": { + "Id": 800804, + "Name": "만능 파트너", + "Desc": "기억 정령 미미의 기본 속도는 #1[i]pt이며, 기본 HP 최대치는 개척자 HP 최대치의 #2[i]%+#4[i]이다. 모든 아군이 에너지를 #3[i]pt 누적 회복할 때마다 미미가 충전을 1% 획득한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 130, + 0.5000000004656613, + 10, + 400 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 130, + 0.530000000493601, + 10, + 424 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 130, + 0.5600000005215406, + 10, + 448 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 130, + 0.5900000005494803, + 10, + 472 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 130, + 0.62000000057742, + 10, + 496 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 130, + 0.6500000006053597, + 10, + 520 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 130, + 0.6875000004656613, + 10, + 550 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 130, + 0.7250000003259629, + 10, + 580 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 130, + 0.7625000008847564, + 10, + 610 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 130, + 0.8000000007450581, + 10, + 640 + ] + }, + "11": { + "Level": 11, + "ParamList": [ + 130, + 0.8300000007729977, + 10, + 664 + ] + }, + "12": { + "Level": 12, + "ParamList": [ + 130, + 0.8600000008009374, + 10, + 688 + ] + }, + "13": { + "Level": 13, + "ParamList": [ + 130, + 0.8900000008288771, + 10, + 712 + ] + }, + "14": { + "Level": 14, + "ParamList": [ + 130, + 0.9200000008568168, + 10, + 736 + ] + }, + "15": { + "Level": 15, + "ParamList": [ + 130, + 0.9500000008847564, + 10, + 760 + ] + } + } + }, + "800806": { + "Id": 800806, + "Name": "공격", + "Desc": "적을 공격하며, 전투 진입 후 적에게 대응하는 속성의 강인성을 감소시킨다", + "Type": "MazeNormal", + "Tag": "MazeAttack", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 30, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + } + } + }, + "800807": { + "Id": 800807, + "Name": "되살아난 기억", + "Desc": "비술 사용 후 #1[i]초 동안 지속되는 특수 영역을 만든다. 특수 영역 내에 있는 적은 시간 정지 상태에 빠진다. 시간 정지 상태의 적은 움직일 수 없다.\\n시간 정지 상태의 적과 전투에 진입하면 모든 적의 행동 게이지가 #2[i]% 감소하고, 모든 적에게 개척자 공격력의 #3[i]%만큼 얼음 속성 피해를 가한다.\\n아군이 만든 영역 효과는 최대 1개만 존재할 수 있다", + "Type": "Maze", + "Tag": "Impair", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 10, + 0.5000000004656613, + 1 + ] + } + } + }, + "800809": { + "Id": 800809, + "Name": "너로 정했다!", + "Desc": null, + "Type": "BPSkill", + "Tag": "Restore", + "SPBase": 30, + "BPNeed": 1, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [] + }, + "2": { + "Level": 2, + "ParamList": [] + }, + "3": { + "Level": 3, + "ParamList": [] + }, + "4": { + "Level": 4, + "ParamList": [] + }, + "5": { + "Level": 5, + "ParamList": [] + }, + "6": { + "Level": 6, + "ParamList": [] + }, + "7": { + "Level": 7, + "ParamList": [] + }, + "8": { + "Level": 8, + "ParamList": [] + }, + "9": { + "Level": 9, + "ParamList": [] + }, + "10": { + "Level": 10, + "ParamList": [] + }, + "11": { + "Level": 11, + "ParamList": [] + }, + "12": { + "Level": 12, + "ParamList": [] + }, + "13": { + "Level": 13, + "ParamList": [] + }, + "14": { + "Level": 14, + "ParamList": [] + }, + "15": { + "Level": 15, + "ParamList": [] + } + } + } + }, + "SkillTrees": { + "Point01": { + "1": { + "Anchor": "Point01", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point01", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point01", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point01", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point01", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point01", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Normal.png", + "LevelUpSkillID": [ + 800801 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008001, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 1, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point02": { + "1": { + "Anchor": "Point02", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point02", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point02", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point02", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point02", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point02", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point02", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_BP.png", + "LevelUpSkillID": [ + 800802, + 800809 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008002, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 2, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point03": { + "1": { + "Anchor": "Point03", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point03", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point03", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point03", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point03", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point03", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point03", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Ultra.png", + "LevelUpSkillID": [ + 800803 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008003, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 3, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point04": { + "1": { + "Anchor": "Point04", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point04", + "AvatarPromotionLimit": 1, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point04", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point04", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point04", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5, + "Rarity": "Rare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "7": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "8": { + "Anchor": "Point04", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 56000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "9": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + }, + "10": { + "Anchor": "Point04", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_Passive.png", + "LevelUpSkillID": [ + 800804 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 192000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 9, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 10, + "ParamList": [], + "PointID": 8008004, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 4, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point05": { + "1": { + "Anchor": "Point05", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_8007_Maze.png", + "LevelUpSkillID": [ + 800807 + ], + "MaterialList": [], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008007, + "PointName": null, + "PointDesc": null, + "PointTriggerKey": 5, + "PointType": 2, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point06": { + "1": { + "Anchor": "Point06", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree1.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.3000000002793968, + 0.40000000037252903 + ], + "PointID": 8008101, + "PointName": "추념의 지팡이", + "PointDesc": "전투 시작 시 개척자의 행동 게이지가 #1[i]% 증가한다. 미미를 처음 소환할 시 미미는 충전을 #2[i]% 획득한다", + "PointTriggerKey": 6, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point07": { + "1": { + "Anchor": "Point07", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree2.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 0.05000000004656613 + ], + "PointID": 8008102, + "PointName": "자그마한 서사시", + "PointDesc": "미미가 [나쁜 녀석! 성가셔!] 발동 시 즉시 충전을 #1[i]% 획득한다", + "PointTriggerKey": 7, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point08": { + "1": { + "Anchor": "Point08", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_8007_SkillTree3.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 241, + "ItemNum": 1, + "Rarity": "SuperRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110506, + "ItemNum": 1, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [ + 100, + 10, + 0.02000000001862645, + 0.20000000018626451 + ], + "PointID": 8008103, + "PointName": "자석과 사슬", + "PointDesc": "[미미의 응원] 효과를 보유한 아군의 에너지 최대치가 #1[i]pt보다 높을 경우, #2[i]pt를 초과할 때마다 [미미의 응원]으로 가하는 확정 피해 배율이 추가로 #3[f1]% 증가하고, 최대 #4[i]% 증가한다", + "PointTriggerKey": 8, + "PointType": 3, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point09": { + "1": { + "Anchor": "Point09", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 1, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008201, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 9, + "PointType": 1, + "PrePoint": [], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point10": { + "1": { + "Anchor": "Point10", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 2, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008202, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 10, + "PointType": 1, + "PrePoint": [ + 8008201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point11": { + "1": { + "Anchor": "Point11", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008203, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 11, + "PointType": 1, + "PrePoint": [ + 8008201 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.05299999983981252, + "Name": "치명타 피해" + } + ] + } + }, + "Point12": { + "1": { + "Anchor": "Point12", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 7200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008204, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 12, + "PointType": 1, + "PrePoint": [ + 8008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.0400000000372529, + "Name": "공격력" + } + ] + } + }, + "Point13": { + "1": { + "Anchor": "Point13", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 15200, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 5, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008205, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 13, + "PointType": 1, + "PrePoint": [ + 8008101 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point14": { + "1": { + "Anchor": "Point14", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008206, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 14, + "PointType": 1, + "PrePoint": [ + 8008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.060000000055879354, + "Name": "HP" + } + ] + } + }, + "Point15": { + "1": { + "Anchor": "Point15", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 36000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008207, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 15, + "PointType": 1, + "PrePoint": [ + 8008102 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.0800000000745058, + "Name": "치명타 피해" + } + ] + } + }, + "Point16": { + "1": { + "Anchor": "Point16", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "IconAttack.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008208, + "PointName": "공격 강화", + "PointDesc": null, + "PointTriggerKey": 16, + "PointType": 1, + "PrePoint": [ + 8008103 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "AttackAddedRatio", + "Value": 0.060000000055879354, + "Name": "공격력" + } + ] + } + }, + "Point17": { + "1": { + "Anchor": "Point17", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 75, + "DefaultUnlock": false, + "Icon": "IconMaxHP.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008209, + "PointName": "HP 강화", + "PointDesc": null, + "PointTriggerKey": 17, + "PointType": 1, + "PrePoint": [ + 8008208 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "HPAddedRatio", + "Value": 0.0800000000745058, + "Name": "HP" + } + ] + } + }, + "Point18": { + "1": { + "Anchor": "Point18", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": 80, + "DefaultUnlock": false, + "Icon": "IconCriticalDamage.png", + "LevelUpSkillID": [], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 1, + "ParamList": [], + "PointID": 8008210, + "PointName": "치명타 피해 강화", + "PointDesc": null, + "PointTriggerKey": 18, + "PointType": 1, + "PrePoint": [ + 8008209 + ], + "StatusAddList": [ + { + "$type": "AvatarPropertyValue", + "PropertyType": "CriticalDamageBase", + "Value": 0.10699999961070716, + "Name": "치명타 피해" + } + ] + } + }, + "Point19": { + "1": { + "Anchor": "Point19", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point19", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point19", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point19", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point19", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point19", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_Servant01.png", + "LevelUpSkillID": [ + 1800701, + 1800707 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008301, + "PointName": "나쁜 녀석! 성가셔!", + "PointDesc": null, + "PointTriggerKey": 19, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + }, + "Point20": { + "1": { + "Anchor": "Point20", + "AvatarPromotionLimit": null, + "AvatarLevelLimit": null, + "DefaultUnlock": true, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "2": { + "Anchor": "Point20", + "AvatarPromotionLimit": 2, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 2800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 1, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 3, + "Rarity": "NotNormal" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "3": { + "Anchor": "Point20", + "AvatarPromotionLimit": 3, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5600, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 1, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 1, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "4": { + "Anchor": "Point20", + "AvatarPromotionLimit": 4, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 2, + "Rarity": "Rare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "5": { + "Anchor": "Point20", + "AvatarPromotionLimit": 5, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 28000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 2, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + }, + "6": { + "Anchor": "Point20", + "AvatarPromotionLimit": 6, + "AvatarLevelLimit": null, + "DefaultUnlock": false, + "Icon": "SkillIcon_18007_ServantPassive.png", + "LevelUpSkillID": [ + 1800703, + 1800705, + 1800706 + ], + "MaterialList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 112000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 2, + "Rarity": "VeryRare" + } + ], + "MaxLevel": 6, + "ParamList": [], + "PointID": 8008302, + "PointName": "파트너! 함께!", + "PointDesc": null, + "PointTriggerKey": 20, + "PointType": 4, + "PrePoint": [], + "StatusAddList": [] + } + } + }, + "Enhanced": {}, + "Memosprite": { + "Name": "미미", + "Icon": "SpriteOutput/ServantIconTeam/18007B.png", + "HPBase": "#4", + "HPInherit": "#2", + "HPSkill": 800704, + "SpeedBase": "#1", + "SpeedInherit": "0", + "SpeedSkill": 800704, + "Aggro": 100, + "Skills": { + "1800701": { + "Name": "나쁜 녀석! 성가셔!", + "Desc": "피해를 #2[i]회 가하고, 1회마다 랜덤 단일 적에게 미미 공격력의 #1[f1]%만큼 얼음 속성 피해를 가한다. 이후 모든 적에게 미미 공격력의 #3[i]%만큼 얼음 속성 피해를 가한다", + "Type": "Servant", + "Tag": "AoEAttack", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 15, + 30, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 4, + 0.45000000041909516 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.21599999978207052, + 4, + 0.5400000005029142 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.2520000000949949, + 4, + 0.6300000005867332 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.28799999970942736, + 4, + 0.7200000006705523 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.32400000002235174, + 4, + 0.8100000007543713 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.3600000003352761, + 4, + 0.9000000008381903 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3959999999497086, + 4, + 0.9900000009220093 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.43200000026263297, + 4, + 1.0800000000745058 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.4679999998770654, + 4, + 1.1700000001583248 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5040000001899898, + 4, + 1.2600000002421439 + ] + } + } + }, + "1800703": { + "Name": "파트너! 함께!", + "Desc": "모든 아군의 치명타 피해가 미미 치명타 피해의 #1[f1]%#2[f1]%를 더한 값만큼 증가한다.\\n충전이 100% 미만일 시 미미가 행동하면 자동으로 [나쁜 녀석! 성가셔!]를 발동한다. 충전 100% 도달 시 미미가 즉시 행동하고, 다음번 행동 시 단일 아군을 선택해 [내가! 도와줄게!]를 발동할 수 있다", + "Type": null, + "Tag": "Support", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.060000000055879354, + 0.12000000011175871 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.07199999992735684, + 0.14399999985471368 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.08399999979883432, + 0.16799999959766865 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.09599999967031181, + 0.19200000003911555 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.1079999995417893, + 0.21599999978207052 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.1319999999832362, + 0.2639999999664724 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.14399999985471368, + 0.28799999970942736 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.15599999972619116, + 0.31200000015087426 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.16799999959766865, + 0.3359999998938292 + ] + } + } + }, + "1800705": { + "Name": "미미, 파이팅!", + "Desc": "미미가 소환될 시 즉시 충전을 #1[i]% 획득한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.5000000004656613 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.5000000004656613 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.5000000004656613 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.5000000004656613 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.5000000004656613 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.5000000004656613 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.5000000004656613 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.5000000004656613 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.5000000004656613 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.5000000004656613 + ] + } + } + }, + "1800706": { + "Name": "아쉬움… 남기지 마", + "Desc": "미미가 사라질 시 개척자의 행동 게이지가 #1[i]% 증가한다", + "Type": null, + "Tag": "Enhance", + "SPBase": null, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.25000000023283064 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.25000000023283064 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.25000000023283064 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.25000000023283064 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.25000000023283064 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.25000000023283064 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.25000000023283064 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.25000000023283064 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "1800707": { + "Name": "내가! 도와줄게!", + "Desc": "지정된 단일 아군의 행동 게이지를 #3[i]% 증가시키고 [미미의 응원]을 부여한다, 지속 시간: #2[i]턴\\n[미미의 응원]을 보유한 목표가 피해를 1회 가할 때마다 추가로 기존 피해의 #1[i]%만큼 확정 피해를 1회 가한다.\\n자신에게 해당 스킬 발동 시 행동 게이지 증가 효과를 발동할 수 없다", + "Type": "Servant", + "Tag": "Support", + "SPBase": 10, + "BPNeed": -0.9999999997671694, + "BPAdd": null, + "ShowStanceList": [ + 0, + 0, + 0 + ], + "SkillComboValueDelta": null, + "Level": { + "1": { + "Level": 1, + "ParamList": [ + 0.18000000016763806, + 3, + 1 + ] + }, + "2": { + "Level": 2, + "ParamList": [ + 0.20000000018626451, + 3, + 1 + ] + }, + "3": { + "Level": 3, + "ParamList": [ + 0.22000000020489097, + 3, + 1 + ] + }, + "4": { + "Level": 4, + "ParamList": [ + 0.24000000022351742, + 3, + 1 + ] + }, + "5": { + "Level": 5, + "ParamList": [ + 0.26000000024214387, + 3, + 1 + ] + }, + "6": { + "Level": 6, + "ParamList": [ + 0.2800000002607703, + 3, + 1 + ] + }, + "7": { + "Level": 7, + "ParamList": [ + 0.3000000002793968, + 3, + 1 + ] + }, + "8": { + "Level": 8, + "ParamList": [ + 0.3200000002980232, + 3, + 1 + ] + }, + "9": { + "Level": 9, + "ParamList": [ + 0.3400000003166497, + 3, + 1 + ] + }, + "10": { + "Level": 10, + "ParamList": [ + 0.3600000003352761, + 3, + 1 + ] + } + } + } + }, + "Talent": {} + }, + "Unique": {}, + "Stats": { + "0": { + "AttackBase": 73.92000000085682, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 85.80000000074506, + "DefenceAdd": 4.2900000002700835, + "HPBase": 142.56000000052154, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3200 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4 + } + ] + }, + "1": { + "AttackBase": 103.48799999989569, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 120.12000000011176, + "DefenceAdd": 4.2900000002700835, + "HPBase": 199.5840000002645, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6400 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8 + } + ] + }, + "2": { + "AttackBase": 133.05599999963306, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 154.44000000040978, + "DefenceAdd": 4.2900000002700835, + "HPBase": 256.60800000000745, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12800 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 4 + } + ] + }, + "3": { + "AttackBase": 162.62400000030175, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 188.7600000007078, + "DefenceAdd": 4.2900000002700835, + "HPBase": 313.6320000004489, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 32000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 6 + } + ] + }, + "4": { + "AttackBase": 192.19200000003912, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 223.0800000000745, + "DefenceAdd": 4.2900000002700835, + "HPBase": 370.65600000019185, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 64000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 8 + } + ] + }, + "5": { + "AttackBase": 221.7600000007078, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 257.40000000037253, + "DefenceAdd": 4.2900000002700835, + "HPBase": 427.6800000006333, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 128000 + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7 + }, + { + "$type": "ItemConfigRow", + "ItemID": 110400, + "ItemNum": 10 + } + ] + }, + "6": { + "AttackBase": 251.32799999974668, + "AttackAdd": 3.6960000002291054, + "DefenceBase": 291.72000000067055, + "DefenceAdd": 4.2900000002700835, + "HPBase": 484.70400000037625, + "HPAdd": 7.127999999560416, + "SpeedBase": 103, + "CriticalChance": 0.05000000004656613, + "CriticalDamage": 0.5000000004656613, + "BaseAggro": 100, + "Cost": [] + } + }, + "Relics": { + "AvatarID": 8008, + "Set4IDList": [ + 123, + 104, + 110 + ], + "Set2IDList": [ + 317, + 312, + 318 + ], + "PropertyList3": [ + "CriticalDamageBase" + ], + "PropertyList4": [ + "SpeedDelta", + "AttackAddedRatio" + ], + "PropertyList5": [ + "IceAddedRatio" + ], + "PropertyList6": [ + "SPRatioBase", + "AttackAddedRatio" + ], + "PropertyList": [ + { + "$type": "RelicRecommendProperty", + "RelicType": "BODY", + "PropertyType": "CriticalDamageBase" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "FOOT", + "PropertyType": "SpeedDelta" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "NECK", + "PropertyType": "IceAddedRatio" + }, + { + "$type": "RelicRecommendProperty", + "RelicType": "OBJECT", + "PropertyType": "SPRatioBase" + } + ], + "SubAffixPropertyList": [ + "CriticalDamageBase", + "SpeedDelta", + "AttackAddedRatio" + ], + "ScoreRankList": [ + 294, + 237 + ], + "LocalCriticalChance": 1 + } + } +} \ No newline at end of file diff --git a/data/config_maze.json b/data/config_maze.json new file mode 100644 index 0000000..1cd5a2f --- /dev/null +++ b/data/config_maze.json @@ -0,0 +1,873 @@ +{ + "AS": { + "3001": { + "buff_1": [ + 3111008, + 3111010, + 3111011 + ], + "buff_2": [ + 3111008, + 3111009, + 3111012 + ], + "maze_buff": 3110001 + }, + "3002": { + "buff_1": [ + 3111015, + 3111013, + 3111014 + ], + "buff_2": [ + 3111015, + 3111016, + 3111017 + ], + "maze_buff": 3110002 + }, + "3003": { + "buff_1": [ + 3111021, + 3111022, + 3111023 + ], + "buff_2": [ + 3111018, + 3111019, + 3111020 + ], + "maze_buff": 3110003 + }, + "3004": { + "buff_1": [ + 3111028, + 3111027, + 3111021 + ], + "buff_2": [ + 3111024, + 3111025, + 3111026 + ], + "maze_buff": 3110004 + }, + "3005": { + "buff_1": [ + 3111030, + 3111033, + 3111034 + ], + "buff_2": [ + 3111029, + 3111032, + 3111031 + ], + "maze_buff": 3110005 + }, + "3006": { + "buff_1": [ + 3111035, + 3111036, + 3111037 + ], + "buff_2": [ + 3111038, + 3111039, + 3111040 + ], + "maze_buff": 3110006 + }, + "3007": { + "buff_1": [ + 3111041, + 3111042, + 3111043 + ], + "buff_2": [ + 3111044, + 3111045, + 3111046 + ], + "maze_buff": 3110007 + }, + "3008": { + "buff_1": [ + 3111047, + 3111048, + 3111049 + ], + "buff_2": [ + 3111050, + 3111051, + 3111052 + ], + "maze_buff": 3110008 + }, + "3009": { + "buff_1": [ + 3111053, + 3111018, + 3111020 + ], + "buff_2": [ + 3111055, + 3111021, + 3111030 + ], + "maze_buff": 3110009 + }, + "3010": { + "buff_1": [ + 3111056, + 3111057, + 3111058 + ], + "buff_2": [ + 3111046, + 3111014, + 3111021 + ], + "maze_buff": 3110010 + }, + "3011": { + "buff_1": [ + 3111056, + 3111057, + 3111058 + ], + "buff_2": [ + 3111046, + 3111014, + 3111021 + ], + "maze_buff": 3110010 + } + }, + "PF": { + "2001": { + "buff": [ + 3031301, + 3031302, + 3031303 + ], + "maze_buff": 3031001 + }, + "2002": { + "buff": [ + 3031304, + 3031305, + 3031306 + ], + "maze_buff": 3031002 + }, + "2003": { + "buff": [ + 3031307, + 3031308, + 3031309 + ], + "maze_buff": 3031003 + }, + "2004": { + "buff": [ + 3031310, + 3031311, + 3031312 + ], + "maze_buff": 3031001 + }, + "2005": { + "buff": [ + 3031313, + 3031314, + 3031315 + ], + "maze_buff": 3031003 + }, + "2006": { + "buff": [ + 3031316, + 3031317, + 3031318 + ], + "maze_buff": 3031002 + }, + "2007": { + "buff": [ + 3031319, + 3031320, + 3031321 + ], + "maze_buff": 3031004 + }, + "2008": { + "buff": [ + 3031303, + 3031322, + 3031323 + ], + "maze_buff": 3031001 + }, + "2009": { + "buff": [ + 3031324, + 3031325, + 3031326 + ], + "maze_buff": 3031005 + }, + "2010": { + "buff": [ + 3031330, + 3031331, + 3031305 + ], + "maze_buff": 3031002 + }, + "2011": { + "buff": [ + 3031327, + 3031328, + 3031329 + ], + "maze_buff": 3031200 + }, + "2012": { + "buff": [ + 3031333, + 3031332, + 3031334 + ], + "maze_buff": 3031205 + }, + "2013": { + "buff": [ + 3031335, + 3031336, + 3031337 + ], + "maze_buff": 3031210 + }, + "2014": { + "buff": [ + 3031327, + 3031338, + 3031329 + ], + "maze_buff": 3031200 + }, + "2015": { + "buff": [ + 3031333, + 3031343, + 3031339 + ], + "maze_buff": 3031205 + }, + "2016": { + "buff": [ + 3031340, + 3031341, + 3031342 + ], + "maze_buff": 3031215 + } + }, + "MOC": { + "100": { + "maze_buff": 3030001 + }, + "900": { + "maze_buff": 3030036 + }, + "101": { + "maze_buff": 3030104 + }, + "102": { + "maze_buff": 3030104 + }, + "103": { + "maze_buff": 3030104 + }, + "104": { + "maze_buff": 3030104 + }, + "105": { + "maze_buff": 3030104 + }, + "106": { + "maze_buff": 3030104 + }, + "107": { + "maze_buff": 3030104 + }, + "108": { + "maze_buff": 3030104 + }, + "109": { + "maze_buff": 3030104 + }, + "110": { + "maze_buff": 3030107 + }, + "111": { + "maze_buff": 3030108 + }, + "112": { + "maze_buff": 3030109 + }, + "113": { + "maze_buff": 3030110 + }, + "114": { + "maze_buff": 3030111 + }, + "115": { + "maze_buff": 3030112 + }, + "116": { + "maze_buff": 3030104 + }, + "117": { + "maze_buff": 3030104 + }, + "118": { + "maze_buff": 3030104 + }, + "119": { + "maze_buff": 3030104 + }, + "1001": { + "maze_buff": 3030113 + }, + "1002": { + "maze_buff": 3030114 + }, + "1003": { + "maze_buff": 3030115 + }, + "1004": { + "maze_buff": 3030116 + }, + "1005": { + "maze_buff": 3030117 + }, + "1006": { + "maze_buff": 3030120 + }, + "1007": { + "maze_buff": 3030119 + }, + "1008": { + "maze_buff": 3030118 + }, + "1009": { + "maze_buff": 3030121 + }, + "1010": { + "maze_buff": 3030123 + }, + "1011": { + "maze_buff": 3030124 + }, + "1012": { + "maze_buff": 3030125 + }, + "1013": { + "maze_buff": 3030126 + }, + "1014": { + "maze_buff": 3030127 + }, + "1015": { + "maze_buff": 3030128 + }, + "1016": { + "maze_buff": 3030129 + }, + "1017": { + "maze_buff": 3030130 + }, + "1018": { + "maze_buff": 3030131 + }, + "1019": { + "maze_buff": 3030132 + }, + "1020": { + "maze_buff": 3030133 + }, + "1021": { + "maze_buff": 3030134 + }, + "1022": { + "maze_buff": 3030135 + }, + "1023": { + "maze_buff": 3030136 + }, + "1024": { + "maze_buff": 3030137 + }, + "1025": { + "maze_buff": 3030138 + } + }, + "Avatar": { + "1001": { + "maze_buff": [ + 100101 + ] + }, + "1002": { + "maze_buff": [ + 100201 + ] + }, + "1003": { + "maze_buff": [ + 100301 + ] + }, + "1004": { + "maze_buff": [ + 100401 + ] + }, + "1005": { + "maze_buff": [ + 100501 + ] + }, + "1006": { + "maze_buff": [ + 100601 + ] + }, + "1008": { + "maze_buff": [ + 100801 + ] + }, + "1009": { + "maze_buff": [ + 100901 + ] + }, + "1013": { + "maze_buff": [ + 101301 + ] + }, + "1101": { + "maze_buff": [ + 110101 + ] + }, + "1102": { + "maze_buff": [ + 110201, + 110202, + 110203 + ] + }, + "1103": { + "maze_buff": [ + 110301 + ] + }, + "1104": { + "maze_buff": [ + 110401 + ] + }, + "1105": { + "maze_buff": [ + 110501 + ] + }, + "1106": { + "maze_buff": [ + 110601 + ] + }, + "1107": { + "maze_buff": [ + 110701 + ] + }, + "1108": { + "maze_buff": [ + 110801 + ] + }, + "1109": { + "maze_buff": [ + 110901 + ] + }, + "1110": { + "maze_buff": [ + 111001 + ] + }, + "1111": { + "maze_buff": [ + 111101 + ] + }, + "1112": { + "maze_buff": [ + 111201 + ] + }, + "1201": { + "maze_buff": [ + 120101 + ] + }, + "1202": { + "maze_buff": [] + }, + "1203": { + "maze_buff": [ + 120301 + ] + }, + "1204": { + "maze_buff": [ + 120401 + ] + }, + "1205": { + "maze_buff": [ + 120501 + ] + }, + "1206": { + "maze_buff": [ + 120601 + ] + }, + "1207": { + "maze_buff": [ + 120701, + 120702 + ] + }, + "1208": { + "maze_buff": [ + 120801, + 120802 + ] + }, + "1209": { + "maze_buff": [ + 120901 + ] + }, + "1210": { + "maze_buff": [ + 121001 + ] + }, + "1211": { + "maze_buff": [ + 121101 + ] + }, + "1212": { + "maze_buff": [ + 121201, + 121202, + 121203 + ] + }, + "1213": { + "maze_buff": [ + 121301, + 121302, + 121303 + ] + }, + "1214": { + "maze_buff": [ + 121401 + ] + }, + "1215": { + "maze_buff": [ + 121501 + ] + }, + "1217": { + "maze_buff": [ + 121701 + ] + }, + "1218": { + "maze_buff": [ + 121801 + ] + }, + "1220": { + "maze_buff": [ + 122001, + 122002, + 122003, + 122004 + ] + }, + "1221": { + "maze_buff": [ + 122101 + ] + }, + "1222": { + "maze_buff": [ + 122201 + ] + }, + "1223": { + "maze_buff": [ + 122304, + 122301, + 122302, + 122303 + ] + }, + "1224": { + "maze_buff": [ + 122401, + 122402, + 122403 + ] + }, + "1225": { + "maze_buff": [ + 122501 + ] + }, + "1301": { + "maze_buff": [ + 130101 + ] + }, + "1302": { + "maze_buff": [ + 130201 + ] + }, + "1303": { + "maze_buff": [ + 130301, + 130302, + 130303 + ] + }, + "1304": { + "maze_buff": [ + 130401, + 130402, + 130403, + 130404, + 130405, + 130406 + ] + }, + "1305": { + "maze_buff": [ + 130501 + ] + }, + "1306": { + "maze_buff": [ + 130601, + 130602 + ] + }, + "1307": { + "maze_buff": [ + 130701 + ] + }, + "1308": { + "maze_buff": [ + 130801, + 130802, + 130803 + ] + }, + "1309": { + "maze_buff": [ + 130901, + 130902, + 130903 + ] + }, + "1310": { + "maze_buff": [ + 131001, + 131002 + ] + }, + "1312": { + "maze_buff": [ + 131201 + ] + }, + "1313": { + "maze_buff": [ + 131301 + ] + }, + "1314": { + "maze_buff": [ + 131401 + ] + }, + "1315": { + "maze_buff": [ + 131501, + 131502, + 131503 + ] + }, + "1317": { + "maze_buff": [ + 131701, + 131702 + ] + }, + "1401": { + "maze_buff": [ + 140101, + 140102 + ] + }, + "1402": { + "maze_buff": [ + 140201, + 140202 + ] + }, + "1403": { + "maze_buff": [ + 140301 + ] + }, + "1404": { + "maze_buff": [ + 140401 + ] + }, + "1405": { + "maze_buff": [ + 140501, + 140502, + 140503 + ] + }, + "1406": { + "maze_buff": [ + 140601, + 140602, + 140603, + 140604 + ] + }, + "1407": { + "maze_buff": [ + 140704, + 140701, + 140702, + 140703 + ] + }, + "1408": { + "maze_buff": [ + 140801, + 140802 + ] + }, + "1409": { + "maze_buff": [ + 140901 + ] + }, + "8001": { + "maze_buff": [] + }, + "8002": { + "maze_buff": [] + }, + "8003": { + "maze_buff": [ + 800301 + ] + }, + "8004": { + "maze_buff": [ + 800301 + ] + }, + "8005": { + "maze_buff": [ + 800501 + ] + }, + "8006": { + "maze_buff": [ + 800501 + ] + }, + "8007": { + "maze_buff": [ + 800701 + ] + }, + "8008": { + "maze_buff": [ + 800701 + ] + }, + "1014": { + "maze_buff": [ + 101401 + ] + }, + "1015": { + "maze_buff": [ + 101501 + ] + }, + "7205": { + "maze_buff": [] + }, + "7212": { + "maze_buff": [] + }, + "7213": { + "maze_buff": [] + }, + "7005": { + "maze_buff": [] + }, + "7006": { + "maze_buff": [] + }, + "6023": { + "maze_buff": [] + }, + "8901": { + "maze_buff": [] + }, + "8902": { + "maze_buff": [] + }, + "6022": { + "maze_buff": [] + } + } +} \ No newline at end of file diff --git a/data/lightcones.cn.json b/data/lightcones.cn.json new file mode 100644 index 0000000..ab7323b --- /dev/null +++ b/data/lightcones.cn.json @@ -0,0 +1,35106 @@ +{ + "20000": { + "Name": "锋镝", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「飞矢在弦、挽弓逐鹿的那一刻,猎人的双眸最为清澈。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "危机", + "Desc": "战斗开始时,使装备者的暴击率提高#1[i]%,持续#2[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20001": { + "Name": "物穰", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「生命就是有序度超越了某个阈值的存在。它的诞生便是对死寂宇宙的最终解答,宣告着古老混沌的时代一去不返。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "繁盛", + "Desc": "装备者施放战技和终结技时,治疗量提高#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20002": { + "Name": "天倾", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「万物的消逝就像其诞生一样自然,时间冲刷之下,一切有形之物都将焚为劫灰。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "破灭", + "Desc": "使装备者普攻和战技造成的伤害提高#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20003": { + "Name": "琥珀", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「只有不受时光局限的事物,才能在时光中长生久传。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "静滞", + "Desc": "使装备者的防御力提高#1[i]%。当装备者当前生命值百分比小于#2[i]%时,其防御力额外提高#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.5000000004656613, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "20004": { + "Name": "幽邃", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「他凝视着那轮空洞,它犹如在万物终末时高悬的漆黑太阳,又像是一张解答一切疑问的口——那张口说道:███ █ ███ ██ 这答案无法以任何人类的语言诠释,却能被所有人听懂。 」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "沉沦", + "Desc": "战斗开始时,使装备者的效果命中提高#1[i]%,持续#2[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 3 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20005": { + "Name": "齐颂", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「合指为拳,众志成城。我献出自我,而后收获更高之物——我们。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "协力", + "Desc": "进入战斗后,使我方全体的攻击力提高#1[i]%。同类技能无法重复生效。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20006": { + "Name": "智库", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「人类行将灭绝。而图书馆会存在下去:青灯孤照,无限无动,藏有珍本,默默无闻,无用而不败坏。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "博识", + "Desc": "使装备者终结技造成的伤害提高#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20007": { + "Name": "离弦", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「战事已经开始,必须给箭矢找到下一个目标。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "鸣角", + "Desc": "使装备者消灭敌方目标后,攻击力提高#1[i]%,持续#2[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 3 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 3 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20008": { + "Name": "嘉果", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「口渴时,万物总是甜的。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "甘美", + "Desc": "战斗开始时,立即为我方全体恢复#1[i]点能量。", + "Level": { + "1": { + "ParamList": [ + 6 + ] + }, + "2": { + "ParamList": [ + 7.500000000465661 + ] + }, + "3": { + "ParamList": [ + 9 + ] + }, + "4": { + "ParamList": [ + 10.500000000465661 + ] + }, + "5": { + "ParamList": [ + 12 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20009": { + "Name": "乐圮", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「有能力摧毁某样事物的人,才是它真正的掌控者。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "诛讨", + "Desc": "使装备者对当前生命值百分比大于#1[i]%的敌方目标造成的伤害提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.5000000004656613, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20010": { + "Name": "戍御", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「城墙后坚强的民众,证明了防御也是一种取胜手段。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "兴复", + "Desc": "使装备者施放终结技时,回复等同于自身生命上限#1[i]%的生命值。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20011": { + "Name": "渊环", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「逃亡者试图摆脱过去的幻影,他以为这痛苦无人能懂。直到他抬起头,未来的自己正睁着可怖的双眼。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "追逼", + "Desc": "使装备者对减速状态下的敌方目标造成的伤害提高#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20012": { + "Name": "轮契", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「没有比这更和谐的声响,人人各就其位,庞大的机器应声而动。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "速决", + "Desc": "使装备者施放攻击或受到攻击后,额外恢复#1[i]点能量,该效果单个回合内不可重复触发。", + "Level": { + "1": { + "ParamList": [ + 4 + ] + }, + "2": { + "ParamList": [ + 5 + ] + }, + "3": { + "ParamList": [ + 6 + ] + }, + "4": { + "ParamList": [ + 7 + ] + }, + "5": { + "ParamList": [ + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20013": { + "Name": "灵钥", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「知识永远在那门后,而大门的钥匙也不由谁赏赐。谁最想要它,谁就能拥有。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "顿悟", + "Desc": "使装备者施放战技后额外恢复#1[i]点能量,该效果单个回合内不可重复触发。", + "Level": { + "1": { + "ParamList": [ + 8 + ] + }, + "2": { + "ParamList": [ + 9 + ] + }, + "3": { + "ParamList": [ + 10 + ] + }, + "4": { + "ParamList": [ + 11 + ] + }, + "5": { + "ParamList": [ + 12 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20014": { + "Name": "相抗", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「为自由而战的人不会死,他的故事将被永远传唱。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "联盟", + "Desc": "使装备者在消灭敌方目标后,速度提高#1[i]%,持续#2[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "3": { + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "4": { + "ParamList": [ + 0.1600000001490116, + 2 + ] + }, + "5": { + "ParamList": [ + 0.18000000016763806, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20015": { + "Name": "蕃息", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「当生命失却意蕴时,请继续赐以生命。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "丰饶民", + "Desc": "当装备者施放普攻后,使下一次行动提前#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20016": { + "Name": "俱殁", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「如何使星球的过往更完美?现在,立刻,撕碎它。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "军团", + "Desc": "装备者当前生命值百分比小于#1[i]%时,暴击率提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.8000000007450581, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.8000000007450581, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.8000000007450581, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20017": { + "Name": "开疆", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「无靠无依的时日已落场,公司将与诸位携手相助。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "公司", + "Desc": "当装备者击破敌方目标的弱点时,回复等同于自身生命上限#1[i]%的生命值。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20018": { + "Name": "匿影", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「虚无也许会找到我们,但它很可能不会。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "机关", + "Desc": "施放战技后,使装备者的下一次普攻对敌方目标造成等同于自身#1[i]%攻击力的附加伤害。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 0.7500000006984919 + ] + }, + "3": { + "ParamList": [ + 0.9000000008381903 + ] + }, + "4": { + "ParamList": [ + 1.0500000000465661 + ] + }, + "5": { + "ParamList": [ + 1.2000000001862645 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20019": { + "Name": "调和", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「还有什么比消除不谐音律更愉快的事么?」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "家族", + "Desc": "进入战斗时,我方全体速度提高#1[i]点,持续#2[i]回合。", + "Level": { + "1": { + "ParamList": [ + 12, + 1 + ] + }, + "2": { + "ParamList": [ + 14, + 1 + ] + }, + "3": { + "ParamList": [ + 16, + 1 + ] + }, + "4": { + "ParamList": [ + 18, + 1 + ] + }, + "5": { + "ParamList": [ + 20, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20020": { + "Name": "睿见", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「智慧之人如果无法抛弃人的身份,则会被智慧抛弃。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "天才", + "Desc": "当装备者施放终结技时,攻击力提高#1[i]%,持续#2[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 2 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20021": { + "Name": "焚影", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「人总会试图消除那些不美好的过去,这就是记忆的本质。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Memory", + "Refinements": { + "Name": "美化", + "Desc": "装备者首次召唤忆灵时,恢复#1[i]点战技点,并恢复自身#2[i]点能量。", + "Level": { + "1": { + "ParamList": [ + 1, + 12 + ] + }, + "2": { + "ParamList": [ + 1, + 14 + ] + }, + "3": { + "ParamList": [ + 1, + 16 + ] + }, + "4": { + "ParamList": [ + 1, + 18 + ] + }, + "5": { + "ParamList": [ + 1, + 20 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20022": { + "Name": "溯忆", + "Desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\\n\\n「衰老的灵魂在短暂的美梦中,仿佛回到了童年七彩斑斓的海。」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Memory", + "Refinements": { + "Name": "入寐", + "Desc": "忆灵的回合开始时,使装备者和忆灵分别获得1层【缅怀】,每层使造成的伤害提高#1[i]%,最多叠加#2[i]层。忆灵消失时移除装备者和忆灵的【缅怀】。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 4 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 4 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 4 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 4 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 28.800000000745058, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 63.360000000335276, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 109.44000000040978, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 155.5200000004843, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 201.6000000005588, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 247.6800000006333, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 293.7600000007078, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21000": { + "Name": "一场术后对话", + "Desc": "「你醒了…谢谢。」\\n「你…救了我…娜塔莎。该说谢谢的人…是我。」\\n「不,是我要感谢你……坚持到我完成手术。」\\n\\n医生与病人疲惫地相视一笑,再也没有说话。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "互相治愈", + "Desc": "使装备者的能量恢复效率提高#1[i]%,并在施放终结技时治疗量提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21001": { + "Name": "晚安与睡颜", + "Desc": "静谧的灯光勾勒出尘埃的轨迹,\\n平稳的呼吸里有少女香甜的梦呓。\\n一个人影出现在她身后,悄无声息。\\n「啧啧啧,果然还是摘掉眼镜比较可爱嘛。」\\n吉他手端详着她的睡颜喃喃自语:\\n「晚安,爱操心的天才少女。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "劳碌者", + "Desc": "敌方目标每承受1个负面效果,装备者对其造成的伤害提高#1[i]%,最多叠加#2[i]层。该效果对持续伤害也会生效。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21002": { + "Name": "余生的第一天", + "Desc": "「今天帕姆换上了新衣服,开心~喜欢~」\\n「今天过生日啦,今年的我依旧可爱。」\\n「今天我终于终于终于也有后辈啦!是不是,{NICKNAME}?」\\n\\n一次次不假思索地按下快门。\\n是为了抓住当时的快乐?\\n还是抓住当时的自己?", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "此刻定格", + "Desc": "使装备者的防御力提高#1[i]%。进入战斗后,使我方全体的全属性抗性提高#2[i]%。同类技能无法重复生效。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.0800000000745058 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.10000000009313226 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097, + 0.11000000010244548 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21003": { + "Name": "唯有沉默", + "Desc": "「已经到站了,不下车吗?」\\n头顶传来一声轻笑。他的眼睛动了动,没有抬头。\\n\\n「事先说明,小三月总说你面无表情,我可不这么觉得。」\\n「列车智库的数据有更新输入的痕迹,但是却没保存结果。」\\n「所以…哪个条目还能难住你?」\\n\\n他捏紧了笔,看着笔记本上那个仅凭印象复写而成的惨烈之景。\\n\\n「原来如此,是关于你自己的事……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "记录", + "Desc": "使装备者的攻击力提高#1[i]%。当场上的敌方目标数量小于等于2时,装备者的暴击率提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21004": { + "Name": "记忆中的模样", + "Desc": "官邸的桌上摆放着一张老相片,在远远的一角。\\n偶尔目光落在上面,她总会不自觉地错开视线。\\n记忆中的模样虽已远去,但今天的梦仍自萦绕。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "老相片", + "Desc": "使装备者的击破特攻提高#1[i]%。装备者施放攻击后,额外恢复#2[i]点能量,该效果单个回合内不可重复触发。", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 4 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 5 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 6 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 7 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21005": { + "Name": "鼹鼠党欢迎你", + "Desc": "「鼹鼠党,鼹鼠党」\\n「我们马上出发」\\n「机智鼹鼠不怕不怕」\\n「鼹鼠党,鼹鼠党」\\n「鼹鼠党开始冒险!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "奇妙冒险", + "Desc": "装备者施放普攻、战技或终结技攻击敌方目标后,分别获取一层【淘气值】。每层使装备者的攻击力提高#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21006": { + "Name": "「我」的诞生", + "Desc": "刚开始,它和上一幅画像中的姿势完全一致。\\n她看着这张和自己一模一样的脸,认定这还不是她。\\n\\n「世上怎么可能会有两幅相同的画像呢?」\\n\\n她摆弄着它的关节,教它睁开眼,教它的手指变得更柔软。\\n她满意地住了手。\\n\\n「和昨天截然不同,这才是今天的我。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "画像少女", + "Desc": "使装备者追加攻击造成的伤害提高#1[i]%。若该敌方目标当前生命值百分比小于等于#2[i]%,则追加攻击造成的伤害额外提高#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.5000000004656613, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.5000000004656613, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.5000000004656613, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21007": { + "Name": "同一种心情", + "Desc": "医生找到女孩时,她受了伤,却仍紧紧抱着停止运转的机器,口袋里装满了翻找来的各种零件。\\n她赶紧把女孩带回了诊所,给伤口上好药。\\n汗珠从脸颊旁滑落,女孩虽然一言不发,手却一刻不停。\\n医生知道,此时女孩的眼中只有那台机器,就像自己面对着等待救治的病人。\\n因此她没有出声安慰,也没有提醒她往后要小心一些,只是坐在女孩身边,静静陪伴着她。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "救治与维修", + "Desc": "使装备者的治疗量提高#1[i]%,并在施放战技时为我方全体恢复#2[f1]点能量。", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 2.5000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 3.5000000004656613 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21008": { + "Name": "猎物的视线", + "Desc": "事实上,猎物多半不会意识到自己的处境。\\n眼前的这个猎物也是如此。 \\n瞄准镜缓缓转动,男人仍自顾自地抛洒着一叠又一叠的纸钞。\\n「看他那贪婪的样子,这点钱够我做几单生意了…怪不得有人要干掉他。」\\n\\n像是听到了他心中的感慨,男人转过头来。\\n「等你好久了,这些钱够不够让你听听我的条件再做决定?」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "自信", + "Desc": "使装备者的效果命中提高#1[i]%,同时造成的持续伤害提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21009": { + "Name": "朗道的选择", + "Desc": "「听见没,明天不许去了!和几个平民混在一起能学些什么好的!」\\n「但他们说的那些贝洛伯格故事,我都没听过…」\\n\\n她拉过还想辩解的弟弟,把他挡在身后。\\n「你们是朗道的一员。特别是你,希露瓦,总有一天你也要做出选择。」\\n\\n她知道弟弟什么都没做错,但她不知道该怎么反驳。\\n生了一天的闷气后,她暗自下定决心。\\n「我会长大,总有一天我也能选择……」\\n「我自己的选择。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "时光如梭", + "Desc": "使装备者受到攻击的概率提高,同时受到的伤害降低#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 2, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 2, + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 2, + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 2, + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 2, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21010": { + "Name": "论剑", + "Desc": "少女不解地比划着手中的细剑。\\n自己的剑要双手才能挥舞,这样的剑也能算剑?这样的剑也能杀敌?\\n\\n剑的主人倒是对此毫不在意,毕竟——\\n杀不杀敌又不在剑,全在心。\\n用的重剑还是细剑,又有什么区别。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "各自的答案", + "Desc": "当装备者多次击中同一敌方目标时,每次造成的伤害提高#1[i]%,该效果最多叠加#2[i]层。若攻击目标发生变化,立即解除当前的增益效果。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 5 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 5 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 5 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 5 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21011": { + "Name": "与行星相会", + "Desc": "上路时,她仍然对这趟远行一无所知。\\n只知道终于能告别家中的百舌之声,躲避无处不在的明枪暗箭。\\n直到她望向窗外时,她终于明白了那首诗的意味。\\n「在某个时刻之后,我们不再行走,而是飞翔。」\\n\\n而她眼中闪动的亮光,正是行星的倒影。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "启程", + "Desc": "进入战斗后,当我方目标造成与装备者相同属性的伤害时,造成的伤害提高#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21012": { + "Name": "秘密誓心", + "Desc": "每次出发前,男孩都要仔细地检查护肘和手套。\\n那是他最钟爱的手套,它足够严实,可以藏起很多秘密。\\n如此一来,没有人可以看见他手上的绷带,以及绷带下的伤口。\\n大家把他当作一个普通人,普通地和他打着招呼。\\n\\n这就够了。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "竭力而为", + "Desc": "使装备者造成的伤害提高#1[i]%,同时对当前生命值百分比大于等于装备者自身当前生命值百分比的敌方目标造成的伤害额外提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21013": { + "Name": "别让世界静下来", + "Desc": "她在台上挥着手,希望每个人跟着她一起发出自己的声音。\\n不管是歌唱、呐喊、哀叹,以任何形式。\\n发出自己的声音,直到有人听见,才会有人加入。\\n\\n「别让心冷了,变得和这个城市一样冷。」\\n\\n——别让世界静下来。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "声音的力量", + "Desc": "使装备者进入战斗时立即恢复#2[i]点能量,同时使其终结技造成的伤害提高#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.3200000002980232, + 20 + ] + }, + "2": { + "ParamList": [ + 0.40000000037252903, + 23 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 26 + ] + }, + "4": { + "ParamList": [ + 0.5600000005215406, + 29 + ] + }, + "5": { + "ParamList": [ + 0.6400000005960464, + 32 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21014": { + "Name": "此时恰好", + "Desc": "街道熙攘,他走着,阳光跟着。\\n他停了脚步,挑了纸伞,乘了阴凉\\n——也遮了那一道目光。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "折射的视线", + "Desc": "使装备者的效果抵抗提高#1[i]%,并使装备者的治疗量提高,提高数值等同于效果抵抗的#2[i]%,最多使治疗量提高#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.33000000030733645, + 0.1500000001396984 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3900000003632158, + 0.21000000019557774 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.4200000003911555, + 0.24000000022351742 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.45000000041909516, + 0.2700000002514571 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21015": { + "Name": "决心如汗珠般闪耀", + "Desc": "拳台灯光闪耀,\\n却闪耀不过从背脊间滑落的汗珠。\\n\\n他早已决心用自己的双拳守护重要的人们。\\n而给予他决心的,也正是他们\\n——不管是台上台下,都站在他的背后。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "回眸", + "Desc": "当装备者击中敌方目标时,如果该目标不处于【攻陷】状态,则有#1[i]%的基础概率使其陷入【攻陷】状态。【攻陷】状态下的敌方目标防御力降低#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.12000000011175871, + 1 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.13000000012107193, + 1 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 1 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.1500000001396984, + 1 + ] + }, + "5": { + "ParamList": [ + 1, + 0.1600000001490116, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21016": { + "Name": "宇宙市场趋势", + "Desc": "星球的价值正在被重新计算……\\n\\n「这个项目是否会说明,追回债务的益处是相互的?」\\n「但我们只需传达一个信息,就是宣告我们的存在。」\\n\\n「它若是要有自己的价值,就得为公司增添价值。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "新一轮洗牌", + "Desc": "使装备者的防御力提高#1[i]%。当装备者受到攻击后,有#2[i]%的基础概率使敌方目标陷入灼烧状态,每回合造成等同于装备者#3[i]%防御力的持续伤害,持续#4[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1, + 0.40000000037252903, + 2 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1.0500000000465661, + 0.5000000004656613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1.1000000000931323, + 0.6000000005587935, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1.1500000001396984, + 0.7000000006519258, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1.2000000001862645, + 0.8000000007450581, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21017": { + "Name": "点个关注吧!", + "Desc": "「嗨——嗨——!观众老爷们,这里的信号畅通吗?」\\n\\n橙发少女兴奋地喊着,对着镜头笃悠悠举起锤子。\\n「大家——见过少女胸口碎大石吗!」\\n\\n「我当云骑军可不是为了做这种事啊!」\\n褐发少女眼冒金星,橙发少女狡黠一笑。\\n「拜托啦——这也是助人为乐啊!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "不赞不许走!", + "Desc": "使装备者普攻和战技造成的伤害提高#1[i]%,当装备者的当前能量值等于其能量上限时,该效果额外提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21018": { + "Name": "舞!舞!舞!", + "Desc": "「为什么虎克不能像克拉拉一样跳舞转圈圈呢…」\\n她握紧拳头,嘟囔起嘴,圆乎乎的面颊被毛毡帽烘得红润。\\n「史瓦罗先生,可以帮帮虎克么?」\\n不苟言笑的大机器人,一言不发地伸出机械手。\\n\\n「要、要转晕啦!!可恶…快放我下来!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "停不下来啦!", + "Desc": "当装备者施放终结技后,我方全体行动提前#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21019": { + "Name": "在蓝天下", + "Desc": "蓝天下的麦浪阵阵摇荡,\\n少女精心编织着花环,\\n戴在最亲爱的妹妹的额头上。\\n\\n那时的她们还一般高,\\n那时的她们仍那样笑。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "暖阳麦浪", + "Desc": "使装备者攻击力提高#1[i]%,当装备者消灭敌方目标后,暴击率提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21020": { + "Name": "天才们的休憩", + "Desc": "她点了点那碧绿色的团子。\\n「实验结束,该休息了。我不能错过刚出炉的时令点心。」\\n\\n她看到人偶少女皱起眉头沉思。\\n「你先用这具身体看看便好,回头给你捎上一盒。」\\n\\n她看到机械贵族面露难色,端起杯子。\\n「放心吧,那是机油。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "各得其所", + "Desc": "使装备者攻击力提高#1[i]%,当装备者消灭敌方目标后,暴击伤害提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.24000000022351742, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.4200000003911555, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.48000000044703484, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21021": { + "Name": "等价交换", + "Desc": "在享受完龙女使出一身雷劲的按摩后,\\n狐人少女伸出手,捏了捏她的脸蛋。\\n看着小人儿气鼓鼓地嘟起嘴,她媚然一笑。\\n\\n「等价交换嘛。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "酣适", + "Desc": "当装备者的回合开始时,随机为1个当前能量百分比小于#1[i]%的我方其他目标恢复#2[i]点能量。", + "Level": { + "1": { + "ParamList": [ + 0.5000000004656613, + 8 + ] + }, + "2": { + "ParamList": [ + 0.5000000004656613, + 10 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 12 + ] + }, + "4": { + "ParamList": [ + 0.5000000004656613, + 14 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 16 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21022": { + "Name": "延长记号", + "Desc": "唱片转呀转呀,嘶哑的叫喊被热气浸润。\\n她看似毫无防备,沉醉在迷人的旋律中:\\n\\n先由恳求与期待引入,\\n再是激烈真挚的倾诉,\\n跃过一个又一个高潮…\\n\\n直到唱片停转,嘶哑的叫喊也失了声息。\\n「任务结束。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "休止符", + "Desc": "使装备者的击破特攻提高#1[i]%,对处于触电或风化状态的敌方目标造成的伤害提高#2[i]%,该效果对持续伤害也会生效。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21023": { + "Name": "我们是地火", + "Desc": "她习惯了人们失去家园,\\n也习惯了人们失去生命,\\n但一个人时,哭泣也无用。\\n\\n「系上这条红丝巾,分担彼此痛苦。」\\n「我们是一家人…我们是地火。」\\n\\n当宽阔的手掌抚上她的脑袋,她终于忍不住掉下眼泪。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "泪中人", + "Desc": "战斗开始时,使我方全体受到的伤害降低#2[i]%,持续#3[i]回合。同时立即为我方全体回复等同于各自已损失生命值#1[i]%的生命值。", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.0800000000745058, + 5 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.10000000009313226, + 5 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871, + 5 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.14000000013038516, + 5 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.1600000001490116, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21023, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21024": { + "Name": "春水初生", + "Desc": "练剑的少年稍事歇息。\\n阳光烘着他微热的脖颈,缓缓入水,\\n没过脚边时,虽是凉的,\\n但铃铛叮铃,飞鸟啁啾,\\n远方的人们知是春天到了。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "驱散余寒", + "Desc": "进入战斗后,使装备者速度提高#1[i]%,造成的伤害提高#2[i]%。当装备者受到伤害后该效果失效,下个回合结束时该效果恢复。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21024, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21025": { + "Name": "过往未来", + "Desc": "手中的纸鸢双翼折断,就如那最珍贵之人的陨落。\\n她跪坐在战火里,眼里满是悲伤。\\n\\n「如果只能被你所救,那我们的牺牲…」\\n\\n炮火染红天际,苍穹依然宏伟。\\n她抬头望向天空,眼里满是愤怒。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "旧日纸鸢", + "Desc": "当装备者施放战技后,使下一个行动的我方其他目标造成的伤害提高#1[i]%,持续#2[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21025, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21026": { + "Name": "汪!散步时间!", + "Desc": "可惜还没人看到…\\n看到它抽抽鼻子,四处嗅嗅,钻入无人的小路。\\n\\n可惜还没人看到…\\n看到它收起爪子,按下密码,投入自由的怀抱。\\n\\n还没有人看到么…\\n一只成熟的小狗,早就学会自己去太空散步了!", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "快溜", + "Desc": "使装备者的攻击力提高#1[i]%,对处于灼烧或裂伤状态的敌方目标造成的伤害提高#2[i]%,该效果对持续伤害也会生效。", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21026, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21027": { + "Name": "早餐的仪式感", + "Desc": "虽然餐桌已经摆好…\\n有人要先喝一杯红茶;\\n有人要先拍一张照片;\\n有人要先读一份报纸;\\n有人要先记一页笔记;\\n有人要先玩一会手机。\\n\\n「都给我趁热吃帕!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "各就其位", + "Desc": "使装备者造成伤害提高#1[i]%。每消灭1个敌方目标,装备者的攻击力提高#2[i]%,该效果最多叠加#3[i]层。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0400000000372529, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.05000000004656613, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.060000000055879354, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.07000000006519258, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.0800000000745058, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21027, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21028": { + "Name": "暖夜不会漫长", + "Desc": "点一盏灯,捧一杯暖呼呼的巧克力,看着身旁的朋友。\\n看着她阅读自己送的书和笔记。\\n看着她露出平时见不到的笑容。\\n\\n在寒冷的夜晚,一点小小的幸福便能驱散寒意。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "小小灯火", + "Desc": "使装备者的生命上限提高#1[i]%。施放普攻或战技后,为我方全体回复等同于各自生命上限#2[f1]%的生命值。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.02000000001862645 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.0249999996740371 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.030000000027939677 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.034999999683350325 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.0400000000372529 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21028, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21029": { + "Name": "后会有期", + "Desc": "她曾怀疑那是某种程式,不然怎会不知疲倦。\\n但程式不会主动舍弃最优方案,绕过她布下的陷阱。\\n\\n「看来我们要打一场持久战。」\\n她打了个哈欠。\\n\\n「早点睡吧,有机生命应当珍惜梦境。」\\n周围暗了下去。\\n\\n她突然惊醒,但数据的残渣已被扫去,烧毁,好像一场梦\\n——除了那初尝失败的滋味是如此真实。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "交手如交谈", + "Desc": "装备者施放普攻或战技后,对随机1个受到攻击的敌方目标造成等同于自身#1[i]%攻击力的附加伤害。", + "Level": { + "1": { + "ParamList": [ + 0.48000000044703484 + ] + }, + "2": { + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "ParamList": [ + 0.840000000782311 + ] + }, + "5": { + "ParamList": [ + 0.9600000008940697 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21029, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21030": { + "Name": "这就是我啦!", + "Desc": "少女穿什么都很可人,但她似乎仍不满意,身后堆叠的衣服不下十几套。\\n\\n「今天会是最后一次么?」\\n\\n她默默地想着,抬头看向镜中的少女,今天的她好像格外开心。\\n\\n「好啦!这就是我啦!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "新篇章", + "Desc": "使装备者防御力提高#1[i]%。使装备者施放终结技时造成的伤害值提高,提高数值等同于装备者防御力的#2[i]%,该效果每次施放终结技时对每个敌方目标仅生效1次。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.7500000006984919 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.9000000008381903 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1.0500000000465661 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1.2000000001862645 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21030, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "21031": { + "Name": "重返幽冥", + "Desc": "虽然在姐姐身边,她却什么都听不见。\\n只有心底的声音越来越响。\\n\\n「姐姐的身体冷冷的。」\\n「姐姐的身体不会动。」\\n\\n愤怒的潮水将她淹没,义无反顾。她已来不及想起——\\n\\n「姐姐的身体,很早以前就是冷的了。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "汹涌", + "Desc": "使装备者暴击率提高#1[i]%。暴击后有#2[i]%的固定概率解除被攻击敌方目标所持有的1个增益效果,该效果每次攻击只可触发1次。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21031, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21032": { + "Name": "镂月裁云之意", + "Desc": "他一眼便相中了那件金器,正要买下,\\n狐人少女却将他拉入一隅,悄声说道:\\n「请恩公晚上再光临本铺,到时再做决定不迟。」\\n\\n夜晚,他如约而至。\\n开门的又是那狐人少女,盈盈一笑。\\n「请恩公随我来。」\\n\\n只见一线月光刻入錾花盘底。\\n工匠以线条之深浅勾勒花瓣的深浅,若非在月光之下,便看不真切这一毫一厘。\\n\\n他这才想起,这件器物为何名为「镂月裁云」。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "秘密", + "Desc": "在战斗开始时以及当装备者回合开始时,随机生效1个效果。该效果生效时,替换上次的效果且本次不会与上次重复。效果包含:使我方全体攻击力提高#1[i]%;使我方全体暴击伤害提高#2[i]%;使我方全体能量恢复效率提高#3[i]%。同类效果无法叠加,在装备者陷入无法战斗状态时解除。", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.12000000011175871, + 0.060000000055879354 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 0.1500000001396984, + 0.07499999972060323 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 0.21000000019557774, + 0.1049999997485429 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742, + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21032, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21033": { + "Name": "无处可逃", + "Desc": "他并非第一次见到这个男人。\\n不知从何时起,男人就像他身下的一道阴影。\\n无论以长枪贯穿多少次,总会再次出现。\\n\\n他不会输,但也赢不了。\\n他想逃,但也无处可逃。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "绝境", + "Desc": "使装备者的攻击力提高#1[i]%。当装备者消灭敌方目标时,回复等同于自身#2[i]%攻击力的生命值。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21033, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21034": { + "Name": "今日亦是和平的一日", + "Desc": "牌戏的新玩法刚有了眉头,午休又借了闲书。\\n掐指一算,余下的工作慢慢做,正好能做到下班。\\n她不慌不忙,躲入一隅。\\n\\n美好的闲散时光,绝不能被任何人打扰\\n——就算是符太卜也不能。\\n只是万一,要是有个万一……\\n\\n「就把这奶糖团子给符太卜。吃了甜食,总该消气罢!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "风雨将至", + "Desc": "进入战斗后,根据装备者的能量上限,提高装备者造成的伤害:每点能量提高#1[f2]%,最多计入#2[i]点。", + "Level": { + "1": { + "ParamList": [ + 0.001999999862164259, + 160 + ] + }, + "2": { + "ParamList": [ + 0.002500000176951289, + 160 + ] + }, + "3": { + "ParamList": [ + 0.0029999997932463884, + 160 + ] + }, + "4": { + "ParamList": [ + 0.0035000001080334187, + 160 + ] + }, + "5": { + "ParamList": [ + 0.003999999724328518, + 160 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21034, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21035": { + "Name": "何物为真", + "Desc": "「倘若所有的钟表都在指示错误的时刻……」\\n「倘若许下承诺的人以背誓完成诺言……」\\n「倘若沉入幻梦之人从未真正睡着……」\\n「倘若死者活着归来,发现姓名已被剥夺……」\\n\\n「倘若…倘若……」\\n他吹灭火焰,黑暗中只余时钟永不停歇地滴答作响。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "假设", + "Desc": "使装备者的击破特攻提高#1[i]%。施放普攻后,装备者回复等同于#2[f1]%生命上限+#3[i]点的生命值。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.02000000001862645, + 800 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.0249999996740371, + 800 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.030000000027939677, + 800 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.034999999683350325, + 800 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.0400000000372529, + 800 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21035, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21036": { + "Name": "美梦小镇大冒险", + "Desc": "「亲爱的观众朋友们,钟表小子和他的伙伴们又要和大家见面啦!」\\n\\n「在上一集中,石头老板发现了美梦小镇藏有丰富的资源,开始抢夺美梦小镇的统治权。钟表小子联合哈努兄弟与折纸小鸟,将石头老板和他的可恶下属赶出了美梦小镇。」\\n\\n「石头老板心有不甘,聚集一帮打手誓要踏平美梦小镇。钟表小子将在这一集中面临史上最大危机!」\\n\\n「钟表小子会用怎样的计谋突出重围?又会有什么新伙伴加入他的队伍?敬请欣赏最新一集『美梦小镇历险记』!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "团结", + "Desc": "装备者施放普攻、战技、终结技中某一类型的技能后,为我方全体附加【童心】,【童心】可以使我方目标对应类型的技能所造成的伤害提高#1[i]%。【童心】仅对装备者最新使用的技能类型生效,且不可叠加。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21036, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21037": { + "Name": "最后的赢家", + "Desc": "「你信不过我?」\\n他挑衅地看着面前的男人,拿出一把手枪,清空子弹,只余一颗。\\n\\n「看来,要想合作愉快,还得向你解释一下我的做事风格。」\\n他将手枪塞到对方手中,转动转轮,将枪口对准自己。\\n\\n他连续扣动扳机,三声空响之后笑容无异。\\n「生命是一场盛大的豪赌,而我总是最后的赢家。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "下注", + "Desc": "使装备者的攻击力提高#1[i]%。当装备者对敌方目标造成暴击后获得一层【好运】,最多叠加#3[i]层。每层【好运】使装备者的暴击伤害提高#2[i]%,【好运】在装备者的回合结束时移除。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 4 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.09000000008381903, + 4 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.10000000009313226, + 4 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.11000000010244548, + 4 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.12000000011175871, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21037, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21038": { + "Name": "在火的远处", + "Desc": "「东西到手了,交给你断后咯。」\\n通讯器里传来同伴的声音。\\n\\n他看向周围,废弃的巨型建筑内,残存的敌人仍在复杂的结构中穿行,向他逼近。\\n「稍等片刻。」\\n\\n一瞬寂静之后,宛如末日灾难的剧烈爆炸冲天而起。气浪吹起尘埃,烟云四散,致人目盲的强光令夜空亮如白昼。\\n「你知道那里面都是他们故意设置的火药吧?」\\n\\n斗篷猎猎张开,他如同完成了一场悠闲散步。\\n「当然。」\\n「所以点燃他们,我只需当那根火柴就好。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "爆燃", + "Desc": "当装备者在单次受到攻击中累计损失的生命值超过最大生命值的#1[i]%,或单次消耗自身生命值超过最大生命值的#1[i]%,则立即回复等同于装备者生命上限#3[i]%的生命值,同时使装备者造成的伤害提高#2[i]%,持续#4[i]回合。该效果每#5[i]回合只能触发1次。", + "Level": { + "1": { + "ParamList": [ + 0.25000000023283064, + 0.25000000023283064, + 0.1500000001396984, + 2, + 3 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3125000004656613, + 0.1500000001396984, + 2, + 3 + ] + }, + "3": { + "ParamList": [ + 0.25000000023283064, + 0.375, + 0.1500000001396984, + 2, + 3 + ] + }, + "4": { + "ParamList": [ + 0.25000000023283064, + 0.43750000023283064, + 0.1500000001396984, + 2, + 3 + ] + }, + "5": { + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 0.1500000001396984, + 2, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21038, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21039": { + "Name": "织造命运之线", + "Desc": "命运总是无端将众人牵引,而她隐于暗处铭刻最为关键的瞬间。\\n\\n排序,组合,洗牌,抽牌…她模拟命运之手操纵众人的种种可能,寻找纷乱表象之下的真实轨迹。\\n\\n终于,所有人物各安其位,她拂过凝固的牌面,拼凑出那幽邃的真相。\\n「还缺了一张…那么,我来补上吧。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "洞见", + "Desc": "使装备者的效果抵抗提高#1[i]%。装备者每有#2[i]点防御力,使装备者造成的伤害提高#3[f1]%,最多使造成的伤害提高#4[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 100, + 0.007999999448657036, + 0.3200000002980232 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 100, + 0.008999999379739165, + 0.3600000003352761 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 100, + 0.010000000009313226, + 0.40000000037252903 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 100, + 0.010999999940395355, + 0.44000000040978193 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 100, + 0.011999999871477485, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21039, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21040": { + "Name": "银河沦陷日", + "Desc": "「芝士流心!你负责迷晕星球的守卫!」\\n「豆沙灰灰!你负责攻陷星球的士兵!」\\n「盐渍冬梅!你负责拿下星球的首脑!」\\n「大王,您要去做什么!」\\n「我负责扮演可爱猫猫迷惑这些蠢笨的人类!」\\n\\n那一天,银河众文明终于回想起了,被它们支配的恐惧……", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "攻略", + "Desc": "使装备者的攻击力提高#1[i]%。装备者施放攻击后,若有不少于2个被攻击的敌方目标具有对应属性弱点,装备者的暴击伤害提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806, + 0.25000000023283064, + 2 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 2 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097, + 0.3500000003259629, + 2 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21040, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21041": { + "Name": "好戏开演", + "Desc": "——是谁看见他死去?\\n——是我,用我的小眼睛!\\n——是谁取走他的血?\\n——是我,用我的小碟子!\\n——是谁为他挖坟墓?\\n——是我,用我的凿子和铲子!\\n\\n看智者机关算尽,王者权欲熏心,英雄自以为是,而愚者欢笑不止——\\n「现在,有请花火小姐给我们带来年度大戏——『匹诺康尼惊魂夜』!」 ", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "自娱自乐", + "Desc": "装备者对敌方目标施加负面状态后,获得一层【戏法】,每层【戏法】使装备者造成的伤害提高#1[i]%,最多叠加#2[i]层,持续#3[i]回合。当装备者的效果命中大于等于#4[i]%时,攻击力提高#5[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.060000000055879354, + 3, + 1, + 0.8000000007450581, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.07000000006519258, + 3, + 1, + 0.8000000007450581, + 0.24000000022351742 + ] + }, + "3": { + "ParamList": [ + 0.0800000000745058, + 3, + 1, + 0.8000000007450581, + 0.2800000002607703 + ] + }, + "4": { + "ParamList": [ + 0.09000000008381903, + 3, + 1, + 0.8000000007450581, + 0.3200000002980232 + ] + }, + "5": { + "ParamList": [ + 0.10000000009313226, + 3, + 1, + 0.8000000007450581, + 0.3600000003352761 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21041, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21042": { + "Name": "铭记于心的约定", + "Desc": "风尘仆仆的过去,守护家园的责任,开拓世界的梦想——\\n一双粗糙的大手,将这些递给了不谙世事的少年。\\n\\n「不久之后,我们就能去往更广阔的世界了吧。」 \\n男孩欣喜地接过传承的信物。年幼的他,尚未感受到那信物有多沉重。\\n\\n「一定会的。在那之前,米沙,守护好这里。」 \\n\\n他将那约定铭记于心,直到——直到永远。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "传承", + "Desc": "使装备者的击破特攻提高#1[i]%。当装备者施放终结技时,暴击率提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.1500000001396984, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.1875, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.2249999998603016, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.26250000041909516, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.3000000002793968, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21042, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21043": { + "Name": "两个人的演唱会", + "Desc": "「哥哥,这是……」 \\n「好久没有快乐地唱过歌了吧…我为你搭了一座舞台,就是…有点简陋。」 \\n「可老师觉得我不适合……」 \\n「不,我觉得很好听!以后你一定会实现自己的梦想,站在更大的舞台上歌唱……」 \\n……\\n\\n许多年之后,她站在璀璨的舞台上,望着底下汹涌的粉丝,却失神了片刻——\\n在漫长的追梦路上,她总会想起那道信任的目光,和自己的第一场「演唱会」。\\n没有绚丽的灯光,没有华美的妆造,有的只是一个孩子为了鼓励另一个孩子追求梦想而搭建起的舞台。\\n\\n「如今,我们的梦都实现了。但…那还是属于『我们』的梦吗……」 \\n她握紧了话筒。在下一首歌开始之前,她甚至来不及感到悲伤。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "鼓舞", + "Desc": "使装备者的防御力提高#1[i]%。场上每有一名持有护盾的角色,装备者造成的伤害提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.0400000000372529 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.05000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.060000000055879354 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.07000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.0800000000745058 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21043, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21044": { + "Name": "无边曼舞", + "Desc": "舞步翩跹,光影悄然更迭。她牵着对方的手,含笑望向那双淡漠的眼睛。\\n「美丽的游侠…欢迎来到『记忆』的舞台。在这个距离…你比看上去更迷人。」\\n\\n四周逐渐变得黑暗,一束光芒从穹顶倾泻而下,追随着两人不断变换的舞步。\\n「不过,有些人本该与我们共舞,但他们却迟迟未到……」\\n\\n在旋转的瞬间,她凑近那副毫无表情的脸庞,握紧冰冷的手,轻轻问道——\\n「可以告诉我,你做了什么?」\\n\\n在越来越急促的舞步中,支离破碎的过往片段顺着指尖涌入她的脑海。\\n在越来越遥远的过去,她听见雨声,听见生命消逝之前发出的哀叹,然后她看到面前的舞者在微茫的雨中撑着血红的纸伞,而在她视线所及的地方——\\n\\n无数溺亡者的尸骸正在洪流中载沉载浮。\\n\\n她惊慌地试图抽出手,向后跌落。\\n四周再次明亮起来,宴会的喧闹声重新涌现,对方轻轻托住了她的腰,仿佛浑然不知刚刚发生了什么。\\n「忆者,多么优美的舞蹈,要再来一次么?」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "试探", + "Desc": "使装备者的暴击率提高#1[i]%。装备者对处于防御降低或减速状态下的敌人造成的暴击伤害提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21044, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21045": { + "Name": "谐乐静默之后", + "Desc": "所愿的永恒美梦于一瞬消散。向大地坠落之时,他并不悲伤,只是想闭上双眼。\\n\\n踏上的旧路已然破碎,而前程依旧笼罩于一片迷雾之中。\\n「清醒之后,世界依然在历经痛苦的循环,无物可逃,一如往常……」\\n他肩负过往,背朝故土,继续朝那尚不存在的乐园挪动脚步。\\n\\n所以,人们为何入睡?人们为何醒来?\\n——一颗又一颗星球在窗外掠过,这个答案如今需被赋予新的意义。\\n「也许——也许我还能……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "沉寂", + "Desc": "使装备者的击破特攻提高#1[i]%。装备者施放终结技后,速度提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.10000000009313226, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.12000000011175871, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.14000000013038516, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21045, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21046": { + "Name": "芳华待灼", + "Desc": "晨光熹微,寂静的花林中,腾挪移转的身影惊起只只飞鸟。\\n\\n默念剑招,随势舞动,原本生涩的招式越发纯熟。剑气所至之处,落花如雨,纷乱空中。不知不觉间,清凉的云雾已湿了她的鬓发。\\n\\n 「好剑法!」 \\n她惊觉,顺势转动手中的剑——\\n背后,灰发的{F#少女}{M#少年}放下了手中的相机。\\n 「美好的记忆可不会随风而逝。」 ", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "莫失莫忘", + "Desc": "使装备者的攻击力提高#1[i]%。进入战斗时,若有两名及以上我方角色拥有任意相同命途,使这些角色的暴击伤害提高#2[i]%。同类技能无法重复生效。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21046, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21047": { + "Name": "黑夜如影随行", + "Desc": "「脚印。」\\n「擦痕。」\\n「气味。」\\n\\n一切处理妥当后,他拾起一片鸦羽,轻盈跃上楼顶。\\n广袤的城市里,漆黑的影穿梭在无人注视的角落里。\\n\\n「我将溶于影中,为你们守望。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "隐匿", + "Desc": "使装备者的击破特攻提高#1[i]%。进入战斗时或造成击破伤害后,速度提高#2[i]%,持续#3[i]回合,该效果每回合只可触发1次。", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.09000000008381903, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.11000000010244548, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.12000000011175871, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21047, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21048": { + "Name": "梦的蒙太奇", + "Desc": "「美梦之都,罪恶温床,抑或应许之地……」\\n\\n撷取众人的记忆,他窥探那些震撼人心的片段,将之打乱,重组,拼接。\\n「大多数人的记忆都琐碎无聊,一生也不过寥寥几个珍贵的瞬间,其他的全无存在的必要。」\\n\\n画面一帧帧在他手中流过,逐渐化为精彩的影像——\\n「我们不搬运回忆,我们只创造过去。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "学院式剪接", + "Desc": "使装备者的速度提高#1[i]%,攻击处于弱点击破状态下的敌方目标后,恢复#2[f1]点能量,该效果每回合最多触发#3[i]次。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 3, + 2 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 3.5000000004656613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 4, + 2 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 4.500000000465661, + 2 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 5, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21048, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21050": { + "Name": "胜利只在朝夕间", + "Desc": "泰坦眷属磅礴的战吼席卷战场,两道电光般的身影在其中拼杀出一条血路。\\n\\n「我一个人便能把它们都收拾了。」\\n战士每一次出拳,蔓延的血刺贯穿敌人的身体。\\n「蛮力罢了,看我的剑!」\\n银白的剑甩出漂亮的弧度,怪物如落叶飘零。\\n「比比速度么?」\\n两人同时朝对面攻去——\\n哀嚎声传来,那背后偷袭的怪物即刻殒命。\\n两道声音撞在一起——\\n「是我给了它最后一击!」\\n", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "最后一击", + "Desc": "使装备者的暴击伤害提高#1[i]%,当装备者的忆灵对我方目标施放技能时,使我方全体目标造成的伤害提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.10000000009313226, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.14000000013038516, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.1600000001490116, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21050, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21051": { + "Name": "天才们的问候", + "Desc": "「恭喜恭喜,实验又失败了吧?」\\n「……」\\n「我早说了,你的方法有纰漏。」\\n「……」\\n「告诉你,我最近可有重大突破~」\\n\\n清冷的女士从书中抬起头来——\\n「不好意思,你说什么?」\\n她摆摆手。\\n「说不上有多了不起,也就能影响大半个银河吧。」\\n女士合起书页。\\n「不妨说来听听。」\\n\\n「哼,我这般天才的智慧…可不是随随便便就能听到的……」\\n「懂。我新做了些糕点,不如边吃边谈。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "恭喜", + "Desc": "使装备者的攻击力提高#1[i]%,装备者施放终结技后,使装备者与忆灵造成的普攻伤害提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.20000000018626451, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3000000002793968, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.3500000003259629, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.40000000037252903, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21051, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21052": { + "Name": "多流汗,少流泪", + "Desc": "沉闷的击打声响彻练功房,随着一记雷霆般的扫踢,沙袋几乎弯折成两段。\\n\\n「将军这样练,不怕吃不消么?」一旁的士兵问道。\\n\\n她笑着摇摇头,又重新挂上一只新沙袋。\\n\\n「这才哪到哪啊!」\\n\\n汗滴反射着月光,如晶莹的珍珠滑下,故去将军的提醒蓦地浮现心头——「练时多流汗,战时才能少流泪呐。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "来练!", + "Desc": "使装备者的暴击率提高#1[i]%,装备者的忆灵在场上时,装备者与忆灵造成的伤害提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2700000002514571 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.33000000030733645 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.3600000003352761 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21052, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "21053": { + "Name": "愿旅途永远坦然", + "Desc": "男孩在如星的雨滴中奔跑,为那久旱之后的甘霖欢呼。\\n\\n那一场雨下了很久很久,大篷车停驻在遍布绿意的土地。\\n「母亲,姐姐,我们不会再挨饿受冻了!」\\n埃维金人的篝火温暖了漫长的夜,男孩听着姐姐的故事,等待着晨曦。\\n\\n「卡卡瓦夏,你也会带着母神恩赐的幸运,去做到我们做不到的事…愿你的旅途永远坦然,诡计永不败露……」\\n\\n金色的阳光从梦中倒映在现实的居所,交易与数字再次映入眼帘。\\n他松开紧握的手——\\n\\n仿佛什么也没能抓住,又仿佛还有余温跳动。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "甜梦", + "Desc": "使装备者提供的护盾量提高#1[i]%,我方目标持有护盾时,造成的伤害提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21053, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "21054": { + "Name": "故事的下一页", + "Desc": "微风吹起麦浪,女孩抱着空白的手记,漫步其中。\\n\\n在哀丽秘榭之外,在陌生又似曾相识的城邦,形形色色的伙伴将彼此结识,如歌如梦的旅途将要开始……\\n\\n「这次,与我一起……」\\n麦田的尽头,等待已久的女孩合上书页,向「未来」伸出邀请的手——\\n\\n「为故事写下新的篇章吧♪」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "书写", + "Desc": "使装备者的生命上限提高#1[i]%。装备者的忆灵攻击后,使装备者与忆灵的治疗量提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21054, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21055": { + "Name": "直到明天的明天", + "Desc": "「缇里西庇俄丝,明天见……」\\n\\n母亲远行的时分,女孩拭去她脸庞的泪。\\n\\n她等待着一个又一个明天,直到自己也成长为母亲一般的人。\\n她站在门扉之前,紧握火种,耳边响起母亲的话。\\n\\n「那里,没有风雪、严寒与骤雨……」\\n\\n「但如果明天见不到……」\\n\\n她坠向大地,留下稚嫩的身影如流星划过天空——\\n\\n「那就明天的明天见啦!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "离别", + "Desc": "使装备者的治疗量提高#1[i]%。我方目标当前生命值百分比大于等于#2[i]%时,造成的伤害提高#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.5000000004656613, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21055, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21056": { + "Name": "追逐风的时候", + "Desc": "「呵,这颗给小倒霉蛋,总能堵上她那欠债爸妈的嘴了吧,少打她几顿也好。\\n「这颗给卖酸瓜糖的老奶奶救急,小病小痛都得治了,我可不想哪天吃不到那么好的糖……」\\n\\n女孩猫着腰一颗颗地细数布袋里的珠宝,忽然打了个喷嚏。\\n「谁在想我?」\\n\\n「赛法利娅,你在这儿呐。」\\n丝线盘绕在她的身后,似乎正犹豫着从哪儿开始。\\n\\n「以后,追逐风的时候……」\\n冰冷的金丝缠绕在她的手腕,令她动弹不得。\\n\\n「也别忘了照顾好自己。」\\n\\n她逃向远方,回头才发现,那斗篷绽线的一角,已被缝补如新。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "慌张", + "Desc": "进入战斗后,使我方全体造成的击破伤害提高#1[i]%。同类技能无法重复生效。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21056, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21057": { + "Name": "花儿不会忘记", + "Desc": "春天,她们播下种子。\\n夏日,她们灌溉花野。\\n秋夕,她们撷取硕果。\\n冬夜,她们踏雪欢歌。\\n……\\n\\n原本荒芜的土地花朵盛放,蝴蝶被那银铃般的笑声吸引,停驻指尖。\\n「姐姐,我们以后也会一起,把这里变作盛大的花海!」\\n\\n「看,我们的约定……」\\n蝴蝶向着彼岸飞去,那稍显沉默的少女轻轻抚过温暖的花瓣,就像妹妹依然在身旁。\\n「我,和我们照顾的那些花儿…都不曾忘记。」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "相依为命", + "Desc": "使装备者的暴击伤害提高#1[i]%。装备者忆灵造成的暴击伤害额外提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21057, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21058": { + "Name": "一行往日的血", + "Desc": "风暴在远方酝酿,触手从冥海中探出,似要捉弄那漂浮着的稚弱生命。\\n海兽的残肢锤击出冲天的浪花,碎作石头一般陨落海渊。\\n\\n他们说,搏杀的怒吼持续了十个日夜,盖过雷霆的震响。\\n他们说,即便有一万条性命,也不够被冥海消磨。\\n\\n直至英勇洗去稚嫩,冷傲洗去孱弱——\\n\\n那单薄的身影踉跄踏上海岸,其时朝阳初升,海水如同往日的血。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "厮杀", + "Desc": "使装备者的暴击率提高#1[i]%。装备者造成的战技和终结技伤害提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21058, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21060": { + "Name": "氤氲麦香的梦", + "Desc": "轻风拂过少年的指尖,将笔渍未干的书信带向远方。\\n\\n「属于我的未来会是什么样……」\\n梦想在脑海中迸发,飘向天际。\\n麦子随风儿舞动,泛起层层涟漪,似是在回应着那份青涩而真挚的心声。\\n\\n「不论发生了什么,哪怕手里只有一把剑,我也想守护好这方天地!」\\n少年在心中默默立下誓言——\\n\\n那誓愿有如烙印,永志心间。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "憧憬", + "Desc": "使装备者的暴击率提高#1[i]%。装备者造成的终结技和追加攻击伤害提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21060, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21061": { + "Name": "假日浴场大冒险", + "Desc": "「小风堇,我们一起去试试最近新开的特色浴场!」\\n\\n女孩在奥赫玛完成诊治,好奇地同孩童走进那形形色色的浴池。\\n\\n「试试水果汁按摩?」\\n看着那鲜红的双手,女孩抱住跃跃欲试的小伊卡向后退去——\\n「我还是喜欢…喝的……」\\n\\n「大地兽踩背,限时优惠喽!」\\n好奇的驮兽低下头颅,鼻息吹动女孩的头发。\\n「下…下次一定!」\\n\\n「药草浴池,强身健体,您几位?」\\n闻着馨香的草药香味,女孩试探着踏入池水。\\n「这应该很养生吧……」\\n\\n「嘟,嘟嘟!」\\n小伊卡在水中欢快地仰泳。\\n「这些天来,它也累坏了呢……」\\n\\n在这难得的假期,女孩喝着葡萄汁,与红发孩童一直从睡眠的秘诀聊到点心的做法。\\n\\n「不好,小…小伊卡!」\\n孩童的惊呼打破了浴池的平静。\\n\\n「嘟……」\\n「小伊卡,坚持住!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "冷静一下", + "Desc": "使装备者造成的伤害提高#1[i]%。装备者攻击后,有#2[i]%基础概率使受到攻击的目标陷入易伤状态,受到的伤害提高#3[i]%,持续#4[i]回合。同类效果无法叠加。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1, + 0.11499999975785613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1, + 0.13000000012107193, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1, + 0.1449999997857958, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21061, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21062": { + "Name": "于那终点再见", + "Desc": "不甘的泪水从面颊滑落,损毁法阵中央留下的除却死亡的阴影,还有无尽的寂静与空洞。\\n\\n恍然间,黑暗中传来一声叹息,那是属于「灵魂」的震颤。\\n「是你吗?姐姐…」\\n男孩抬起手,眼中闪过一丝光亮。那至亲身影只停留片刻,却仿佛在他心间停滞千年。\\n\\n「我明白了…谢谢你来与我作最后的道别。」\\n他缓缓起身,第一缕清晨的朝阳映照着倔强的脸庞与未干的泪痕。\\n\\n「求索定是孤独的长路,让我们于终点再见吧……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "执着", + "Desc": "使装备者的暴击伤害提高#1[i]%。装备者造成的战技和追加攻击伤害提高#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21062, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "22000": { + "Name": "新手任务开始前", + "Desc": "「还有多久开始行动?」\\n「你居然会问我这个…是新人出什么事了?」\\n「没有。」\\n「虽然艾利欧招揽她是因为别的原因,但她至少得活得过新手任务。」\\n「她很轻松。」\\n「那我放心了。看来阿刃也已经是非常靠谱的前辈了。」\\n「……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "眼疾手快", + "Desc": "使装备者的效果命中提高#1[i]%。当装备者攻击防御力被降低的敌方目标后,恢复#2[i]点能量。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 4 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 5 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 6 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 7 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "22001": { + "Name": "嘿,我在这儿", + "Desc": "三位少女行走于黑夜之中,周遭的景物在此刻增加了几分鬼魅的气息。\\n「藿藿你动作快点,不然我们不等你啦!」\\n她举着手机往前大步迈进,似乎并未被灵异的氛围所影响。\\n「我…我在这里!」\\n站在前方的少女怯生生地回应着。\\n「诶?原来你在前面啊,那我和裳裳背后的是……」\\n\\n此情此景最圆满的句号,一定就是少女的尖叫。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "不怕不怕啦", + "Desc": "使装备者的生命上限提高#1[i]%。当装备者施放战技时,治疗量提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.1600000001490116, + 2 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.1900000001769513, + 2 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.22000000020489097, + 2 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.25000000023283064, + 2 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.2800000002607703, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "22002": { + "Name": "为了明日的旅途", + "Desc": "罗盘的指针不断旋转,最后指向了梦的时刻。\\n车窗外,忆质充盈的阿斯德纳星系泛着迷蒙的光彩,坐落其间的边陲监狱战火绵延。\\n\\n「你们说,梦中的世界会是什么样的?我一定要仔仔细细地画下完整的地图!」 \\n少女收起测绘仪器,满怀憧憬地看着触手可及的新世界。\\n「那里乱得很,你们两个到了之后别乱跑。再像上次那样被别人绑架,我……」 \\n牛仔打扮的男人擦拭完武器,端着一杯饮料走到沙发处,无奈地摇了摇头。 \\n「梦想之地,有无限可能,我们一定会干出一番事业…列车长,要是我们爱上这地方不回来了,你会想我们吗?」 \\n绅士打扮的无名客朝帕姆眨了眨眼,微笑道。 \\n「不可以随便开列车长的玩笑帕!列车长,你是不是想说这句?」 少女露出狡黠的笑容。\\n「可恶!你们!」 \\n气泡在饮料里浮浮沉沉,车厢里充满了欢声笑语。 \\n……\\n\\n无名客年轻的背影逐渐被忆质吞没。\\n「一路平安…帕……」\\n回头的时候,车厢变得空落落的。\\n它愣住了…这样的场景,它似乎已经经历过无数次了。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "联结", + "Desc": "使装备者的攻击力提高#1[i]%。装备者施放终结技后,造成的伤害提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.18000000016763806, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.21000000019557774, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2700000002514571, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3000000002793968, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "22003": { + "Name": "忍事录•音律狩猎", + "Desc": "银河忍法千变万化,音律•狩猎风云叱咤,且听——\\n\\n吉他扫弦奏响,贝斯拨动心脏,电音轮舞刹那点燃全场!\\n汗水不会说谎,记录下一路跌宕,化作键盘音符回荡。\\n缭乱唱响,当仁不让,就算遍体鳞伤。\\n「缭乱!」「缭乱!」「缭乱!」\\n嘿,阁下,这世界本就荒诞狂浪,纵情高唱又何妨?", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "开演!", + "Desc": "使装备者的生命上限提高#1[i]%,损失或回复自身生命值后,暴击伤害提高#2[i]%,持续#3[i]回合,该效果每回合只可触发1次。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.18000000016763806, + 2 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.2249999998603016, + 2 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.2700000002514571, + 2 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.31499999994412065, + 2 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "22004": { + "Name": "宇宙大生意", + "Desc": "数据构成的虚拟会场中,参展代表们交换着意见。\\n两个身影穿行于展台之间,派送各方所需的一切。\\n\\n「咦,莫非您是…」\\n「我在电视上见过你帕。」\\n它们谈论起游戏、美食、彼此的身材,以及宇宙中的一切美好之物。\\n它们明明鲜少见面,却亲密得如一对老友——\\n\\n「对了,要不要再考虑一下我的提议……」\\n「列车是非卖品帕!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "互惠", + "Desc": "使装备者的攻击力提高#1[i]%。敌方目标每拥有1个不同属性的弱点,装备者对其造成的伤害提高#2[i]%,最多计入7个。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.05000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.060000000055879354 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.07000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.0800000000745058 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "23000": { + "Name": "银河铁道之夜", + "Desc": "若是担心脚下,只需再度抬头凝望,\\n当繁星温柔地注视,心已乘风而上。\\n每一个念想,每一声低语,\\n都化作生命中的承载,再不会失去。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "流星群", + "Desc": "场上每有1个敌方目标,使装备者的攻击力提高#2[f1]%,该效果最多叠加5层。当有敌方目标的弱点被击破时,装备者造成的伤害提高#1[i]%,持续1回合。", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.09000000008381903 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.1049999997485429 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.13499999977648258 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23001": { + "Name": "于夜色中", + "Desc": "少女露出一丝不易察觉的微笑。\\n「为什么呢?」\\n「此时此刻此地,明明只有我一个人……」\\n「却感觉…很热闹呢。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "花与蝶", + "Desc": "使装备者的暴击率提高#1[i]%。当装备者在战斗中速度大于100时,每超过#2[i]点,普攻和战技造成的伤害提高#3[i]%,同时终结技的暴击伤害提高#4[i]%,该效果可叠加#5[i]层。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 10, + 0.060000000055879354, + 0.12000000011175871, + 6 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 10, + 0.07000000006519258, + 0.14000000013038516, + 6 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 10, + 0.0800000000745058, + 0.1600000001490116, + 6 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 10, + 0.09000000008381903, + 0.18000000016763806, + 6 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 10, + 0.10000000009313226, + 0.20000000018626451, + 6 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23002": { + "Name": "无可取代的东西", + "Desc": "「史瓦罗,如果有一天我也不在了,这个数据库就拜托你了。」\\n(是谁…为什么我的记录里会有这样的留声……)\\n「史瓦罗,你有什么觉得无可取代的东西么?」\\n(无可取代…坏掉的零件…只要替换掉就好……)\\n「史瓦罗,总有一天你会找到的。」\\n(那种东西…只会是个麻烦……)\\n\\n「到了那个时候…你就离开这里吧。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "家人", + "Desc": "使装备者的攻击力提高#1[i]%。当装备者消灭敌方目标或受到攻击后,立即回复等同于装备者攻击力#2[i]%的生命值,同时造成的伤害提高#3[i]%,持续到自身下个回合结束。该效果不可叠加,每回合只可触发1次。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.0800000000745058, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.09000000008381903, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.10000000009313226, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.11000000010244548, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23003": { + "Name": "但战斗还未结束", + "Desc": "「记住,和那些怪物的战争,是不能靠撤退打赢的。」\\n「我们的身后就是贝洛伯格,我们就是最后一道钢铁防线,……」\\n「只有我们,绝不能退!」\\n\\n她抬起头,前方是寒天,是冻土,是一望无际的风雪。\\n一切如常。\\n唯独那个她一直注视着的背影,不在了。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "继承人", + "Desc": "使装备者的能量恢复效率提高#1[i]%,并在对我方目标施放终结技时恢复1个战技点。该效果每施放2次终结技可触发1次。当装备者施放战技后,使下一个行动的我方其他目标造成的伤害提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 1 + ] + }, + "2": { + "ParamList": [ + 0.12000000011175871, + 0.3500000003259629, + 1 + ] + }, + "3": { + "ParamList": [ + 0.14000000013038516, + 0.40000000037252903, + 1 + ] + }, + "4": { + "ParamList": [ + 0.1600000001490116, + 0.45000000041909516, + 1 + ] + }, + "5": { + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23004": { + "Name": "以世界之名", + "Desc": "「瓦尔特…吗……」\\n「这个名字…很棒吧?」\\n「那么……」\\n「从现在开始,你就是瓦尔特了。」\\n「律者的核心…还有守护这个世界的使命……」\\n「就拜托你了,瓦尔特。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "传承者", + "Desc": "使装备者对陷入负面效果的敌方目标造成的伤害提高#1[i]%。当装备者施放战技时,装备者此次攻击的效果命中提高#2[i]%,攻击力提高#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.2700000002514571, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.3000000002793968, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23005": { + "Name": "制胜的瞬间", + "Desc": "「输了想哭就哭吧,杰帕德。」\\n「但哭着也要站起来,直到你能赢过我…无论需要五年还是十年。」\\n几年后,小男孩不再哭鼻子,也不再输给姐姐。\\n\\n如今在战场上,无论以何种姿态,骁勇无畏的银鬃铁卫戍卫官总会坚守至最后\\n——只为找到彻底摧毁敌人的一瞬。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "决断", + "Desc": "使装备者的防御力提高#2[i]%,效果命中提高#4[i]%,同时使自身受到攻击的概率提高。当装备者受到攻击后,防御力额外提高#3[i]%,持续到自身回合结束。", + "Level": { + "1": { + "ParamList": [ + 2, + 0.24000000022351742, + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 2, + 0.2800000002607703, + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 2, + 0.3200000002980232, + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 2, + 0.3600000003352761, + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 2, + 0.40000000037252903, + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 27, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 59.40000000037253, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 102.6000000005588, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 145.80000000074506, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 189, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 232.20000000018626, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 275.40000000037253, + "BaseDefenceAdd": 4.050000000046566 + } + ] + }, + "23006": { + "Name": "只需等待", + "Desc": "「莫非你还有事没告诉我?」\\n\\n她看到对方僵着脖子,喉咙响起口水的吞咽声。\\n这个人怕她,所以她根本不需要使用能力。\\n事实上,她说什么都无所谓。\\n只要任由话语出口,带来的惧意自由发酵……\\n对方马上就会慌不择路,说出她想听的一切。\\n\\n而她只需等待,就像早已布下网的蜘蛛。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "蜘蛛的网", + "Desc": "使装备者造成的伤害提高#2[i]%。装备者每次施放攻击后,速度提高#3[f1]%,最多叠加#4[i]层。\\n当装备者击中敌方目标时,如果该目标不处于【游丝】状态,则有100%的基础概率使其陷入【游丝】状态。当敌方目标处于【游丝】状态时,也会被视为陷入了触电状态。【游丝】状态下,敌方目标每回合开始时受到等同于装备者#1[i]%攻击力的雷属性持续伤害,持续#5[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 0.04799999948590994, + 3, + 1 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 0.055999999633058906, + 3, + 1 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 0.06399999978020787, + 3, + 1 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 0.07199999992735684, + 3, + 1 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 0.0800000000745058, + 3, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23007": { + "Name": "雨一直下", + "Desc": "她走出屋檐下,打着伞哼着歌钻进小巷的角落。\\n不多一会儿,雨声停了。\\n\\n她挠挠头,滑动屏幕,头上的一小片空间内,雨丝再次滑落。\\n听着淅淅沥沥的雨声打落在伞面上,配合游戏的音效,她心情格外的好。\\n「还是下雨天打游戏最痛快。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "幻影现实", + "Desc": "使装备者的效果命中提高#1[i]%。当装备者对同时处于大于等于#4[i]个负面效果的敌方目标造成伤害时,暴击率提高#5[i]%。装备者施放普攻、战技、终结技后,有#2[i]%的基础概率对随机1个未持有【以太编码】的受击目标施加【以太编码】。持有【以太编码】的目标受到的伤害提高#3[i]%,持续1回合。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 1, + 0.12000000011175871, + 3, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 1, + 0.14000000013038516, + 3, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 1, + 0.1600000001490116, + 3, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 1, + 0.18000000016763806, + 3, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 1, + 0.20000000018626451, + 3, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23008": { + "Name": "棺的回响", + "Desc": "白色鸢尾旁,他叩打着棺材。\\n「有时我觉得,和你做这个交易,是我看轻你了。」\\n无人回应,只有棘刺毫不犹豫地穿透他的掌心。\\n但他也笑着,抓住了棘刺。\\n\\n「就是这样,我们都想利用彼此,然而我们都看轻了对方。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "荆棘", + "Desc": "使装备者的攻击力提高#1[i]%。当装备者施放攻击后,每击中1名不同的敌方目标,恢复#3[f1]点能量,每次攻击最多通过该方式恢复#4[i]次能量。当装备者施放终结技后,使我方全体速度提高#2[i]点,持续1回合。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 12, + 3, + 3 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 14, + 3.5000000004656613, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 16, + 4, + 3 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 18, + 4.500000000465661, + 3 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 20, + 5, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23009": { + "Name": "到不了的彼岸", + "Desc": "他每年都会来这里,带来几把新的剑。\\n所有剑的主人,他都见过他们的最后一面。\\n每当他离开,都会不无遗憾地想……\\n\\n自己的剑,何时才会被人带来此处。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "不得", + "Desc": "使装备者的暴击率提高#1[i]%,生命上限提高#2[i]%。当装备者受到攻击或装备者消耗自身生命值后,造成的伤害提高#3[i]%,该效果在装备者施放攻击后解除。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.2700000002514571, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "23010": { + "Name": "拂晓之前", + "Desc": "「将军,此事请务必慎重…往后历史会怎么评论将军您……」\\n云骑将军双目半阖,听取手下来报。\\n「历史自然会有判断,但我对历史的结论无甚兴趣。」\\n「事成,我此时便是胸有成竹,神闲气定。」\\n「事败,我此时便是逸乐无度,爱雀失众。」\\n\\n一只雀儿跳下他的肩膀,他顺势抬手接住。\\n「我只是做了我的判断罢了。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "长夜", + "Desc": "使装备者暴击伤害提高#1[i]%。使装备者战技和终结技造成的伤害提高#2[i]%。当装备者施放战技或终结技后,获得【梦身】效果。触发追加攻击时,消耗【梦身】,使追加攻击造成的伤害提高#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806, + 0.48000000044703484 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774, + 0.5600000005215406 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.24000000022351742, + 0.6400000005960464 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.2700000002514571, + 0.7200000006705523 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.8000000007450581 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23011": { + "Name": "她已闭上双眼", + "Desc": "额间的痛楚将伴随余生,但仍不及过去的万分之一。\\n她自以为神机妙算,直到故人离去。\\n如今她「看见」万象更迭,时移世变…\\n但她已闭上双眼,因为未来已经落定\\n——在「第三眼」中。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "视界", + "Desc": "使装备者的生命上限提高#1[i]%,能量恢复效率提高#4[i]%。当装备者的生命值降低时,使我方全体造成的伤害提高#2[f1]%,持续#5[i]回合。\\n每个波次开始时,为我方全体回复等同于各自已损失生命值#3[i]%的生命值。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.09000000008381903, + 0.8000000007450581, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.1049999997485429, + 0.8500000007916242, + 0.14000000013038516, + 2 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.12000000011175871, + 0.9000000008381903, + 0.1600000001490116, + 2 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.13499999977648258, + 0.9500000008847564, + 0.18000000016763806, + 2 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.1500000001396984, + 1, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23012": { + "Name": "如泥酣眠", + "Desc": "即使已在将军的肩头酣然睡去,男孩的手中仍紧紧握着剑。\\n他轻轻拍了拍男孩的脸颊,只听到他嘟囔着。\\n「将军…终于…我赢了……」\\n\\n他愣了愣,突然意识到相比起每天都在努力成长的男孩,\\n自己早已度过了漫长的岁月,也早已习惯「不变」。\\n\\n「很快,你就会赢过所有人。在那之后,才是开始……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "美梦", + "Desc": "使装备者的暴击伤害提高#1[i]%。当装备者的普攻或战技伤害未造成暴击时,使自身暴击率提高#2[i]%,持续#3[i]回合。该效果每#4[i]回合可以触发1次。", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761, + 1, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555, + 1, + 3 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484, + 1, + 3 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.5400000005029142, + 1, + 3 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.6000000005587935, + 1, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23013": { + "Name": "时节不居", + "Desc": "她曾在窗边度过许多时光。\\n\\n配制薄荷、荆芥等辛温之药时,窗外就开花了。\\n配制香薷、生姜等辛热之药时,窗外就下雨了。\\n配制芍药、乌梅等酸温之药时,窗外就落叶了。\\n配制黄芩、知母等苦寒之药时,窗外就飘雪了。\\n\\n时节不居,岁月如流,但这扇窗,坐在窗边的人,依旧未变。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "日有四时", + "Desc": "使装备者生命上限提高#1[i]%,治疗量提高#2[i]%。当装备者对我方目标提供治疗时,记录治疗量。当任意我方目标施放攻击后,根据记录治疗量的#3[i]%,对随机1个受到攻击的敌方目标造成基于装备者属性的附加伤害。该伤害不受加成影响,每回合最多结算1次。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.12000000011175871, + 0.3600000003352761 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.14000000013038516, + 0.4200000003911555 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.1600000001490116, + 0.48000000044703484 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.18000000016763806, + 0.5400000005029142 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.20000000018626451, + 0.6000000005587935 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23014": { + "Name": "此身为剑", + "Desc": "剑身碎裂,落入彻骨的寒冷中。\\n凡铁俗器皆是无用之物,它们的上限,望一眼就看得到尽头。\\n「我还要剑何用?」\\n她没有眷恋,眼中亦没有容纳任何一物。\\n\\n「从此刻起,此身为剑。」\\n要想跨越所谓的极限,要想得到无人涉足的突破\\n——唯有将自己也视作一份「薪柴」了。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "执此宵玉", + "Desc": "使装备者的暴击伤害提高#1[i]%。当队友受到攻击或消耗生命值后,装备者获得1层【月蚀】,最多叠加#2[i]层。每层【月蚀】使装备者下一次攻击造成的伤害提高#3[f1]%。叠满#2[i]层时,额外使该次攻击无视目标#4[i]%的防御力。该效果在装备者施放攻击后解除。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 3, + 0.14000000013038516, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.2300000002142042, + 3, + 0.16499999980442226, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.26000000024214387, + 3, + 0.1900000001769513, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.29000000027008355, + 3, + 0.2149999998509884, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 3, + 0.24000000022351742, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23015": { + "Name": "比阳光更明亮的", + "Desc": "自他生时,眼前便只有无光的地牢,\\n无关的罪孽将他缚于此地,无关的记忆将他浸没。\\n他挣扎着,尽其所能地呼吸,\\n试图在无边的海洋中抓住一束光的缝隙。\\n\\n直到将军进入这不见天日的牢时,\\n他看到比阳光更明亮的,是少年的眼神。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "抵死", + "Desc": "使装备者的暴击率提高#1[i]%。当装备者施放普攻时,获得1层【龙吟】,持续#2[i]回合。每层【龙吟】使装备者的攻击力提高#4[i]%,能量恢复效率提高#5[f1]%。【龙吟】最多叠加#3[i]层。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 2, + 2, + 0.18000000016763806, + 0.060000000055879354 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 2, + 2, + 0.21000000019557774, + 0.07000000006519258 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 2, + 2, + 0.24000000022351742, + 0.0800000000745058 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 2, + 2, + 0.2700000002514571, + 0.09000000008381903 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 2, + 2, + 0.3000000002793968, + 0.10000000009313226 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23016": { + "Name": "烦恼着,幸福着", + "Desc": "对于一名合格的公司职场人来说,「被压垮」是绝对不容许发生的事情。\\n无论是面对压力还是疲劳,都应该挺直腰杆,迎难而上!\\n除非…是被「它们」压倒在地。\\n\\n「哎呀,不要着急!我只有两只手嘛!」\\n刚结束加班回到家中的少女,被一众毛茸茸的生物压倒在地。\\n它们或许并不能完全听懂她的话语,只顾着将圆圆的脑袋凑近她的手掌。\\n疲惫感从身体中逐渐消失,取而代之的是抚顺毛发带来的温暖舒展。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "一个一个来", + "Desc": "使装备者暴击率提高#1[i]%,追加攻击造成的伤害提高#2[i]%。装备者施放追加攻击后,使目标陷入【温驯】状态,该效果最多叠加#4[i]层。我方目标击中【温驯】状态下的敌方目标时,每层【温驯】使造成的暴击伤害提高#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.3000000002793968, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.3500000003259629, + 0.14000000013038516, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.40000000037252903, + 0.1600000001490116, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.45000000041909516, + 0.18000000016763806, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23017": { + "Name": "惊魂夜", + "Desc": "少女躲在门后,不敢再靠前一步。\\n或许是因为今夜的目标就在眼前,她反而有些心跳加速。\\n「不怕不怕,我不怕……」\\n黑暗中,沉默放声尖叫。\\n\\n少女颤抖着,捏紧了手里的「武器」,却依然不敢靠近「目标」。\\n「没什么好害怕…好…好害怕!」\\n\\n身后的尾巴终于忍受不住,骤然亮起。\\n「快点啊,你就是拿个快递而已!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "深度深呼吸", + "Desc": "使装备者的能量恢复效率提高#1[i]%。我方目标施放终结技时,装备者为当前生命值百分比最低的我方目标回复等同于其#2[i]%生命上限的生命值。当装备者为我方目标提供治疗时,使该目标的攻击力提高#3[f1]%,该效果最多叠加#4[i]层,持续#5[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.10000000009313226, + 0.02399999974295497, + 5, + 2 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.11000000010244548, + 0.027999999467283487, + 5, + 2 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 0.031999999890103936, + 5, + 2 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.13000000012107193, + 0.035999999614432454, + 5, + 2 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.14000000013038516, + 0.0400000000372529, + 5, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23018": { + "Name": "片刻,留在眼底", + "Desc": "他曾听闻歌谣,传唱那道光芒:\\n玫瑰盛放,定是为了回应祂的笑容;\\n晨光烁耀,定是为了照亮祂的脸庞;\\n音律奏鸣,定是为了唤醒祂的倦眸。\\n\\n但那光芒一去不复返,他仍奔向远方\\n——只须等待,只须信仰,只须将纯美的一切播撒于寰宇。\\n即使一切都只是留在眼底的片刻,他却已收获想要的答案。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "骑士巡礼", + "Desc": "使装备者的暴击伤害提高#1[i]%。当装备者施放终结技时,根据装备者的能量上限,提高装备者终结技造成的伤害:每点能量提高#2[f2]%,最多计入#3[i]点。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.0036000001709908247, + 180 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.00419999985024333, + 180 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.004800000227987766, + 180 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.005399999907240272, + 180 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.005999999586492777, + 180 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23019": { + "Name": "镜中故我", + "Desc": "梅花将谢未谢时,她曾喜欢将这时刻封存,留于身边。\\n许多年过去,聒噪的、甜美的、各式各样的生命诞生于她的手下,但梅花依旧如期凋落。\\n许多年过去,镜中容颜未变,但于宇宙的尺度间,她是否也只能于短短的一瞬保持鲜活?\\n\\n「既然一切难逃逝去,创造还有何意义?」\\n不知沉默了多久,风吹花落,镜中人的回答一如旧时。\\n「为了有一天,不再留住梅花。」\\n她轻抚冰冷的镜面,如这样的自语,已不知发生过多少次了。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "彻骨梅香", + "Desc": "使装备者击破特攻提高#1[i]%。装备者施放终结技后,使我方全体造成的伤害提高#2[i]%,持续#3[i]回合,并且若装备者击破特攻大于等于#4[i]%,则恢复1个战技点。\\n每个波次开始时,我方全体立即恢复#5[f1]点能量,同类技能无法重复生效。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 3, + 1.5000000004656613, + 10 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 3, + 1.5000000004656613, + 12.500000000465661 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 3, + 1.5000000004656613, + 15 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 3, + 1.5000000004656613, + 17.50000000046566 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 3, + 1.5000000004656613, + 20 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23020": { + "Name": "纯粹思维的洗礼", + "Desc": "午后阳光恰好,花叶芬芳。\\n他虽已时时注意洁净,思维难免会因滞涩而生尘。\\n\\n「疗愈思想与保持健康同样重要。」\\n愚人的喧嚣随疲惫一同远去,他沉入水中,任思绪漂浮,心神循序澄明。\\n\\n「真理会躲开不洁,唯有纯粹方可接近。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "思想训练", + "Desc": "使装备者的暴击伤害提高#1[i]%。敌方目标每承受1个负面效果,装备者对其造成的暴击伤害额外提高#2[i]%,最多叠加#3[i]层。施放终结技攻击敌方目标时,使装备者获得【论辩】效果,造成的伤害提高#4[i]%,追加攻击无视目标#5[i]%的防御力,该效果持续#6[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.0800000000745058, + 3, + 0.3600000003352761, + 0.24000000022351742, + 2 + ] + }, + "2": { + "ParamList": [ + 0.2300000002142042, + 0.09000000008381903, + 3, + 0.4200000003911555, + 0.2800000002607703, + 2 + ] + }, + "3": { + "ParamList": [ + 0.26000000024214387, + 0.10000000009313226, + 3, + 0.48000000044703484, + 0.3200000002980232, + 2 + ] + }, + "4": { + "ParamList": [ + 0.29000000027008355, + 0.11000000010244548, + 3, + 0.5400000005029142, + 0.3600000003352761, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.12000000011175871, + 3, + 0.6000000005587935, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23021": { + "Name": "游戏尘寰", + "Desc": "如同瞬变的烟火,一分钟她也能变幻数十种颜色。\\n\\n烟花表演即将结束之时,她坐在高处,无聊地俯视着脚下熙熙攘攘的人群。\\n一个个念头游动又消失,狡黠的光在万花筒般的眼眸中流转。\\n「想好了,今天就这样玩!」\\n\\n她蹦蹦跳跳,在人群中穿梭,金红的尾摆忽隐忽现。\\n 「别跟丢啦,最美的烟花,才刚刚开始!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "善变", + "Desc": "使装备者的暴击伤害提高#1[i]%。战斗开始时,使装备者获得【假面】,持续#6[i]回合。当装备者持有【假面】时,装备者的队友暴击率提高#5[i]%,暴击伤害提高#2[i]%。装备者每恢复1个战技点,获得1层【彩焰】,恢复时溢出的战技点也会被计算在内。当【彩焰】达到#4[i]层后,移除所有【彩焰】并获得【假面】,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.3200000002980232, + 0.2800000002607703, + 4, + 4, + 0.10000000009313226, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3900000003632158, + 0.3500000003259629, + 4, + 4, + 0.11000000010244548, + 3 + ] + }, + "3": { + "ParamList": [ + 0.4600000004284084, + 0.4200000003911555, + 4, + 4, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.530000000493601, + 0.49000000045634806, + 4, + 4, + 0.13000000012107193, + 3 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.5600000005215406, + 4, + 4, + 0.14000000013038516, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23022": { + "Name": "重塑时光之忆", + "Desc": "点燃蜡烛,摊开纸牌,嗅闻芬芳——\\n那些残破的回忆,化作摇荡光影中的面容。\\n从火中钻出的幽灵,向她诉说着令人留恋的过去。\\n剪切时光,凝固片刻,她将最为珍贵的瞬间化为一个个水晶般的永恒。\\n\\n「失去的太多,留下的太少…我们培育记忆,以对抗残酷的时间。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "结晶", + "Desc": "使装备者的效果命中提高#1[i]%。装备者对陷入风化、灼烧、触电、裂伤状态的敌方目标造成伤害时,分别获得1层【先知】,最多叠加#4[i]层。单场战斗中,每种持续伤害状态类型仅可叠加1次【先知】效果。每层【先知】使装备者的攻击力提高#2[i]%,造成的持续伤害无视目标#3[f1]%的防御力。", + "Level": { + "1": { + "ParamList": [ + 0.40000000037252903, + 0.05000000004656613, + 0.07199999992735684, + 4 + ] + }, + "2": { + "ParamList": [ + 0.45000000041909516, + 0.060000000055879354, + 0.07899999944493175, + 4 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 0.07000000006519258, + 0.08599999966099858, + 4 + ] + }, + "4": { + "ParamList": [ + 0.5500000005122274, + 0.0800000000745058, + 0.09299999987706542, + 4 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.09000000008381903, + 0.10000000009313226, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23023": { + "Name": "命运从未公平", + "Desc": "最后一张牌摊开,沮丧,愤怒,无奈,镇静,百千种情绪瞬间浮现于对手们的脸。\\n「来都来了,何不再刺激一点?」 \\n他押上所有筹码,自认倒霉者咒骂着退出,暗自期待他的大败。\\n\\n输赢、声名、运气…他并不在意,他只是痴迷于那令生命颤抖的时刻——\\n在深渊与天堂之间,只有一个选择的距离。\\n\\n筹码掷下,哀叹声起,如这般虚幻的满足在尘埃落定后转瞬即逝。\\n「所有,或一无所有,但我并无选择的自由……」 ", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "全下", + "Desc": "使装备者的防御力提高#1[i]%,当装备者为我方目标提供护盾时,使装备者的暴击伤害提高#2[i]%,持续#3[i]回合。当装备者发动追加攻击击中敌方目标时,有#4[i]%的基础概率使受到攻击的敌方目标受到的伤害提高#5[f1]%,持续#6[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903, + 2, + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.4600000004284084, + 0.4600000004284084, + 2, + 1.1500000001396984, + 0.11499999975785613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.5200000004842877, + 0.5200000004842877, + 2, + 1.3000000002793968, + 0.13000000012107193, + 2 + ] + }, + "4": { + "ParamList": [ + 0.5800000005401671, + 0.5800000005401671, + 2, + 1.4500000004190952, + 0.1449999997857958, + 2 + ] + }, + "5": { + "ParamList": [ + 0.6400000005960464, + 0.6400000005960464, + 2, + 1.6000000005587935, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23023, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 30, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 66, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 114, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 162, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 210, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 258, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 306, + "BaseDefenceAdd": 4.500000000465661 + } + ] + }, + "23024": { + "Name": "行于流逝的岸", + "Desc": "流淌于「有」与「无」的狭间,冰冷的潮水永世冲刷着两岸,将一切带向最终的归宿。\\n\\n溺水者于此间呼救,哀歌、欢乐、甜蜜、痛苦倒影其中…她无法经受,却可体会——\\n在抵达尽头之前,仍有许多路要走,许多声音要倾听,许多事情可去改变。\\n\\n她伸出手,将溺水者从虚无的诱惑中救出,一个又一个幻影在她身后破碎。\\n她继续行着,在这无垠的世间,为了一个不存在的终点。\\n\\n——而这里永远下着雨。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "司渡", + "Desc": "使装备者的暴击伤害提高#1[i]%。当装备者击中敌方目标时,使敌方陷入【泡影】状态,持续1回合。装备者每次攻击时,对每个目标只可触发1次。装备者对陷入【泡影】状态的目标造成的伤害提高#2[i]%,终结技造成的伤害额外提高#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23024, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23025": { + "Name": "梦应归于何处", + "Desc": "阿斯德纳星系的边缘。忆海翻涌巨浪,她犹如一粒火星,随时可能在狂风中熄灭。\\n 「一个无法做梦的人要进入联觉梦境,付出的可是堪比『死亡』的代价。」\\n同伴担忧的声音仍在她耳边回响。她深吸了一口气,潜入忆域。\\n随着载具静静地沉入忆域深处,星星点点的萤火从缝隙处逸散,旋即被无边的黑暗吞没。\\n\\n 「为何赴死?」\\n在越来越深的忆海中,忆域生物发出的微光犹如遥远的眼睛,淡漠地瞥视着她。\\n\\n梦对她而言仍旧是太过遥远的事。她空望着无际的黑暗,身体和灵魂在忆质的重压之下早已到达崩溃的临界点。即使察觉到自己的意识逐渐远去,脑海中仍旧只有那些残存的记忆一遍遍重演——\\n遮天蔽日的虫群冲破前线,她包裹在火焰中朝向虫群飞去,虫群的灰烬如雪般飘落,下面尽是骑士们漆黑的残骸。\\n她还来不及手捧花束,为一位又一位牺牲的铁骑献上最后的纪念。他们的生命瞬息绽放,旋即熄灭,就像一串基因编码,只有数字,未曾拥有自己的姓名。\\n\\n 「为何活着?」\\n死一般的寂静中,她犹如火焰消融在海水之中,仅存一粒微弱的火星不停朝向光明的地方前进,前进……\\n不知过了多久,她睁开眼,似乎看见「未来」犹如一颗珍珠,散发着迷蒙的光芒,她的眼泪顺着脸庞滴落——\\n 「为了找到…属于我自己的『梦』……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "蜕变", + "Desc": "使装备者的击破特攻提高#1[i]%。当装备者对敌方目标造成击破伤害时,使敌方陷入【溃败】状态,持续#4[i]回合。【溃败】状态下目标受到装备者造成的击破伤害提高#2[f1]%,速度降低#3[i]%,同类效果无法叠加。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 0.20000000018626451, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 0.20000000018626451, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 0.20000000018626451, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23025, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23026": { + "Name": "夜色流光溢彩", + "Desc": "岁月从镜中流过,青涩的少女已蜕变为游刃有余的歌者。\\n她打量着镜中的自己,时间改变了一切,唯有那绿色的眼睛依然如同湖泊般宁静,仿佛在诉说着不渝的信念。\\n\\n 「今天看起来兴致很高呢。」\\n「是啊…毕竟有很重要的『演出』。」\\n「嗯,谐乐大典的彩排就要开始了,请您移步准备室。」\\n……\\n\\n她走出化妆室,和身后灯火辉煌的剧院渐行渐远。\\n「我的舞台不在此处。」\\n她闭上双眼,任凭夜色吞没她的影子。\\n「从过去,到现在,我的歌声都只是为了……」\\n「为了那些失去希望的人们。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "抚慰", + "Desc": "我方角色每次攻击时,使装备者获得1层【歌咏】,每层【歌咏】使装备者的能量恢复效率提高#1[f1]%,最多叠加#2[i]层。装备者施放终结技时,移除【歌咏】并获得【华彩】,【华彩】使装备者的攻击力提高#4[i]%,使我方全体造成的伤害提高#3[i]%,持续#5[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.030000000027939677, + 5, + 0.24000000022351742, + 0.48000000044703484, + 1 + ] + }, + "2": { + "ParamList": [ + 0.034999999683350325, + 5, + 0.2800000002607703, + 0.6000000005587935, + 1 + ] + }, + "3": { + "ParamList": [ + 0.0400000000372529, + 5, + 0.3200000002980232, + 0.7200000006705523, + 1 + ] + }, + "4": { + "ParamList": [ + 0.04499999969266355, + 5, + 0.3600000003352761, + 0.840000000782311, + 1 + ] + }, + "5": { + "ParamList": [ + 0.05000000004656613, + 5, + 0.40000000037252903, + 0.9600000008940697, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23026, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23027": { + "Name": "驶向第二次生命", + "Desc": "他仿佛落入深海,一切都离他而去,只余空洞的思维在跳跃与挣扎。\\n\\n恐惧、不安、孤独、黑暗、愤怒…那些感受没有随着肉身消散,反而以另一种方式保留在机械的躯壳之中,愈发沉重。\\n\\n他听到逝者的呼唤,闻到烧焦的气味,电机的嗡鸣在他的耳边盘旋,蓝色的血液流向他饥渴的心脏…一些残忍的记忆再次浮现,刻骨的仇恨化作黑暗中的微光,他循着光亮朝尽头走去,用尽力气浮出了水面。\\n\\n他睁开眼,一簇火花闪过,他听到来自医者的祝贺——\\n「欢迎再次来到这个世界。」 \\n他握紧双手,如今它们是钢铁的,冰冷的……\\n他将不再为自己而活。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "苦航", + "Desc": "使装备者的击破特攻提高#1[i]%,造成的击破伤害无视目标#3[i]%的防御力。当装备者在战斗中击破特攻大于等于#2[i]%时,速度提高#4[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 1.5000000004656613, + 0.20000000018626451, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 1.5000000004656613, + 0.2300000002142042, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 1.5000000004656613, + 0.26000000024214387, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 1.5000000004656613, + 0.29000000027008355, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 1, + 1.5000000004656613, + 0.3200000002980232, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23027, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23028": { + "Name": "偏偏希望无价", + "Desc": "「慈玉女士,要不是您一直送来物资和善款,福利院恐怕……」\\n她轻轻抚摸着孩子们的头,制止了院长的话头。\\n「只要我在,不用担心以后的日子…至于这些话,也不必说给孩子们听,增添他们的忧虑。」\\n\\n孩子们仰起头,叽叽喳喳与她谈着最近的趣事,烦恼和梦想。\\n「慈玉女士,下次来是什么时候?」\\n「平时工作不要太累了哦,要早点睡觉……」\\n「慈玉女士,长大了我一定要成为和你一样的人!」\\n她望着孩子们清澈的双眼,突然愣了一下。\\n「和我一样的人……」\\n孩子将苹果递给她,「嗯!给别人带来光和希望的人!」\\n\\n贫乏、过失、忧愁、苦难…她行走在银河之间,收取他人的抵押,给予等价的回报。\\n生命因欲望而存在,因欲望而奔走,因欲望而死去——这是无可抵抗的规律,亦是生命的必然。\\n表里不一的慈善家,抵押灵魂的恶商…她被世人赋予诸般身份,也只有她自己才明白这些举止背后的道义。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "承诺", + "Desc": "使装备者的暴击率提高#1[i]%。当装备者在战斗中暴击伤害大于#2[i]%时,每超过#3[i]%,追加攻击造成的伤害提高#4[i]%,该效果可叠加#5[i]层。战斗开始时和装备者施放普攻后,使终结技或追加攻击造成的伤害无视目标#6[i]%的防御,持续#7[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1.2000000001862645, + 0.20000000018626451, + 0.12000000011175871, + 4, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.1900000001769513, + 1.2000000001862645, + 0.20000000018626451, + 0.14000000013038516, + 4, + 0.24000000022351742, + 2 + ] + }, + "3": { + "ParamList": [ + 0.22000000020489097, + 1.2000000001862645, + 0.20000000018626451, + 0.1600000001490116, + 4, + 0.2800000002607703, + 2 + ] + }, + "4": { + "ParamList": [ + 0.25000000023283064, + 1.2000000001862645, + 0.20000000018626451, + 0.18000000016763806, + 4, + 0.3200000002980232, + 2 + ] + }, + "5": { + "ParamList": [ + 0.2800000002607703, + 1.2000000001862645, + 0.20000000018626451, + 0.20000000018626451, + 4, + 0.3600000003352761, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23028, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23029": { + "Name": "那无数个春天", + "Desc": "几场急雨过后,春潮初涨,碧草丛生。\\n「这是第几个春天了?」 \\n他想起那些初次奔赴战场的年轻战士。年年岁岁,不同的人,却都是一样的朝气蓬勃、充满希望。\\n柳条折尽待君回,最后他们带回故土的…往往是再也无法融化的冰霜。\\n\\n鸟鸣悠然,他闭上双眼,任日光透过树叶缝隙扑于脸上。\\n——「所以啊,还是留下来的人最寂寞。」 ", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "世事无痕", + "Desc": "使装备者的效果命中提高#1[i]%,装备者施放普攻、战技、终结技攻击敌方目标后,有#2[i]%的基础概率使其陷入【卸甲】状态。【卸甲】状态下,敌方目标受到的伤害提高#3[i]%,持续#4[i]回合。若目标处于装备者施加的持续伤害状态,则有#5[i]%的基础概率将装备者施加的【卸甲】状态升级成【穷寇】状态,使敌方目标受到的伤害额外提高#6[i]%,持续#4[i]回合,期间装备者无法对其施加【卸甲】。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935, + 0.10000000009313226, + 2, + 0.6000000005587935, + 0.14000000013038516 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.6000000005587935, + 0.12000000011175871, + 2, + 0.6000000005587935, + 0.1600000001490116 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.14000000013038516, + 2, + 0.6000000005587935, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.6000000005587935, + 0.1600000001490116, + 2, + 0.6000000005587935, + 0.20000000018626451 + ] + }, + "5": { + "ParamList": [ + 1, + 0.6000000005587935, + 0.18000000016763806, + 2, + 0.6000000005587935, + 0.22000000020489097 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23029, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23030": { + "Name": "落日时起舞", + "Desc": " 灿烂的暮色中,一个迅捷的身影在房顶上奔跑。\\n\\n「狸狸,果果,看我们谁先到终点!」\\n攀上房檐,躲开守卫,随风晃荡,少女如同敏捷的小兽,追逐着最后一丝日光。\\n\\n微热的晚风拂过少女的脸,余晖将猫儿染得五彩斑斓。\\n「你们赢了!」\\n她擦掉额头的汗水,将猫儿抱在怀中。\\n群星浮起,她卸下心防的纯真笑颜盛放其中,犹如天边浮动的层层晚霞。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "沉酣", + "Desc": "使装备者受到攻击的概率大幅提高,暴击伤害提高#1[i]%。当装备者施放终结技后,获得1层【火舞】,持续2回合,最多叠加#2[i]层。每层【火舞】使装备者追加攻击造成的伤害提高#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 2, + 0.3600000003352761, + 5 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 2, + 0.4200000003911555, + 5 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 2, + 0.48000000044703484, + 5 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 2, + 0.5400000005029142, + 5 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 2, + 0.6000000005587935, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23030, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23031": { + "Name": "我将,巡征追猎", + "Desc": "「可悲可笑的奴隶们……」\\n浩荡的丰饶民军队压境而来,狼毒如洪水般涌向青丘军,试图唤起军士深埋于心中的恐惧,化作种种可怖的幻象,使他们垂下武器,犹豫不前。\\n但阵线犹如铜墙铁壁,不为步离人轻蔑的话音所动,一个身影缓步走出。\\n她缓缓活动着身体,无形的煞气冲击下,旗帜猎猎作响。\\n「将军,是将军出现了……」\\n「飞霄将军……」\\n「『天击』将军!」\\n细微的呼唤汇聚起来,化作震天的战吼。\\n\\n「翾翔不坠,万载常胜!」\\n她站在那里,一个人,就像一支军队。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "震慑", + "Desc": "使装备者的暴击率提高#1[f1]%。装备者施放追加攻击时,获得1层【流光】,最多叠加#3[i]层。每层【流光】使装备者造成的终结技伤害无视目标#2[i]%的防御力。装备者回合结束时,移除1层【流光】。", + "Level": { + "1": { + "ParamList": [ + 0.1500000001396984, + 0.2700000002514571, + 2 + ] + }, + "2": { + "ParamList": [ + 0.17499999981373549, + 0.3000000002793968, + 2 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.33000000030733645, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2249999998603016, + 0.3600000003352761, + 2 + ] + }, + "5": { + "ParamList": [ + 0.25000000023283064, + 0.3900000003632158, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23031, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23032": { + "Name": "唯有香如故", + "Desc": "「第一件,整顿工作习惯。」 \\n「第二件,严格执行奖惩规定。」 \\n「当然,最要紧的还是尽快查清那些盘根错节的利益关系……」\\n本在欣赏湖光山色,思绪又不知不觉滑向了工作,压力和烦躁也随之而来。\\n\\n她赶紧点燃一柱随身携带的安神香。\\n「世界如此美妙,我却如此暴躁…休假的日子,就别想那些烦人的事了……」 ", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "安心", + "Desc": "使装备者击破特攻提高#1[i]%。装备者施放终结技攻击敌方目标后,使其陷入【忘忧】状态,持续#5[i]回合,【忘忧】状态下的敌方目标受到的伤害提高#2[i]%,若装备者当前击破特攻大于等于#3[i]%,受到的伤害提高效果额外提高#4[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226, + 1.5000000004656613, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.12000000011175871, + 1.5000000004656613, + 0.10000000009313226, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 1.5000000004656613, + 0.12000000011175871, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.1600000001490116, + 1.5000000004656613, + 0.14000000013038516, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 0.18000000016763806, + 1.5000000004656613, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23032, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23033": { + "Name": "忍法帖•缭乱破魔", + "Desc": "「忍界」某地,灰惨的阴霾笼罩着城市。\\n\\n「咿呀——!」\\n少女的身影在怪物之中穿行,其残影如同绚丽的色彩挥洒于没有月光的大地。\\n\\n烟尘之中,「邪忍」们痛苦呻吟,惊疑不定。\\n「你…是谁……」\\n「在下忍号『乱破』,一心不乱,破邪显正是也。」\\n「邪忍」们面面相觑,意欲四处逃窜。\\n「阁下,准备好念诵辞世句了吗——」\\n手里剑如流光旋转,危险的气息席卷而来。\\n「奥义•缭乱灭破杀阵!」\\n\\n身后的爆炸照亮了满目疮痍的夜晚。\\n她深吸一口气,跃入如重金属般喧嚣的霓虹灯光之中。\\n「此等邪祟,实际丑恶。缭乱忍侠的壮绝•狩猎,仍需继续……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "除邪", + "Desc": "使装备者的击破特攻提高#1[i]%。进入战斗时立即恢复#2[f1]点能量,且装备者施放终结技后获得【雷遁】,施放2次普攻后,装备者行动提前#3[i]%,并移除【雷遁】。装备者施放终结技后会重置【雷遁】。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 30, + 0.5000000004656613 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 32.50000000046566, + 0.5500000005122274 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 35, + 0.6000000005587935 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 37.50000000046566, + 0.6500000006053597 + ] + }, + "5": { + "ParamList": [ + 1, + 40, + 0.7000000006519258 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23033, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23034": { + "Name": "回到大地的飞行", + "Desc": "虚妄迷想业已碎裂,他要做万物的太阳,却从天空坠落。\\n\\n「感受到了何为痛苦吗?」\\n他心中另一道声音如是说道。\\n「那正是我应感受的。」\\n他落入尘埃,用沉重的脚步回答。\\n\\n他行走于大地,再次看到遍布人世的苦楚,如同源源不断的水泉。\\n他跨越拦路的荆棘,他听闻凡人的呼喊,他经受苦惘,他获得宁静。\\n\\n「坠落,本是飞翔的别名。」\\n在这第八日,他赐予自身「启程」。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "再启程", + "Desc": "当装备者对我方单体角色施放战技或终结技后,装备者恢复#1[f1]点能量,同时使技能目标获得1层【圣咏】,持续#4[i]回合,最多叠加#3[i]层,每层【圣咏】使持有者造成的伤害提高#2[i]%。装备者每对我方单体角色施放#5[i]次战技或终结技后,恢复1个战技点。", + "Level": { + "1": { + "ParamList": [ + 6, + 0.1500000001396984, + 3, + 3, + 2 + ] + }, + "2": { + "ParamList": [ + 6.500000000465661, + 0.17250000033527613, + 3, + 3, + 2 + ] + }, + "3": { + "ParamList": [ + 7, + 0.19499999983236194, + 3, + 3, + 2 + ] + }, + "4": { + "ParamList": [ + 7.500000000465661, + 0.21750000002793968, + 3, + 3, + 2 + ] + }, + "5": { + "ParamList": [ + 8, + 0.24000000022351742, + 3, + 3, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23034, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23035": { + "Name": "长路终有归途", + "Desc": "「她…是谁?」少女轻抚着陌生的自己。\\n\\n她想起了那日的火如何将她吞噬,珠宝折扇化作飞灰。\\n\\n自己曾走在漫长的道路上,寻找前方的光。\\n外面的声音在呼唤她,领她前行,带着她穿越重重黑暗。\\n内心的声音在提醒她,那些未完成的誓言,要赴的约定,未实现的梦,还在等着她——\\n\\n它们未曾消弭于火中,反而于火中愈发闪耀生辉。\\n\\n「那就是我……」\\n她站在终点,不再回头留恋——\\n「原来的我,亦是全新的我。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "新生", + "Desc": "使装备者的击破特攻提高#1[i]%。当有敌方目标的弱点被击破时,有#2[i]%的基础概率使其陷入【焚灼】状态,受到的击破伤害提高#3[i]%,持续#4[i]回合,此效果可叠加#5[i]层。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 1, + 0.18000000016763806, + 2, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 1, + 0.21000000019557774, + 2, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 1, + 0.24000000022351742, + 2, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 1, + 0.2700000002514571, + 2, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 1, + 0.3000000002793968, + 2, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23035, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 30, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 66, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 114, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 162, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 210, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 258, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 306, + "BaseDefenceAdd": 4.500000000465661 + } + ] + }, + "23036": { + "Name": "将光阴织成黄金", + "Desc": "「这一缕,是战士的牺牲。」\\n「这一缕,是英雄的成长。」\\n「这一缕,是城邦的繁盛。」\\n……\\n衣匠牵丝引线,汇聚在她的指尖。\\n「一些英雄的轨迹,已然断裂……」\\n她挽起另一些金丝,接续缝补。\\n「一些英雄的命运,仍要向前延展……」\\n\\n被赋予神性的织机兀自运转,衣匠们曼舞翩跹。千年时光在织机上流过,她早已习惯了如此的等待——\\n\\n为了那将光阴织成黄金的「灵感」。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "创设", + "Desc": "使装备者的基础速度提高#1[i],装备者和装备者的忆灵在攻击后使装备者获得1层【织锦】,每层【织锦】使装备者和装备者的忆灵暴击伤害提高#4[f1]%,最多叠加#2[i]层。叠加至上限时,每层【织锦】额外使造成的普攻伤害提高#3[f1]%。", + "Level": { + "1": { + "ParamList": [ + 12, + 6, + 0.09000000008381903, + 0.09000000008381903 + ] + }, + "2": { + "ParamList": [ + 14, + 6, + 0.1049999997485429, + 0.1049999997485429 + ] + }, + "3": { + "ParamList": [ + 16, + 6, + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "4": { + "ParamList": [ + 18, + 6, + 0.13499999977648258, + 0.13499999977648258 + ] + }, + "5": { + "ParamList": [ + 20, + 6, + 0.1500000001396984, + 0.1500000001396984 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23036, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23037": { + "Name": "向着不可追问处", + "Desc": "「博识学会的信件处理完毕。」\\n「模拟宇宙正常运行中……」\\n「著作合集已再版。」\\n「嘘,小点声,别吵到了黑塔女士……」\\n\\n……银河边境的高塔内,人偶们有条不紊地处理着各项杂事,等待着她的出现。\\n时光倏忽而过,数不尽的人物如流星般划过历史的夜空,闪耀一时,终归沉寂。\\n「黑塔女士已经很久没露面了……」\\n「她还在思考么……」\\n\\n「哼,以为得出几个公理就结束了?」\\n她伸个懒腰,从演算中抬起头,似乎又有想法浮现——\\n「没有什么是不可置疑的,我偏要追问到底!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "思维游戏", + "Desc": "使装备者的暴击率提高#1[i]%。装备者施放终结技时,使装备者造成的战技和终结技伤害提高#4[i]%,持续#5[i]回合。装备者施放终结技后,若本次终结技消耗的能量大于等于#3[i]点,恢复1个战技点。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 2, + 140, + 0.6000000005587935, + 3 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 2, + 140, + 0.7000000006519258, + 3 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 2, + 140, + 0.8000000007450581, + 3 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 2, + 140, + 0.9000000008381903, + 3 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 2, + 140, + 1, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23037, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23038": { + "Name": "如果时间是一朵花", + "Desc": "「妈妈,我还想听一个故事!」\\n\\n「我的好女孩,今天讲讲时间的故事怎么样?」\\n\\n「时间…是什么?」\\n\\n「时间啊,就像一朵花。」\\n\\n「是那种开在原野上的蒲公英花嘛!」\\n\\n「是啊,和蒲公英花一样,时间会成长,会盛放,会结实,我们把它的花瓣称为——『光阴』。」\\n\\n「之后呢?」\\n\\n「之后啊,它会凋零成千瓣,留下种子,飞向各地……」\\n\\n「妈妈,那是不是叫『未来』!」\\n\\n「猜猜再往后,它会变成什么?」\\n\\n「它会变成好多好多花,化成一片绚烂的花海吗?」\\n\\n母亲还未来得及回答,窗外的阳光落在女孩的脸上,那温柔的身影再度消失在梦中。\\n她睁开眼——\\n「如果时间是一朵花……」她喃喃道。\\n「它一定会变成一片花海。」那沉静的女孩说。\\n「当然啦!」那调皮的女孩完成了杰作,欢呼道。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "希冀", + "Desc": "使装备者的暴击伤害提高#1[i]%。装备者施放追加攻击后额外恢复#2[i]点能量,并获得【谕示】,持续#3[i]回合。当装备者持有【谕示】时,我方全体目标的暴击伤害提高#4[i]%。进入战斗时,装备者恢复#5[i]点能量,并获得【谕示】,持续#6[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 12, + 2, + 0.48000000044703484, + 21, + 2 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 12, + 2, + 0.6000000005587935, + 21, + 2 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 12, + 2, + 0.7200000006705523, + 21, + 2 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 12, + 2, + 0.840000000782311, + 21, + 2 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 12, + 2, + 0.9600000008940697, + 21, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23038, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23039": { + "Name": "血火啊,燃烧前路", + "Desc": "冰冷的露水凝结在锋刃,滑落血色的痕迹。\\n铁锈味的荒野,鏖战燃起的火焰仍在灰烬上跳跃。\\n\\n「迈德漠斯,刚才真是神一样的战斗啊!」\\n赤裸上身的战士擦拭武器,兴奋地喊道。\\n\\n「万敌,以后我也要像你一样百战百胜!」\\n孩子崇敬地看着他,手中捏着一把断剑。\\n\\n「王储,我们回到悬锋指日可待啊。」\\n沧桑的老人笑着,举起酒杯向他致意。\\n\\n他点点头,兀自走到了营地边。\\n重生的疼痛仍在皮肤上滚动,明日,他将带领悬锋孤军再次出发,迁往异乡。\\n流离将停于何处,他不知道,他唯一能确定的是——他将背负王的职责,直至血火燃尽。\\n\\n夜色渐深,他独自痛饮血酿,过路的吟游诗人拉动琴弦,不着调的歌声在空中晃荡——\\n「家乡是梦想之地呐,不是可以抵达的地方。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "远望", + "Desc": "使装备者的生命上限提高#1[i]%,受到的治疗量提高#6[i]%,施放战技或终结技时消耗等同于自身#2[f1]%生命上限的生命值,并使本次攻击造成的伤害提高#3[i]%,若该效果消耗的生命值高于#4[i]点,可使伤害额外提高#5[i]%。\\n若当前生命值不足,该效果最多使装备者的当前生命值降低至1点。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.060000000055879354, + 0.3000000002793968, + 500, + 0.3000000002793968, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.06499999971129, + 0.3500000003259629, + 500, + 0.3500000003259629, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.07000000006519258, + 0.40000000037252903, + 500, + 0.40000000037252903, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.07499999972060323, + 0.45000000041909516, + 500, + 0.45000000041909516, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.0800000000745058, + 0.5000000004656613, + 500, + 0.5000000004656613, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23039, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 62.40000000037253, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 137.28000000026077, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 237.12000000011176, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 336.96000000089407, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 436.80000000074506, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 536.640000000596, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 636.480000000447, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23040": { + "Name": "让告别,更美一些", + "Desc": "又是一场离别的仪式。\\n少女踏着破碎的月光,于河畔编织告别的花环。\\n\\n古老的哀歌凝冻于寒冷的空气,静谧的河流注入遥远彼方的花乡。\\n染血的书卷,生锈的长剑,绣着诗文的手帕…她接过他们的遗物,和他们一生的故事。\\n\\n「我的眼睛如同透镜,永远思念着星空。」\\n那是献给早逝学者的墓志铭。\\n「对人生,对死亡,骑士只给予冷然的一瞥。」\\n那是无名战士坚持了一生的箴言。\\n「生命只是闪烁着光芒的死亡。」\\n那是追求永恒的诗人,以生命写就的最后一句。\\n……\\n\\n「每一朵花,都曾骄傲地盛放过……」\\n伴着河流的呜咽,她向逝者献上诗篇、花环与纪念——\\n「如果枯萎不可避免,至少让我们的告别…更美一些。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "铭刻", + "Desc": "使装备者的生命上限提高#1[i]%,装备者或装备者的忆灵在自身回合内损失生命值时,装备者获得【冥花】,【冥花】可以使装备者和装备者的忆灵造成伤害时,无视目标#2[i]%的防御力,持续#3[i]回合。\\n当装备者的忆灵消失时,使装备者行动提前#4[i]%。该效果最多触发1次,装备者每次施放终结技时重置触发次数。", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 2, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.375, + 0.3500000003259629, + 2, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.45000000041909516, + 0.40000000037252903, + 2, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.5250000001396984, + 0.45000000041909516, + 2, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 2, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23040, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23041": { + "Name": "生命当付之一炬", + "Desc": "在那幽深的实验之中,总有诸般幻象涌来,拖拽他的脚步。\\n\\n诱惑的呢喃之声说,放下那危险的课题,何必赌上自己的一生。\\n冰冷的威胁之声说,游走在生死边缘的人,终将生命付之一炬。\\n还有那愤怒的指控声,呼喊着将那亵渎神明的罪犯,推入残酷的刑场。\\n\\n「跨越人生的表演,终到了谢幕的时候。」\\n\\n他闭上双眼,握住神明的火种,任凭痛苦淹没濒死的魂灵。\\n先是决绝的眼睛,而后是搏动的心脏,完整的灵魂…他亲手将自己投入那至纯至烈的熔炼之中——\\n\\n诸般声音沸腾,而后化为寂静。\\n一片黑暗中,璀璨的真理在他的手中成型。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "熔炼", + "Desc": "装备者回合开始时恢复#5[i]点能量。若敌方目标拥有装备者添加的弱点,装备者对其造成的伤害提高#3[i]%。\\n当敌方目标受到装备者攻击时,装备者使其防御力降低#2[i]%,持续#4[i]回合。同类效果无法叠加。", + "Level": { + "1": { + "ParamList": [ + 0, + 0.12000000011175871, + 0.6000000005587935, + 2, + 10 + ] + }, + "2": { + "ParamList": [ + 0, + 0.1500000001396984, + 0.7000000006519258, + 2, + 10 + ] + }, + "3": { + "ParamList": [ + 0, + 0.18000000016763806, + 0.8000000007450581, + 2, + 10 + ] + }, + "4": { + "ParamList": [ + 0, + 0.21000000019557774, + 0.9000000008381903, + 2, + 10 + ] + }, + "5": { + "ParamList": [ + 0, + 0.24000000022351742, + 1, + 2, + 10 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23041, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23042": { + "Name": "愿虹光永驻天空", + "Desc": "「情绪就像云,而我们是承载它的天空。如果天空乌云密布,心绪就会阴晴不定。」\\n医师关切地倾听来访者的苦楚,施以疗愈的轻语。\\n「请闭上双眼,慢慢呼吸……想象自己,身处温暖而柔软的地方……」\\n\\n言语如有魔力,那翼兽的双翼下七色的虹光洒落。\\n「微风会顺着原野吹来,带着野花的清香。湿润的云飘过,满载阳光……」\\n来客逐渐沉入美梦,只有均匀而细微的呼吸声作为回应。\\n\\n接诊完最后一位病人,医师轻轻带上病房的门。\\n\\n无边的永夜仍在远方涌动,一座座废墟如同大地的伤口。\\n\\n「来世,愿黎明照拂众人……」\\n启程之前,她向着天空许下心愿——\\n「愿天空,虹光永驻。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "包容", + "Desc": "使装备者的速度提高#1[i]%。装备者施放普攻、战技和终结技时消耗我方全体等同于当前生命值#2[f1]%的生命值并使装备者的忆灵下一次攻击后额外对攻击目标造成1次等同于#6[f1]%生命值消耗总量的基于装备者的忆灵属性的附加伤害,随后清空生命值消耗总量。装备者的忆灵施放忆灵技时,使敌方全体受到的伤害提高#4[f1]%,持续#5[i]回合。同类效果无法叠加。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.010000000009313226, + 0, + 0.18000000016763806, + 2, + 2.5000000004656613 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.012500000186264515, + 0, + 0.2249999998603016, + 2, + 3.1249999997671694 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.014999999664723873, + 0, + 0.2700000002514571, + 2, + 3.750000000698492 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.017499999841675162, + 0, + 0.31499999994412065, + 2, + 4.375 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.02000000001862645, + 0, + 0.3600000003352761, + 2, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23042, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23043": { + "Name": "谎言在风中飘扬", + "Desc": "猫耳少女于屋顶舒展身姿,滑入夜色。\\n于那沉寂千年的宝库,少女轻盈地穿梭,将珍宝纳入怀中,又无声无息地逃离。\\n「愚蠢的命运,可追不上我!」\\n\\n废墟中的风裹挟着荒野的味道,吹动少女的兜帽。\\n枕着冰凉的石块,她咽下粗粝的干粮,抛逗着指尖的金币。\\n\\n远方细微的声响落入她的双耳,在那黎明照耀的圣城,熙熙攘攘的人群仍在享受欢宴与温暖。\\n「还有多久…一年,还是一万年?」\\n\\n她伸个懒腰,将不安的思绪抛在身后。\\n「呵,赛法利娅总会笑到最后!」\\n\\n金色的闪电划过天空,少女的宣言仍在风中飘扬\\n——一如千年前的模样。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "欺瞒", + "Desc": "使装备者的速度提高#1[i]%。装备者施放攻击后,有#2[i]%的基础概率使敌方每个单体目标陷入【茫然】状态,【茫然】状态下的敌方目标防御力降低#3[i]%,持续#4[i]回合,若装备者的速度大于等于#7[i],有#5[i]%的基础概率使敌方每个单体目标陷入【失窃】状态,【失窃】状态下的敌方目标防御力降低#6[i]%,持续#4[i]回合。【茫然】或【失窃】被重复施加时,仅最新施加的生效。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 1.2000000001862645, + 0.1600000001490116, + 2, + 1.2000000001862645, + 0.0800000000745058, + 170 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 1.2000000001862645, + 0.18000000016763806, + 2, + 1.2000000001862645, + 0.09000000008381903, + 170 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1.2000000001862645, + 0.20000000018626451, + 2, + 1.2000000001862645, + 0.10000000009313226, + 170 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 1.2000000001862645, + 0.22000000020489097, + 2, + 1.2000000001862645, + 0.11000000010244548, + 170 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 1.2000000001862645, + 0.24000000022351742, + 2, + 1.2000000001862645, + 0.12000000011175871, + 170 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23043, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23044": { + "Name": "黎明恰如此燃烧", + "Desc": "又一次站在旅途的终点,男人的身影被金色的骄阳吞没。\\n\\n「那黄金的血液,救世的希望,原来……」\\n\\n他的眼泪还未落下,便蒸发不见。\\n「小白,明天见!」\\n「救世主,记得活到最后!」\\n「去成为翁法罗斯的黎明吧……」\\n\\n……\\n众人的愿望空余回响,无名的英雄破碎,露出那酷烈的死亡。\\n\\n「若怒火不足以焚灭悖谬的命运……」\\n他一次又一次朝着那山顶攀升,一次又一次跌落粉碎——\\n\\n「那就让我与它一同燃尽!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "失却", + "Desc": "使装备者的基础速度提高#1[i],造成伤害时无视目标#2[i]%的防御力。装备者施放终结技后,获得【烈阳】,回合开始时移除。持有【烈阳】时,装备者造成的伤害提高#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 12, + 0.18000000016763806, + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 14, + 0.2249999998603016, + 0.7800000007264316 + ] + }, + "3": { + "ParamList": [ + 16, + 0.2700000002514571, + 0.9600000008940697 + ] + }, + "4": { + "ParamList": [ + 18, + 0.31499999994412065, + 1.1400000001303852 + ] + }, + "5": { + "ParamList": [ + 20, + 0.3600000003352761, + 1.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23044, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.200000000186265, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 68.64000000059605, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 118.56000000052154, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168.48000000044703, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 218.40000000037253, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 268.320000000298, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 318.2400000002235, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23045": { + "Name": "没有回报的加冕", + "Desc": "幻境中,少女的耳畔回响起那日的对谈。\\n\\n「梅林,这柄剑一点儿也不难拔。」\\n「的确如此。对你来说,成为大家期待中的王,一点儿也不困难。毕竟有我在指导你嘛。但,阿尔托莉雅…真正困难的是,你不可能永远都符合大家的期待。」\\n「到时候,他们可以选一个更合适的王。我不会有意见。」\\n「如果这种人根本就不存在呢?」\\n「…那我会努力回应大家的期待。」\\n\\n如今,少女早已明白这将是何等的悲剧。如果此刻便是最初的那个时刻,她是否会选择放弃?\\n\\n王无言。她只是握紧了剑。\\n岩石再度发出拔剑的轰鸣。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "骑士之王", + "Desc": "使装备者的暴击伤害提高#1[i]%。施放终结技时,使装备者的攻击力提高#6[i]%,若装备者的能量上限大于等于#3[i]点,为装备者固定恢复等同于装备者能量上限#5[i]%的能量,并使装备者的攻击力提高#2[i]%,持续#4[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.40000000037252903, + 300, + 2, + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "2": { + "ParamList": [ + 0.45000000041909516, + 0.5000000004656613, + 300, + 2, + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.5400000005029142, + 0.6000000005587935, + 300, + 2, + 0.10000000009313226, + 0.6000000005587935 + ] + }, + "4": { + "ParamList": [ + 0.6300000005867332, + 0.7000000006519258, + 300, + 2, + 0.10000000009313226, + 0.7000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.7200000006705523, + 0.8000000007450581, + 300, + 2, + 0.10000000009313226, + 0.8000000007450581 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23045, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23046": { + "Name": "理想燃烧的地狱", + "Desc": "平原上业火纷飞。不知何人的理想化作灰烬。不知何人的理想熊熊燃起。\\n\\n守护者穿梭于枪弹弓矢之间。\\n这里没有他可以拯救的对象。这里满是他希望拯救的对象。\\n\\n救一人,杀一人。救万人,杀万人。自相践踏的命运,亦是人类延续的一环。\\n\\n早已习惯了一切,守护者的脚步从未迟疑。\\n覆盖双腿的意志如风。覆盖双臂的意志如火。\\n\\n他仍在寻找属于拯救的奇迹。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "赤原猎兵", + "Desc": "使装备者的暴击率提高#1[i]%。进入战斗时,若我方的战技点上限大于等于#2[i]点,使装备者的攻击力提高#3[i]%。装备者每次施放战技后,使装备者的攻击力提高#4[i]%,最多叠加#5[i]次。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 6, + 0.40000000037252903, + 0.10000000009313226, + 4 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 6, + 0.5000000004656613, + 0.12499999976716936, + 4 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 6, + 0.6000000005587935, + 0.1500000001396984, + 4 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 6, + 0.7000000006519258, + 0.17499999981373549, + 4 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 6, + 0.8000000007450581, + 0.20000000018626451, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23046, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "24000": { + "Name": "记一位星神的陨落", + "Desc": "从一道光开始。\\n祂们坠落,陨灭的威胁居高临下。\\n祂们不得不停止自我复制,争先恐后拥抱彼此,\\n试图用繁殖的权利为代价,换取生存的可能。\\n祂们携手,从未如此团结\\n——但命途戛然而止,\\n祂们趋向真正的死亡。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "扑火", + "Desc": "当装备者施放攻击时,使装备者本场战斗中的攻击力提高#1[i]%,该效果最多叠加#2[i]层。当装备者击破敌方目标弱点后,造成的伤害提高#3[i]%,持续#4[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 4, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 4, + 0.1500000001396984, + 2 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 4, + 0.18000000016763806, + 2 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 4, + 0.21000000019557774, + 2 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 4, + 0.24000000022351742, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24001": { + "Name": "星海巡航", + "Desc": "来往于星海之间,\\n祂的速度有如虹霓闪光的一瞬。\\n围追不死孽物,\\n揽寻幻宝解药,\\n寻求解脱之途。\\n祂的航程将犹如永不被打破的誓言般,\\n永无尽头。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "猎逐", + "Desc": "使装备者的暴击率提高#1[i]%,装备者对生命值百分比小于等于#2[i]%的敌方目标暴击率额外提高#3[i]%。当装备者消灭敌方目标后,攻击力提高#4[i]%,持续#5[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.5000000004656613, + 0.0800000000745058, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 0.10000000009313226, + 0.25000000023283064, + 2 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 0.12000000011175871, + 0.3000000002793968, + 2 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 0.14000000013038516, + 0.3500000003259629, + 2 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.1600000001490116, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "24002": { + "Name": "记忆的质料", + "Desc": "宇宙像一片堆满垃圾的生荒地。\\n偶有琳琅,无人捡拾。\\n祂翻阅往日的罅隙,拣选记忆的种子\\n——新的生命要是萌芽,它的种子须是死的。\\n粉色、蓝色、白色的宝石被带了来,\\n在祂的苗圃中轻盈闪烁,\\n但宇宙依旧寂静如谜。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "珍存", + "Desc": "使装备者的效果抵抗提高#1[i]%,当装备者受到攻击后,如果自身未持有护盾,则获得1个等同于装备者#2[i]%生命上限的护盾,持续#3[i]回合。该效果每#4[i]回合只能触发1次。如果装备者持有护盾,则使自身受到的伤害降低#5[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.1600000001490116, + 2, + 3, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 2, + 3, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742, + 2, + 3, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703, + 2, + 3, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232, + 2, + 3, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "24003": { + "Name": "孤独的疗愈", + "Desc": "诡秘天成,无相无形。\\n万有皆虚,倏忽一梦。\\n自灭者灭,欲生者生。\\n将熄还熠,将涸而盈。\\n悲悯混沌之救济,灵药滋长虚影。\\n背向星辰之暗面,徒然封装于瓶。\\n\\n「如此悖论,而我等以为荣。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "混沌灵药", + "Desc": "使装备者的击破特攻提高#1[i]%。当装备者施放终结技时,使装备者造成的持续伤害提高#2[i]%,持续#3[i]回合。陷入装备者施加的持续伤害效果的敌方目标被消灭时,装备者恢复#4[f1]点能量。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742, + 2, + 4 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3000000002793968, + 2, + 4.500000000465661 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761, + 2, + 5 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555, + 2, + 5.500000000465661 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484, + 2, + 6 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24004": { + "Name": "不息的演算", + "Desc": "永恒地悬停于虚空之中,\\n闪耀的数据如洪流般涌入祂的脑海。\\n将过去未来的万物化作符号,\\n祂于初始之刻推演终末之时。\\n知识,答案,真相……\\n信息的迷雾中升腾起璀璨的光,\\n于是一切对祂都已澄明。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "无界之思", + "Desc": "使装备者的攻击力提高#1[i]%。施放攻击后,每击中一名敌方目标,使攻击力额外提高#2[i]%,该效果最多叠加5次,持续至下次攻击后,若击中大于等于#3[i]名敌方目标,使自身速度提高#4[i]%,持续#5[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529, + 3, + 0.0800000000745058, + 1 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.05000000004656613, + 3, + 0.10000000009313226, + 1 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.060000000055879354, + 3, + 0.12000000011175871, + 1 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.07000000006519258, + 3, + 0.14000000013038516, + 1 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 3, + 0.1600000001490116, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24005": { + "Name": "记忆永不落幕", + "Desc": "不论繁华的、荒凉的、短暂的、漫长的…每一颗星球,每一个瞬间皆在发生无数的事件。\\n那凝结的历史一触便融化于手中,化作泪水自世界的眼眸流淌而下——\\n\\n有人说,那是多么沉重的泪水,凝聚的岁月足以令永恒褪色。\\n有人说,那是多么美妙的故事,悲哀澄澈,欢悦明静,其间不夹杂一丝虚伪。\\n\\n银河静默流淌,祂不语,只是凝望——\\n凝望着,等待着它们成为「记忆」。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "收取", + "Desc": "使装备者的速度提高#1[f1]%。装备者施放战技后,使我方全体造成的伤害提高#2[i]%,持续#3[i]回合。", + "Level": { + "1": { + "ParamList": [ + 0.060000000055879354, + 0.0800000000745058, + 3 + ] + }, + "2": { + "ParamList": [ + 0.07499999972060323, + 0.10000000009313226, + 3 + ] + }, + "3": { + "ParamList": [ + 0.09000000008381903, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.1049999997485429, + 0.14000000013038516, + 3 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.1600000001490116, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + } +} \ No newline at end of file diff --git a/data/lightcones.en.json b/data/lightcones.en.json new file mode 100644 index 0000000..4f53e6f --- /dev/null +++ b/data/lightcones.en.json @@ -0,0 +1,35106 @@ +{ + "20000": { + "Name": "Arrows", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"The hunter's eyes are the clearest when they pull back the bowstring with the arrow nocked.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "Crisis", + "Desc": "At the start of the battle, the wearer's CRIT Rate increases by #1[i]% for #2[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20001": { + "Name": "Cornucopia", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"Life is the existence of order beyond a certain threshold. Its birth is the final answer to the silent universe, declaring the end to the era of old chaos.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "Prosperity", + "Desc": "When the wearer uses their Skill or Ultimate, their Outgoing Healing increases by #1[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20002": { + "Name": "Collapsing Sky", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"The death of all things is as natural as their birth. Time erodes everything, turning all tangible entities to dust.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "Havoc", + "Desc": "The wearer's Basic ATK and Skill deal #1[i]% more DMG.", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20003": { + "Name": "Amber", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"Only those who aren't affected by time can survive in time.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "Stasis", + "Desc": "Increases the wearer's DEF by #1[i]%. If the wearer's current HP percentage is lower than #2[i]%, increases their DEF by a further #3[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.5000000004656613, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "20004": { + "Name": "Void", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"He stared into the void, hanging high like the dark sun at the end of all matter, or a mouth that answered all questions. It said: ███ █ ███ ██ The answer couldn't be expressed in any human language, but could be understood by all.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "Fallen", + "Desc": "At the start of the battle, the wearer's Effect Hit Rate increases by #1[i]% for #2[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 3 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20005": { + "Name": "Chorus", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"Fingers clutch to make a fist, strength is built via numbers. I give myself for something higher — the concept of us.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "Concerted", + "Desc": "After entering battle, increases the ATK of all allies by #1[i]%. Abilities of the same type cannot stack.", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20006": { + "Name": "Data Bank", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"Human extinction is inevitable, but the library will live on: Lonely, immobile, and hidden from the public. Its vast collection is useless, yet pure from corruption.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "Learned", + "Desc": "Increases DMG dealt by the wearer's Ultimate by #1[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20007": { + "Name": "Darting Arrow", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate. \\n\\n\"The battle has begun. Arrows are thirsty for blood.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "War Cry", + "Desc": "When the wearer defeats an enemy, increases ATK by #1[i]% for #2[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 3 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 3 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20008": { + "Name": "Fine Fruit", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate. \\n\\n\"Everything tastes sweet for those desperate for water.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "Savor", + "Desc": "At the start of the battle, immediately regenerates #1[i] Energy for all allies.", + "Level": { + "1": { + "ParamList": [ + 6 + ] + }, + "2": { + "ParamList": [ + 7.500000000465661 + ] + }, + "3": { + "ParamList": [ + 9 + ] + }, + "4": { + "ParamList": [ + 10.500000000465661 + ] + }, + "5": { + "ParamList": [ + 12 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20009": { + "Name": "Shattered Home", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate. \\n\\n\"Absolute control comes from the ability to inflict total destruction.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "Eradication", + "Desc": "The wearer deals #2[i]% more DMG to enemy targets whose HP percentage is greater than #1[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.5000000004656613, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20010": { + "Name": "Defense", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate. \\n\\n\"If you ever doubt these walls will lead us to victory, just look at these brave souls standing atop them.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "Revitalization", + "Desc": "When the wearer unleashes their Ultimate, they restore HP by #1[i]% of their Max HP.", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20011": { + "Name": "Loop", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate. \\n\\n\"Those running away from the past think no one understands their despair. When they finally take a breather, they'll find their future selves staring right at them with bloodshot eyes.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "Pursuit", + "Desc": "Increases DMG dealt from its wearer to Slowed enemies by #1[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20012": { + "Name": "Meshing Cogs", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate. \\n\\n\"Harmony is achieved when everyone does their bit amidst the clunking of machines.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "Fleet Triumph", + "Desc": "After the wearer uses attacks or gets hit, additionally regenerates #1[i] Energy. This effect cannot be repeatedly triggered in a single turn.", + "Level": { + "1": { + "ParamList": [ + 4 + ] + }, + "2": { + "ParamList": [ + 5 + ] + }, + "3": { + "ParamList": [ + 6 + ] + }, + "4": { + "ParamList": [ + 7 + ] + }, + "5": { + "ParamList": [ + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20013": { + "Name": "Passkey", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate. \\n\\n\"Knowledge is locked behind a gate, the key to which is hidden from those seeking answers from others, while made obvious for those determined to find it on their own.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "Epiphany", + "Desc": "After the wearer uses their Skill, additionally regenerates #1[i] Energy. This effect cannot be repeatedly triggered in a single turn.", + "Level": { + "1": { + "ParamList": [ + 8 + ] + }, + "2": { + "ParamList": [ + 9 + ] + }, + "3": { + "ParamList": [ + 10 + ] + }, + "4": { + "ParamList": [ + 11 + ] + }, + "5": { + "ParamList": [ + 12 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20014": { + "Name": "Adversarial", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"Freedom fighters will never die, as their stories will forever be told.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "Alliance", + "Desc": "When the wearer defeats an enemy, increases SPD by #1[i]% for #2[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "3": { + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "4": { + "ParamList": [ + 0.1600000001490116, + 2 + ] + }, + "5": { + "ParamList": [ + 0.18000000016763806, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20015": { + "Name": "Multiplication", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"When life has lost its meaning, please continue to bestow life upon it.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "Denizens of Abundance", + "Desc": "After the wearer uses their Basic ATK, their next action will be Advanced Forward by #1[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20016": { + "Name": "Mutual Demise", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"How does one make perfect the past of a planet? Now — immediately — rend the planet asunder.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "Legion", + "Desc": "If the wearer's current HP percentage is lower than #1[i]%, CRIT Rate increases by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.8000000007450581, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.8000000007450581, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.8000000007450581, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20017": { + "Name": "Pioneering", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate.\\n\\n\"We will no longer fight alone. The IPC will stand alongside everyone in assistance.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "IPC", + "Desc": "When the wearer Breaks an enemy's Weakness, the wearer restores HP by #1[i]% of their Max HP.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20018": { + "Name": "Hidden Shadow", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate. \\n\\n\"The Nihility might find us, but there is a non-zero chance that they might not.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "Mechanism", + "Desc": "After using Skill, the wearer's next Basic ATK deals Additional DMG equal to #1[i]% of ATK to the target enemy.", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 0.7500000006984919 + ] + }, + "3": { + "ParamList": [ + 0.9000000008381903 + ] + }, + "4": { + "ParamList": [ + 1.0500000000465661 + ] + }, + "5": { + "ParamList": [ + 1.2000000001862645 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20019": { + "Name": "Mediation", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate. \\n\\n\"What can be more joyous than purging disharmony?\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "Family", + "Desc": "Upon entering battle, increases SPD of all allies by #1[i] points for #2[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 12, + 1 + ] + }, + "2": { + "ParamList": [ + 14, + 1 + ] + }, + "3": { + "ParamList": [ + 16, + 1 + ] + }, + "4": { + "ParamList": [ + 18, + 1 + ] + }, + "5": { + "ParamList": [ + 20, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20020": { + "Name": "Sagacity", + "Desc": "A drop of strength condensed from time itself. All the seemingly insignificant moments come together to form the magnificent choir of fate. \\n\\n\"Should Wise Ones be unable to abandon their identity as humans, they shall be abandoned by wisdom.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "Genius", + "Desc": "When the wearer uses their Ultimate, increases ATK by #1[i]% for #2[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 2 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20021": { + "Name": "Shadowburn", + "Desc": "The delicate power distilled from time itself. It's all the seemingly insignificant moments that weave together a magnificent destiny. \\n\\n\"People always attempt to erase unpleasant pasts. Such is the nature of memory.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Memory", + "Refinements": { + "Name": "Beautify", + "Desc": "When the wearer summons memosprite for the first time, recovers #1[i] Skill Point(s) and regenerates #2[i] Energy for this unit.", + "Level": { + "1": { + "ParamList": [ + 1, + 12 + ] + }, + "2": { + "ParamList": [ + 1, + 14 + ] + }, + "3": { + "ParamList": [ + 1, + 16 + ] + }, + "4": { + "ParamList": [ + 1, + 18 + ] + }, + "5": { + "ParamList": [ + 1, + 20 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20022": { + "Name": "Reminiscence", + "Desc": "The delicate power distilled from time itself. It's all the seemingly insignificant moments that weave together a magnificent destiny. \\n\\n\"In the fleeting sweet dream, it was as if the old soul had returned to the colorful waters of childhood.\"", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Memory", + "Refinements": { + "Name": "Going to Sleep", + "Desc": "When memosprite's turn starts, the wearer and memosprite each gain 1 stack of \"Commemoration.\" Each stack increases DMG dealt by #1[i]%, stacking up to #2[i] time(s). When memosprite disappears, removes \"Commemoration\" from the wearer and memosprite.", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 4 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 4 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 4 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 4 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 28.800000000745058, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 63.360000000335276, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 109.44000000040978, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 155.5200000004843, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 201.6000000005588, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 247.6800000006333, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 293.7600000007078, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21000": { + "Name": "Post-Op Conversation", + "Desc": "\"You're awake... Thank you.\"\\n\"You... saved my life, Natasha. The one who should be saying thanks... is me.\"\\n\"No, I should be thanking you... for holding on until I finished the surgery.\"\\n\\nThe doctor and patient smiled wearily at each other and said nothing more.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "Mutual Healing", + "Desc": "Increases the wearer's Energy Regeneration Rate by #1[i]% and increases Outgoing Healing when they use their Ultimate by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21001": { + "Name": "Good Night and Sleep Well", + "Desc": "The dim light outlines the dust tracks,\\nAs a young girl mumbles sweetly in her sleep.\\nA silent figure appears behind her.\\n\"Well, well, well, you're cuter without those glasses — I knew it.\"\\nThe guitarist stares at her sleeping face, muttering to herself:\\n\"Good night, the genius girl that worries a lot.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "Toiler", + "Desc": "For every debuff the target enemy has, the DMG dealt by the wearer increases by #1[i]%, stacking up to #2[i] time(s). This effect also applies to DoT.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21002": { + "Name": "Day One of My New Life", + "Desc": "\"So happy I got to see Pom-Pom in new clothes today! I like it~\"\\n\"Today's my birthday! I'm still as cute as ever.\"\\n\"Today, I finally finally finally have a junior! Isn't that right, {NICKNAME}?\"\\n\\nWe click the shutter many times without thinking.\\nDo we do that to capture the happiness at that moment?\\nOr to capture ourselves at that moment?", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "At This Very Moment", + "Desc": "Increases the wearer's DEF by #1[i]%. After entering battle, increases All-Type RES of all allies by #2[i]%. Abilities of the same type cannot stack.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.0800000000745058 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.10000000009313226 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097, + 0.11000000010244548 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21003": { + "Name": "Only Silence Remains", + "Desc": "\"Shouldn't we get off? It's our stop.\"\\nA chuckle came from above. His eyes moved, but he didn't look up.\\n\\n\"To be clear, March always says you're expressionless, but I don't agree.\"\\n\"The train's data bank show traces of an update, but the results weren't saved.\"\\n\"So... which entry were you having trouble with?\"\\n\\nHe grasped his pen tighter as he looked at the bloody scene drawn in the notebook from memory.\\n\\n\"I see. It was the one about you...\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "Record", + "Desc": "Increases the wearer's ATK by #1[i]%. If there are 2 or fewer enemies on the field, increases wearer's CRIT Rate by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21004": { + "Name": "Memories of the Past", + "Desc": "An old photo lies on the far end of the table in the guardian's residence.\\nShe would always subconsciously move her eyes away whenever she happened to see it.\\nThe memories of the past had already become distant, but the dreams of today still linger.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "Old Photo", + "Desc": "Increases the wearer's Break Effect by #1[i]%. When the wearer attacks, additionally regenerates #2[i] Energy. This effect cannot be repeatedly triggered in a single turn.", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 4 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 5 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 6 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 7 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21005": { + "Name": "The Moles Welcome You", + "Desc": "\"Moles, moles,\"\\n\"Leaving our holes,\"\\n\"Smart moles fear naught foes,\"\\n\"Moles, moles,\"\\n\"Bite your toes!\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "Fantastic Adventure", + "Desc": "When the wearer uses Basic ATK, Skill, or Ultimate to attack enemies, the wearer gains one stack of Mischievous. Each stack increases the wearer's ATK by #1[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21006": { + "Name": "The Birth of the Self", + "Desc": "In the beginning, it had the exact same pose as the previous portrait.\\nLooking at the face identical to hers, she was convinced that this was not her.\\n\\n\"Impossible. How can two portraits be exactly the same?\"\\n\\nShe tweaked its joints, opened its eyes, and made its fingers softer.\\nShe looked happy when all the changes were done.\\n\\n\"Completely different from yesterday. This is more like who I am today.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "The Maiden in the Painting", + "Desc": "Increases DMG dealt by the wearer's Follow-up ATKs by #1[i]%. If the current HP percentage of the target enemy is below or equal to #2[i]%, increases DMG dealt by Follow-up ATKs by an extra #3[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.5000000004656613, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.5000000004656613, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.5000000004656613, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21007": { + "Name": "Shared Feeling", + "Desc": "When the doctor found the wounded girl, she was clinging to a machine that had stopped working, with all sorts of parts filling her pocket.\\nShe took the girl back to her clinic and treated the wounds.\\nDrops of sweat slowly rolled down the girl's cheek, but she remained silent and her hands didn't stop fiddling the machine.\\nTo the doctor, the way the girl was attached to the machine was very much like how she was attached to her patients who needed help.\\nSo the doctor did not try to comfort the girl nor did she nag her about being more careful; but rather, she sat down with her to give her a moment of peace.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "Cure and Repair", + "Desc": "Increases the wearer's Outgoing Healing by #1[i]%. When using Skill, regenerates #2[f1] Energy for all allies.", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 2.5000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 3.5000000004656613 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21008": { + "Name": "Eyes of the Prey", + "Desc": "In reality, most prey don't realize when danger is encroaching.\\nThis one's no exception.\\nThe sniper's scope slowly centers on a man throwing banknotes stack after stack, who seems completely oblivious to his impending demise.\\n\"So that's what greed looks like. That amount is equal to several of my contracts already... No wonder someone wants him dead.\"\\n\\nAs if these thoughts were broadcasted out loud, the man in the scope turns his head, looking straight into the eyes of the sniper. \\n\"I've been waiting for you. Would this much be enough for you to hear me out?\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "Self-Confidence", + "Desc": "Increases the wearer's Effect Hit Rate by #1[i]% and increases DoT by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21009": { + "Name": "Landau's Choice", + "Desc": "\"Did you not hear me? Don't go there ever again! What could you possibly be learning from those commoners!\"\\n\"But I've never heard any of the stories they tell about Belobog before...\"\\n\\nShe pulled her brother behind her, denying him the chance to talk back.\\n\"You are both Landaus! One day, you'll face hard choices. Especially you, Serval.\"\\n\\nShe knew that her brother did nothing wrong, but she couldn't think of a rebuttal.\\nShe went to bed angry after the argument, vowing to herself:\\n\"I will be a grown-up one day. And when that day comes, I will make choices...\"\\n\"My own choices...\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "Time Fleets Away", + "Desc": "The wearer is more likely to be attacked, and DMG taken is reduced by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 2, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 2, + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 2, + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 2, + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 2, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21010": { + "Name": "Swordplay", + "Desc": "Looking rather skeptical, the girl thrust the small sword at her imaginary enemy in an attempt to convince herself that this thing was useful.\\nHow can something so feeble compete with my two-handed sword? Do enemies even notice when they get stabbed?\\n\\nThe owner of the sword did not seem to care about its size.\\nAfter all, enemies are defeated by strategy, not swords.\\nIt doesn't matter whether the sword is heavy or light, as long as you use the pointy end.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "Answers of Their Own", + "Desc": "For each time the wearer hits the same target, DMG dealt increases by #1[i]%, stacking up to #2[i] time(s). This effect will be dispelled when the wearer changes targets.", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 5 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 5 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 5 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 5 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21011": { + "Name": "Planetary Rendezvous", + "Desc": "She had no idea what to expect when she first started out on this journey.\\nAll she knew was that she could at long last be rid of the judgmental eyes and petty bickering of her family.\\nShe felt she finally understood what the poet was trying to say.\\n\"One day, we would grow wings and forget what it was like to walk.\"\\n\\nThe light in her eyes became the glittering stars.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "Departure", + "Desc": "After entering battle, if an ally deals the same DMG Type as the wearer, DMG dealt increases by #1[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21012": { + "Name": "A Secret Vow", + "Desc": "The boy would always make sure that his gloves and elbow guards were in good shape before leaving.\\nHe treasured his gloves more than anything because they were tight enough to hide secrets.\\nWith this layer of protection, no one could see the bandages on his hand and the wound beneath them.\\nHe would be treated as if he was normal, and he would be greeted just like everyone else.\\n\\nThat was all he asked for.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "Spare No Effort", + "Desc": "Increases DMG dealt by the wearer by #1[i]%. The wearer also deals an extra #2[i]% of DMG to enemies whose current HP percentage is equal to or higher than the wearer's current HP percentage.", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21013": { + "Name": "Make the World Clamor", + "Desc": "She stood on the stage, waving at her audience, encouraging them to make their voice heard.\\nSongs, shouts, or laments — anything that makes a sound.\\nVoice your thoughts, so others can come to help.\\n\\n\"Don't make your heart as cold as this concrete jungle.\"\\n\\n— Make the world clamor.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "The Power of Sound", + "Desc": "The wearer regenerates #2[i] Energy immediately upon entering battle, and increases DMG dealt by the wearer's Ultimate by #1[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.3200000002980232, + 20 + ] + }, + "2": { + "ParamList": [ + 0.40000000037252903, + 23 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 26 + ] + }, + "4": { + "ParamList": [ + 0.5600000005215406, + 29 + ] + }, + "5": { + "ParamList": [ + 0.6400000005960464, + 32 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21014": { + "Name": "Perfect Timing", + "Desc": "On a bustling street, he walks and walks. The sunlight closely follows his footsteps.\\nHe makes a stop and picks up an umbrella to shade himself from the sun\\n...and from that prying gaze.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "Refraction of Sightline", + "Desc": "Increases the wearer's Effect RES by #1[i]% and increases Outgoing Healing by an amount that is equal to #2[i]% of Effect RES. Outgoing Healing can be increased this way by up to #3[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.33000000030733645, + 0.1500000001396984 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3900000003632158, + 0.21000000019557774 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.4200000003911555, + 0.24000000022351742 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.45000000041909516, + 0.2700000002514571 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21015": { + "Name": "Resolution Shines As Pearls of Sweat", + "Desc": "The limelight cast on the boxing ring is bright, but no brighter than all those beads of sweat running down his back.\\n\\nHe has long been determined to use his two fists to protect those he cherishes the most.\\nAfter all, they are the ones who ignited his determination in the first place.\\nThey are the ones who have always been there for him, be it inside or outside the boxing ring.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "Glance Back", + "Desc": "When the wearer hits an enemy and if the hit enemy is not already \"Ensnared,\" then there is a #1[i]% base chance to \"Ensnare\" the hit enemy. \"Ensnared\" enemies' DEF decreases by #2[i]% for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.12000000011175871, + 1 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.13000000012107193, + 1 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 1 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.1500000001396984, + 1 + ] + }, + "5": { + "ParamList": [ + 1, + 0.1600000001490116, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21016": { + "Name": "Trend of the Universal Market", + "Desc": "The planet is receiving a revaluation...\\n\\n\"Will this project show that it's mutually beneficial to collect any outstanding debts?\"\\n\"But we only need to convey one message — our existence.\"\\n\\n\"If it were to have a value of its own, then it must create value for the corporation.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "A New Round of Shuffling", + "Desc": "Increases the wearer's DEF by #1[i]%. When the wearer is attacked, there is a #2[i]% base chance to Burn the enemy. For each turn, the wearer deals DoT that is equal to #3[i]% of the wearer's DEF for #4[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1, + 0.40000000037252903, + 2 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1.0500000000465661, + 0.5000000004656613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1.1000000000931323, + 0.6000000005587935, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1.1500000001396984, + 0.7000000006519258, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1.2000000001862645, + 0.8000000007450581, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21017": { + "Name": "Subscribe for More!", + "Desc": "\"Yo, yo. What is up! Is everything coming through?\"\\n\\nThe orange-haired girl slowly lifts a sledgehammer while shouting enthusiastically at the camera.\\n\"Ever seen a pretty girl doing the cinder-block-smashed-on-chest stunt?\"\\n\\n\"I didn't sign up for this!\"\\nThe brunette girl cried out loud, only to be met with a sly smile from the girl with the orange hair.\\n\"Please. Just let me do this. This is what people would've wanted.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "Like Before You Leave!", + "Desc": "The wearer's Basic ATK and Skill deals #1[i]% more DMG. This effect increases by an extra #2[i]% when the wearer's current Energy reaches its max level.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21018": { + "Name": "Dance! Dance! Dance!", + "Desc": "\"Why couldn't Hook do a spinning dance move, just like how Clara does?\"\\nShe clenched her tiny fists and pouted her cute lips, her chubby little face looking redder than ever under her signature felt hat.\\n\"Please, Mr. Svarog, can you please help Hook with this?\"\\nWithout saying any words, Mr. Svarog began to hold out his robotic arm.\\n\\n\"I'm g—gonna be sick!!! Put me down now! Please!\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "Cannot Stop It!", + "Desc": "When the wearer uses their Ultimate, all allies' actions are Advanced Forward by #1[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21019": { + "Name": "Under the Blue Sky", + "Desc": "Under the blue sky, fields of wheat were dancing.\\nThe young girl was carefully weaving a flower wreath,\\nfor her most beloved little sister.\\n\\nThat was when they were still the same height.\\nThat was when they shared the same smile.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "Rye Under the Sun", + "Desc": "Increases the wearer's ATK by #1[i]%. When the wearer defeats an enemy, the wearer's CRIT Rate increases by #2[i]% for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21020": { + "Name": "Geniuses' Repose", + "Desc": "She pointed at that green rice cake.\\n\"The experiment has ended. Time to take a break. I just can't miss this freshly made dessert.\"\\n\\nShe saw the puppet girl frowning in deep thought.\\n\"Well, in your current body, you can only look but not eat. I'll make you a box of new ones when the time comes.\"\\n\\nShe saw the mechanical aristocrat hesitating at his own cup.\\n\"Don't worry. It's only machine oil. Perfectly safe for you to consume.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "Each Now Has a Role to Play", + "Desc": "Increases the wearer's ATK by #1[i]%. When the wearer defeats an enemy, the wearer's CRIT DMG increases by #2[i]% for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.24000000022351742, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.4200000003911555, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.48000000044703484, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21021": { + "Name": "Quid Pro Quo", + "Desc": "After enjoying an intense massage from the dragon girl,\\nthe foxian girl held out her hand and playfully pinched the dragon girl's little chubby cheeks.\\nThe little girl then pouted her lips, clearly offended, only to elicit a gleeful giggle from the foxian girl.\\n\\n\"Now that's what I call a proper quid pro quo.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "Enjoy With Rapture", + "Desc": "At the start of the wearer's turn, regenerates #2[i] Energy for a randomly chosen ally (excluding the wearer) whose current Energy is lower than #1[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.5000000004656613, + 8 + ] + }, + "2": { + "ParamList": [ + 0.5000000004656613, + 10 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 12 + ] + }, + "4": { + "ParamList": [ + 0.5000000004656613, + 14 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 16 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21022": { + "Name": "Fermata", + "Desc": "The phonograph record is being played, spinning nonstop. Even the sounds of all those hoarse shrieks cannot escape the heatwave and are dampened by its tepidity.\\nShe seemed unprepared and utterly enthralled by the fascinating melodies:\\n\\nIt started with sincerity and anticipation...\\n...followed by a passionate catharsis...\\n...with one climax after another...\\n\\n...until the record's spinning came to a final stop and those hoarse shrieks were no longer audible.\\n\"Mission accomplished.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "Semibreve Rest", + "Desc": "Increases the wearer's Break Effect by #1[i]%, and increases their DMG to enemies afflicted with Shock or Wind Shear by #2[i]%. This also applies to DoT.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21023": { + "Name": "We Are Wildfire", + "Desc": "She got used to people losing their homes.\\nAnd she got used to people losing their lives.\\nBut crying alone was useless.\\n\\n\"Wear this red scarf, and then we shall share each other's pain.\"\\n\"We are family. We are Wildfire.\"\\n\\nThe moment that pair of big hands held her head, she could no longer hold back her tears.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "Teary-Eyed", + "Desc": "At the start of the battle, the DMG dealt to all allies decreases by #2[i]% for #3[i] turn(s). At the same time, immediately restores HP to all allies equal to #1[i]% of the respective HP difference between the characters' Max HP and current HP.", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.0800000000745058, + 5 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.10000000009313226, + 5 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871, + 5 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.14000000013038516, + 5 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.1600000001490116, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21023, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21024": { + "Name": "River Flows in Spring", + "Desc": "The young boy took a short break from his sword practice.\\nThe sunlight was baking his already heated neck. He slowly got into the water, whose coldness touched his bare feet.\\nWhen the bell chimes and birds tweet, even the people far away would know that springtime had arrived.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "Stave Off the Lingering Cold", + "Desc": "After entering battle, increases the wearer's SPD by #1[i]% and DMG by #2[i]%. When the wearer takes DMG, this effect will disappear. This effect will resume after the end of the wearer's next turn.", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21024, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21025": { + "Name": "Past and Future", + "Desc": "The wings of the paper kite in her hands were broken, brutally reminding her of her beloved's tragic passing.\\nShe kneeled next to the fire of war, eyes full of sorrow.\\n\\n\"If you are the only one left to do this, then our sacrifice would...\"\\n\\nGunfire raged on, painting the sky red without dampening its majesty.\\nShe looked up at the sky, eyes full of fury.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "Kites From the Past", + "Desc": "When the wearer uses their Skill, the next ally taking action (except the wearer) deals #1[i]% increased DMG for #2[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21025, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21026": { + "Name": "Woof! Walk Time!", + "Desc": "Pity that no one has seen it...\\nSeen it screw up its nose and sniff around and dive into an empty path.\\n\\nPity that no one has seen it...\\nSeen it retract its claws, enter the password, and leap into the embraces of freedom.\\n\\nHas nobody seen it still...?\\nA grown dog can now walk itself in space!", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "Run!", + "Desc": "Increases the wearer's ATK by #1[i]%, and increases their DMG to enemies afflicted with Burn or Bleed by #2[i]%. This also applies to DoT.", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21026, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21027": { + "Name": "The Seriousness of Breakfast", + "Desc": "Though the table is set...\\nSome people want a cup of tea first.\\nSome people want to take a picture first.\\nSome people want to read the newspaper first.\\nSome people want to write a page in their notebook first.\\nSome people want to play on their phone first.\\n\\n\"All of you, eat while the food is hot!\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "Get Ready", + "Desc": "Increases the wearer's DMG by #1[i]%. For every enemy defeated by the wearer, the wearer's ATK increases by #2[i]%, stacking up to #3[i] time(s).", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0400000000372529, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.05000000004656613, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.060000000055879354, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.07000000006519258, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.0800000000745058, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21027, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21028": { + "Name": "Warmth Shortens Cold Nights", + "Desc": "Lighting a light, she glanced at her friend beside her while holding a mug of warm chocolate.\\nWatching her read the books and notes she gifted her.\\nWatching her expressing a rare smile.\\n\\nIn cold nights like this, even the tiniest bit of bliss can chase away the chills.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "Tiny Light", + "Desc": "Increases the wearer's Max HP by #1[i]%. When using Basic ATK or Skill, restores all allies' HP by an amount equal to #2[f1]% of their respective Max HP.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.02000000001862645 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.0249999996740371 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.030000000027939677 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.034999999683350325 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.0400000000372529 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21028, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21029": { + "Name": "We Will Meet Again", + "Desc": "She had once thought it was some sort of program. How else would it never tire?\\nBut a program would never actively discard the optimal solution and bypass her trap.\\n\\n\"Seems like we'll have a war of attrition.\"\\nShe yawns.\\n\\n\"Time to sleep. Organic lifeforms should treasure rest.\"\\nThe surroundings dim.\\n\\nShe suddenly bolts awake, but the residues of data are swept away and destroyed. It all seems like a dream\\n— but the taste of defeat is very real.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "A Discourse in Arms", + "Desc": "After the wearer uses Basic ATK or Skill, deals Additional DMG equal to #1[i]% of the wearer's ATK to a random enemy that has been attacked.", + "Level": { + "1": { + "ParamList": [ + 0.48000000044703484 + ] + }, + "2": { + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "ParamList": [ + 0.840000000782311 + ] + }, + "5": { + "ParamList": [ + 0.9600000008940697 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21029, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21030": { + "Name": "This Is Me!", + "Desc": "The girl could rock any outfit she chooses, but she was unsatisfied, judging by the dozen sets of clothing piled up behind her.\\n\\n\"Will this be the last outfit for today?\"\\n\\nShe thought silently to herself and looked at the girl in the mirror. She looked extra happy on this day.\\n\\n\"Okay! This is me!\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "New Chapter", + "Desc": "Increases the wearer's DEF by #1[i]%. Increases the DMG of the wearer when they use their Ultimate by #2[i]% of the wearer's DEF. This effect only applies 1 time per enemy target during each use of the wearer's Ultimate.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.7500000006984919 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.9000000008381903 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1.0500000000465661 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1.2000000001862645 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21030, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "21031": { + "Name": "Return to Darkness", + "Desc": "Even though her sister was close by her side, she could hear nothing.\\nThe only thing audible was the voice in the depths of her heart, which only grew louder by the minute.\\n\\n\"Big sis's body is cold.\"\\n\"Big sis's body is not moving.\"\\n\\nA violent surge of fury irrevocably overwhelmed her so much that she didn't even find the time to clear her mind, or to remember this crucial yet neglected fact...\\n\\n\"Big sis's body has been cold like this for a very long time.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "Raging Waves", + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. After a CRIT Hit, there is a #2[i]% fixed chance to dispel 1 buff on the target enemy. This effect can only trigger 1 time per attack.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21031, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21032": { + "Name": "Carve the Moon, Weave the Clouds", + "Desc": "He immediately falls in love with the golden vessel and is about to buy it,\\nbut the foxian girl drags him aside and whispers:\\n\"Please return at night, Mr. Benefactor, and make up your mind then.\"\\n\\nAs promised, he returns at night.\\nThe same foxian girl opens the door and smiles at him.\\n\"Please follow me, Mr. Benefactor.\"\\n\\nA ray of moonlight shines onto the base of the etched plate.\\nThe artisan had traced the petals with lines of various depths, and he would not be able to see such details without the moonlight.\\n\\nHe finally recalls why this item is called \"Carve the Moon, Weave the Clouds.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "Secret", + "Desc": "At the start of the battle and whenever the wearer's turn begins, one of the following effects is applied randomly: All allies' ATK increases by #1[i]%, all allies' CRIT DMG increases by #2[i]%, or all allies' Energy Regeneration Rate increases by #3[i]%. The applied effect cannot be identical to the last effect applied, and will replace the previous effect. The applied effect will be removed when the wearer has been knocked down. Effects of the same type cannot be stacked.", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.12000000011175871, + 0.060000000055879354 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 0.1500000001396984, + 0.07499999972060323 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 0.21000000019557774, + 0.1049999997485429 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742, + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21032, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21033": { + "Name": "Nowhere to Run", + "Desc": "This isn't the first time he's seen this man.\\nThis man had become his own inseparable shadow.\\nNo matter how many times he runs this man through with his spear, the man always comes back.\\n\\nHe can neither lose to this man, nor truly win.\\nThough he wants to run away, there is nowhere to run.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "Desperate Times", + "Desc": "Increases the wearer's ATK by #1[i]%. Whenever the wearer defeats an enemy, they restore HP equal to #2[i]% of their ATK.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21033, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21034": { + "Name": "Today Is Another Peaceful Day", + "Desc": "There is the new book borrowed for lunch and she just figured out a new way to play tiles.\\nIf she works slowly, the rest of her job should last exactly till the end of day.\\nShe ducks easily into a corner.\\n\\nNo one must disturb her in her wonderful off time\\n— not even diviner Fu.\\nJust on the off chance that she does show up...\\n\\n\"Then I'll give this milk candy ball to Diviner Fu. She can't be angry after having sweets!\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "A Storm Is Coming", + "Desc": "After entering battle, increases the wearer's DMG based on their Max Energy. Each point of Energy increases DMG by #1[f2]%. A max of #2[i] Energy will be taken into account for this.", + "Level": { + "1": { + "ParamList": [ + 0.001999999862164259, + 160 + ] + }, + "2": { + "ParamList": [ + 0.002500000176951289, + 160 + ] + }, + "3": { + "ParamList": [ + 0.0029999997932463884, + 160 + ] + }, + "4": { + "ParamList": [ + 0.0035000001080334187, + 160 + ] + }, + "5": { + "ParamList": [ + 0.003999999724328518, + 160 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21034, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21035": { + "Name": "What Is Real?", + "Desc": "\"If all the clocks are displaying the wrong time...\"\\n\"If those bound to promises fulfilled their vows through betrayal...\"\\n\"If those who sink into the realm of dreams never truly fell asleep...\"\\n\"If the dead return to life, only to discover their names have been stripped...\"\\n\\n\"If... if...\"\\nHe blows out the flame, and in darkness, there is but the eternal ticking of the timepiece.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "Hypothesis", + "Desc": "Increases the wearer's Break Effect by #1[i]%. After using Basic ATK, restores HP for the wearer by an amount equal to #2[f1]% of Max HP plus #3[i].", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.02000000001862645, + 800 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.0249999996740371, + 800 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.030000000027939677, + 800 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.034999999683350325, + 800 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.0400000000372529, + 800 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21035, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21036": { + "Name": "Dreamville Adventure", + "Desc": "\"Hello, dear viewers! Clockie and his pals have come to see you all again!\"\\n\\n\"In the previous episode, Boss Stone discovered that Dreamville was sitting on a wealth of natural resources, and moved to seize control over the city. In response, Clockie joined forces with Brother Hanu and Origami Bird, and together, they sent Boss Stone and his goons running from Dreamville.\"\\n\\n\"But Boss Stone isn't going to be defeated that easily, and this time, he's gathered a legion of thugs to fulfill his oath of turning Dreamville into a crater. In this episode, Clockie might just be standing against the greatest threat he ever faced!\"\\n\\n\"What scheme will Clockie employ to escape from this crisis? And what new friends will join his party? Stay tuned for the latest episode of 'Dreamville Adventure'!\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "Solidarity", + "Desc": "After the wearer uses a certain type of ability such as Basic ATK, Skill, or Ultimate, all allies gain Childishness, which increases allies' DMG for the same type of ability as used by the wearer by #1[i]%. Childishness only takes effect for the most recent type of ability the wearer used and cannot be stacked.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21036, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21037": { + "Name": "Final Victor", + "Desc": "\"You don't believe me?\"\\nHe provocatively looks at the man before him, then draws out a revolver, empties its cylinder, and leaves a single shot in the chamber.\\n\\n\"Seems like I'll need to get you up to speed on how I do things if our cooperation were to remain amicable.\"\\nHe pushes the gun into his opponent's hand, spins the cylinder, and points the barrel to his own chest.\\n\\nHe pulls the trigger repeatedly, and the smile on his face remains the same after three empty clicks.\\n\"Life is a grand gamble, and I'll always be the final victor.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "Wager", + "Desc": "Increases the wearer's ATK by #1[i]%. When the wearer lands a CRIT hit on enemies, gains 1 stack of Good Fortune. This can stack up to #3[i] time(s). Every stack of Good Fortune increases the wearer's CRIT DMG by #2[i]%. Good Fortune will be removed at the end of the wearer's turn.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 4 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.09000000008381903, + 4 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.10000000009313226, + 4 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.11000000010244548, + 4 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.12000000011175871, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21037, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21038": { + "Name": "Flames Afar", + "Desc": "\"Package secured. I'll leave covering our retreat to you.\"\\nTheir comrade's voice comes through the communicator.\\n\\nThey glance around the surroundings, watching as the savaged remnants of their enemies continue to pass through the complex architecture inside the vast and abandoned structure. They are drawing ever closer.\\n\"Please hold.\"\\n\\nAfter a beat of quietude, a series of apocalyptic explosions rocket up into the sky. Waves of displaced air cast clouds of dust high across the battlefield, and smoke scatter in all directions, the blinding white cleaving light into the night.\\n\"You know they purposely planted loads of gunpowder in there, right?\"\\n\\nWith a rustle, they flung open the cape as if they just finished a leisurely stroll.\\n\"Of course.\"\\n\"So, let's light it up. All I need to do is play the part of the match.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "Deflagration", + "Desc": "When the wearer's cumulative HP loss during one attack exceeds #1[i]% of their Max HP, or if the amount of their own HP consumed at one time is greater than #1[i]% of their Max HP, immediately heals the wearer for #3[i]% of their Max HP, and at the same time, increases the DMG they deal by #2[i]% for #4[i] turn(s). This effect can only be triggered once every #5[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.25000000023283064, + 0.25000000023283064, + 0.1500000001396984, + 2, + 3 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3125000004656613, + 0.1500000001396984, + 2, + 3 + ] + }, + "3": { + "ParamList": [ + 0.25000000023283064, + 0.375, + 0.1500000001396984, + 2, + 3 + ] + }, + "4": { + "ParamList": [ + 0.25000000023283064, + 0.43750000023283064, + 0.1500000001396984, + 2, + 3 + ] + }, + "5": { + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 0.1500000001396984, + 2, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21038, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21039": { + "Name": "Destiny's Threads Forewoven", + "Desc": "Destiny always tows the masses onward without reason, and she lurks within the darkness, waiting to inscribe the most crucial of instants.\\n\\nSorting, matching, shuffling, drawing... She simulates fate's hand in how it manipulates all variables for the masses, seeking the trajectory of truth beneath the visage of a disorderly exterior.\\n\\nFinally, when all the characters are in their place, she brushes over the card faces that are in stasis and assembles the unfathomable truth.\\n\"Still missing a card... So, I'll add one in.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "Insight", + "Desc": "Increases the wearer's Effect RES by #1[i]%. For every #2[i] of DEF the wearer has, increases the wearer's DMG dealt by #3[f1]%, up to a maximum DMG increase of #4[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 100, + 0.007999999448657036, + 0.3200000002980232 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 100, + 0.008999999379739165, + 0.3600000003352761 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 100, + 0.010000000009313226, + 0.40000000037252903 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 100, + 0.010999999940395355, + 0.44000000040978193 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 100, + 0.011999999871477485, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21039, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21040": { + "Name": "The Day The Cosmos Fell", + "Desc": "\"Molten Cheese Tart! You are in charge of disarming the planet's lookouts with your charm!\"\\n\"Gray Bean Paste! You will be in charge of breaching the planet's line of defense!\"\\n\"Salty Rimeplume! Bring us the head of the planet's leader!\"\\n\"My lord, what are you going to do!\"\\n\"I shall pretend to be an adorable kitten to befuddle these stupid humans!\"\\n\\nThat day, the Cosmos remembered... the terror of being ruled by them.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "Stratagem", + "Desc": "Increases the wearer's ATK by #1[i]%. When the wearer uses an attack and at least 2 attacked enemies have the corresponding Weakness, the wearer's CRIT DMG increases by #2[i]%, lasting for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806, + 0.25000000023283064, + 2 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 2 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097, + 0.3500000003259629, + 2 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21040, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21041": { + "Name": "It's Showtime", + "Desc": "—Who witnessed his death?\\n—Me! I spied it with my little eyes!\\n—Who took his blood?\\n—Me! I seized it with my little saucer!\\n—Who dug his grave?\\n—Me! I did it with my chisel and shovel!\\n\\nThe sage schemes exhaustedly, the king lusts insatiably, the hero prides falsely — only the Fool laughs perpetually\\n\"Now, let us welcome Ms. Sparkle to bring us the performance of the year — Penacony's Night of Fright!\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "Self-Amusement", + "Desc": "When the wearer inflicts a debuff on an enemy, gains a stack of Trick. Every stack of Trick increases the wearer's DMG dealt by #1[i]%, stacking up to #2[i] time(s). This effect lasts for #3[i] turn(s). When the wearer's Effect Hit Rate is #4[i]% or higher, increases ATK by #5[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.060000000055879354, + 3, + 1, + 0.8000000007450581, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.07000000006519258, + 3, + 1, + 0.8000000007450581, + 0.24000000022351742 + ] + }, + "3": { + "ParamList": [ + 0.0800000000745058, + 3, + 1, + 0.8000000007450581, + 0.2800000002607703 + ] + }, + "4": { + "ParamList": [ + 0.09000000008381903, + 3, + 1, + 0.8000000007450581, + 0.3200000002980232 + ] + }, + "5": { + "ParamList": [ + 0.10000000009313226, + 3, + 1, + 0.8000000007450581, + 0.3600000003352761 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21041, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21042": { + "Name": "Indelible Promise", + "Desc": "A weathered past. A sworn duty to defend home. A dream to blaze a trail across the world—\\nThese were entrusted to the unworldly youth by a pair of rough, calloused hands.\\n\\n\"Soon, we'll be able to go to a larger world.\" \\nThe boy happily accepted his inheritance. Guarded by youth, he could not yet feel the weight born by the object's significance.\\n\\n\"Of course. Before that time comes, however, guard this place well, Misha.\" \\n\\nHe thus engraved that promise deep inside his heart, holding to it forever and always.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "Inheritance", + "Desc": "Increases the wearer's Break Effect by #1[i]%. When the wearer uses their Ultimate, increases CRIT Rate by #2[i]%, lasting for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.1500000001396984, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.1875, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.2249999998603016, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.26250000041909516, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.3000000002793968, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21042, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21043": { + "Name": "Concert for Two", + "Desc": "\"Big brother, what's this...\"\\n\"It's been so long since you sang with joy... I've built a stage for you, though it's... a bit rudimentary.\"\\n\"But the teacher thinks I'm not cut out for this...\"\\n\"Nonsense, I think you sound amazing! And your dreams will definitely come true. You deserve to sing on a bigger stage...\"\\n...\\n\\nMany years later, she stood on a dazzling stage, looking at the surging fans below, but lost herself for a moment...\\nOn the long journey of chasing dreams, she would always remember that trusting gaze and her first \"concert.\"\\nNo glamorous lights, no elaborate makeup, just a child building a stage to encourage another child to pursue their dreams.\\n\\n\"Now, our dreams have come true. But... are they still 'our' dreams?\"\\nShe tightened her grip on the microphone. Before the next song began, she didn't even have time to feel sad.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "Inspire", + "Desc": "Increases the wearer's DEF by #1[i]%. For every on-field character that has a Shield, the DMG dealt by the wearer increases by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.0400000000372529 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.05000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.060000000055879354 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.07000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.0800000000745058 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21043, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21044": { + "Name": "Boundless Choreo", + "Desc": "Their dance glides gracefully, shadows and light silently exchanging places. She takes the other person's hand, her smile beaming into those indifferent eyes.\\n\"Beautiful Ranger... Welcome to the stage of the Remembrance. At this proximity... you are far more enchanting than one might perceive.\"\\n\\nThe surroundings darken, a beam of light cascading from the dome above, tracing their evolving steps.\\n\"However, some were meant to dance with us but have yet to arrive...\"\\n\\nIn a spinning moment, she draws closer to that expressionless face, grips that cold hand, and softly inquires—\\n\"Tell me. What have you done?\"\\n\\nAs their dance steps grow hurried more and more, fragmented snippets of the past rush into her mind through their joined fingertips.\\nIn a past that stretches back further and further, she hears the sound of rain and the lamentations just before life's extinguish. Then, she sees her dance partner holding a blood-red paper umbrella in the drizzling rain. Finally, as far as her eyes can see—\\n\\nA field of drowned corpses bobbing in the deluge.\\n\\nPanic-stricken, she tries to withdraw her hand, falling backward.\\nThe surroundings brighten again, the banquet's clamor resurfacing. Her dance partner gently supports her waist, as if oblivious to the ordeal that just unfolded.\\n\"What a lovely dance that was, Memokeeper. Shall we have another go?\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "Scrutinize", + "Desc": "Increase the wearer's CRIT Rate by #1[i]%. The wearer deals #2[i]% more CRIT DMG to enemies that are currently Slowed or have reduced DEF.", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21044, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21045": { + "Name": "After the Charmony Fall", + "Desc": "The eternal dream he longed for vanished in an instant. As he plummeted towards the earth, he felt no sadness, only a desire to close his eyes.\\n\\nThe old path treaded upon has now crumbled, yet the journey ahead remains shrouded in mist.\\n\"After the awakening, the world continues its cycle of suffering, with no escape, the same as always...\"\\nHe carries the past, turns his back on his homeland, and continues towards a paradise that does not yet exist.\\n\\nSo, why do people slumber? And why do they wake?\\n— As planets streak past outside the window, this answer now demands a new meaning to be given.\\n\"Maybe... just maybe I still can...\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "Quiescence", + "Desc": "Increases the wearer's Break Effect by #1[i]%. After the wearer uses Ultimate, increases SPD by #2[i]%, lasting for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.10000000009313226, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.12000000011175871, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.14000000013038516, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21045, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21046": { + "Name": "Poised to Bloom", + "Desc": "Dawn's first light whispers. In the stillness of the flower grove, a shifting form dances, startling birds into flight one after another.\\n\\nSilently reciting sword techniques, she moves with the flow, her once-clumsy moves now gaining finesse. Where the sword's cuts rend the air, petals fall like rain, swirling chaotically as they fall. Unbeknownst to her, the cool mist has dampened her hair.\\n\\n \"Nice swordplay!\" \\nStartled, she instinctively turns her sword—\\nBehind her, a young {F#woman}{M#man} with gray hair lowers the camera in hand.\\n \"Beautiful memories won't just fade away with the wind.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "Lose Not, Forget Not", + "Desc": "Increases the wearer's ATK by #1[i]%. Upon entering battle, if two or more characters follow the same Path, then these characters' CRIT DMG increases by #2[i]%. Abilities of the same type cannot stack.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21046, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21047": { + "Name": "Shadowed by Night", + "Desc": "\"Footprints.\"\\n\"Scratches.\"\\n\"Scents.\"\\n\\nAfter everything has been appropriately handled, he picks up a crow feather and gracefully leaps onto the roof.\\nIn the vast city, a pitch-black shadow shuttles through the corners unseen.\\n\\n\"I shall merge into shadows and keep vigil over you all.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "Concealment", + "Desc": "Increases the wearer's Break Effect by #1[i]%. When entering battle or after dealing Break DMG, increases SPD by #2[i]%, lasting for #3[i] turn(s). This effect can only trigger once per turn.", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.09000000008381903, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.11000000010244548, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.12000000011175871, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21047, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21048": { + "Name": "Dream's Montage", + "Desc": "\"The City of Dreams, the Breeding Ground of Sin, or the Promised Land...\"\\n\\nExtracting the memories of many, he scrutinizes the spectacular moments, disrupting, reorganizing, and splicing them together.\\n\"Most people's memories are but a collection of trivial and monotonous fragments, where only a handful of precious moments stand out, while the existences of the rest are utterly unnecessary.\"\\n\\nFrame by frame, the images flow through his grasp, gradually woven into a tapestry of brilliance.\\n\"We don't transport memories. We only create the past.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "Academy-Style Edit", + "Desc": "Increases the wearer's SPD by #1[i]%. After attacking enemy targets that are Weakness Broken, regenerates #2[f1] Energy. This effect can trigger up to #3[i] time(s) per turn.", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 3, + 2 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 3.5000000004656613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 4, + 2 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 4.500000000465661, + 2 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 5, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21048, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21050": { + "Name": "Victory In a Blink", + "Desc": "The Titankins' all-consuming roars sweep across the battlefield. Two lightning-quick figures slaughter their way out of combat.\\n\\n\"I alone will be enough to handle them.\"\\nEvery punch unleashed by the warrior sends spears of blood through the bodies of the enemy.\\n\"Brute force and nothing more. Watch my blade!\"\\nAs a blade of pale silver slices in a curve, monsters drop like falling leaves.\\n\"A contest of speed?\"\\nThe two charge at the other side simultaneously.\\nHowls of anguish sound as the stealthy beasts behind them are struck down at once.\\nTwo voices can be heard at the same time.\\n\"That was my kill!\"\\n", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "Final Hit", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. When the wearer's memosprite uses an ability on an ally target, increases the DMG dealt by all ally targets by #2[i]%, lasting for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.10000000009313226, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.14000000013038516, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.1600000001490116, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21050, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21051": { + "Name": "Geniuses' Greetings", + "Desc": "\"Congratulations. Experiment failed again, didn't it?\"\\n\"...\"\\n\"I told you before that there are mistakes in your method.\"\\n\"...\"\\n\"I gotta tell you, I've been getting some big breakthroughs recently...\"\\n\\nThe aloof woman lifts her head from her book...\\n\"I'm sorry. What did you say?\"\\nShe waves her hand.\\n\"Well, I can't say how great these breakthroughs are. They might only affect half the cosmos.\"\\nThe woman closes her book.\\n\"Let's hear it, then.\"\\n\\n\"Hmph. A genius of my caliber... it's not something you'll just get to hear randomly...\"\\n\"I understand. I'll make some pastries. We can talk and eat at the same time.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "Congratulations", + "Desc": "Increases the wearer's ATK by #1[i]%. After the wearer uses Ultimate, increases the Basic ATK DMG dealt by the wearer and their memosprite by #2[i]%, lasting for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.20000000018626451, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3000000002793968, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.3500000003259629, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.40000000037252903, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21051, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21052": { + "Name": "Sweat Now, Cry Less", + "Desc": "Resounding impacts echo through the training room and a thunderous kick follows, practically folding the sandbag in two.\\n\\n\"General... isn't this level of training too much for you?\" Such is the question asked by a nearby soldier.\\n\\nSmiling, she shakes her head and hangs a new sandbag in place.\\n\\n\"This? No. Not even close!\"\\n\\nHer glistening sweat reflects the glow of the moon, trailing down her body like crystalline pearls. The memory of that departed general re-surfaces in her mind... \"Sweat more when training, so you might weep less in battle.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "Come Train!", + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. When the wearer's memosprite is on the field, increases the DMG dealt by the wearer and their memosprite by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2700000002514571 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.33000000030733645 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.3600000003352761 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21052, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "21053": { + "Name": "Journey, Forever Peaceful", + "Desc": "The boy ran amongst the star-like raindrops and cheered for the blissful rain that arrived after a long drought.\\n\\nThe rain fell for a long, long time, and the covered wagon stopped on the land covered by budding green.\\n\"Mom! Big sis! We'll never go cold or hungry again!\"\\nThe Avgins' campfire warmed the long night, as the boy listened to his big sister's stories and waited for the dawn.\\n\\n\"Kakavasha... You, too, will go forth with your good luck blessed by the Mother Goddess, and achieve what we could not achieve... May your journey be forever peaceful, and your schemes forever concealed...\"\\n\\nGolden sunlight reflects from his dreams into his real-life abode, and transactions and numbers are once again mirrored in his eyes.\\nHe lets go of the hand that was clutched into a fist —\\n\\nIt's as if he did not manage to grab onto anything... yet there's still a throbbing, lingering warmth.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "Sweet Dream", + "Desc": "Increases the wearer's provided Shield Effect by #1[i]%. When an ally target has a Shield, the DMG dealt increases by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21053, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "21054": { + "Name": "The Story's Next Page", + "Desc": "The breeze stirs the wheat fields as the girl, clutching a blank journal, strolls through the golden waves.\\n\\nBeyond Aedes Elysiae, in a city both unfamiliar and eerily familiar, companions of all kinds will cross paths, and a journey like a song, like a dream, is about to begin...\\n\\n\"This time, together with me...\"\\nAt the edge of the field, the girl who has waited so long closes her book and extends a hand toward the \"future\"—\\n\\n\"Let's write a new chapter of the story ♪\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "Written Down", + "Desc": "Increases the wearer's Max HP by #1[i]%. After the wearer's memosprite attacks, the Outgoing Healing of the wearer and their memosprite increases by #2[i]%, lasting for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21054, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21055": { + "Name": "Unto Tomorrow's Morrow", + "Desc": "\"See you tomorrow, Tribios...\"\\n\\nThe girl wiped the tears on her cheeks when her mother went somewhere far, far away.\\n\\nShe waited one tomorrow after another, till she grew up to be someone like her mother.\\nShe stands before the passage and grasps the Coreflame tight as she recalled her mother's words.\\n\\n\"There are no blizzards, colds, or rain at that place...\"\\n\\n\"But if we don't see that place tomorrow, then...\"\\n\\nShe falls towards the earth, leaving her young figure behind, like a shooting star across the sky —\\n\\n\"Then we'll see it the day after tomorrow!\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "Farewell", + "Desc": "Increases the wearer's Outgoing Healing by #1[i]%. When an ally target's current HP percentage is greater than or equal to #2[i]%, increases the DMG dealt by #3[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.5000000004656613, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21055, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21056": { + "Name": "In Pursuit of the Wind", + "Desc": "\"Heh. This one can go to that unlucky brat. It'll shut her money-owing parents up, and maybe they'll hit her less.\"\\n\"This can go to the granny selling pickle candies to help her out in a pitch. She really needs to see a doctor for all her pains. I don't wanna see a day when I can't buy such tasty candies anymore...\"\\n\\nBent over the rucksack, the girl meticulously counts the jewels in there, and suddenly sneezes.\\n\"Who's missed me?\"\\n\\n\"There you are, Cifera.\"\\nThe threads wind around her back, as if hesitating where to start.\\n\\n\"From now on, when you're chasing the wind...\"\\nThe icy golden thread wraps around her wrists, holding her in place.\\n\\n\"Don't forget to look after yourself as well.\"\\n\\nShe runs, escaping far away. It's only when she turns around that she discovers the corner of her cloak that's starting to fray had already been stitched up, as if it were new.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "Flustered", + "Desc": "After entering battle, increases all allies' Break DMG dealt by #1[i]%. Abilities of the same type cannot stack.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21056, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21057": { + "Name": "The Flower Remembers", + "Desc": "In spring, they sowed seeds.\\nIn summer, they irrigated the fields.\\nIn autumn, they harvested the fruits.\\nIn winter, they sang as they walked in the snow.\\n...\\n\\nThe land that was originally barren now blooms with flowers, and butterflies are drawn by the peals of laughter and land on the girls' fingertips.\\n\"Big sis! We'll keep working together to turn this into a huge sea of flowers!\"\\n\\n\"See. Our promise...\"\\nThe butterfly flies to the other shore. The rather taciturn girl softly caresses the warm flower petals as if her little sister is still there with her.\\n\"...Wasn't forgotten by me or the flowers we once attended.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "Interdependence", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. The CRIT DMG dealt by the wearer's memosprite increases by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21057, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21058": { + "Name": "A Trail of Bygone Blood", + "Desc": "A storm broods in the distance. Tentacles extend from the Sea of Souls, as if intending to toy with that floating, fragile life.\\nThe broken limbs of the sea beast hammer giant sprays skyward, and sink into the oceanic abyss after shattering like rubble.\\n\\nThey say that the roar of the fight lasted for ten days and nights, overwhelming even the thunder and lightning.\\nThey say that even if a man had ten thousand lives, he would not be enough to resist the Sea of Souls's erosion.\\n\\nThen, courage washes away the immaturity and cold pride tempered timidity —\\n\\nAnd that thin figure stumbled onto the shore. The first ray of the morning sun shines down upon the sea's waters, dyeing it red like past blood.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "Massacre", + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. The Skill DMG and Ultimate DMG dealt by the wearer increase by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21058, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21060": { + "Name": "A Dream Scented in Wheat", + "Desc": "The breeze blows past the youth's fingertips and sends the letter, still wet with ink, to the distant beyond.\\n\\n\"What would my future look like...\"\\nDreams grow wings in his mind and fly towards the ends of the sky.\\nEars of wheat dance in the wind and form ripples, as if responding to his boyish and earnest wish.\\n\\n\"Even if I only have a single sword in my hand, I want to protect this place no matter what!\"\\nThe youth made this silent vow in his mind —\\n\\nA vow as deep as a brand, eternally etched into his heart.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "Longing", + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. The Ultimate DMG and Follow-up ATK DMG dealt by the wearer increase by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21060, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21061": { + "Name": "Holiday Thermae Escapade", + "Desc": "\"Cinny, let's go try out that new special bath that recently opened.\"\\n\\nAfter finishing her medical duties in Okhema, the girl followed the curious child into the eclectic set of pools.\\n\\n\"How about a Tomato Juice Massage?\"\\nStaring at the attendant’s crimson-stained hands, she hugged the eager Little Ica and retreated—\\n\"I prefer something... drinkable....\"\\n\\n\"Dromas back massage, limited-time discount!\"\\nA curious dromas lowered its head, its hot breath tousling her hair.\\n\"N-next time, maybe!\"\\n\\n\"Herbal Bath—strengthens body and soul! How many in your party?\"\\nLured by the fragrant herbs, she tentatively dipped a foot into the pool.\\n\"This... seems healthy...\"\\n\\n\"Doot, doot-doot!\"\\nLittle Ica floated blissfully on its back.\\n\"Guess even you needed a break from all we've been doing recently...\"\\n\\nOn this rare day off, sipping grape juice, the girl chatted with the red-haired child about everything from sleep tips to pastry recipes.\\n\\n\"Oh no—Little Ica!\"\\nThe child's shriek shattered the bathhouse's calm.\\n\\n\"Doot...\"\\n\"Hold on, Little Ica!\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "Chill Out", + "Desc": "Increases the wearer's DMG dealt by #1[i]%. After the wearer attacks, there is a #2[i]% base chance that the attacked target is inflicted with Vulnerability, increasing the DMG they receive by #3[i]% for #4[i] turn(s). The same effect type cannot be stacked.", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1, + 0.11499999975785613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1, + 0.13000000012107193, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1, + 0.1449999997857958, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21061, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21062": { + "Name": "See You at the End", + "Desc": "Unwilling tears trailed down his cheeks. At the heart of the shattered ritual array lingered not just death’s shadow, but an abyss of silence and emptiness.\\n\\nThen, a sigh trembled through the darkness — a ripple from the \"soul's\" deepest recesses.\\n\"Is that you... Sister...\"\\nThe boy lifted his hand, a weak light flickering in his eyes. The silhouette of his loved one lingered but a breath, yet its imprint etched a millennium into his heart.\\n\\n\"I see... Thank you... for this final farewell.\"\\nHe rose slowly. Dawn's first rays caressed his resolute face, still streaked with tears.\\n\\n\"The path of seeking is a solitary one... Let us meet again at the journey's end.\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "Persistence", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. The Skill DMG and Follow-up ATK DMG dealt by the wearer increase by #2[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21062, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "22000": { + "Name": "Before the Tutorial Mission Starts", + "Desc": "How much longer until the action starts?\\nYou have the nerve to ask a question like that... is something wrong with the new recruit?\\nNo.\\nElio didn't choose her because she was good at field work, but she has to at least survive this rookie assignment.\\nShe's cruising.\\nThen I'm relieved. It seems that Bladie has proved to be a reliable operative as well.\\n...", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "Quick on the Draw", + "Desc": "Increases the wearer's Effect Hit Rate by #1[i]%. When the wearer attacks DEF-reduced enemies, regenerates #2[i] Energy.", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 4 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 5 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 6 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 7 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "22001": { + "Name": "Hey, Over Here", + "Desc": "Three girls stroll in the darkness, and the surroundings seem to gain a hint of eeriness.\\n\"Huohuo, hurry up, or we won't wait for you!\"\\nShe steps forward confidently with her phone clutched in her hand, seemingly unaffected by the paranormal ambiance.\\n\"I—I'm over here!\"\\nThe girl standing ahead responds timidly.\\n\"Huh? So you were in the front all along, then who is following Shangshang and me...\"\\n\\nThe perfect end for this scene would definitely be a girlish scream.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "I'm Not Afraid!", + "Desc": "Increases the wearer's Max HP by #1[i]%. When the wearer uses their Skill, increases Outgoing Healing by #2[i]%, lasting for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.1600000001490116, + 2 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.1900000001769513, + 2 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.22000000020489097, + 2 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.25000000023283064, + 2 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.2800000002607703, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "22002": { + "Name": "For Tomorrow's Journey", + "Desc": "The hands of the compass keep turning until they point to the moment of dreams.\\nThe Asdana system, overflowing with memoria, glows with a soft light outside the train's windows. The frontier prison within is currently engulfed in the fires of war.\\n\\n\"Hey guys, what do you suppose the world within the dream would look like?? I must meticulously map it out!\"\\nThe girl, packing away her surveying tools, gazes at the new world within reach, filled with anticipation.\\n\"That place is a mess. Don't you run off once we get there. I won't have you two getting kidnapped again...\"\\nThe man in cowboy attire grumbles as he cleans his weapon, then walks over to the sofa with a drink, shaking his head in resignation.\\n\"The Land of the Dreams promises infinite possibilities. We'll surely make our mark... Hey, conductor, if we fall in love with that place and never return, would you miss us?\"\\nThe Nameless dressed like a gentleman winks at Pom-Pom, smiling.\\n\"'You can't joke at the conductor's expense like this!' Is that what you want to say, conductor?\" The girl's mischievous grin spreads across her face.\\n\"You guys are! So! Mean!\"\\nBubbles drift up and down in the glass as the Express fills up with joyful laughter.\\n...\\n\\nThe youthful silhouettes of these Nameless get gradually swallowed by memoria.\\n\"Have a... safe... trip...please...\"\\nWhen the conductor turns their head, the Express is already empty.\\nThe conductor stands frozen, this scene hauntingly familiar, as if lived through countless times before.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "Bonds", + "Desc": "Increases the wearer's ATK by #1[i]%. After the wearer uses their Ultimate, increases their DMG dealt by #2[i]%, lasting for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.18000000016763806, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.21000000019557774, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2700000002514571, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3000000002793968, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "22003": { + "Name": "Ninja Record: Sound Hunt", + "Desc": "In the realm of Cosmic Ninjutsu, ever-changing grace,\\nHear the echoes of my hunting chase!\\n\\nFeel the beat, my rhythm's call,\\nGuitar strums, the atmospheres enthrall.\\nBass notes with a tender hue,\\nElectro-acoustic kindles anew.\\nSweat's testament, truth untold,\\nEvery twist and turn, melodies unfold.\\nMy sound ascends, reaching high,\\nThrough bruises and battles, I never shy.\\nThe Dazzling! The Dazzling! A chant so bold.\\nThe Dazzling! The Dazzling! In tales untold,\\nThe Dazzling! The Dazzling! An epic foretold!\\nYo. Yo. In this wild world. Let the hearts go ablaze.\\nSing out loud, chant your soul, and let's embrace the utter craze!", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "Curtains Up!", + "Desc": "Increases the wearer's Max HP by #1[i]%. When losing or restoring this unit's HP, increases CRIT DMG by #2[i]%, lasting for #3[i] turn(s). This effect can only trigger once per turn.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.18000000016763806, + 2 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.2249999998603016, + 2 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.2700000002514571, + 2 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.31499999994412065, + 2 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "22004": { + "Name": "The Great Cosmic Enterprise", + "Desc": "In a virtual exhibition hall sculpted from data, the exhibition representatives exchanged opinions.\\nTwo figures moved between the booths, delivering everything needed by each party.\\n\\n\"Hmm, are you...?\"\\n\"I've seen you on TV.\"\\nThey talked about games, food, each other's morphologies, and all the beautiful things in the universe.\\nThough their meetings were few and far between, they were as close as old friends—\\n\\n\"By the way, have you thought about my proposal...\"\\n\"The Express is not for sale!\"", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "Mutual Benefit", + "Desc": "Increases the wearer's ATK by #1[i]%. For every 1 different Weakness Type an enemy target has, increases the DMG dealt to it by the wearer by #2[i]%. Up to a max of 7 Weakness Types can be taken into account for this effect.", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.05000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.060000000055879354 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.07000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.0800000000745058 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "23000": { + "Name": "Night on the Milky Way", + "Desc": "If you are concerned for the road, just look up again.\\nWhen the stars look gently down, the heart would already be soaring.\\nEvery thought and every whisper,\\nbecomes a life experience that would never leave.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "Meteor Swarm", + "Desc": "For every enemy on the field, increases the wearer's ATK by #2[f1]%, up to 5 stacks. When an enemy is inflicted with Weakness Break, the DMG dealt by the wearer increases by #1[i]% for 1 turn.", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.09000000008381903 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.1049999997485429 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.13499999977648258 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23001": { + "Name": "In the Night", + "Desc": "A young girl smiles subtly.\\n\"How?\"\\n\"Right here, right now, I am alone...\"\\n\"But it feels... very lively.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "Flowers and Butterflies", + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. While the wearer is in battle, for every #2[i] SPD that exceeds 100, increases DMG dealt by Basic ATK and Skill by #3[i]%. At the same time, increases the CRIT DMG of Ultimate by #4[i]%. This effect can stack up to #5[i] time(s).", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 10, + 0.060000000055879354, + 0.12000000011175871, + 6 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 10, + 0.07000000006519258, + 0.14000000013038516, + 6 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 10, + 0.0800000000745058, + 0.1600000001490116, + 6 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 10, + 0.09000000008381903, + 0.18000000016763806, + 6 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 10, + 0.10000000009313226, + 0.20000000018626451, + 6 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23002": { + "Name": "Something Irreplaceable", + "Desc": "\"Should a day come when even I'm not here anymore, please look after this database, Svarog.\"\\n(Who is this... Why is this message in my records...)\\n\"Do you have something that's irreplaceable, Svarog?\"\\n(Irreplaceable... broken parts... can simply be replaced...)\\n\"You'll definitely find it one day, Svarog.\"\\n(Such things... will only cause trouble...)\\n\\n\"When that time comes... You should leave this place behind.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "Kinship", + "Desc": "Increases the wearer's ATK by #1[i]%. When the wearer defeats an enemy or is hit, immediately restores HP equal to #2[i]% of the wearer's ATK. At the same time, the wearer's DMG is increased by #3[i]% until the end of their next turn. This effect cannot stack and can only trigger 1 time per turn.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.0800000000745058, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.09000000008381903, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.10000000009313226, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.11000000010244548, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23003": { + "Name": "But the Battle Isn't Over", + "Desc": "\"Remember, the war with the monsters cannot be won by retreating.\"\\n\"We are the last defense, the final iron wall between them and Belobog...\"\\n\"We cannot retreat under any circumstances!\"\\n\\nShe looks up to see the frozen earth and endless winter ahead.\\nBusiness as usual.\\nOnly that... the figure at which she had been gazing is gone.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "Heir", + "Desc": "Increases the wearer's Energy Regeneration Rate by #1[i]% and regenerates 1 Skill Point when the wearer uses their Ultimate on an ally. This effect can be triggered once after every 2 uses of the wearer's Ultimate. When the wearer uses their Skill, the next ally taking action (except the wearer) deals #2[i]% more DMG for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 1 + ] + }, + "2": { + "ParamList": [ + 0.12000000011175871, + 0.3500000003259629, + 1 + ] + }, + "3": { + "ParamList": [ + 0.14000000013038516, + 0.40000000037252903, + 1 + ] + }, + "4": { + "ParamList": [ + 0.1600000001490116, + 0.45000000041909516, + 1 + ] + }, + "5": { + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23004": { + "Name": "In the Name of the World", + "Desc": "\"Welt...?\"\\n\"It's a... great name, right?\"\\n\"Then...\"\\n\"From now on, you are Welt.\"\\n\"This Herrscher core... and the mission to protect the world...\"\\n\"I'll leave them to you, Welt.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "Inheritor", + "Desc": "Increases the wearer's DMG to debuffed enemies by #1[i]%. When the wearer uses their Skill, the Effect Hit Rate for this attack increases by #2[i]%, and ATK increases by #3[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.2700000002514571, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.3000000002793968, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23005": { + "Name": "Moment of Victory", + "Desc": "\"If you want to cry after your loss, Gepard, then cry.\"\\n\"But you need to stand back up even when you are crying, until you can defeat me... Even if it takes years.\"\\nA few years later, the boy no longer cried or lost to his sister.\\n\\nNow on the battle field, the courageous Silvermane Guard captain will defend till the end no matter what\\n— all to find the moment to completely destroy the enemy.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "Verdict", + "Desc": "Increases the wearer's DEF by #2[i]% and Effect Hit Rate by #4[i]%. Increases the chance for the wearer to be attacked by enemies. When the wearer is attacked, increase their DEF by an extra #3[i]% until the end of the wearer's turn.", + "Level": { + "1": { + "ParamList": [ + 2, + 0.24000000022351742, + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 2, + 0.2800000002607703, + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 2, + 0.3200000002980232, + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 2, + 0.3600000003352761, + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 2, + 0.40000000037252903, + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 27, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 59.40000000037253, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 102.6000000005588, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 145.80000000074506, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 189, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 232.20000000018626, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 275.40000000037253, + "BaseDefenceAdd": 4.050000000046566 + } + ] + }, + "23006": { + "Name": "Patience Is All You Need", + "Desc": "\"Could it be that there's something you haven't told me?\"\\n\\nShe watches as their neck stiffens, as if a lump is blocking their throat.\\nShe knows she is feared, and that no further step is needed.\\nAt this point, it no longer mattered what she said.\\nAny word she utters radiates horror...\\nThey stand no chance against her, and have no choice but to blurt out what she wants to hear.\\n\\nLike a spider waiting in its web, patience is all she needs.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "Spider Web", + "Desc": "Increases DMG dealt by the wearer by #2[i]%. After every attack launched by wearer, their SPD increases by #3[f1]%, stacking up to #4[i] times.\\nIf the wearer hits an enemy target that is not afflicted by Erode, there is a 100% base chance to inflict Erode to the target. Enemies afflicted with Erode are also considered to be Shocked and will receive Lightning DoT at the start of each turn equal to #1[i]% of the wearer's ATK, lasting for #5[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 0.04799999948590994, + 3, + 1 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 0.055999999633058906, + 3, + 1 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 0.06399999978020787, + 3, + 1 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 0.07199999992735684, + 3, + 1 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 0.0800000000745058, + 3, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23007": { + "Name": "Incessant Rain", + "Desc": "She leaves the cover of the awning, opens her umbrella, and dives into an alley while humming a lighthearted tune.\\nThe rain stops a little while after.\\n\\nShe scratches her head and swipes her screen open. After a few taps, raindrops begin to fall in an area no wider than her umbrella.\\nThe pitter-patter sound of raindrops on the umbrella mixes with music from the game. All was calm and relaxing.\\n\"Gaming and rain totally go together.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "Mirage of Reality", + "Desc": "Increases the wearer's Effect Hit Rate by #1[i]%. When the wearer deals DMG to an enemy that currently has #4[i] or more debuffs, increases the wearer's CRIT Rate by #5[i]%. After the wearer uses their Basic ATK, Skill, or Ultimate, there is a #2[i]% base chance to implant Aether Code on a random hit target that does not yet have it. Targets with Aether Code receive #3[i]% increased DMG for 1 turn.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 1, + 0.12000000011175871, + 3, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 1, + 0.14000000013038516, + 3, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 1, + 0.1600000001490116, + 3, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 1, + 0.18000000016763806, + 3, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 1, + 0.20000000018626451, + 3, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23008": { + "Name": "Echoes of the Coffin", + "Desc": "Under the watch of the white irises, he knocks on the coffin.\\n\"Sometimes I feel I underestimated you by proposing this deal.\"\\nHe receives no response other than a thorny branch piercing through his palm.\\nYet he smiles, and tightly grasps the thorn.\\n\\n\"Indeed. This is how it is. We wanted to use each other, and both ended up underestimating the other.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "Thorns", + "Desc": "Increases the wearer's ATK by #1[i]%. After the wearer uses an attack, for each different enemy target the wearer hits, regenerates #3[f1] Energy. Each attack can regenerate Energy up to #4[i] time(s) this way. After the wearer uses their Ultimate, all allies gain #2[i] SPD for 1 turn.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 12, + 3, + 3 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 14, + 3.5000000004656613, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 16, + 4, + 3 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 18, + 4.500000000465661, + 3 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 20, + 5, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23009": { + "Name": "The Unreachable Side", + "Desc": "He would come to this place every year, bringing new swords with him each time.\\nHe had seen all the owners of the swords draw their last breath.\\nEvery time he leaves, he would sorrowfully ponder...\\n\\nWhen would his own blade be brought here by someone else?", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "Unfulfilled Yearning", + "Desc": "Increases the wearer's CRIT Rate by #1[i]% and increases their Max HP by #2[i]%. When the wearer is attacked or consumes their own HP, their DMG increases by #3[i]%. This effect is removed after the wearer uses an attack.", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.2700000002514571, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "23010": { + "Name": "Before Dawn", + "Desc": "\"Do not make this decision lightly, general... Think about how you will be remembered in history...\"\\nThe general of the Cloud Knights listens to his subordinates' words with eyes half-closed.\\n\"History will make its own judgment, but I have no interest in my legacy.\"\\n\"If I succeed, history will state that I am currently supremely confident in my masterful strategy.\"\\n\"But if I fail, then history will state that I am currently neglecting my duties in wanton pleasure, preferring finches over my people.\"\\n\\nA finch jumps down from his shoulder, and he extends his hand to catch the small creature.\\n\"I have simply made my own decision.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "Long Night", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. Increases DMG dealt by the wearer's Skill and Ultimate by #2[i]%. After the wearer uses Skill or Ultimate, gains Somnus Corpus. Upon triggering a Follow-up ATK, consumes Somnus Corpus, and increases DMG dealt by Follow-up ATK by #3[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806, + 0.48000000044703484 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774, + 0.5600000005215406 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.24000000022351742, + 0.6400000005960464 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.2700000002514571, + 0.7200000006705523 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.8000000007450581 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23011": { + "Name": "She Already Shut Her Eyes", + "Desc": "The ache in the middle of her forehead will accompany her for the rest of her life, but it is only a fraction of what she had experienced in the past.\\nShe thought herself prescient until the departure of those for whom she cared.\\nShe now \"sees\" the world ever-changing, the times ever-shifting...\\nBut she already shut her eyes, because the future has already been determined\\n...inside \"the third eye.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "Visioscape", + "Desc": "Increases the wearer's Max HP by #1[i]% and Energy Regeneration Rate by #4[i]%. When the wearer's HP is reduced, all allies' DMG dealt increases by #2[f1]%, lasting for #5[i] turn(s).\\nAt the start of every wave, restores HP to all allies by an amount equal to #3[i]% of their respective lost HP.", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.09000000008381903, + 0.8000000007450581, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.1049999997485429, + 0.8500000007916242, + 0.14000000013038516, + 2 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.12000000011175871, + 0.9000000008381903, + 0.1600000001490116, + 2 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.13499999977648258, + 0.9500000008847564, + 0.18000000016763806, + 2 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.1500000001396984, + 1, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23012": { + "Name": "Sleep Like the Dead", + "Desc": "The boy is still tightly grasping the sword even when fast asleep against the general's shoulder.\\nThe general gently taps the boy's cheek, and the boy mutters in his sleep.\\n\"General... I finally... won.\"\\n\\nThe general pauses. He suddenly realizes that, compared to the boy trying to improve every day,\\nhe himself has endured too many years and is used to stagnation.\\n\\n\"You will soon be better than everyone, and that will only be the beginning...\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "Sweet Dreams", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. When the wearer's Basic ATK or Skill DMG does not result in a CRIT Hit, increases their CRIT Rate by #2[i]%, lasting for #3[i] turn(s). This effect can only trigger once every #4[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761, + 1, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555, + 1, + 3 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484, + 1, + 3 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.5400000005029142, + 1, + 3 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.6000000005587935, + 1, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23013": { + "Name": "Time Waits for No One", + "Desc": "She had spent many days next to the window.\\n\\nFlowers were blooming outside when she made gentle medicines with mint and nepeta.\\nRain was falling outside when she made strong medicines with mosla and ginger.\\nLeaves were falling outside when she made sour medicines with peony roots and dry plums.\\nAnd snow was falling outside when she made bitter medicines with skullcaps and anemarrhena.\\n\\nTime flows endlessly, but this window and the person sitting next to it remain forever the same.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "Morn, Noon, Dusk, and Night", + "Desc": "Increases the wearer's Max HP by #1[i]% and Outgoing Healing by #2[i]%. When the wearer heals allies, record the amount of Outgoing Healing. When any ally launches an attack, a random attacked enemy takes Additional DMG equal to #3[i]% of the recorded Outgoing Healing value. The type of this Additional DMG is of the same Type as the wearer's. This Additional DMG is not affected by other buffs, and can only occur 1 time per turn.", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.12000000011175871, + 0.3600000003352761 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.14000000013038516, + 0.4200000003911555 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.1600000001490116, + 0.48000000044703484 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.18000000016763806, + 0.5400000005029142 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.20000000018626451, + 0.6000000005587935 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23014": { + "Name": "I Shall Be My Own Sword", + "Desc": "The blade shattered, plunging into the bone-chilling cold.\\nAll earthly instruments are mere futilities, their worth discernible with a single glance.\\n\"What use do I have of swords?\"\\nShe holds no attachment, nor does her gaze accommodate anything within.\\n\\n\"From now on, I shall be my own sword.\"\\nTo transcend perceived precipices and achieve unprecedented breakthroughs,\\none must regard themselves as \"kindling\" to fuel their own fire.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "With This Evening Jade", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. When a teammate gets attacked or loses HP, the wearer gains 1 stack of Eclipse, up to a max of #2[i] stack(s). Each stack of Eclipse increases the DMG of the wearer's next attack by #3[f1]%. When #2[i] stack(s) are reached, additionally enables that attack to ignore #4[i]% of the enemy's DEF. This effect will be removed after the wearer uses an attack.", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 3, + 0.14000000013038516, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.2300000002142042, + 3, + 0.16499999980442226, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.26000000024214387, + 3, + 0.1900000001769513, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.29000000027008355, + 3, + 0.2149999998509884, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 3, + 0.24000000022351742, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23015": { + "Name": "Brighter Than the Sun", + "Desc": "From birth, all that ever lay before him was but a lightless dungeon.\\nTo this darkness, irrelevant sins bound him... irrelevant memories engulfed him.\\nHe writhed, gasping for breath with every fiber of his being,\\nattempting to clasp a sliver of light in this fathomless ocean.\\n\\nUntil the day the general stepped into the lightless depths of this prison,\\nhe beheld a radiance shining brighter than the sun — the gaze of a young man.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "Defiant Till Death", + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. When the wearer uses their Basic ATK, they will gain 1 stack of Dragon's Call, lasting for #2[i] turns. Each stack of Dragon's Call increases the wearer's ATK by #4[i]% and Energy Regeneration Rate by #5[f1]%. Dragon's Call can be stacked up to #3[i] times.", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 2, + 2, + 0.18000000016763806, + 0.060000000055879354 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 2, + 2, + 0.21000000019557774, + 0.07000000006519258 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 2, + 2, + 0.24000000022351742, + 0.0800000000745058 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 2, + 2, + 0.2700000002514571, + 0.09000000008381903 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 2, + 2, + 0.3000000002793968, + 0.10000000009313226 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23016": { + "Name": "Worrisome, Blissful", + "Desc": "For a competent IPC professional, \"feeling overwhelmed\" is absolutely not allowed.\\nStand tall and take on whatever comes your way, be it burnout or overwork! \\nUnless... it's being overwhelmed by \"them.\"\\n\\n\"Oh, don't get so antsy! I only have two hands!\"\\nA girl who just returned home from working overtime is pinned down by a group of fluffy creatures.\\nThey may not fully understand her words, simply nuzzling their round heads closer to her palm.\\nThe feeling of exhaustion gradually fades from her body, replaced by the warmth and comfort brought by stroking their fur.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "One At A Time", + "Desc": "Increase the wearer's CRIT Rate by #1[i]% and increases DMG dealt by Follow-up ATK by #2[i]%. After the wearer uses a Follow-up ATK, inflicts the target with the Tame state, stacking up to #4[i] time(s). When allies hit enemy targets under the Tame state, each Tame stack increases the CRIT DMG dealt by #3[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.3000000002793968, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.3500000003259629, + 0.14000000013038516, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.40000000037252903, + 0.1600000001490116, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.45000000041909516, + 0.18000000016763806, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23017": { + "Name": "Night of Fright", + "Desc": "The girl hides behind the door and dares not move one step closer. \\nPerhaps due to the fact that tonight's objective is already within her reach, her heart is actually beating faster.\\n\"I'm not scared, not scared, not scared...\"\\nIn darkness, silence lets out a piercing scream.\\n\\nThe girl is shivering and grasps the \"weapon\" in her hands tight, but still does not dare to approach the \"target.\"\\n\"There is nothing to be s—s—scared of!\"\\n\\nThe tail behind her has finally had enough and suddenly lights up.\\n\"Hurry up. You're just picking up a delivery!\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "Deep, Deep Breaths", + "Desc": "Increases the wearer's Energy Regeneration Rate by #1[i]%. When any ally uses their Ultimate, the wearer restores HP for the ally currently with the lowest HP percentage by an amount equal to #2[i]% of the healed ally's Max HP. When the wearer provides healing for an ally, increases the healed ally's ATK by #3[f1]%. This effect can stack up to #4[i] times and lasts for #5[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.10000000009313226, + 0.02399999974295497, + 5, + 2 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.11000000010244548, + 0.027999999467283487, + 5, + 2 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 0.031999999890103936, + 5, + 2 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.13000000012107193, + 0.035999999614432454, + 5, + 2 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.14000000013038516, + 0.0400000000372529, + 5, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23018": { + "Name": "An Instant Before A Gaze", + "Desc": "He once heard a ballad, singing in praise of that sliver of light:\\nRose blooms, to answer THEIR smile.\\nDawn shines, to illuminate THEIR visage.\\nMelody plays, to banish THEIR fatigue.\\n\\nBut, light, once gone, never returns. Yet, he still gallops to the far beyond.\\nAll that is needed is to wait for, to believe in, and to preach about everything that is of the Beauty in this cosmos.\\nEven if everything is but a fleeting instant before a gaze, he has already found the answer he sought.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "A Knight's Pilgrimage", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. When the wearer uses Ultimate, increases DMG dealt by the wearer's Ultimate based on their Max Energy. Each point of Energy increases DMG dealt by Ultimate by #2[f2]%. A max of #3[i] points of Energy will be taken into account for this.", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.0036000001709908247, + 180 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.00419999985024333, + 180 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.004800000227987766, + 180 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.005399999907240272, + 180 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.005999999586492777, + 180 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23019": { + "Name": "Past Self in Mirror", + "Desc": "She once loved to seal the moment when plum blossoms were on the verge of wilting and keep them close to her.\\nIt has been many years since then. Many lifeforms — rambunctious, sweet, and everything in between — have bloomed from her hands, but the plum blossoms still wilt at their preordained times.\\nIt has been many years since then. Her visage in the mirror seems untouched by time. But, in the grand scheme of the cosmos, is she too destined to last for but a fleeting moment?\\n\\n\"If all is set for eventual demise, what purpose, then, does creation serve?\"\\nAfter a silence that seems to stretch to eternity, the winds blow, the petals fall, and the reflection in the mirror tenders the same answer as always.\\n\"For the day when plum blossoms are no longer kept.\"\\nShe deftly caresses the icy surface of the mirror. Such soliloquies have happened too many times for her to count.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "The Plum Fragrance In My Bones", + "Desc": "Increases the wearer's Break Effect by #1[i]%. When the wearer uses their Ultimate, increases all allies' DMG by #2[i]%, lasting for #3[i] turn(s). Should the wearer's Break Effect exceed or equal #4[i]%, 1 Skill Point will be recovered.\\nAt the start of each wave, all allies regenerate #5[f1] Energy immediately. Abilities of the same type cannot stack.", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 3, + 1.5000000004656613, + 10 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 3, + 1.5000000004656613, + 12.500000000465661 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 3, + 1.5000000004656613, + 15 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 3, + 1.5000000004656613, + 17.50000000046566 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 3, + 1.5000000004656613, + 20 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23020": { + "Name": "Baptism of Pure Thought", + "Desc": "The afternoon sunshine is just right, and the floral scents fill the air.\\nThough he tries to keep his thoughts pure, cognitive stagnancy inevitably attracts particulates of mind like gathered dust.\\n\\n\"Healing one's thoughts is just as vital as the maintenance of one's health.\"\\nThe fools' clamoring fades alongside fatigue as he sinks into the water, letting all thoughts loose, his mind elucidated and ordered.\\n\\n\"Truth eludes all filths, accepting only those of pure thoughts.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "Mental Training", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. For every debuff on the enemy target, the wearer's CRIT DMG dealt against this target additionally increases by #2[i]%, stacking up to #3[i] times. When using Ultimate to attack the enemy target, the wearer receives the Disputation effect, which increases DMG dealt by #4[i]% and enables their Follow-up ATKs to ignore #5[i]% of the target's DEF. This effect lasts for #6[i] turns.", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.0800000000745058, + 3, + 0.3600000003352761, + 0.24000000022351742, + 2 + ] + }, + "2": { + "ParamList": [ + 0.2300000002142042, + 0.09000000008381903, + 3, + 0.4200000003911555, + 0.2800000002607703, + 2 + ] + }, + "3": { + "ParamList": [ + 0.26000000024214387, + 0.10000000009313226, + 3, + 0.48000000044703484, + 0.3200000002980232, + 2 + ] + }, + "4": { + "ParamList": [ + 0.29000000027008355, + 0.11000000010244548, + 3, + 0.5400000005029142, + 0.3600000003352761, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.12000000011175871, + 3, + 0.6000000005587935, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23021": { + "Name": "Earthly Escapade", + "Desc": "Just as fireworks can flicker, she too can shift between ten different colors in a minute.\\n\\nWhen the light show nears its end, she sits high above, regarding the bustling masses beneath her feet with boredom.\\nThoughts flow and vanish, and slyness circulates across myriad eyes like a dancing kaleidoscope.\\n\"I've made my decision. This is how we're going to have fun today!\"\\n\\nBouncing and hopping, she glides through the crowds, her golden-red tail flitting in and out of sight.\\n\"Keep up! The brightest fireworks are just about to begin!\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "Capriciousness", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. At the start of the battle, the wearer gains Mask, lasting for #6[i] turn(s). While the wearer has Mask, the wearer's teammates have their CRIT Rate increased by #5[i]% and their CRIT DMG increased by #2[i]%. For every 1 Skill Point the wearer recovers (including Skill Points that exceed the limit), they gain 1 stack of Radiant Flame. And when the wearer has #4[i] stacks of Radiant Flame, all the stacks are removed, and they gain Mask, lasting for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.3200000002980232, + 0.2800000002607703, + 4, + 4, + 0.10000000009313226, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3900000003632158, + 0.3500000003259629, + 4, + 4, + 0.11000000010244548, + 3 + ] + }, + "3": { + "ParamList": [ + 0.4600000004284084, + 0.4200000003911555, + 4, + 4, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.530000000493601, + 0.49000000045634806, + 4, + 4, + 0.13000000012107193, + 3 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.5600000005215406, + 4, + 4, + 0.14000000013038516, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23022": { + "Name": "Reforged Remembrance", + "Desc": "Light the candles, spread the cards, breathe in the fragrance...\\nThese broken memories become faces in the dancing light.\\nThe apparitions that emerge from flames tell her of pasts fondly recalled.\\nTime is shorn. The moment is frozen. She turns these most precious instants into crystallizations of eternity.\\n\\n\"There is too much lost, and too little that remains... We nurture remembrance against the cruelties of time.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "Crystallize", + "Desc": "Increases the wearer's Effect Hit Rate by #1[i]%. When the wearer deals DMG to an enemy inflicted with Wind Shear, Burn, Shock, or Bleed, each respectively grants 1 stack of Prophet, stacking up to #4[i] time(s). In a single battle, only 1 stack of Prophet can be granted for each type of DoT. Every stack of Prophet increases wearer's ATK by #2[i]% and enables the DoT dealt to ignore #3[f1]% of the target's DEF.", + "Level": { + "1": { + "ParamList": [ + 0.40000000037252903, + 0.05000000004656613, + 0.07199999992735684, + 4 + ] + }, + "2": { + "ParamList": [ + 0.45000000041909516, + 0.060000000055879354, + 0.07899999944493175, + 4 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 0.07000000006519258, + 0.08599999966099858, + 4 + ] + }, + "4": { + "ParamList": [ + 0.5500000005122274, + 0.0800000000745058, + 0.09299999987706542, + 4 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.09000000008381903, + 0.10000000009313226, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23023": { + "Name": "Inherently Unjust Destiny", + "Desc": "With the final card revealed, despondency, rage, acceptance, and sangfroid... A cascade of emotions drops onto the faces of his opponents.\\n\"Now that we're all here, why don't we spice things up a bit?\"\\nHe puts in all his chips. Those who have cut their losses leave the table, cursing profanities and secretly hoping that he would lose.\\n\\nVictories, reputation, fortune... He cares not for any of that. Instead, he's enthralled only by those moments that make his very life quiver —\\nAfter all, hell is but one choice away from heaven.\\n\\nThe chips are cast, sorrow fills the air, and the illusory sense of satisfaction dissipates in an instant when the dust finally settles.\\n\"All or nothing, I have not the luxury of choice...\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "All-In", + "Desc": "Increases the wearer's DEF by #1[i]%. When the wearer provides a Shield to an ally, the wearer's CRIT DMG increases by #2[i]%, lasting for #3[i] turn(s). When the wearer's Follow-up ATK hits an enemy target, there is a #4[i]% base chance to increase the DMG taken by the attacked enemy target by #5[f1]%, lasting for #6[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903, + 2, + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.4600000004284084, + 0.4600000004284084, + 2, + 1.1500000001396984, + 0.11499999975785613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.5200000004842877, + 0.5200000004842877, + 2, + 1.3000000002793968, + 0.13000000012107193, + 2 + ] + }, + "4": { + "ParamList": [ + 0.5800000005401671, + 0.5800000005401671, + 2, + 1.4500000004190952, + 0.1449999997857958, + 2 + ] + }, + "5": { + "ParamList": [ + 0.6400000005960464, + 0.6400000005960464, + 2, + 1.6000000005587935, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23023, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 30, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 66, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 114, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 162, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 210, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 258, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 306, + "BaseDefenceAdd": 4.500000000465661 + } + ] + }, + "23024": { + "Name": "Along the Passing Shore", + "Desc": "Flowing in the narrow border between \"existence\" and \"nothingness,\" the ice-cold tides eternally lap against the shores and bring all things to their final end.\\n\\nIn this place, the drowned ask for help, lament with songs, find their happiness, enjoy sweet moments, and suffer great agony... All these are reflected in the water. She cannot experience these, but she can feel them —\\nThere are still many roads to walk, many sounds to listen to, and many things to change before she arrives at the end.\\n\\nShe reaches out and saves the drowning from the temptations of Nihility, and one mirage after another bursts apart behind her figure.\\nShe keeps walking in this boundless world, all for an end that does not exist.\\n\\n— And it's always raining here.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "Steerer", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. When the wearer hits an enemy target, inflicts Mirage Fizzle on the enemy, lasting for 1 turn. Each time the wearer attacks, this effect can only trigger 1 time on each target. The wearer deals #2[i]% increased DMG to targets afflicted with Mirage Fizzle, and the DMG dealt by Ultimate additionally increases by #3[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23024, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23025": { + "Name": "Whereabouts Should Dreams Rest", + "Desc": "This is the edge of the Asdana system. The ocean of memoria roars with mountainous waves and she, like a singular tiny spark, may be doused at any moment in the storm.\\n\"For one who cannot dream to enter the Synesthesia Dreamscape, they would have to pay a price comparable to death.\"\\nShe can still hear her companions' concerned voices next to her ears. She takes a deep breath and dives into the Memory Zone.\\nAs the vessel silently sinks into the depth of the Memory Zone, small pinpricks of firefly lights dissipate from the cracks and are then immediately swallowed up by the endless darkness.\\n\\n\"Wherefore do you hurtle unto death?\"\\nIn the ocean of memoria that grows deeper and deeper, the weak light emitted by the Memory Zone creatures are like faraway eyes that nonchalantly glance at her.\\n\\nDreams remained too distant for her. She gazes emptily out at the boundless darkness, her body and soul having reached the breakdown threshold long ago under the heavy pressure of memoria. Though she realizes her consciousness is gradually fading, only those remaining memories are playing over and over in her brain —\\nThe Swarm that covered the sky tore through the frontline defenses as she flew towards the Swarm while enveloped in fire. The charred ash of the Swarm faded like snow, under which lies the pitch-black carcasses of the knights.\\nShe didn't even have the time to take a bouquet and offer her final acknowledgement to knights, who were dying one after another. Their lives bloomed in the blink of an eye and went out equally fleetingly. Like a string of genetic code, they never possessed names and only had numbers allotted instead.\\n\\n\"Wherefore do you live?\"\\nIn the deathly silence, like flames dissolving in the sea, she is reduced to a singular spot of fire and unendingly progresses towards the light...\\nShe opens her eyes after what seems to be forever. She sees the \"future\" looking like a pearl, radiating with a soft and vague light. Tears stream down her face —\\n\"I do it to find... my own 'dream'...\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "Metamorphosis", + "Desc": "Increases the wearer's Break Effect by #1[i]%. When the wearer deals Break DMG to an enemy target, inflicts Routed on the enemy, lasting for #4[i] turn(s). Targets afflicted with Routed receive #2[f1]% increased Break DMG from the wearer, and their SPD is lowered by #3[i]%. Effects of the same type cannot be stacked.", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 0.20000000018626451, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 0.20000000018626451, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 0.20000000018626451, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23025, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23026": { + "Name": "Flowing Nightglow", + "Desc": "Time flows through the mirror, metamorphosing the once inexperienced little girl into a seasoned songstress.\\nShe studies her reflection in the mirror. Time has altered all but her green eyes, which still remain as serene as a lake, as if recounting an unshakable faith.\\n\\n\"You seem in high spirits today.\"\\n\"Yes... after all, there's a very important 'performance'.\"\\n\"Indeed. The Charmony Festival's rehearsal is about to start. Please head to the preparation room.\"\\n...\\n\\nShe steps out from the dressing room, leaving behind the brilliant lights of the theater, fading into the distance.\\n\"My stage lies not here.\"\\nShe closes her eyes, letting the night swallow her silhouette.\\n\"From the past to the present, my song has always been for...\"\\n\"For those who have lost hope.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "Pacify", + "Desc": "Every time an ally attacks, the wearer gains 1 stack of Cantillation. Each stack of Cantillation increases the wearer's Energy Regeneration Rate by #1[f1]%, stacking up to #2[i] time(s). When the wearer uses their Ultimate, removes Cantillation and gains Cadenza. Cadenza increases the Wearer's ATK by #4[i]% and increases all allies' DMG dealt by #3[i]%, lasting for #5[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.030000000027939677, + 5, + 0.24000000022351742, + 0.48000000044703484, + 1 + ] + }, + "2": { + "ParamList": [ + 0.034999999683350325, + 5, + 0.2800000002607703, + 0.6000000005587935, + 1 + ] + }, + "3": { + "ParamList": [ + 0.0400000000372529, + 5, + 0.3200000002980232, + 0.7200000006705523, + 1 + ] + }, + "4": { + "ParamList": [ + 0.04499999969266355, + 5, + 0.3600000003352761, + 0.840000000782311, + 1 + ] + }, + "5": { + "ParamList": [ + 0.05000000004656613, + 5, + 0.40000000037252903, + 0.9600000008940697, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23026, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23027": { + "Name": "Sailing Towards a Second Life", + "Desc": "He felt as if he had fallen into a deep sea. Everything was departing from him, leaving only his hollow thoughts writhing and struggling all alone.\\n\\nTerror, anxiety, loneliness, darkness, rage — these feelings didn't dissipate with his physical body, but remained within the mechanical shell in a different manner — and they were even heavier than before.\\n\\nHe heard the call of the dead, smelled the scent of something being charred, the whirl of machinery buzzed around his ears, and the new blue blood flew towards his thirsty heart... Some cruel memories resurfaced as the unforgettable hatred turned into a weak light in the darkness. He followed the light to walk toward the end of it all, exerting every ounce of his strength to rise once again to the surface.\\n\\nHe opened his eyes and a flash of fireworks darted past before hearing the doctor's congratulations — \\n\"Welcome to this world, once again.\"\\nHe balled his hands into fists — hands that were now made of cold iron...\\nHe would no longer live for himself.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "Rough Water", + "Desc": "Increases the wearer's Break Effect by #1[i]%. The Break DMG dealt by the wearer ignores #3[i]% of the target's DEF. When the wearer's Break Effect in battle is at #2[i]% or greater, increases their SPD by #4[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 1.5000000004656613, + 0.20000000018626451, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 1.5000000004656613, + 0.2300000002142042, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 1.5000000004656613, + 0.26000000024214387, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 1.5000000004656613, + 0.29000000027008355, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 1, + 1.5000000004656613, + 0.3200000002980232, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23027, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23028": { + "Name": "Yet Hope Is Priceless", + "Desc": "\"Lady Bonajade, if it weren't for your continuous supply of goods and donations, the orphanage would probably...\"\\nShe gently stroked the children's heads, cutting off the director's words.\\n\"As long as I'm here, there's no need to worry about the days ahead... And there's no need to say these things to the children, it only adds to their worries.\"\\n\\nThe children looked up, chattering with her about recent happenings, their worries, and their dreams.\\n\"Lady Bonajade, when are you gonna come visit us again?\"\\n\"Don't work too hard, and make sure you get lotsa sleep...\"\\n\"Lady Bonajade, when I grow up, I want to be someone like you!\"\\nShe looked at the children's clear eyes and paused for a moment.\\n\"Someone like me...\"\\nThe child handed her an apple, \"Yes! Someone who brings light and hope to others!\"\\n\\nPoverty, demerits, sorrow, suffering... She walked among the galaxies, taking others' pledges and giving equivalent returns.\\nLife exists for desire, runs on it, and dies from it — this is an irrefutable law, as well as an inevitability of life itself.\\nA philanthropist with a hidden agenda, a villainous merchant who mortgages souls... She was labeled by the world in many such ways, yet only she understood the true morals behind these actions.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "Promise", + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. While the wearer is in battle, for every #3[i]% CRIT DMG that exceeds #2[i]%, the DMG dealt by Follow-up ATK increases by #4[i]%. This effect can stack up to #5[i] time(s). When the battle starts or after the wearer uses their Basic ATK, enables the DMG dealt by Ultimate or Follow-up ATK to ignore #6[i]% of the target's DEF, lasting for #7[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1.2000000001862645, + 0.20000000018626451, + 0.12000000011175871, + 4, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.1900000001769513, + 1.2000000001862645, + 0.20000000018626451, + 0.14000000013038516, + 4, + 0.24000000022351742, + 2 + ] + }, + "3": { + "ParamList": [ + 0.22000000020489097, + 1.2000000001862645, + 0.20000000018626451, + 0.1600000001490116, + 4, + 0.2800000002607703, + 2 + ] + }, + "4": { + "ParamList": [ + 0.25000000023283064, + 1.2000000001862645, + 0.20000000018626451, + 0.18000000016763806, + 4, + 0.3200000002980232, + 2 + ] + }, + "5": { + "ParamList": [ + 0.2800000002607703, + 1.2000000001862645, + 0.20000000018626451, + 0.20000000018626451, + 4, + 0.3600000003352761, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23028, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23029": { + "Name": "Those Many Springs", + "Desc": "After a few sudden drizzles, spring tides rise, birthing lush greenery.\\n\"How many springs has it been?\"\\nHe recalls those young soldiers heading to the battlefield for the first time. Year after year, the faces were all different, yet they radiated the exact same vigor and hope.\\nThe willow withers as it waits for their return. But what they manage to bring home is often... the frost that can never melt.\\n\\nBirds' warbles linger in the air as he closes his eyes, allowing sunlight to fall on his face through the gaps between the leaves.\\n—\"Alas, those who remain are the loneliest of all.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "Worldly Affairs Leave No Mark", + "Desc": "Increases the wearer's Effect Hit Rate by #1[i]%. After the wearer uses Basic ATK, Skill, or Ultimate to attack an enemy target, there is a #2[i]% base chance to inflict \"Unarmored\" on the target. While in the Unarmored state, the enemy target receives #3[i]% increased DMG, lasting for #4[i] turn(s). If the target is under a DoT state inflicted by the wearer, there is a #5[i]% base chance to upgrade the \"Unarmored\" state inflicted by the wearer to the \"Cornered\" state, which additionally increases the DMG the enemy target receives by #6[i]%, lasting for #4[i] turn(s). During this period, the wearer cannot inflict \"Unarmored\" on the target.", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935, + 0.10000000009313226, + 2, + 0.6000000005587935, + 0.14000000013038516 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.6000000005587935, + 0.12000000011175871, + 2, + 0.6000000005587935, + 0.1600000001490116 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.14000000013038516, + 2, + 0.6000000005587935, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.6000000005587935, + 0.1600000001490116, + 2, + 0.6000000005587935, + 0.20000000018626451 + ] + }, + "5": { + "ParamList": [ + 1, + 0.6000000005587935, + 0.18000000016763806, + 2, + 0.6000000005587935, + 0.22000000020489097 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23029, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23030": { + "Name": "Dance at Sunset", + "Desc": "In the resplendent twilight, a swift figure darts across the rooftops.\\n\\n\"Lili, Guoguo, let's see who makes it to the finish line first!\"\\nScaling the eaves, evading the guards, swaying with the wind, the girl moves like a nimble critter, chasing the last sliver of sunlight.\\n\\nThe warm evening breeze caresses her face, and the setting sun bathes the cat in a kaleidoscope of colors.\\n\"You guys won!\"\\nShe declares, wiping sweat from her brow and cradling the cat in her arms.\\nAmidst a rising galaxy of stars, her unguarded smile dissolves into a bloom of innocence, akin to the layered twilight hues adrift in the sky.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "Deeply Engrossed", + "Desc": "Greatly increases the wearer's chance of getting attacked and increases CRIT DMG by #1[i]%. After the wearer uses Ultimate, receives 1 stack of Firedance, lasting for 2 turns and stacking up to #2[i] time(s). Each stack of Firedance increases the DMG dealt by the wearer's Follow-up ATK by #3[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 2, + 0.3600000003352761, + 5 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 2, + 0.4200000003911555, + 5 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 2, + 0.48000000044703484, + 5 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 2, + 0.5400000005029142, + 5 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 2, + 0.6000000005587935, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23030, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23031": { + "Name": "I Venture Forth to Hunt", + "Desc": "\"Pitiful, laughable slaves...\"\\nThe Denizens of Abundance's legions come crashing upon the border like an avalanche, with Lupitoxin rushing toward the Verdant Knights like a tide, trying to arouse the deep-set fear hidden in the soldiers' hearts. Illusions of dread came forth, striking the wills of the warriors, compelling them to drop their blades and be seized by hesitation.\\nBut the front remains stalwart like a bronze wall, unstirred by the borisins' disdainful words. From among the soldiers, a single figure saunters forth.\\nShe moves her body at a slow pace, and the flags behind her rustle under the unseen killing intent.\\n\"The general... it's the general...\"\\n\"General Feixiao...\"\\n\"The Merlin's Claw!\"\\nThese small cheers and calls then come together into a thunderous battle cry.\\n\\n\"Always soaring! Forever triumphant!\"\\nShe stands there, alone. A single figure, but imbued with the might of an entire army.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "Intimidation", + "Desc": "Increases the wearer's CRIT Rate by #1[f1]%. When the wearer launches a Follow-up ATK, gains 1 stack of \"Luminflux,\" stacking up to #3[i] time(s). Each stack of \"Luminflux\" enables the Ultimate DMG dealt by the wearer to ignore #2[i]% of the target's DEF. When the wearer's turn ends, removes 1 stack of \"Luminflux.\"", + "Level": { + "1": { + "ParamList": [ + 0.1500000001396984, + 0.2700000002514571, + 2 + ] + }, + "2": { + "ParamList": [ + 0.17499999981373549, + 0.3000000002793968, + 2 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.33000000030733645, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2249999998603016, + 0.3600000003352761, + 2 + ] + }, + "5": { + "ParamList": [ + 0.25000000023283064, + 0.3900000003632158, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23031, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23032": { + "Name": "Scent Alone Stays True", + "Desc": "\"First, overhaul the department's work habits.\"\\n\"Then, strictly implement rewards and penalties.\"\\n\"Of course, the most important part is figuring out everyone's tangled web of personal interests as soon as possible...\"\\nThough she was originally here to admire the scenery, her mind had unknowingly drifted toward work, with stress and trouble naturally following.\\n\\nShe hurriedly ignites the soothing incense she always carried with her.\\n\"The world is so beautiful, yet I am so irritable... Best not to think of such miserable matters while on vacation...\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "Contentment", + "Desc": "Increases the wearer's Break Effect by #1[i]%. After the wearer uses Ultimate to attack enemy targets, inflicts the targets with the \"Woefree\" state, lasting for #5[i] turn(s). While in \"Woefree,\" enemy targets take #2[i]% increased DMG. The effect of increasing DMG taken is additionally boosted by #4[i]% if the wearer's current Break Effect is #3[i]% or higher.", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226, + 1.5000000004656613, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.12000000011175871, + 1.5000000004656613, + 0.10000000009313226, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 1.5000000004656613, + 0.12000000011175871, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.1600000001490116, + 1.5000000004656613, + 0.14000000013038516, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 0.18000000016763806, + 1.5000000004656613, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23032, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23033": { + "Name": "Ninjutsu Inscription: Dazzling Evilbreaker", + "Desc": "Somewhere in the Ninja Realm, a shroud of dreary gray veils the city.\\n\\n\"Hiyaaa!\"\\nA young lady darts through the monsters, her vibrant silhouette cutting through the darkness like a stroke of paint against a moonless earth.\\n\\nIn the midst of smoke, the Evil Ninjas wince in both agony and disbelief.\\n\"Who...are you...?\"\\n\"I'm Ninja Rappa! A beacon of determination, eradicating evil and upholding justice.\"\\nThe Evil Ninjas exchange hesitant glances, eyes wide as they attempt to flee.\\n\"Are you prepared to recite your final rhymes?\"\\nHer shuriken dances through the air, a flurry of light and steel, overwhelming her adversaries with its blinding swiftness.\\n\"Secret Technique: Dazzling Obliteration!\"\\n\\nThe explosion behind her shatters the night, unveiling the city's wounds.\\nWith a breath drawn deep, she launches herself into the neon-lit distance, where the vibrant lights scream like a heavy metal chorus.\\n\"Such loathsome evil spirits. The Dazzling Ninja's ultimate hunt shall continue...\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "Exorcism", + "Desc": "Increases the wearer's Break Effect by #1[i]%. When entering battle, immediately regenerates #2[f1] Energy. After the wearer uses Ultimate, obtains \"Raiton.\" After using 2 Basic ATKs, advances the wearer's action by #3[i]% and removes \"Raiton.\" After the wearer uses Ultimate, resets \"Raiton.\"", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 30, + 0.5000000004656613 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 32.50000000046566, + 0.5500000005122274 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 35, + 0.6000000005587935 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 37.50000000046566, + 0.6500000006053597 + ] + }, + "5": { + "ParamList": [ + 1, + 40, + 0.7000000006519258 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23033, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23034": { + "Name": "A Grounded Ascent", + "Desc": "Those delusions and fallacies have been shattered. He wanted to be the sun of the whole world, yet he fell from the sky.\\n\\n\"Now, do you feel what pain is?\"\\nAnother voice in his heart spoke thus.\\n\"Yes. And that is what I deserve to feel.\"\\nHe fell into dust and answered himself with his heavy footsteps.\\n\\nHe walked on the earth and once again beheld the agony that covers the mortal realm like a never-ending font.\\nHe stepped over the thorns that blocked the road and listened to the calls of humanity. He experienced anguish, through which he obtained tranquility.\\n\\n\"Falling was originally just another name for flying.\"\\nAnd on this eighth day, he granted himself \"departure.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "Departing Anew", + "Desc": "After the wearer uses Skill or Ultimate on one ally character, the wearer regenerates #1[f1] Energy and the ability's target receives 1 stack of \"Hymn\" for #4[i] turn(s), stacking up to #3[i] time(s). Each stack of \"Hymn\" increases its holder's DMG dealt by #2[i]%. After every #5[i] instance(s) of Skill or Ultimate the wearer uses on one ally character, recovers 1 Skill Point.", + "Level": { + "1": { + "ParamList": [ + 6, + 0.1500000001396984, + 3, + 3, + 2 + ] + }, + "2": { + "ParamList": [ + 6.500000000465661, + 0.17250000033527613, + 3, + 3, + 2 + ] + }, + "3": { + "ParamList": [ + 7, + 0.19499999983236194, + 3, + 3, + 2 + ] + }, + "4": { + "ParamList": [ + 7.500000000465661, + 0.21750000002793968, + 3, + 3, + 2 + ] + }, + "5": { + "ParamList": [ + 8, + 0.24000000022351742, + 3, + 3, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23034, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23035": { + "Name": "Long Road Leads Home", + "Desc": "\"Who... Is she?\" The girl caresses the unfamiliar self.\\n\\nShe recalls how the fire that day had swallowed her whole, and how her bejeweled fan turned into ash.\\n\\nShe had once walked on a never-ending road, looking for the light ahead.\\nThe sounds outside were calling for her, leading her forward, guiding her through the layers of night.\\nThe sounds within reminded her of those unfulfilled promises, unexecuted plans, and unrealized wishes... They were all still waiting for her.\\n\\nThey never dissipated in the fire, but instead, glowed ever brighter in the flames.\\n\\n\"That is me...\"\\nShe stands at the end of the road and no longer looks back in reminiscence —\\n\"It's the original me, and also the brand-new me.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "Rebirth", + "Desc": "Increases the wearer's Break Effect by #1[i]%. When an enemy target's Weakness gets broken, there is a #2[i]% base chance to inflict the \"Charring\" state on it, which increases its Break DMG taken by #3[i]%, lasting for #4[i] turn(s). This effect can stack #5[i] time(s).", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 1, + 0.18000000016763806, + 2, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 1, + 0.21000000019557774, + 2, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 1, + 0.24000000022351742, + 2, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 1, + 0.2700000002514571, + 2, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 1, + 0.3000000002793968, + 2, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23035, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 30, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 66, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 114, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 162, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 210, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 258, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 306, + "BaseDefenceAdd": 4.500000000465661 + } + ] + }, + "23036": { + "Name": "Time Woven Into Gold", + "Desc": "\"This strand, a soldier's sacrifice.\"\\n\"This strand, a hero's growth.\"\\n\"This strand, the city's prosperity.\"\\n....\\nThe Garmentmaker pulls at the threads using a needle, everything held between her fingers.\\n\"The destiny of certain heroes has already been severed...\"\\nShe scoops up another set of golden threads and continues her mending.\\n\"The fates of certain heroes must continue...\"\\n\\nThe divine loom weaves on, and the Garmentmakers dance with lively grace. Eons of time had already passed through the loom, and she has long been accustomed to such waiting....\\n\\nFor the sake of turning time to golden \"inspiration.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "Establishment", + "Desc": "Increases the wearer's base SPD by #1[i]. After the wearer and the wearer's memosprite attacks, the wearer gains 1 stack of \"Brocade.\" Each stack of \"Brocade\" increases the wearer's and their memosprite's CRIT DMG by #4[f1]%, stacking up to #2[i] time(s). When reaching maximum stacks, each \"Brocade\" stack additionally increases Basic ATK DMG dealt by #3[f1]%.", + "Level": { + "1": { + "ParamList": [ + 12, + 6, + 0.09000000008381903, + 0.09000000008381903 + ] + }, + "2": { + "ParamList": [ + 14, + 6, + 0.1049999997485429, + 0.1049999997485429 + ] + }, + "3": { + "ParamList": [ + 16, + 6, + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "4": { + "ParamList": [ + 18, + 6, + 0.13499999977648258, + 0.13499999977648258 + ] + }, + "5": { + "ParamList": [ + 20, + 6, + 0.1500000001396984, + 0.1500000001396984 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23036, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23037": { + "Name": "Into the Unreachable Veil", + "Desc": "\"The Intelligentsia Guild's letters have been handled.\"\\n\"The Simulated Universe is functioning normally...\"\\n\"Literary collections have been reprinted.\"\\n\"Hey. Shhh. Don't bother Madam Herta...\"\\n\\n...Within a great tower on the edge of the cosmos, puppets work methodically, dealing with all manner of chores in anticipation of her arrival.\\nTime passes. Countless people drift through the canvas of time like meteors streaking across the night sky, bright for an instant, before ultimately returning to silence.\\n\"Madam Herta hasn't shown herself in a long time...\"\\n\"Is she still thinking...?\"\\n\\n\"Hmmm. Thought this would all be done after discovering a few axioms?\"\\nShe stretches, lifting her head from the calculations, and another thought surfaces in her mind...\\n\"Nothing is irrefutable. I will chase these questions to the end!\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "Mind Game", + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. When the wearer uses their Ultimate, increases the wearer's Skill DMG and Ultimate DMG dealt by #4[i]%, lasting for #5[i] turn(s). After the wearer uses their Ultimate, if this Ultimate consumed #3[i] or more Energy, recovers 1 Skill Point.", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 2, + 140, + 0.6000000005587935, + 3 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 2, + 140, + 0.7000000006519258, + 3 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 2, + 140, + 0.8000000007450581, + 3 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 2, + 140, + 0.9000000008381903, + 3 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 2, + 140, + 1, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23037, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23038": { + "Name": "If Time Were a Flower", + "Desc": "\"Mama, I want to hear another story!\"\\n\\n\"My sweet girl, how about a story about time?\"\\n\\n\"Time... what is it?\"\\n\\n\"Time, my dear, is like a flower.\"\\n\\n\"Like the dandelions blooming in the fields?\"\\n\\n\"Yes, just like dandelions. Time grows, blossoms, and bears fruit. We call its petals 'moments.'\"\\n\\n\"And then what happens?\"\\n\\n\"Then, it withers into a thousand pieces, leaving seeds that drift everywhere...\"\\n\\n\"Mama, does that mean it becomes the 'future'?\"\\n\\n\"Guess what it turns into after that?\"\\n\\n\"It turns into so many flowers, blooming into a vibrant sea of blossoms, right?\"\\n\\nThe mother didn't have time to answer as the sunlight from the window warmed the girl's face. That gentle figure vanished once more into her dream.\\nShe opened her eyes—\\n\"If time were a flower...\" she murmured.\\n\"It would surely become a sea of flowers,\" said the serene girl.\\n\"Of course it would!\" Exclaimed the playful girl, cheering at her masterpiece.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "Aspiration", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. After the wearer launches Follow-up ATK, additionally regenerates #2[i] Energy and gains \"Presage,\" lasting for #3[i] turn(s). While the wearer has \"Presage,\" all ally targets' CRIT DMG increases by #4[i]%. When entering battle, the wearer regenerates #5[i] Energy and gains \"Presage,\" lasting for #6[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 12, + 2, + 0.48000000044703484, + 21, + 2 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 12, + 2, + 0.6000000005587935, + 21, + 2 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 12, + 2, + 0.7200000006705523, + 21, + 2 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 12, + 2, + 0.840000000782311, + 21, + 2 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 12, + 2, + 0.9600000008940697, + 21, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23038, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23039": { + "Name": "Flame of Blood, Blaze My Path", + "Desc": "Cold dew congealed on the blade, sliding down in crimson streaks.\\nThe rust-tainted wilderness still flickered with embers of battle, flames leaping upon the ashes.\\n\\n\"Mydeimos, that was a godlike fight just now!\"\\nA bare-chested warrior wiped his weapon clean, shouting in exhilaration.\\n\\n\"Mydei, one day, I'll be as invincible as you!\"\\nA child gazed at him with reverence, clutching a broken sword in small hands.\\n\\n\"Crown Prince, our return to Castrum Kremnos is within sight.\"\\nAn aged man smiled, raising his cup in a toast to him.\\n\\nHe nodded silently and walked to the edge of the camp.\\nThe pain of rebirth still coursed across his skin. Tomorrow, he would lead the Kremnoan Detachment forth once again, migrating to foreign lands.\\nWhere this wandering would end, he did not know. The only certainty was this — he would bear the duty of a king until the blood and flames consumed him.\\n\\nAs night deepened, he drank the bloodwine alone. A passing bard plucked at his strings, a wandering melody drifting through the air—\\n\"Home is the land of dreams, not a place one can ever reach.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "Vista", + "Desc": "Increases the wearer's Max HP by #1[i]% and Incoming Healing by #6[i]%. When using Skill or Ultimate, consumes HP equal to #2[f1]% of the wearer's Max HP and increases the DMG dealt by this attack by #3[i]%. If this effect's consumed HP is greater than #4[i], the DMG additionally increases by #5[i]%.\\nIf the current HP is not sufficient, this effect reduces the wearer's current HP down to 1.", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.060000000055879354, + 0.3000000002793968, + 500, + 0.3000000002793968, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.06499999971129, + 0.3500000003259629, + 500, + 0.3500000003259629, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.07000000006519258, + 0.40000000037252903, + 500, + 0.40000000037252903, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.07499999972060323, + 0.45000000041909516, + 500, + 0.45000000041909516, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.0800000000745058, + 0.5000000004656613, + 500, + 0.5000000004656613, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23039, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 62.40000000037253, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 137.28000000026077, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 237.12000000011176, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 336.96000000089407, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 436.80000000074506, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 536.640000000596, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 636.480000000447, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23040": { + "Name": "Make Farewells More Beautiful", + "Desc": "Another farewell ceremony was underway.\\nA young girl, stepping on broken moonlight, wove a garland of parting by the riverbank.\\n\\nAncient laments crystallized in the cold air, while the quiet river flowed into a distant land of blossoms.\\nBlood-stained scrolls, rusted long swords, handkerchiefs embroidered with poetry... She accepted their remains, along with the tales of their lives.\\n\\n\"My eyes are like lenses, forever longing for the starry sky.\"\\n—An epitaph dedicated to the departed scholar.\\n\"For life and for death, the knight grants only a cold glance.\"\\n—The maxim that the nameless warrior upheld all his life.\\n\"Life is nothing but death, aglow with shimmering light.\"\\n—The final verse penned by the eternal-seeking poet with his life.\\n...\\n\\n\"Every flower once bloomed with pride...\"\\nAccompanied by the river's soft lament, she offered the departed poems, garlands, and remembrances—\\n\"If withering is inevitable, at least let our farewell be... a little more beautiful.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "Engrave", + "Desc": "Increases the wearer's Max HP by #1[i]%. When the wearer or their memosprite loses HP during their own turn, the wearer gains \"Death Flower.\" \"Death Flower\" allows the wearer and their memosprite to ignore #2[i]% of the target's DEF when dealing DMG, lasting for #3[i] turn(s).\\nWhen the wearer's memosprite disappears, advances the wearer's action by #4[i]%. This effect can only trigger up to 1 time, and the trigger count resets every time the wearer uses Ultimate.", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 2, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.375, + 0.3500000003259629, + 2, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.45000000041909516, + 0.40000000037252903, + 2, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.5250000001396984, + 0.45000000041909516, + 2, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 2, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23040, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23041": { + "Name": "Life Should Be Cast to Flames", + "Desc": "In that hidden experiment, various illusions constantly surged forward, pulling at his steps.\\n\\nThe seductive whispers beckoned him to give up on that treacherous topic, for what reason was there to gamble his life?\\nThe cold, threatening voice declared that those who walk the edge of life and death will ultimately burn their lives away.\\nThen there were the angry accusations, shouting to cast the blasphemer — the one who had desecrated the gods — into an execution grounds most cruel.\\n\\n\"The performance of life, too, must eventually reach the curtain call.\"\\n\\nHe closed his eyes, grasped the divine flame, and let the pain drown his fading soul.\\nFirst, his resolute gaze. Then, his beating heart. The complete soul... He threw himself willingly into that most pure and intense flame to be used for the smelting—\\n\\nThe voices bubbled and then became silent.\\nIn the darkness, the brilliant truth began to take shape in his hands.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "Smelt", + "Desc": "When the wearer's turn starts, regenerates #5[i] Energy. If the enemy target has a Weakness implanted by the wearer, increases the wearer's DMG dealt to it by #3[i]%.\\nWhen an enemy target gets attacked by the wearer, the wearer decreases the target's DEF by #2[i]%, lasting for #4[i] turn(s). The same types of effects cannot stack.", + "Level": { + "1": { + "ParamList": [ + 0, + 0.12000000011175871, + 0.6000000005587935, + 2, + 10 + ] + }, + "2": { + "ParamList": [ + 0, + 0.1500000001396984, + 0.7000000006519258, + 2, + 10 + ] + }, + "3": { + "ParamList": [ + 0, + 0.18000000016763806, + 0.8000000007450581, + 2, + 10 + ] + }, + "4": { + "ParamList": [ + 0, + 0.21000000019557774, + 0.9000000008381903, + 2, + 10 + ] + }, + "5": { + "ParamList": [ + 0, + 0.24000000022351742, + 1, + 2, + 10 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23041, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23042": { + "Name": "Long May Rainbows Adorn the Sky", + "Desc": "\"Emotions are like clouds, and we are the sky that carries them. If the sky is overcast, then our emotions will fluctuate all over.\"\\nThe physician listens with care to the visitor's sorrows, offering words of gentle solace.\\n\"Please close your eyes and breathe slowly... Imagine yourself in a warm and soft place...\"\\n\\nAs if infused with magic, a seven-colored rainbow radiance spills from beneath the wings of the winged beast.\\n\"A breeze would drift across the plains, carrying the fragrance of wildflowers. Moist clouds would pass by, laden with sunlight...\"\\nThe visitor gradually sinks into a peaceful dream, responding only with the quiet rhythm of steady breaths.\\n\\nAfter seeing the last patient, the physician gently closes the door of the ward.\\n\\nIn the distance, the boundless evernight still surges, with many ruins standing like the scars of the earth.\\n\\n\"In the next life, may dawn shine upon all...\"\\nBefore departing, she makes a wish to the sky —\\n\"May the rainbow-colored light remains in the sky forever.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "Tolerant", + "Desc": "Increases the wearer's SPD by #1[i]%. When the wearer uses Basic ATK, Skill, or Ultimate, consumes all allies' HP equal to #2[f1]% of their current HP and additionally deals 1 instance of Additional DMG of the wearer's memosprite Type equal to #6[f1]% of the total consumed HP to the attacked target after the next attack launched by the wearer's memosprite. The total HP consumed is then reset. When the wearer's memosprite uses Memosprite Skill, increases the DMG taken by all enemies by #4[f1]% for #5[i] turn(s). The same types of effects cannot stack.", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.010000000009313226, + 0, + 0.18000000016763806, + 2, + 2.5000000004656613 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.012500000186264515, + 0, + 0.2249999998603016, + 2, + 3.1249999997671694 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.014999999664723873, + 0, + 0.2700000002514571, + 2, + 3.750000000698492 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.017499999841675162, + 0, + 0.31499999994412065, + 2, + 4.375 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.02000000001862645, + 0, + 0.3600000003352761, + 2, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23042, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23043": { + "Name": "Lies Dance on the Breeze", + "Desc": "The cat-eared girl stretches her limbs atop the rooftop, slinking into the night.\\nIn the treasure vault that had slumbered for a thousand years, she glides effortlessly, gathering precious treasures into her embrace before vanishing without a sound.\\n\"Foolish fate could never catch me!\"\\n\\nThe wind through the ruins carries the scent of the wild, rustling her hood.\\nResting her head against the cold stone, she swallows a bite of rough, dry rations, idly tossing a gold coin between her fingers.\\n\\nA faint sound from afar reaches her ears. In that holy city bathed in dawn's light, the bustling crowds still revel in warmth and celebration.\\n\"How much longer... a year, or ten thousand?\"\\n\\nShe stretches with a lazy yawn, casting her restless thoughts aside.\\n\"Hah, Cifera always has the last laugh!\"\\n\\nA golden streak of lightning cuts across the sky, and her proclamation lingers in the wind—\\nJust as it had a thousand years ago.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "Deceit", + "Desc": "Increases the wearer's SPD by #1[i]%. After the wearer uses an attack, there is a #2[i]% base chance to inflict the \"Bamboozle\" state on every enemy target. While under the \"Bamboozle\" state, enemy target's DEF decreases by #3[i]% for #4[i] turn(s). If the wearer's SPD is higher than or equal to #7[i], there is a #5[i]% base chance to inflict the \"Theft\" state on every enemy target. While under the \"Theft\" state, enemy target's DEF decreases by #6[i]% for #4[i] turn(s). When \"Bamboozle\" or \"Theft\" is inflicted repeatedly, only the latest effect inflicted can be active.", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 1.2000000001862645, + 0.1600000001490116, + 2, + 1.2000000001862645, + 0.0800000000745058, + 170 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 1.2000000001862645, + 0.18000000016763806, + 2, + 1.2000000001862645, + 0.09000000008381903, + 170 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1.2000000001862645, + 0.20000000018626451, + 2, + 1.2000000001862645, + 0.10000000009313226, + 170 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 1.2000000001862645, + 0.22000000020489097, + 2, + 1.2000000001862645, + 0.11000000010244548, + 170 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 1.2000000001862645, + 0.24000000022351742, + 2, + 1.2000000001862645, + 0.12000000011175871, + 170 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23043, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23044": { + "Name": "Thus Burns the Dawn", + "Desc": "Once again, at the journey's end, the man's silhouette was swallowed by the sweltering golden sun.\\n\\n\"So... that golden blood, the last hope of deliverance, was really...\"\\n\\nHis tears never had the chance to fall — they vanished into steam.\\n\"Snowy, see you tomorrow!\"\\n\"Deliverer, remember to stay alive till the final act!\"\\n\"Go be the dawn of Amphoreus...\"\\n\\n...\\nThe people's wishes echoed in the void. The Nameless Hero crumbled, his fierce and tragic death laid bare.\\n\\n\"If rage can't burn this twisted fate to ashes...\"\\nHe climbed toward the peak, over and over, only to fall and be shattered, again and again—\\n\\n\"Then let me burn with it!\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "Dispossession", + "Desc": "The wearer's base SPD increases by #1[i]. When the wearer deals DMG, ignores #2[i]% of the target's DEF. After the wearer uses Ultimate, obtains \"Blazing Sun,\" which is removed at the start of their turn. While \"Blazing Sun\" is in possession, increases the wearer's DMG dealt by #3[i]%.", + "Level": { + "1": { + "ParamList": [ + 12, + 0.18000000016763806, + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 14, + 0.2249999998603016, + 0.7800000007264316 + ] + }, + "3": { + "ParamList": [ + 16, + 0.2700000002514571, + 0.9600000008940697 + ] + }, + "4": { + "ParamList": [ + 18, + 0.31499999994412065, + 1.1400000001303852 + ] + }, + "5": { + "ParamList": [ + 20, + 0.3600000003352761, + 1.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23044, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.200000000186265, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 68.64000000059605, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 118.56000000052154, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168.48000000044703, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 218.40000000037253, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 268.320000000298, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 318.2400000002235, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23045": { + "Name": "A Thankless Coronation", + "Desc": "The girl's ears rang in the fantasia with the words conversed on that day.\\n\\n\"This sword wasn't hard to pull out at all, Merlin.\"\\n\"Indeed. Becoming the king everyone wishes for won't be hard for you at all, given that I'm guiding you. However, Altria... The hard part is that you can't always meet everyone's expectations.\"\\n\"Then they can choose a more fitting king by that time. I won't protest.\"\\n\"But what if such a person will never exist?\"\\n\"...Then I'll do my best to meet everyone's expectations.\"\\n\\nNow, the girl had long since become aware of how profound that tragedy would be. Would she have chosen to give up if she were to return to that moment where everything began?\\n\\nThe king does not speak and simply grasps the sword tightly.\\nThe stone again gives out a thundering roar as the sword is pulled out.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "King of Knights", + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. When using their Ultimate, increases the wearer's ATK by #6[i]%, and if the wearer's Max Energy is greater than or equal to #3[i], regenerates a fixed amount of Energy equal to #5[i]% of the wearer's Max Energy and increases their ATK by #2[i]% for #4[i] turns.", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.40000000037252903, + 300, + 2, + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "2": { + "ParamList": [ + 0.45000000041909516, + 0.5000000004656613, + 300, + 2, + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.5400000005029142, + 0.6000000005587935, + 300, + 2, + 0.10000000009313226, + 0.6000000005587935 + ] + }, + "4": { + "ParamList": [ + 0.6300000005867332, + 0.7000000006519258, + 300, + 2, + 0.10000000009313226, + 0.7000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.7200000006705523, + 0.8000000007450581, + 300, + 2, + 0.10000000009313226, + 0.8000000007450581 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23045, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23046": { + "Name": "The Hell Where Ideals Burn", + "Desc": "The flames of karma ignite the plains. The ideals of unknowns turn to ashes, as the ideals of others burn passionately.\\n\\nThe Guardian traverses between bullets and arrowheads.\\nHe can save no one here. He can save everyone here.\\n\\nKill one person to save one person. Kill ten thousand to save ten thousand. The fate of trampling over our peers is one part of humanity's continued existence.\\n\\nThe Guardian had already grown used to all this, and his steps never hesitated.\\nThe determination that covers his legs is like wind. The determination that covers his arms is like fire.\\n\\nHe is still seeking a miracle that can bring forth salvation.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "Hrunting", + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. When entering battle and if the allies' Skill Points max limit is #2[i] or higher, increases the wearer's ATK by #3[i]%. After the wearer uses a Skill, increases their ATK by #4[i]%, stacking up to #5[i] time(s).", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 6, + 0.40000000037252903, + 0.10000000009313226, + 4 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 6, + 0.5000000004656613, + 0.12499999976716936, + 4 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 6, + 0.6000000005587935, + 0.1500000001396984, + 4 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 6, + 0.7000000006519258, + 0.17499999981373549, + 4 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 6, + 0.8000000007450581, + 0.20000000018626451, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23046, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "24000": { + "Name": "On the Fall of an Aeon", + "Desc": "It began with a flash of light.\\nOne by one, THEY fell as the threat of expiration loomed over THEM.\\nTHEY had to stop self-replicating and rushed to embrace each other,\\ntrying to offer the right to reproduce in exchange for a possibility of survival.\\nTHEY held hands in a show of unprecedented unity.\\n...But the Paths met an abrupt end,\\nand THEY were headed to a true death.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "Moth to Flames", + "Desc": "When the wearer attacks, increases their ATK by #1[i]% in this battle. This effect can stack up to #2[i] time(s). After the wearer breaks an enemy's Weakness, increases DMG dealt by #3[i]%, lasting for #4[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 4, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 4, + 0.1500000001396984, + 2 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 4, + 0.18000000016763806, + 2 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 4, + 0.21000000019557774, + 2 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 4, + 0.24000000022351742, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24001": { + "Name": "Cruising in the Stellar Sea", + "Desc": "Coursing 'tween the sea of stars,\\nTHEY cruise with the speed of a rainbow's chromatic flash.\\nA journey of hunting undying abominations,\\ncollecting cures and miracles,\\nand seeking deliverance.\\nAkin to a vow unbroken, THEIR voyage will be,\\nad infinitum.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "Chase", + "Desc": "Increases the wearer's CRIT Rate by #1[i]%, and increases their CRIT Rate against enemies with HP percentage #2[i]% or less by an extra #3[i]%. When the wearer defeats an enemy, their ATK is increased by #4[i]% for #5[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.5000000004656613, + 0.0800000000745058, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 0.10000000009313226, + 0.25000000023283064, + 2 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 0.12000000011175871, + 0.3000000002793968, + 2 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 0.14000000013038516, + 0.3500000003259629, + 2 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.1600000001490116, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "24002": { + "Name": "Texture of Memories", + "Desc": "The universe was like a badland filled with rubbish.\\nThere were the occasional treasure that lies undiscovered.\\nTHEY looked through the cracks of the past, choosing seeds of memory.\\n...If a new life was to be born, its seed has to be dead.\\nPrecious stones of pink, blue, and white were brought forth,\\ntwinkling gently in THEIR seed plot,\\neven though the universe held onto its enigmatic silence.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "Treasure", + "Desc": "Increases the wearer's Effect RES by #1[i]%. If the wearer is attacked and has no Shield, they gain a Shield equal to #2[i]% of their Max HP for #3[i] turn(s). This effect can only be triggered once every #4[i] turn(s). If the wearer has a Shield when attacked, the DMG they receive decreases by #5[i]%.", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.1600000001490116, + 2, + 3, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 2, + 3, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742, + 2, + 3, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703, + 2, + 3, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232, + 2, + 3, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "24003": { + "Name": "Solitary Healing", + "Desc": "Things molded by the hands of secrecy are shapeless and incorporeal.\\nIn the totality of emptiness, there yet exists a sudden dreaming.\\nThose that court destruction will reap ruinous fruit, while those that clamor to live will survive.\\nThat which is extinguished may yet spark, and that which has dried may yet be filled anew.\\nIn compassion for the salvation of chaos, the elixir nurtures the shadows.\\nWith back faced to the darkness between the stars, the encapsulation of this vessel can only be done in vain.\\n\\n\"Paradoxical these knowings are, in them shine the fullness of our pride.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "Chaos Elixir", + "Desc": "Increases the wearer's Break Effect by #1[i]%. When the wearer uses their Ultimate, increases DoT dealt by the wearer by #2[i]%, lasting for #3[i] turn(s). When a target enemy suffering from DoT imposed by the wearer is defeated, regenerates #4[f1] Energy for the wearer.", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742, + 2, + 4 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3000000002793968, + 2, + 4.500000000465661 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761, + 2, + 5 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555, + 2, + 5.500000000465661 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484, + 2, + 6 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24004": { + "Name": "Eternal Calculus", + "Desc": "Eternally suspended in the void,\\nStreams of shimmering data flood into THEIR mind.\\nTurning all things past and future into symbols,\\nTHEY deduce the end from the beginning.\\nKnowledge, answers, truths...\\nIn the mist of information, a brilliant light arises,\\nAnd everything becomes clear to THEM.", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "Boundless Thought", + "Desc": "Increases the wearer's ATK by #1[i]%. After using an attack, for each enemy target hit, additionally increases ATK by #2[i]%. This effect can stack up to 5 times and last until the next attack. If there are #3[i] or more enemy targets hit, this unit's SPD increases by #4[i]%, lasting for #5[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529, + 3, + 0.0800000000745058, + 1 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.05000000004656613, + 3, + 0.10000000009313226, + 1 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.060000000055879354, + 3, + 0.12000000011175871, + 1 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.07000000006519258, + 3, + 0.14000000013038516, + 1 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 3, + 0.1600000001490116, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24005": { + "Name": "Memory's Curtain Never Falls", + "Desc": "Be it bustling, desolate, fleeting, or enduring... every planet and every instant is brimming with countless events.\\nThat condensed history melts at a single touch, flowing as tears from the world's gaze—\\n\\nSome say: How heavy those tears must be, the amassed years capable of fading eternity.\\nSome say: How wondrous the stories they tell, sorrow so clear, joy so serene, unmarred by even a hint of falsehood.\\n\\nThe Cosmos flows in silent stillness, and THEY speak not, only watching—\\nWatching and waiting for them to become \"memories.\"", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "Reception", + "Desc": "Increases the wearer's SPD by #1[f1]%. After the wearer uses Skill, increases the DMG dealt by all allies by #2[i]%, lasting for #3[i] turn(s).", + "Level": { + "1": { + "ParamList": [ + 0.060000000055879354, + 0.0800000000745058, + 3 + ] + }, + "2": { + "ParamList": [ + 0.07499999972060323, + 0.10000000009313226, + 3 + ] + }, + "3": { + "ParamList": [ + 0.09000000008381903, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.1049999997485429, + 0.14000000013038516, + 3 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.1600000001490116, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + } +} \ No newline at end of file diff --git a/data/lightcones.jp.json b/data/lightcones.jp.json new file mode 100644 index 0000000..a4a1211 --- /dev/null +++ b/data/lightcones.jp.json @@ -0,0 +1,35106 @@ +{ + "20000": { + "Name": "{RUBY_B#や}矢{RUBY_E#}じり", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「狩人の目が最も澄んでいるのは、矢が弦にかかり、鹿を仕留めるために弦を引く瞬間」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#きき}危機{RUBY_E#}", + "Desc": "戦闘開始時、装備キャラの会心率+#1[i]%#2[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20001": { + "Name": "{RUBY_B#ぶつじょう}物穣{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「生命とは、ある秩序のしきい値を超えた存在。その誕生は、静寂な宇宙に対する終極の答えであり、古き混沌の時代の終わりを告げる出来事」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#はんじょう}繁盛{RUBY_E#}", + "Desc": "装備キャラが戦闘スキル、または必殺技を発動した時、治癒量+#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20002": { + "Name": "{RUBY_B#てんけい}天傾{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「万物の消失はその誕生と同じように自然。時間の流れのもと、一切の形あるものが塵となる」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#はめつ}破滅{RUBY_E#}", + "Desc": "装備キャラの通常攻撃と戦闘スキルによるダメージ+#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20003": { + "Name": "{RUBY_B#こはく}琥珀{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「時間に縛られないものだけが、時間を超えて存在し続けられる」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "{RUBY_B#ていたい}停滞{RUBY_E#}", + "Desc": "装備キャラの防御力+#1[i]%。装備キャラの残りHPが#2[i]%未満の場合、さらに防御力+#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.5000000004656613, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "20004": { + "Name": "{RUBY_B#ゆうすい}幽邃{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「彼はその空洞を見つめていた。それは、すべての終焉に高く昇る漆黒の太陽のようで、すべての疑問に答える口のよう——その口は言う。███ █ ███ ██。答えは、人間の言語で表すことはできないが、誰もがその意味を理解した」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#ちんりん}沈淪{RUBY_E#}", + "Desc": "戦闘開始時、装備キャラの効果命中+#1[i]%#2[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 3 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20005": { + "Name": "{RUBY_B#せいしょう}斉頌{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「指を合わせて拳と為し、志を連ねて城を成す。私は自身を捧げ、より高尚なものを得る——それは私たちである」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#きょうりょく}協力{RUBY_E#}", + "Desc": "戦闘に入った後、味方全体の攻撃力+#1[i]%。同系統のスキルは重ね掛け不可。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20006": { + "Name": "アーカイブ", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「人類はもうすぐ滅びる。しかし図書館は永遠に存在し続ける。青いランプがただ輝き、何も動かず、貴重な蔵書がそこにあり続け、静かで、いつまでも読まれず、そして壊れることもない」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#はくしき}博識{RUBY_E#}", + "Desc": "装備キャラの必殺技によるダメージ+#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20007": { + "Name": "{RUBY_B#りげん}離弦{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「戦争は始まった、矢に次の標的を探してあげねば」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#めいかく}鳴角{RUBY_E#}", + "Desc": "装備キャラが敵を倒した後、攻撃力+#1[i]%#2[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 3 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 3 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20008": { + "Name": "{RUBY_B#かか}嘉果{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「喉が渇く時は、全てが甘くなる」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#かんび}甘美{RUBY_E#}", + "Desc": "戦闘開始時、味方全体のEPを#1[i]回復する。", + "Level": { + "1": { + "ParamList": [ + 6 + ] + }, + "2": { + "ParamList": [ + 7.500000000465661 + ] + }, + "3": { + "ParamList": [ + 9 + ] + }, + "4": { + "ParamList": [ + 10.500000000465661 + ] + }, + "5": { + "ParamList": [ + 12 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20009": { + "Name": "{RUBY_B#らくかい}楽壊{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「あるものを壊す力を持った存在こそ、そのものを真に掌握した支配者」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#ちゅうとう}誅討{RUBY_E#}", + "Desc": "残りHPが#1[i]%を超える敵に対する、装備キャラの与ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.5000000004656613, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20010": { + "Name": "{RUBY_B#ぼうえい}防衛{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「城壁の後ろにいる頑強な民たちは、防御も勝利に至る術の1つであることを証明した」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "{RUBY_B#ふっこう}復興{RUBY_E#}", + "Desc": "装備キャラが必殺技を発動した時、HPを最大HP#1[i]%分回復する。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20011": { + "Name": "{RUBY_B#えんかん}淵環{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「逃亡者は過去の幻影から逃れようとする、この苦しさは誰にも分からないものである、と彼は思う。だが面を上げると、未来の自分が怖ろしい目を開いていた」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#きゅうつい}窮追{RUBY_E#}", + "Desc": "減速状態の敵に対する、装備キャラの与ダメージ+#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20012": { + "Name": "{RUBY_B#りんけい}輪契{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「これほど調和の取れた音はない、人それぞれがいるべき位置にいて、巨大な機械が音に応じて運行する」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#そっけつ}速決{RUBY_E#}", + "Desc": "装備キャラが攻撃を行った後、または攻撃を受けた後、さらにEPを#1[i]回復する、この効果は毎ターンに1回まで発動できる。", + "Level": { + "1": { + "ParamList": [ + 4 + ] + }, + "2": { + "ParamList": [ + 5 + ] + }, + "3": { + "ParamList": [ + 6 + ] + }, + "4": { + "ParamList": [ + 7 + ] + }, + "5": { + "ParamList": [ + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20013": { + "Name": "{RUBY_B#れいけん}霊鍵{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「知識は永遠にあの扉の後ろにある、しかし扉の鍵は賜物ではない。それを最も欲した者が、それを手に入れられる」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#ごどう}悟道{RUBY_E#}", + "Desc": "装備キャラが戦闘スキルを発動した後、さらにEPを#1[i]回復する、この効果は毎ターンに1回まで発動できる。", + "Level": { + "1": { + "ParamList": [ + 8 + ] + }, + "2": { + "ParamList": [ + 9 + ] + }, + "3": { + "ParamList": [ + 10 + ] + }, + "4": { + "ParamList": [ + 11 + ] + }, + "5": { + "ParamList": [ + 12 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20014": { + "Name": "{RUBY_B#そうこう}相抗{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「自由のために戦った人は死なない、その物語は永遠に歌い継がれる」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#どうめい}同盟{RUBY_E#}", + "Desc": "装備キャラが敵を倒した後、速度+#1[i]%#2[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "3": { + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "4": { + "ParamList": [ + 0.1600000001490116, + 2 + ] + }, + "5": { + "ParamList": [ + 0.18000000016763806, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20015": { + "Name": "{RUBY_B#はんしょく}蕃殖{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「生命が意味を失ったとしても、生命を与え続けよう」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#ほうじょう}豊穣{RUBY_E#}の{RUBY_B#たみ}民{RUBY_E#}", + "Desc": "装備キャラが通常攻撃を行った後、次の行動順が#1[i]%早まる。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20016": { + "Name": "{RUBY_B#くぼつ}倶歿{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「どうすれば星の過去がより完璧になる?今、すぐ、その星を砕け」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "レギオン", + "Desc": "装備キャラの残りHPが#1[i]%未満の場合、会心率+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.8000000007450581, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.8000000007450581, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.8000000007450581, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20017": { + "Name": "{RUBY_B#しんてんち}新天地{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「助けが得られない日々は終わりです。これからはカンパニーが皆さんと助け合って行きます」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "カンパニー", + "Desc": "装備キャラが敵を弱点撃破した時、HPを最大HP#1[i]%分回復する。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20018": { + "Name": "{RUBY_B#とくえい}匿影{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「虚無は私たちを見つけるかもしれないけど、見つけられない可能性の方が高い」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#きかん}機関{RUBY_E#}", + "Desc": "戦闘スキルを発動した後、装備キャラの次の通常攻撃が、敵に自身の攻撃力#1[i]%分の付加ダメージを与える。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 0.7500000006984919 + ] + }, + "3": { + "ParamList": [ + 0.9000000008381903 + ] + }, + "4": { + "ParamList": [ + 1.0500000000465661 + ] + }, + "5": { + "ParamList": [ + 1.2000000001862645 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20019": { + "Name": "{RUBY_B#どうちょう}同調{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「不協和音を排除することほど、愉快なことがあるのだろうか?」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "ファミリー", + "Desc": "戦闘に入る時、味方全体の速度+#1[i]#2[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 12, + 1 + ] + }, + "2": { + "ParamList": [ + 14, + 1 + ] + }, + "3": { + "ParamList": [ + 16, + 1 + ] + }, + "4": { + "ParamList": [ + 18, + 1 + ] + }, + "5": { + "ParamList": [ + 20, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20020": { + "Name": "{RUBY_B#けんしき}見識{RUBY_E#}", + "Desc": "凝縮された時間から得られる希薄な力。一瞬にも満たない刹那が、壮絶な運命を織りなす。\\n\\n「知恵を持つ者は、人であることを放棄しないと、知恵に見捨てられる」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#てんさい}天才{RUBY_E#}", + "Desc": "装備キャラが必殺技を発動した時、攻撃力+#1[i]%#2[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 2 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20021": { + "Name": "{RUBY_B#も}燃{RUBY_E#}ゆる{RUBY_B#かげ}影{RUBY_E#}", + "Desc": "時間の中で凝縮された希薄な力。取るに足りないような刹那が集まり、壮絶な運命を紡ぎ出す。\\n\\n「人は常に都合の悪い過去を消し去ろうとする。だが、それこそが記憶の本質なのだ」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Memory", + "Refinements": { + "Name": "{RUBY_B#びか}美化{RUBY_E#}", + "Desc": "装備キャラが戦闘中に初めて記憶の精霊を召喚する時、SPを#1[i]回復し、自身のEPを#2[i]回復する。", + "Level": { + "1": { + "ParamList": [ + 1, + 12 + ] + }, + "2": { + "ParamList": [ + 1, + 14 + ] + }, + "3": { + "ParamList": [ + 1, + 16 + ] + }, + "4": { + "ParamList": [ + 1, + 18 + ] + }, + "5": { + "ParamList": [ + 1, + 20 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20022": { + "Name": "{RUBY_B#たど}辿{RUBY_E#}る{RUBY_B#きおく}記憶{RUBY_E#}", + "Desc": "時間の中で凝縮された希薄な力。取るに足りないような刹那が集まり、壮絶な運命を紡ぎ出す。\\n\\n「老いた魂は短い夢の中で、少年時代の鮮やかな海を取り戻す」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Memory", + "Refinements": { + "Name": "{RUBY_B#にゅうみん}入眠{RUBY_E#}", + "Desc": "記憶の精霊のターンが回ってきた時、装備キャラおよびその記憶の精霊それぞれに「追懐」を1層付与する。「追懐」1層につき与ダメージ+#1[i]%、最大で#2[i]層累積できる。記憶の精霊が消える時、装備キャラおよびその記憶の精霊の「追懐」は解除される。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 4 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 4 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 4 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 4 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 28.800000000745058, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 63.360000000335276, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 109.44000000040978, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 155.5200000004843, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 201.6000000005588, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 247.6800000006333, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 293.7600000007078, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21000": { + "Name": "{RUBY_B#しゅじゅつご}手術後{RUBY_E#}の{RUBY_B#かいわ}会話{RUBY_E#}", + "Desc": "「起きたのね……ありがとう」\\n「あ……あなたが私を助けてくれたのね……ナターシャ。感謝するのは私のほうよ」\\n「いいえ、君に感謝しているの……手術を乗り越えてくれてありがとう」\\n\\n医者と患者は共に疲れたような笑顔を浮かべる。それ以上は何も言わなかった。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#そうごかいふく}相互回復{RUBY_E#}", + "Desc": "装備キャラのEP回復効率+#1[i]%。必殺技を発動した時、治癒量+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21001": { + "Name": "おやすみなさいと{RUBY_B#ねがお}寝顔{RUBY_E#}", + "Desc": "静謐な光が微かに舞う埃を照らす。\\n穏やかな寝息の中には、少女の甘い夢がある。\\n彼女の背後に、何の気配もなく人影が現れた。\\n「ふふふ、やっぱり眼鏡を取った方が可愛い」\\nギタリストは彼女の寝顔や寝言をつぶさに観察し\\n「おやすみ、世話焼きな天才少女ちゃん」と言った。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#ほんそうしゃ}奔走者{RUBY_E#}", + "Desc": "敵に付与されたデバフが1つにつき、その敵に対する装備キャラの与ダメージ+#1[i]%、最大で#2[i]層累積できる。この効果は持続ダメージにも有効。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21002": { + "Name": "{RUBY_B#よせい}余生{RUBY_E#}の{RUBY_B#しょにち}初日{RUBY_E#}", + "Desc": "「今日パムが新しい服に着替えたんだよ、嬉しい~スキ~」\\n「今日は誕生日なんだ、今年のウチも可愛い」\\n「今日、ウチにもついに後輩ができたんだ!でしょ、{NICKNAME}?」\\n\\n何度も何度も、何も考えずにシャッターを押すのは、\\nその瞬間の楽しさを掴むため?\\nそれとも、その瞬間の自分を掴むため?", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "この{RUBY_B#ひととき}一時{RUBY_E#}を{RUBY_B#えいえん}永遠{RUBY_E#}に", + "Desc": "装備キャラの防御力+#1[i]%。戦闘に入った後、味方全体の全属性耐性+#2[i]%。同系統のスキルは重ね掛け不可。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.0800000000745058 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.10000000009313226 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097, + 0.11000000010244548 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21003": { + "Name": "{RUBY_B#ちんもく}沈黙{RUBY_E#}のみ", + "Desc": "「駅に着いたのに降りないの?」\\n頭上から微かな笑い声が聞こえた。彼は目を動かすだけで、顔は上げなかった。\\n\\n「念のために言っておくけど、三月ちゃんはいつもあなたを無表情だと言うけど、私はそうは思わない」\\n「列車のアーカイブに新規入力の痕跡があった……でも保存結果はなかった」\\n「つまり……どの項目に困ってるの?」\\n\\n彼はペンを強く握り、イメージだけで書いたノートの悲惨な状況を見た。\\n\\n「なるほど、あなた自身に関することね……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#きろく}記録{RUBY_E#}", + "Desc": "装備キャラの攻撃力+#1[i]%。フィールド上の敵の数が2体以下の場合、装備キャラの会心率+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21004": { + "Name": "{RUBY_B#きおく}記憶{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}の{RUBY_B#すがた}姿{RUBY_E#}", + "Desc": "官邸の机の上に古い写真が一枚、隅っこに置かれている。\\n時折、彼女の目線がそこに向いても、いつも無意識に視線をずらしてしまう。\\n記憶の中の姿は遠くへ消えてしまったが、今日の夢はまだ心を巡る。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#ふる}古{RUBY_E#}い{RUBY_B#しゃしん}写真{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%。装備キャラが攻撃を行った後、さらにEPを#2[i]回復する、この効果は毎ターンに1回まで発動できる。", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 4 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 5 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 6 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 7 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21005": { + "Name": "モグラ{RUBY_B#とう}党{RUBY_E#}へようこそ", + "Desc": "「モグラ党、モグラ党」\\n「いざ出発」\\n「かしこいモグラは怖くない」\\n「モグラ党、モグラ党」\\n「モグラ党は冒険する!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#きみょう}奇妙{RUBY_E#}な{RUBY_B#ぼうけん}冒険{RUBY_E#}", + "Desc": "装備キャラが通常攻撃、戦闘スキルまたは必殺技で敵に攻撃を行った後、それぞれ「わんぱく値」を1層まで獲得できる。1層につき、装備キャラの攻撃力+#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21006": { + "Name": "「{RUBY_B#わたし}私{RUBY_E#}」の{RUBY_B#たんじょう}誕生{RUBY_E#}", + "Desc": "初めは、前の絵の姿勢と全く同じだった。\\n自分とそっくりな顔を見つめながら、それはまだ自分ではないと、彼女は思った。\\n\\n「この世に全く同じ絵があるものか」\\n\\n彼女はそれの関節を弄り、目を開く方法と、指を柔らかくする方法を教えた。\\nそして満足に手を止めた。\\n\\n「昨日と全く違う、これこそが今日の私」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#がぞうしょうじょ}画像少女{RUBY_E#}", + "Desc": "装備キャラの追加攻撃ダメージ+#1[i]%。敵の残りHPが#2[i]%以下の場合、さらに追加攻撃ダメージ+#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.5000000004656613, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.5000000004656613, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.5000000004656613, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21007": { + "Name": "{RUBY_B#おな}同{RUBY_E#}じ{RUBY_B#きも}気持{RUBY_E#}ち", + "Desc": "医者が女の子を見つけた時、彼女は傷つきながらも停止した機械を抱きしめていた、そのポケットには漁ってきた色んなパーツが詰められていた。\\n彼女は急いで女の子を診療所に連れ帰り、傷口を処理した。\\n汗粒が頬を流れ落ちる。女の子は声を上げず、ただ手を動かす。\\n医者は分かっている、今女の子の目にはあの機械しかない、自分が治療を待つ患者を見る時のように。\\nだから彼女は慰めることもなければ、今後注意するよう言い聞かせることもしなかった。ただ女の子の隣で静かに付き添ってあげた。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "ケアとメンテ", + "Desc": "装備キャラの治癒量+#1[i]%。装備キャラが戦闘スキルを発動した時、味方全体のEPを#2[f1]回復する。", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 2.5000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 3.5000000004656613 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21008": { + "Name": "{RUBY_B#えもの}獲物{RUBY_E#}の{RUBY_B#しせん}視線{RUBY_E#}", + "Desc": "事実上、獲物の大多数は自分の置かれている状況に気づけない。\\n目の前の獲物もそうだ。\\n照準器はゆっくりと動く、男は相変わらず束になった金をぶちまけている。\\n「欲深いあの姿を見ろ、あの金で商売をいくつやれるか…消そうとするヤツがいる訳だ」\\n\\n彼の心を読んだかのように、男は顔をこちらに向けた。\\n「待ってました、ここにある金なら、僕の条件を聞いてから事を決める気になるかな?」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#じしん}自信{RUBY_E#}", + "Desc": "装備キャラの効果命中+#1[i]%、持続ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21009": { + "Name": "ランドゥーの{RUBY_B#せんたく}選択{RUBY_E#}", + "Desc": "「いいこと?明日からは行ってはいけません!平民と一緒に居ても良くないことを学ぶだけ!」\\n「でも、みんなが話してたベロブルグのお話、僕、聞いたことない…」\\n\\n彼女はまだ何か言おうとする弟を自分の後ろに庇った。\\n「あなたたちはランドゥーの者よ。特にセーバル、あなたもいずれ選択をしなければいけない」\\n\\n弟は悪くない、彼女はそれを知りながらも、どう言い返すか分からなかった。\\nそして1日中怒りを抱えながら、彼女はひっそりと決意した。\\n「私も大人になって、いつの日か選択をするんだ……」\\n「自分だけの選択を」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "{RUBY_B#こういん}光陰{RUBY_E#}{RUBY_B#や}矢{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}し", + "Desc": "装備キャラが敵の攻撃を受ける確率がアップする、受けるダメージ-#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 2, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 2, + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 2, + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 2, + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 2, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21010": { + "Name": "{RUBY_B#ろんけん}論剣{RUBY_E#}", + "Desc": "少女は納得できないといった顔で、手にした細い剣を振る。\\n自分の剣は、両手でやっと振り回せるものだ。それなのに、この剣は剣と言えるのだろうか?そんな剣で敵を倒せるのだろうか?\\n\\nしかし剣の主は、それを気にしていない、何しろ――\\n敵を殺めるのは剣ではなく、その心であるからだ。\\n重かろうと細かろうと、何の変わりもない。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "それぞれの{RUBY_B#こた}答{RUBY_E#}え", + "Desc": "装備キャラの攻撃が連続で同じ敵に命中するたびに、与ダメージ+#1[i]%、この効果は最大で#2[i]層累積できる。ターゲットが変わると、バフはリセットされる。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 5 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 5 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 5 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 5 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21011": { + "Name": "{RUBY_B#わくせい}惑星{RUBY_E#}との{RUBY_B#であ}出会{RUBY_E#}い", + "Desc": "出立する時、彼女はまだこの旅に対して何も知らなかった。\\nただ、家のつまらない話から逃れ、所々から向けられる悪意や陰謀を避けられるとしか思っていなかった。\\nそして彼女が窓の外を眺めた時、ようやくあの詩の意味を知った。\\n「ある時がすぎたら、私たちは歩くのではなく、飛んでいた」\\n\\n彼女の目に輝く光は、正しく惑星の倒影であった。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#たびだ}旅立{RUBY_E#}ち", + "Desc": "戦闘に入った後、味方が装備キャラと同じ属性のダメージを与えた時、与ダメージ+#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21012": { + "Name": "{RUBY_B#ひみつ}秘密{RUBY_E#}の{RUBY_B#ちか}誓{RUBY_E#}い", + "Desc": "出発する前、少年はいつも肘当てと手袋を細心にチェックする。\\nそれは少年のお気に入りの手袋、ぴっちりで、たくさんの秘密を隠せる。\\nこうすると、誰も少年の手に巻いた包帯と、包帯の下にある傷口を見ることができないから。\\nみんな少年を普通の人と思い、普通に挨拶する。\\n\\nそれで十分だ。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#ぜんしんぜんれい}全身全霊{RUBY_E#}", + "Desc": "装備キャラの与ダメージ+#1[i]%、残りHP割合が装備キャラ以上の敵に対して、さらに与ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21013": { + "Name": "この{RUBY_B#せかい}世界{RUBY_E#}に{RUBY_B#けんそう}喧噪{RUBY_E#}を", + "Desc": "みんなが自分と一緒に声をあげるようと願いながら、彼女は舞台で手を振る。\\n唄であれ、叫びであれ、嘆きであれ、どんな形でも構わない。\\n声をあげて、人に聞かせてこそ、仲間が増える。\\n\\n「心までこの町のように冷めたらダメだよ」\\n\\n——この世界に喧噪を。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#こえ}声{RUBY_E#}の{RUBY_B#ちから}力{RUBY_E#}", + "Desc": "戦闘に入る時、装備キャラはEPを#2[i]回復する。装備キャラの必殺技によるダメージ+#1[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.3200000002980232, + 20 + ] + }, + "2": { + "ParamList": [ + 0.40000000037252903, + 23 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 26 + ] + }, + "4": { + "ParamList": [ + 0.5600000005215406, + 29 + ] + }, + "5": { + "ParamList": [ + 0.6400000005960464, + 32 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21014": { + "Name": "{RUBY_B#いま}今{RUBY_E#}が{RUBY_B#ちょうど}丁度{RUBY_E#}", + "Desc": "賑やかな町。彼は歩き、日の光が後をついて行く。\\n彼は足を止め、紙傘を選び、涼を取る\\n——同時に、その視線も遮った。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#くっせつ}屈折{RUBY_E#}する{RUBY_B#しせん}視線{RUBY_E#}", + "Desc": "装備キャラの効果抵抗+#1[i]%。装備キャラの治癒量が、効果抵抗の#2[i]%分アップする、最大で#3[i]%アップできる。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.33000000030733645, + 0.1500000001396984 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3900000003632158, + 0.21000000019557774 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.4200000003911555, + 0.24000000022351742 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.45000000041909516, + 0.2700000002514571 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21015": { + "Name": "{RUBY_B#けつい}決意{RUBY_E#}は{RUBY_B#あせ}汗{RUBY_E#}のように{RUBY_B#かがや}輝{RUBY_E#}く", + "Desc": "リングは輝く、\\nでも流れ落ちる汗の輝きの方が勝る。\\n\\n彼はその拳で大切な人たちを守ると誓った。\\nそして彼に決意を与えたのも、彼ら\\n——リングに上がっても、降りても、いつでも彼の後ろに立っている人たち。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#ふ}振{RUBY_E#}り{RUBY_B#かえ}返{RUBY_E#}って", + "Desc": "装備キャラの攻撃が敵に命中する時、その敵が「陥落」状態でない場合、#1[i]%の基礎確率で敵を「陥落」状態にする。「陥落」状態の敵は防御力-#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.12000000011175871, + 1 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.13000000012107193, + 1 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 1 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.1500000001396984, + 1 + ] + }, + "5": { + "ParamList": [ + 1, + 0.1600000001490116, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21016": { + "Name": "{RUBY_B#せいかんいちば}星間市場{RUBY_E#}のトレンド", + "Desc": "星の価値が再計算されている……\\n\\n「このプロジェクトは、債権回収のメリットは相互的だ、ということを証明できるのかな?」\\n「だが、伝えるべきメッセージは一つだけ、私たちの存在を宣告することだ」\\n\\n「それに価値があると言うのであれば、カンパニーのために価値を生み出すべき」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "また{RUBY_B#いちじゅん}一巡{RUBY_E#}の{RUBY_B#い}入{RUBY_E#}れ{RUBY_B#か}替{RUBY_E#}え", + "Desc": "装備キャラの防御力+#1[i]%。装備キャラが攻撃を受けた後、#2[i]%の基礎確率で攻撃した敵を燃焼状態にする。燃焼状態の敵はターンが回ってくるたびに、装備キャラの防御力#3[i]%分の持続ダメージを受ける、#4[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1, + 0.40000000037252903, + 2 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1.0500000000465661, + 0.5000000004656613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1.1000000000931323, + 0.6000000005587935, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1.1500000001396984, + 0.7000000006519258, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1.2000000001862645, + 0.8000000007450581, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21017": { + "Name": "フォローして!", + "Desc": "「ハロー!視聴者のみんな、見えてる?」\\n\\nオレンジ色の髪をした少女は興奮した声を出しながら、カメラの方を向いてゆっくりと鎚を振り上げる。\\n「みんな——少女の胸の上でやる岩砕きは見たことある?」\\n\\n「アタシが雲騎軍に入ったのはこんな事をするためじゃないって!」\\n褐髪の少女は目を回し、オレンジ色の髪をした少女はずる賢く笑う。\\n「これも人助けだと思って——お願い!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "いいねしないと{RUBY_B#に}逃{RUBY_E#}がさない!", + "Desc": "装備キャラの通常攻撃と戦闘スキルによるダメージ+#1[i]%、装備キャラのEPが満タンの場合、さらに通常攻撃と戦闘スキルによるダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21018": { + "Name": "ダンス!ダンス!ダンス!", + "Desc": "「なんであたしはクラーラみたいにクルクル回れないの…」\\n彼女はこぶしを握り締め、ふくれっ面をする。まん丸な頬は防寒帽子の暖かさで赤くつやつやとしている。\\n「ねぇスヴァローグ、手伝ってくれる?」\\n謹厳なロボットは声を出さず、ただ手を差し伸べた。\\n\\n「め、目が回る!!うあぁ…早くあたしを降ろせ!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#と}止{RUBY_E#}まらないよぉ!", + "Desc": "装備キャラが必殺技を発動した後、味方全体の行動順が#1[i]%早まる。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21019": { + "Name": "{RUBY_B#あおぞら}青空{RUBY_E#}の{RUBY_B#した}下{RUBY_E#}で", + "Desc": "青空の下、麦浪がたゆたう、\\n少女は丁寧に花の冠を編み、\\n大好きな妹の頭に載せる。\\n\\nその時の彼女たちはまだ同じくらいの背丈で、\\nその時の彼女たちはまだあのように笑っていた。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#だんよう}暖陽{RUBY_E#}に{RUBY_B#ばくろう}麦浪{RUBY_E#}", + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラが敵を倒した後、会心率+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21020": { + "Name": "{RUBY_B#てんさい}天才{RUBY_E#}たちの{RUBY_B#きゅうそく}休息{RUBY_E#}", + "Desc": "彼女は碧色の団子を指した。\\n「実験終了、休憩の時間ですよ。焼きたてのスイーツを見逃すわけにはいきませんから」\\n\\n彼女は人形の少女が眉をひそめたのを見た。\\n「その身体だと見ていることしかできませんが、今度一箱持って行ってあげましょう」\\n\\n彼女は機械貴族が難色を示し、コップを持ち上げるのを見た。\\n「安心してください、オイルですよ」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "それぞれの", + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラが敵を倒した後、会心ダメージ+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.24000000022351742, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.4200000003911555, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.48000000044703484, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21021": { + "Name": "{RUBY_B#とうかこうかん}等価交換{RUBY_E#}", + "Desc": "龍女の雷勁按摩を堪能した後、\\n狐族の少女は手を伸ばし、彼女の頬をつねった。\\nちっちゃな龍女の口をとがらせた顔を見て、彼女は艶やかに微笑んだ。\\n\\n「等価交換ですよ」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#ここち}心地{RUBY_E#}よい", + "Desc": "装備キャラのターンが回って来た時、自身以外のEPが#1[i]%未満の味方からランダムに1人選択し、EPを#2[i]回復させる。", + "Level": { + "1": { + "ParamList": [ + 0.5000000004656613, + 8 + ] + }, + "2": { + "ParamList": [ + 0.5000000004656613, + 10 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 12 + ] + }, + "4": { + "ParamList": [ + 0.5000000004656613, + 14 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 16 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21022": { + "Name": "フェルマータ", + "Desc": "レコードは回り続け、かすれた叫び声は熱気に浸潤される。\\n彼女は無防備で、魅力的な旋律に酔い痴れているように見える。\\n\\n懇願と期待から引き入れ、\\nそして激情的で真摯な陳情、\\n一つ、また一つの最高潮を超え…\\n\\nそしてレコードが回転を止め、叫び声が途切れる。\\n「任務完了」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#きゅうふ}休符{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%、感電状態または風化状態の敵に対する与ダメージ+#2[i]%、この効果は持続ダメージにも有効。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21023": { + "Name": "{RUBY_B#われ}我{RUBY_E#}ら{RUBY_B#ちえん}地炎{RUBY_E#}", + "Desc": "彼女は慣れた、人々が故郷を失うのを、\\n人々が命を失うのを、\\nでも一人の時は、泣いても無駄。\\n\\n「この赤いスカーフを着けて、互いの痛みを分かち合おう」\\n「俺たちは家族…俺たちは、地炎だ」\\n\\n大きな掌が彼女の頭をなでる、彼女はようやく、我慢できずに涙をこぼした。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "{RUBY_B#そでしぐれ}袖時雨{RUBY_E#}", + "Desc": "戦闘開始時、味方全体の受けるダメージ-#2[i]%#3[i]ターン継続。味方全体のHPを、それぞれが失ったHP#1[i]%分回復する。", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.0800000000745058, + 5 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.10000000009313226, + 5 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871, + 5 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.14000000013038516, + 5 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.1600000001490116, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21023, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21024": { + "Name": "{RUBY_B#しゅんすい}春水{RUBY_E#}に{RUBY_B#しょせい}初生{RUBY_E#}する", + "Desc": "剣を修練する少年は休憩を取る。\\n日の光が彼の首元を暖め、彼はゆっくりと水に入る、\\n足が入った時、冷たさを感じる、\\nでも鈴は鳴り、鳥も啼く、\\n遠方の人々は知る、春が来ると。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#よかん}余寒{RUBY_E#}を{RUBY_B#はら}払{RUBY_E#}いのけ", + "Desc": "戦闘に入った後、装備キャラの速度+#1[i]%、与ダメージ+#2[i]%。この効果は装備キャラがダメージを受けた後に失効し、装備キャラの次のターンが終了した時に再度効力を発生する。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21024, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21025": { + "Name": "{RUBY_B#かこ}過去{RUBY_E#}と{RUBY_B#みらい}未来{RUBY_E#}", + "Desc": "大切な人の死のように、掌の紙鳶は両翼が折れている。\\n彼女は戦火の中に跪き、その目に悲しみを映す。\\n\\n「あなたに救われるだけなのなら、私たちの犠牲は…」\\n\\n砲火が空を赤く染め上げ、蒼穹は依然として宏大。\\n彼女は空を見上げ、その目に怒りを燃やす。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#せきじつ}昔日{RUBY_E#}の{RUBY_B#たこ}紙鳶{RUBY_E#}", + "Desc": "装備キャラが戦闘スキルを発動した後、次に行動する他の味方の与ダメージ+#1[i]%#2[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21025, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21026": { + "Name": "ワン!{RUBY_B#さんぽ}散歩{RUBY_E#}の{RUBY_B#じかん}時間{RUBY_E#}!", + "Desc": "残念ながら、まだ誰も気づいていない…\\n彼が鼻を鳴らしながらあちこちを嗅ぎまわり、人のいない路地に入り込んでいったのを。\\n\\n残念ながら、まだ誰も気づいていない…\\n彼が爪を収めパスワードを入力し、自由を抱くところを。\\n\\nまだ誰も気づいていないのだろうか…\\n成長した子犬は宇宙を散歩できるのだ!", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "さっさと{RUBY_B#に}逃{RUBY_E#}げる", + "Desc": "装備キャラの攻撃力+#1[i]%、燃焼状態または裂創状態の敵に対する与ダメージ+#2[i]%、この効果は持続ダメージにも有効。", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21026, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21027": { + "Name": "{RUBY_B#ちょうしょく}朝食{RUBY_E#}の{RUBY_B#ぎしきかん}儀式感{RUBY_E#}", + "Desc": "朝食の準備はすでにできているが…\\nある者は先に紅茶を一杯。\\nある者はまず写真を撮る。\\nある者は先に新聞を読む。\\nある者はまずノートを取る。\\nある者はとりあえずスマホを弄る。パムの一言\\n\\n「冷めないうちに食べるんじゃ!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#も}持{RUBY_E#}ち{RUBY_B#ば}場{RUBY_E#}に{RUBY_B#つ}着{RUBY_E#}く", + "Desc": "装備キャラの与ダメージ+#1[i]%。敵を1体倒すごとに、装備キャラの攻撃力+#2[i]%、この効果は最大で#3[i]層累積できる。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0400000000372529, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.05000000004656613, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.060000000055879354, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.07000000006519258, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.0800000000745058, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21027, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21028": { + "Name": "{RUBY_B#あたた}暖{RUBY_E#}かい{RUBY_B#よる}夜{RUBY_E#}は{RUBY_B#なが}長{RUBY_E#}くない", + "Desc": "明かりを灯し、ホットチョコレートが入ったカップを持って、隣にいる友人を見る。\\n自分が贈った本とノートを読む彼女を見る。\\n普段は滅多に目にすることができない、彼女の笑顔を見る。\\n\\n冷える夜でも、少しの幸せさえあれば、寒さを吹き飛ばしてくれるのだ。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#ちい}小{RUBY_E#}さな{RUBY_B#ともしび}灯火{RUBY_E#}", + "Desc": "装備キャラの最大HP+#1[i]%。通常攻撃または戦闘スキルを発動した後、味方全体のHPをそれぞれの最大HP#2[f1]%分回復する。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.02000000001862645 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.0249999996740371 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.030000000027939677 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.034999999683350325 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.0400000000372529 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21028, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21029": { + "Name": "またお{RUBY_B#あ}会{RUBY_E#}いしましょう", + "Desc": "一度はプログラムだと思った、でなければ疲れを知らずに攻撃続けることはできない。\\nでもプログラムが最適解を捨て、彼女のトラップを回避するだなんてあり得ない。\\n\\n「どうやら持久戦になるみたいだ」\\n彼女はあくびをした。\\n\\n「早く眠るのです。有機生命体は夢を大切にしないといけませんから」\\n周りがだんだん暗くなる。\\n\\n彼女は飛び起きたが、データの残滓はすでに一掃され焼却されている、夢みたいに\\n——ただ、初めての失敗の味だけが鮮明に残る。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#か}交{RUBY_E#}わす{RUBY_B#こぶし}拳{RUBY_E#}、{RUBY_B#ことば}言葉{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}く", + "Desc": "装備キャラが通常攻撃または戦闘スキルを発動した後、攻撃を受けた敵からランダムに1体選択し、装備キャラの攻撃力#1[i]%分の付加ダメージを与える。", + "Level": { + "1": { + "ParamList": [ + 0.48000000044703484 + ] + }, + "2": { + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "ParamList": [ + 0.840000000782311 + ] + }, + "5": { + "ParamList": [ + 0.9600000008940697 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21029, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21030": { + "Name": "これがウチだよ!", + "Desc": "少女は何を着ても可愛いが、満足できていないようだ。その背後には十数着はあるだろう服が積み上げられている。\\n\\n「今日が最後だったりするのかな?」\\n\\nそう静かに考えながら、少女は鏡の中の自分を見る。今日の少女は一際嬉しそうにしている。\\n\\n「よし!これがウチだよ!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "{RUBY_B#あら}新{RUBY_E#}たな{RUBY_B#しょう}章{RUBY_E#}", + "Desc": "装備キャラの防御力+#1[i]%。装備キャラの必殺技のダメージ基礎値が、装備キャラの防御力#2[i]%分アップする。この効果は必殺技を発動するたび、1体の敵に対して1回まで発動できる。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.7500000006984919 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.9000000008381903 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1.0500000000465661 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1.2000000001862645 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21030, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "21031": { + "Name": "{RUBY_B#ゆうめい}幽冥{RUBY_E#}に{RUBY_B#き}帰{RUBY_E#}す", + "Desc": "姉の隣にいるけど、彼女は何も聞こえない。\\n心の底の音が大きくなっていくだけ。\\n\\n「お姉ちゃんの身体、冷たい」\\n「お姉ちゃんの身体、動かない」\\n\\n怒りの渦潮が彼女を呑み込む、でも彼女は何も顧みない。彼女は思い出す暇さえなかった——\\n\\n「お姉ちゃんの身体、ずっと前から冷たかった」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#きょうゆう}洶湧{RUBY_E#}", + "Desc": "装備キャラの会心率+#1[i]%。会心が発生した後、#2[i]%の固定確率で攻撃を受けた敵のバフを1つ解除する、この効果は1回の攻撃で1回まで発動できる。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21031, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21032": { + "Name": "{RUBY_B#ちょうげつさいうん}彫月裁雲{RUBY_E#}の{RUBY_B#い}意{RUBY_E#}", + "Desc": "彼は一目でその金器を気に入った、それを買い取ろうとしたその時、\\n狐族の少女が彼を店の隅に引きずり、呟いた。\\n「お客さん、夜になったらまた弊店にいらっしゃってください、その時に決めても遅くありませんよ」\\n\\nその夜、彼は約束通り店に来た。\\n門を開けたのはあの狐族の少女、彼女は微笑みながら案内する。\\n「お客さん、こちらです」\\n\\n一縷の月光が、皿の底に彫りつけられた花模様に刻み込む。\\n職人は線の深さで花弁の深浅を引いたのだ、月明かりの下でなければ、この一毫一厘は見出せない。\\n\\nこれを見て、彼は思い出す、この器物が「彫月裁雲」と呼ばれる所以を。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#ひみつ}秘密{RUBY_E#}", + "Desc": "戦闘開始時、および装備キャラのターンが回ってきた時、ランダムで効果を1つ発動する。この効果が発動されるたび、前回の効果を上書きする。同じ効果は連続で発動されない。効果は以下を含む:味方全体の攻撃力+#1[i]%、味方全体の会心ダメージ+#2[i]%、味方全体のEP回復効率+#3[i]%。同系統のスキルは累積できず、装備キャラが戦闘不能状態になると効果は解除される。", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.12000000011175871, + 0.060000000055879354 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 0.1500000001396984, + 0.07499999972060323 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 0.21000000019557774, + 0.1049999997485429 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742, + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21032, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21033": { + "Name": "{RUBY_B#に}逃{RUBY_E#}げ{RUBY_B#ば}場{RUBY_E#}なし", + "Desc": "この男は初対面ではない。\\nいつからか、この男は彼の後ろに伸びる影のようになっていた。\\n槍で何度貫いても、再び這い寄ってくるのだ。\\n\\n彼は負けない、だが勝つこともない。\\n逃げたくても、どこにも逃げられない。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#ぜっきょう}絶境{RUBY_E#}", + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラが敵を倒した時、自身の攻撃力#2[i]%分のHPを回復する。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21033, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21034": { + "Name": "{RUBY_B#きょう}今日{RUBY_E#}も{RUBY_B#へいわ}平和{RUBY_E#}な{RUBY_B#いちにち}一日{RUBY_E#}", + "Desc": "牌の新しい遊び方を思い付いたばかりだし、昼休みに雑書も借りてきた。\\n計算したところ、残りの仕事はのんびりやれば、ちょうどよく退勤までに終わるだろう。\\n彼女は急がず焦らず、人のいない隅っこに潜り込んだ。\\n\\n美しく長閑な時間に、邪魔が入らぬようにしなければ\\n――たとえ太卜であっても許すわけにはいかない。\\nだが万が一、万が一の時は……\\n\\n「この飴玉団子を太卜様にあげよう。甘いものを食べれば、怒りも収まるはずだよね!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#ふうう}風雨{RUBY_E#}、{RUBY_B#ま}間{RUBY_E#}もなく{RUBY_B#いた}至{RUBY_E#}る", + "Desc": "戦闘に入った後、装備キャラの最大EPに応じて、装備キャラの与ダメージをアップする。1EPにつき+#1[f2]%、最大で#2[i]までカウントされる。", + "Level": { + "1": { + "ParamList": [ + 0.001999999862164259, + 160 + ] + }, + "2": { + "ParamList": [ + 0.002500000176951289, + 160 + ] + }, + "3": { + "ParamList": [ + 0.0029999997932463884, + 160 + ] + }, + "4": { + "ParamList": [ + 0.0035000001080334187, + 160 + ] + }, + "5": { + "ParamList": [ + 0.003999999724328518, + 160 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21034, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21035": { + "Name": "{RUBY_B#なに}何{RUBY_E#}が{RUBY_B#まこと}真{RUBY_E#}か", + "Desc": "「もしすべての時計が間違った時刻を告げているとしたら……」\\n「もし約束をした人が誓いを破ることで契りを守ったとしたら……」\\n「もし夢の中に落ちた人が眠りについていなかったとしたら……」\\n「もし死者が生きて戻ってきて、名前を奪われていることに気づいたとしたら……」\\n\\n「もし…もし……」\\n彼は火を吹き消す。暗闇の中、ただ時計だけがチクタクと音を鳴らしている。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#かせつ}仮説{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%。通常攻撃を行った後、装備キャラのHPを最大HP#2[f1]%+#3[i]回復する。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.02000000001862645, + 800 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.0249999996740371, + 800 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.030000000027939677, + 800 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.034999999683350325, + 800 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.0400000000372529, + 800 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21035, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21036": { + "Name": "ドリームタウンの{RUBY_B#だいぼうけん}大冒険{RUBY_E#}", + "Desc": "「親愛なる視聴者のみんな。クロックボーイと愉快な仲間たちの登場だよ!」\\n\\n「前回、ドリームタウンの豊かな資源に目をつけたボス・ストーンは、ドリームタウンを支配しようと企む。クロックボーイはブラザーハヌ、折り紙の小鳥と協力して、ボス・ストーンとその部下をドリームタウンから追い出すことに成功したけど…」\\n\\n「ボス・ストーンは諦めきれず、凶悪犯を集めてドリームタウンで破壊の限りを尽くそうとしていた!クロックボーイたちは史上最大の危機に直面する!」\\n\\n「果たしてクロックボーイはどんな戦略でこのピンチを乗り切るのだろうか?そして彼が次に出会う新たな仲間とは?次回『ドリームタウン冒険記』乞うご期待!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#だんけつ}団結{RUBY_E#}", + "Desc": "装備キャラが通常攻撃、戦闘スキル、必殺技のうち、いずれかのタイプのスキルを発動した後、味方全体に「童心」を付与する。装備キャラが最後に発動したスキルに応じて、「童心」を持つ味方の同一タイプのスキルによるダメージ+#1[i]%。この効果は累積できない。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21036, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21037": { + "Name": "{RUBY_B#さいご}最後{RUBY_E#}の{RUBY_B#しょうしゃ}勝者{RUBY_E#}", + "Desc": "「僕が信じられないのかい?」\\n彼は挑発的な顔で目の前の男を見つめると、銃を取り出した。そして虚空に向け、弾が最後の1発になるまで引き金を引く。\\n\\n「どうやら協力関係を築くためには、僕のやり方を見せないといけないらしい」\\n彼は銃を相手に握らせてからシリンダーを回し、そのまま銃口を自分に向けた。\\n\\nそして引き金を連続で引くと、カチッという音が3回鳴った後、彼は笑みをこぼした。\\n「人生とは壮大なギャンブルであり、最後の勝者はいつだってこの僕なんだ」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "ベット", + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラが敵に攻撃を行い、会心が発生した後、「好運」を1層獲得する、最大で#3[i]層累積できる。「好運」1層につき、装備キャラの会心ダメージ+#2[i]%。「好運」は装備キャラのターン終了時に解除される。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 4 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.09000000008381903, + 4 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.10000000009313226, + 4 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.11000000010244548, + 4 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.12000000011175871, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21037, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21038": { + "Name": "{RUBY_B#れっか}烈火{RUBY_E#}の{RUBY_B#かなた}彼方{RUBY_E#}", + "Desc": "「目的の物を手に入れた。撤退するから援護を頼む」\\n通信機から仲間の声が聞こえた。\\n\\n彼は周囲を観察する。残党が廃棄された大型建築物の複雑な構造を進み、彼に近づいてきた。\\n「少し時間が必要です」\\n\\n一瞬の静寂の後、大災害のような激しい爆発が起こった。衝撃波で砂塵が舞い煙が立ち込め、眩い光が夜空を昼と同じくらいに明るくした。\\n「そこらじゅう、あいつらの仕掛けた爆薬まみれだとわかっていたよな?」\\n\\nマントを風になびかせる姿は、散歩でもしてきたかのようだった。\\n「当然」\\n「ですから、私が火をつけるマッチになればよいと」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#ばくねん}爆燃{RUBY_E#}", + "Desc": "装備キャラが1回の攻撃で最大HP#1[i]%分を超えるHPを失う、または1回で最大HP#1[i]%分を超えるHPを消費した後、装備キャラの最大HP#3[i]%分のHPを回復し、与ダメージ+#2[i]%#4[i]ターン継続。この効果は#5[i]ターンごとに1回発動できる。", + "Level": { + "1": { + "ParamList": [ + 0.25000000023283064, + 0.25000000023283064, + 0.1500000001396984, + 2, + 3 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3125000004656613, + 0.1500000001396984, + 2, + 3 + ] + }, + "3": { + "ParamList": [ + 0.25000000023283064, + 0.375, + 0.1500000001396984, + 2, + 3 + ] + }, + "4": { + "ParamList": [ + 0.25000000023283064, + 0.43750000023283064, + 0.1500000001396984, + 2, + 3 + ] + }, + "5": { + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 0.1500000001396984, + 2, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21038, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21039": { + "Name": "{RUBY_B#うんめい}運命{RUBY_E#}を{RUBY_B#つむ}紡{RUBY_E#}ぐ{RUBY_B#いと}糸{RUBY_E#}", + "Desc": "運命はいつも理由なく人々を牽引する。そして彼女は陰に隠れ、最も重要な瞬間を刻み込む。\\n\\n並び替え、組み合わせ、シャッフルし、そしてカードを引く…彼女は、見えざる運命の手が人々を操る様々な可能性をシミュレートし、混沌とした表面の下に隠された本当の軌跡を探る。\\n\\nようやく、すべての人物がそれぞれの適切な場所に配置された。彼女は凝固したカードの表面を磨き、深淵の真相を繋ぎ合わせる。\\n「まだ1枚足りないようね…なら、私がその場所を補いましょう」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "{RUBY_B#どうさつ}洞察{RUBY_E#}", + "Desc": "装備キャラの効果抵抗+#1[i]%。装備キャラの防御力#2[i]につき、与ダメージ+#3[f1]%、最大で与ダメージ+#4[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 100, + 0.007999999448657036, + 0.3200000002980232 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 100, + 0.008999999379739165, + 0.3600000003352761 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 100, + 0.010000000009313226, + 0.40000000037252903 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 100, + 0.010999999940395355, + 0.44000000040978193 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 100, + 0.011999999871477485, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21039, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21040": { + "Name": "{RUBY_B#ぎんが}銀河{RUBY_E#}が{RUBY_B#かんらく}陥落{RUBY_E#}した{RUBY_B#ひ}日{RUBY_E#}", + "Desc": "「チーズフォンデュケーキ!お前は星の守備隊を混乱させろ!」\\n「アズキアッシュ!お前は星の兵士たちを攻め落とせ!」\\n「梅干し!お前は星の首脳陣を倒せ!」\\n「キング、どこへ行かれるのですか!」\\n「私は可愛い猫を装って、愚かな人類を誘惑してくる!」\\n\\nその日、銀河のあらゆる文明は思い出した。彼らに支配されていた恐怖を……", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#せいふく}征服{RUBY_E#}", + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラが攻撃を行った後、攻撃を受けた敵のうち、装備キャラの属性に対応する弱点属性を持つ敵が2体以上の場合、装備キャラの会心ダメージ+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806, + 0.25000000023283064, + 2 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 2 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097, + 0.3500000003259629, + 2 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21040, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21041": { + "Name": "ショーの{RUBY_B#はじ}始{RUBY_E#}まり", + "Desc": "——彼の死を見届けたのは誰?\\n——花火だよ、この小さな目で見たんだ!\\n——彼の血を持ち去ったのは誰?\\n——花火だよ、このお皿を使ったんだ!\\n——彼のためにお墓を掘ったのは誰?\\n——花火だよ、このノミとスコップで!\\n\\n賢者は狡猾に、王は権力に貪欲に、英雄は独善的に、愚者はただ笑っている——\\n「では、花火さんの今年一番の大舞台——『ピノコニー混乱の夜』を御覧ください!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#ひと}独{RUBY_E#}りの{RUBY_B#ごらく}娯楽{RUBY_E#}", + "Desc": "装備キャラが敵にデバフを付与した後、「トリック」を1層獲得する。「トリック」1層につき、装備キャラの与ダメージ+#1[i]%#3[i]ターン継続、最大で#2[i]層累積できる。装備キャラの効果命中が#4[i]%以上の時、攻撃力+#5[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.060000000055879354, + 3, + 1, + 0.8000000007450581, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.07000000006519258, + 3, + 1, + 0.8000000007450581, + 0.24000000022351742 + ] + }, + "3": { + "ParamList": [ + 0.0800000000745058, + 3, + 1, + 0.8000000007450581, + 0.2800000002607703 + ] + }, + "4": { + "ParamList": [ + 0.09000000008381903, + 3, + 1, + 0.8000000007450581, + 0.3200000002980232 + ] + }, + "5": { + "ParamList": [ + 0.10000000009313226, + 3, + 1, + 0.8000000007450581, + 0.3600000003352761 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21041, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21042": { + "Name": "{RUBY_B#こころ}心{RUBY_E#}に{RUBY_B#きざ}刻{RUBY_E#}まれた{RUBY_B#やくそく}約束{RUBY_E#}", + "Desc": "埃まみれの過去、故郷を守る責任、世界を開拓する夢——\\n大きくゴツゴツとした手が、これらを世間知らずな少年に手渡した。\\n\\n「もうすぐ、もっと広い世界に行けるようになるんだよね」\\n少年は喜んで伝承の印を受け取ったが、まだ幼い彼にはその重さがわからない。\\n\\n「必ず行けるさ。その日までここを守るんだ、ミーシャ」\\n\\n彼はその約束を心に刻んだ——永遠に。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#でんしょう}伝承{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%。装備キャラが必殺技を発動する時、会心率+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.1500000001396984, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.1875, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.2249999998603016, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.26250000041909516, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.3000000002793968, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21042, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21043": { + "Name": "{RUBY_B#ふたり}二人{RUBY_E#}だけのコンサート", + "Desc": "「お兄ちゃん、これは……」 \\n「ここのところ、ずっと楽しく歌う機会がなかったよね…だから、ステージを用意したんだ。ちょっと…粗末だけど」 \\n「でも、私には向いてないって先生が……」 \\n「ううん、ボクはキミの歌が大好きだよ!ロビンの夢はきっと叶う。将来はもっと大きなステージで歌うんだ……」 \\n……\\n\\n何年も経ち、彼女は輝く舞台の上に立った。大勢のファンを見下ろし、彼女は一瞬呆然としてしまう——\\n夢を追う長い時間の中でも、彼女は一時も忘れたことがなかった。あの信頼に満ちた眼差しと、自分の初めての「コンサート」を。\\n華やかな照明はなく、絢爛なステージメイクもしていない。あったのは、ただ1人の子供が、もう1人の子供の夢のために作ったステージだけ。\\n\\n「私たちの夢は叶った。だけど…それはまだ『私たち』の夢と言えるの…?」 \\n彼女はマイクを握りしめる。次の歌が始まるまで、彼女には感傷に浸る時間さえなかった。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "{RUBY_B#せいえん}声援{RUBY_E#}", + "Desc": "装備キャラの防御力+#1[i]%。フィールド上にいるバリアを持つ味方1名につき、装備キャラの与ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.0400000000372529 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.05000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.060000000055879354 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.07000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.0800000000745058 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21043, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21044": { + "Name": "{RUBY_B#お}終{RUBY_E#}わりなき{RUBY_B#ぶとう}舞踏{RUBY_E#}", + "Desc": "軽やかなステップ、交錯する光と影。彼女はパートナーの手を取り、その冷めた瞳を見つめる。\\n「美しいレンジャーさん…『記憶』の舞台へようこそ。こうしてみると…より魅力的ね」\\n\\n周囲がだんだんと暗くなっていく中、一束の光が天井から降り注ぎ、2人のステップを追う。\\n「でも、私たちと一緒に踊るはずだった人たちは、まだ来ていない……」\\n\\nターンの瞬間、彼女は表情のない顔に近づき、冷たい手を握り締め、そっと尋ねた——\\n「何をしたのか教えてくれる?」\\n\\n速まるステップに釣られるように、まとまりのない過去の断片が、指先から彼女の脳内へと流れ込む。\\n次第に遠くなっていく過去の中で、彼女は雨の音と命が散る前の嘆息を聞いた。そして目の前にいるダンサーが、小雨の中で血のように赤い傘を差しているのを見た。その視界の届く範囲では——\\n\\n溺死した無数の死体が浮き沈みしている。\\n\\n驚いた彼女は慌てて手を引こうとして、思わず後ろに倒れてしまう。\\n周囲が再び明るくなり、宴のざわめきが戻ってくる。そしてパートナーは何が起こったのかまったく気づいていないように、彼女の腰をそっと支えた——\\n「メモキーパー、美しいダンスだった。よければもう1曲踊らないか?」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#さぐ}探{RUBY_E#}り{RUBY_B#あ}合{RUBY_E#}い", + "Desc": "装備キャラの会心率+#1[i]%。防御力ダウン状態または減速状態の敵に対する、装備キャラの会心ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21044, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21045": { + "Name": "{RUBY_B#ちょうわ}調和{RUBY_E#}が{RUBY_B#ちんもく}沈黙{RUBY_E#}した{RUBY_B#あと}後{RUBY_E#}", + "Desc": "永遠の美しい夢は一瞬にして消え去った。大地に向かって落ちていく時、彼が抱いたのは悲しみではなく、ただ目を閉じたいという願望だけだ。\\n\\n足を踏み入れた旧道はすでに崩れ、前途は依然として霧に包まれている。\\n「目覚めた今も、世界は変わらず苦痛の輪廻の中にある。誰も逃げることはできない……」\\n彼は過去を背負い、故郷に背を向け、まだ存在しない楽園へと足を進め続ける。\\n\\n人々はなぜ眠り、なぜ目覚めるのだろうか?\\n――星々が窓の外を通り過ぎていく。今こそ、この答えに新しい意味を与えなければならない。\\n「もしかしたら――ワタシもまだ……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#せいじゃく}静寂{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%。装備キャラが必殺技を発動した後、速度+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.10000000009313226, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.12000000011175871, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.14000000013038516, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21045, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21046": { + "Name": "{RUBY_B#うつく}美{RUBY_E#}しき{RUBY_B#はな}華{RUBY_E#}よ{RUBY_B#いま}今{RUBY_E#}{RUBY_B#さ}咲{RUBY_E#}かん", + "Desc": "明け方の薄明かりの中、花が咲き誇る静かな森で、動き回る人影に驚いた鳥たちが飛び立っていった。\\n\\n技を心の中で思い浮かべながら、勢いに任せて舞っていると、ぎこちなかった剣技が次第に洗練されていく。切っ先が空を裂き、花弁は嵐のように降り注ぐ。気がつくと、冷たい霧が彼女の髪を濡らしていた。\\n\\n「やるじゃん」\\n彼女は息を吞み、剣を背後へ向ける——\\nそこにいたのは灰色の髪の{F#少女}{M#少年}だ。{F#彼女}{M#彼}は構えていたカメラを下ろした。\\n「素敵な思い出は風と共に去ったりなんかしないんだから!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#わす}忘{RUBY_E#}れることなかれ", + "Desc": "装備キャラの攻撃力+#1[i]%。戦闘に入る時、パーティに同じ運命の味方が2名以上いる場合、それらの味方の会心ダメージ+#2[i]%。同系統のスキルは重ね掛け不可。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21046, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21047": { + "Name": "{RUBY_B#よる}夜{RUBY_E#}は{RUBY_B#かげ}影{RUBY_E#}のように{RUBY_B#つ}付{RUBY_E#}き{RUBY_B#まと}纏{RUBY_E#}う", + "Desc": "「足跡」\\n「擦った跡」\\n「匂い」\\n\\nすべてを適切に処理すると、彼は烏の羽を拾い上げ、軽やかに屋根の上へ飛び乗った。\\n広大な都市の中、人目に付かない片隅を漆黒の影が通り過ぎる。\\n\\n「影に溶け込み、お前たちを見守っている」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#いんぷく}隠伏{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%、戦闘に入った時または弱点撃破ダメージを与えた後、速度+#2[i]%#3[i]ターン継続。この効果はターンが回ってくるたびに1回まで発動できる。", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.09000000008381903, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.11000000010244548, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.12000000011175871, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21047, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21048": { + "Name": "{RUBY_B#ゆめ}夢{RUBY_E#}のモンタージュ", + "Desc": "「美しき夢の都、罪悪の温床、あるいは約束の地……」\\n\\n彼は人々の記憶を摘み取り、心震わせる瞬間を覗き見て、それをかき乱し、再構築して繋ぎ合わせる。\\n「大抵の人の記憶は取るに足らないものだ。一生の中で貴重な瞬間はほぼ僅か、それ以外はどれも存在する価値などない」\\n\\n彼の手の中で画面が1コマずつ流れ、次第に見事な映像へと姿を変えていく――\\n「我々は記憶を運んでいるのではない、過去を創造しているだけだ」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "アカデミズム{RUBY_B#へんしゅう}編集{RUBY_E#}", + "Desc": "装備キャラの速度+#1[i]%、弱点撃破状態の敵を攻撃した後、EPを#2[f1]回復する。この効果はターンが回ってくるたびに#3[i]回まで発動できる。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 3, + 2 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 3.5000000004656613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 4, + 2 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 4.500000000465661, + 2 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 5, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21048, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21050": { + "Name": "{RUBY_B#しゅんこく}瞬刻{RUBY_E#}の{RUBY_B#しょうき}勝機{RUBY_E#}", + "Desc": "タイタンの眷属の凄まじい咆哮は一瞬にして戦場に響き渡り、電光のように敏捷な2人の戦士は奮戦し血路を開いている。\\n\\n「俺1人で十分だと言ったはずだ」\\n戦士が拳を振るうたび、血の結晶が敵の体を貫いた。\\n「それじゃあただの力技だろう?…僕の剣捌き、見ておいてくれよ」\\n白銀の切先が美しい弧を描いたかと思うと、敵が見事に薙ぎ払われていく。\\n「…速さで敵うと思うか?」\\n2人は同時に、互いに向かって攻撃を仕掛ける——\\nすると、背後から襲いかかってきた敵が悲鳴をあげ絶命した。\\n途端、2つの声がぶつかり合う——\\n「とどめを刺したのは俺だ!」\\n「とどめを刺したのは僕だ!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "とどめの{RUBY_B#いちげき}一撃{RUBY_E#}", + "Desc": "装備キャラの会心ダメージ+#1[i]%。装備キャラの記憶の精霊が味方にスキルを発動する時、味方全体の与ダメージ+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.10000000009313226, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.14000000013038516, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.1600000001490116, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21050, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21051": { + "Name": "{RUBY_B#てんさい}天才{RUBY_E#}たちの「{RUBY_B#あいさつ}挨拶{RUBY_E#}」", + "Desc": "「実験、また失敗したの?おめでとう」\\n「……」\\n「言ったでしょ、その方法には問題があるって」\\n「……」\\n「こっちには大きな進展があったんだけど」\\n\\n淡泊な女性が頭を上げた——\\n「…なんの話でしたか?」\\n彼女はわざとらしく手を振る。\\n「些細なことだよ、銀河の大半に影響を及ぼす程度の」\\n女性は本を閉じた。\\n「それは…詳しく聴いてみたいですね」\\n\\n「ふん、天才の講義っていうのは…簡単に聴けるものじゃないんだけど」\\n「わかりました。それなら、新しく作ったお菓子を食べながら話しましょうか」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "おめでとう", + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラが必殺技を発動した後、装備キャラおよびその記憶の精霊の通常攻撃ダメージ+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.20000000018626451, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3000000002793968, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.3500000003259629, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.40000000037252903, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21051, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21052": { + "Name": "{RUBY_B#なが}流{RUBY_E#}すなら{RUBY_B#なみだ}涙{RUBY_E#}より{RUBY_B#あせ}汗{RUBY_E#}", + "Desc": "重く鈍い音が訓練室に響き渡る。雷を思わせるかのような激しい蹴りによって、サンドバッグはほとんど真っ二つになっていた。\\n\\n「将軍、この鍛錬は厳しすぎるのではありませんか?」傍にいた兵士が尋ねる。\\n\\n彼女は首を横に振り、新しいサンドバッグを吊るした。\\n\\n「こんなのは序の口よ!」\\n\\n月光を反射して真珠のように輝く汗が滑り落ち、今は亡き将軍の戒めがふと頭によぎる——「訓練で汗を流さなければ、戦場で涙を流すことになる」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "さあ{RUBY_B#たんれん}鍛錬{RUBY_E#}だ!", + "Desc": "装備キャラの会心率+#1[i]%。装備キャラの記憶の精霊がフィールド上にいる時、装備キャラおよびその記憶の精霊の与ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2700000002514571 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.33000000030733645 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.3600000003352761 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21052, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "21053": { + "Name": "{RUBY_B#たび}旅{RUBY_E#}が{RUBY_B#へいおん}平穏{RUBY_E#}であるように", + "Desc": "長い干ばつの後、星のような雨が降り注ぎ、少年は走りながら恵みの雨に歓声を上げた。\\n\\n雨は長い間降り続け、キャラバンは緑に覆われた大地にしばし腰を下ろす。\\n「お母さん、お姉ちゃん、これでもうお腹が減ったり、寒くなったりしないね!」\\nエヴィキン人の焚火が長い夜を温める中、少年は姉の物語を聞きながら夜明けを待っていた。\\n\\n「カカワーシャ、あなたはお母さんから授かった幸運をもって、私たちにできなかったことを成し遂げて…あなたの旅がいつまでも平穏で、その計略が決して露見しませんように……」\\n\\n金色の陽光が夢の中から現実の住まいへと差し込み、再び取引と数字が目に飛び込んでくる。\\n彼は握りしめていた手を静かに緩めた——\\n\\n何も掴めなかったように開かれたそこには、まだ微かなぬくもりが残っていた。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "甘い夢", + "Desc": "装備キャラが付与するバリアの耐久値+#1[i]%。味方がバリアを持つ時、与ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21053, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "21054": { + "Name": "{RUBY_B#ものがたり}物語{RUBY_E#}をめくって", + "Desc": "そよ風が揺らす麦の波の中を、少女は空白の手記を抱えながら歩く。\\n\\nエリュシオンの外にある、見知らぬはずだがどこか懐かしい町で、様々な仲間たちと出会い、歌のような夢のような旅が始まる……\\n\\n「今度こそ、一緒に……」\\n麦畑の果てで、長く待ち続けていた少女は本を閉じ、「未来」へと誘うように手を差し伸べた——\\n\\n「さあ、物語の新たなページをめくりましょう♪」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "綴る", + "Desc": "装備キャラの最大HP+#1[i]%。装備キャラの記憶の精霊が攻撃した後、装備キャラおよびその記憶の精霊の治癒量+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21054, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21055": { + "Name": "{RUBY_B#あした}明日{RUBY_E#}の{RUBY_B#あした}明日{RUBY_E#}まで", + "Desc": "「トリスビアス、また明日……」\\n\\n母親が長い旅に出る時、少女は彼女の頬を伝う涙を拭った。\\n\\n彼女はいくつもの明日を待ち続け、やがて自分も母親のような大人へと成長した。\\n彼女はドアの前に立って火種を握りしめ、耳元に蘇る母親の言葉を聞いた。\\n\\n「そこには吹雪も、厳しい寒さも、激しい雨もない……」\\n\\n「もし、明日会えなかったら……」\\n\\n彼女は地上へと落ちていき、その幼い姿が流れ星のように空を駆ける——\\n\\n「明日の明日に会おう!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "別れ", + "Desc": "装備キャラの治癒量+#1[i]%。味方の残りHPが#2[i]%以上の場合、与ダメージ+#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.5000000004656613, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21055, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21056": { + "Name": "{RUBY_B#かぜ}風{RUBY_E#}を{RUBY_B#お}追{RUBY_E#}う{RUBY_B#とき}時{RUBY_E#}", + "Desc": "「あ、これはあのツイてない子にあげよっと。あの借金まみれの親もこれで少しは黙ってくれるでしょ。…そうじゃなくても、せめてあの子を殴る回数が減るといいな」\\n「こっちはトゥルシアキャンディを売ってるおばあちゃんにあげちゃお。小さい病気でもちゃんと治さないとね。それに、こんな美味しいキャンディが食べられなくなったら困るし……」\\n\\nその場に座り、袋に入った宝石を一粒ずつ丁寧に数えていると、少女は突然くしゃみをした。\\n「…誰か私の噂でもした?」\\n\\n「セファリア、ここにいたのですね」\\n金の糸が彼女の背後で絡み合い、何かを迷うように漂っている。\\n\\n「今後、風を追う時は……」\\n冷たい金糸がゆっくりと少女の手首に絡みつき、彼女の身動きを封じた。\\n\\n「自分を大切にすることも忘れないでください」\\n\\n彼女は逃げるように遠くへと駆けた。そして、振り返って初めて気づく——綻んでいたはずのマントの端が、いつの間にか新品のように縫い直されていたことに。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "あたふた", + "Desc": "戦闘に入った後、味方全体の弱点撃破ダメージ+#1[i]%。同系統のスキルは累積できない。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21056, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21057": { + "Name": "{RUBY_B#はな}花{RUBY_E#}は{RUBY_B#わす}忘{RUBY_E#}れない", + "Desc": "春、彼女たちは種を蒔いた。\\n夏、彼女たちは畑に水を注いだ。\\n秋、彼女たちは実を摘んだ。\\n冬、彼女たちは雪を踏み、歌を紡いだ。\\n……\\n\\n荒れ果てた土地で花が咲き誇る中、鈴声のような笑い声に誘われた蝶が指先にとまる。\\n「お姉ちゃん、これから一緒に、ここをおっきな花の海にしよう!」\\n\\n「見て、私たちの約束……」\\n蝶は彼岸へと飛び、寡黙な少女は温かな花びらにそっと手を添えた。まるで、妹が今も傍にいるかのように。\\n「私も、私たちが育てた花たちも…決して忘れることはありません」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "一蓮托生", + "Desc": "装備キャラの会心ダメージ+#1[i]%。さらに装備キャラの記憶の精霊の会心ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21057, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21058": { + "Name": "{RUBY_B#いにしえ}古{RUBY_E#}より{RUBY_B#う}受{RUBY_E#}け{RUBY_B#つ}継{RUBY_E#}がれる{RUBY_B#ち}血{RUBY_E#}", + "Desc": "嵐が遠くで吹き荒れる中、ステュクスから伸びた触手が弱々しい命を弄ぶように漂う。\\n海獣に残されたその足は天を衝く波を引き起こし、砕けた波しぶきが石のように深淵へと落ちる。\\n\\n彼らは言った。戦いの咆哮は十日十夜続き、雷鳴すらもかき消すほどに轟いていたと。\\n彼らは言った。例え1万の命があろうと、ステュクスの略奪には足りぬと。\\n\\n勇敢さが未熟さを洗い流し、冷徹さが弱さを拭い去ったころ——\\n\\nその細く儚い影はよろめきながら岸辺に辿り着いた。そしてちょうど朝日が昇り、かつてのように血で染まった水面が露になった。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "殺し合い", + "Desc": "装備キャラの会心率+#1[i]%。装備キャラによる戦闘スキルダメージと必殺技ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21058, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21060": { + "Name": "{RUBY_B#むぎ}麦{RUBY_E#}の{RUBY_B#かお}香{RUBY_E#}り{RUBY_B#ただよ}漂{RUBY_E#}う{RUBY_B#ゆめ}夢{RUBY_E#}", + "Desc": "そよ風が少年の指先をなぞり、まだインクの乾ききらぬ手紙を遠くへと連れ去った。\\n\\n「僕の未来はどうなるんだろう……」\\n夢が心の中で弾け、空高く舞い上がる。\\n風にそよぐ麦の穂は波のように広がり、まるで青くて真摯なその問いに応えているかのようだった。\\n\\n「たとえ何が起ころうと、この手に残されたのが剣一本だけになろうと、僕はこの地を守りたい!」\\n少年は静かに心の中で誓いを立てた——\\n\\nそして、その誓いは烙印のように、永遠に彼の心に刻まれた。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "憧れ", + "Desc": "装備キャラの会心率+#1[i]%。装備キャラによる必殺技ダメージと追加攻撃ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21060, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21061": { + "Name": "{RUBY_B#きゅうじつ}休日{RUBY_E#}のバルネア{RUBY_B#だいぼうけん}大冒険{RUBY_E#}", + "Desc": "「ヒアンシーちゃん、一緒に新ちくオープンちたバルネアに行ってみない?」\\n\\n少女はオクヘイマでの診療を終えた後、好奇心旺盛な子供のように次々とピュエロスを試して回った。\\n\\n「フルーツジュースのマッサージ、試ちてみる?」\\n真っ赤に染まった両手を見た少女は、イカルンを抱きしめながら後ずさった――\\n「わたしはやっぱり…飲むほうが好きですね……」\\n\\n「大地獣の背中ふみふみマッサージ、割引中だよ!」\\n大地獣は頭を下げ、その鼻息で少女の髪を揺らした。\\n「ま…また今度にします!」\\n\\n「薬草のピュエロスなので健康に良いですよ。何名様でご利用になられますか?」\\n香ばしい薬草の匂いを嗅ぎながら、少女はゆっくりと中に入ってみた。\\n「あ…すごく健康に良さそうです……」\\n\\n「ドゥ、ドゥドゥ!」\\nイカルンも嬉しそうに泳いでいる。\\n「ここ数日でかなり疲れが溜まってたみたいですね……」\\n\\nこの貴重な休日に、少女はブドウジュースを飲みながら、赤毛の女の子と「ぐっすり眠るコツ」や、「スイーツ作りの秘訣」などを思う存分話し合った。\\n\\n「大変、イ…イカルン!」\\nその時、少女の叫び声がバルネアの静寂を破った。\\n\\n「ドゥ……」\\n「イカルン、しっかり!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "落ち着く", + "Desc": "装備キャラの与ダメージ+#1[i]%。装備キャラが攻撃を行った後、#2[i]%の基礎確率で攻撃を受けた敵を被ダメージアップ状態にする。状態中、敵の受けるダメージ+#3[i]%#4[i]ターン継続。同系統のスキルは累積できない。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1, + 0.11499999975785613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1, + 0.13000000012107193, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1, + 0.1449999997857958, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21061, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21062": { + "Name": "{RUBY_B#しゅうてん}終点{RUBY_E#}でまた{RUBY_B#あ}会{RUBY_E#}おう", + "Desc": "悔し涙が頬を伝う中、魔法陣の中央には死の影と、果てしない静寂だけが残された。\\n\\nふとした時、暗闇の中からため息が聞こえた。それは、「魂」の振動が生んだ、微かな囁きだった。\\n「お姉ちゃん…?」\\n男の子は手を伸ばし、その瞳を揺らした。最愛の人の姿がそこにあったのはほんの一瞬だったが、彼にとっては千年を越える時が流れたようにさえ思えた。\\n\\n「分かったよ…最後に別れを告げに来てくれて、ありがとう」\\n彼はゆっくりと立ち上がった。朝の陽光が差し込み、その屹然とした表情と乾ききっていない涙を照らし出す。\\n\\n「探求とは孤独に満ちた長い道のりだ。終点でまた会おう……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "執着", + "Desc": "装備キャラの会心ダメージ+#1[i]%。装備キャラによる戦闘スキルダメージと追加攻撃ダメージ+#2[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21062, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "22000": { + "Name": "{RUBY_B#はじ}初{RUBY_E#}めてのクエストの{RUBY_B#まえ}前{RUBY_E#}に", + "Desc": "「行動開始まで後どれくらいだ?」\\n「あら、君がこれを聞くなんて…新入りに何かあったのかしら?」\\n「いや」\\n「エリオが彼女を招いたのは他に理由があるのだろうけど、少なくとも最初の任務を生き延びないとね」\\n「気軽に待っているようだ」\\n「なら安心したわ。どうやら、刃ちゃんも頼れる先輩になったのね」\\n「……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "ナイスキャッチ", + "Desc": "装備キャラの効果命中+#1[i]%。装備キャラが、防御力がダウンされた敵に攻撃を行った後、EPを#2[i]回復する。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 4 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 5 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 6 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 7 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "22001": { + "Name": "よぉ、ここにいるぜ", + "Desc": "3人の少女は夜闇の中を歩いていた。周囲の景色が暗闇に幾分かの不気味さを添える。\\n「フォフォ、早く!じゃないと先に行っちゃうよ!」\\nスマホを掲げながらスタスタと前に進む彼女は、まったく恐怖を感じていないようだった。\\n「ア…アタシはこっちだよ!」\\n前に立っていた少女がおずおずと応える。\\n「あれ?あたしたちの前にいたの?じゃ、じゃあ、あたしとすーちゃんの後ろにいるのは……」\\n\\nこの場面に最も相応しい終止符は、少女の鋭い悲鳴に違いない。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#こわ}怖{RUBY_E#}くない…{RUBY_B#こわ}怖{RUBY_E#}くない!", + "Desc": "装備キャラの最大HP+#1[i]%。装備キャラが戦闘スキルを発動した時、治癒量+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.1600000001490116, + 2 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.1900000001769513, + 2 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.22000000020489097, + 2 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.25000000023283064, + 2 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.2800000002607703, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "22002": { + "Name": "{RUBY_B#あす}明日{RUBY_E#}のための{RUBY_B#たび}旅{RUBY_E#}", + "Desc": "回り続けるコンパスの針は、最後に夢の刻を指し示した。\\n窓の外では憶質で満たされたアスデナ星系が霧のような輝きを放っており、そこに位置する辺境の監獄が戦火にさらされている。\\n\\n「ああ、夢の中の世界ってどんな感じなんだろう?隅から隅まで測量して、完璧な地図を作りたいな!」\\n少女は計測機器をしまうと、目の前にある新世界を憧れの眼差しで見つめた。\\n「あそこは今混乱の最中にある。絶対に勝手に走り回ったりするんじゃないぞ。万が一この前みたいに誘拐されたら……」\\n武器を磨き終えたカウボーイ姿の男は、ドリンクを持ってソファに歩み寄りながら、仕方なさそうに首を横に振った。\\n「夢の地には無限の可能性がある。僕たちなら、きっと偉業を成し遂げられる…車掌さん、もし僕たちがあそこを気に入って、もう列車に帰ってこないと決めたら…君は寂しがっちゃうかな?」\\n紳士の恰好をしたナナシビトは、パムにウィンクして微笑んだ。\\n「車掌をからかうでない!…車掌さんならこう言うよね?」少女は狡猾な笑顔を見せる。\\n「ぬうう!オマエたち!」\\n列車内に笑い声が溢れ、それに呼応するようにドリンクの泡がグラスの中を漂った。\\n…\\n\\n若いナナシビトの後ろ姿が、次第に憶質の中に消えていく。\\n「気をつけるんじゃぞ……」\\n振り返ると、もぬけの殻になった寂しい車両が目に入る。\\n車掌は呆然と立ち尽くした…このような光景は、もう数え切れないほど見てきたような気がする。", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#れんけつ}連結{RUBY_E#}", + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラが必殺技を発動した後、与ダメージ+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.18000000016763806, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.21000000019557774, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2700000002514571, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3000000002793968, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "22003": { + "Name": "{RUBY_B#にんじろく}忍事録{RUBY_E#}・{RUBY_B#おんりつしゅりょう}音律狩猟{RUBY_E#}", + "Desc": "銀河忍法は千変万化、音律・狩猟で先制だ!さあ聞くがいい――\\n\\nかき鳴らせギター、ベースのビートはベター、燃え上がれ電子音の宴だ!\\n裏切りはしない流した汗、波乱の道のりの積み重ね、キーボードの音符となって鳴り響け!\\nたとえ傷だらけになったとしても、繚乱の音を響かせ続けろ!\\n「繚乱!」「繚乱!」「繚乱!」\\nふん、この世界は元から不条理な荒波に満ちているのだ。存分に歌い上げて何が悪い?", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#かいえん}開演{RUBY_E#}!", + "Desc": "装備キャラの最大HP+#1[i]%。HPを失う、または回復した後、会心ダメージ+#2[i]%#3[i]ターン継続。この効果はターンが回ってくるたびに1回まで発動できる。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.18000000016763806, + 2 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.2249999998603016, + 2 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.2700000002514571, + 2 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.31499999994412065, + 2 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "22004": { + "Name": "{RUBY_B#うちゅういち}宇宙一{RUBY_E#}の{RUBY_B#おおあきな}大商{RUBY_E#}い!", + "Desc": "データで構築されたバーチャル会場で、展示会の代表たちは意見を交わし合っていた。\\n2人の姿が各方面の需要を満たすべく、ブースの間を行き来している。\\n\\n「おや?もしかしてあなたは…」\\n「んん?オレもオマエをテレビで見たことがあるぞ」\\n——彼らはたくさん話をした。ゲームやグルメ、お互いのスタイル、そして宇宙にあるすべての美しいものの話を。\\n2人は初対面だったにもかかわらず、まるで昔からの友であったかのように話が弾んだ——\\n\\n「そうだ、私の提案をもう一度考えてみないか……?」\\n「列車は非売品じゃ!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#ごけいかんけい}互恵関係{RUBY_E#}", + "Desc": "装備キャラの攻撃力+#1[i]%。敵が持つ異なる弱点属性1つにつき、装備キャラがその敵に与えるダメージ+#2[i]%。弱点属性は最大7つまでカウントされる。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.05000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.060000000055879354 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.07000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.0800000000745058 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "23000": { + "Name": "{RUBY_B#ぎんがてつどう}銀河鉄道{RUBY_E#}の{RUBY_B#よる}夜{RUBY_E#}", + "Desc": "足元が心配なら、もう一度頭を上げて見渡せばいい、\\n星々が優しく注目する時、心は既に風に乗り飛び上がっている。\\n全ての想念、全ての囁きが、\\n命の支えとなり、いつまでも付き添ってくれる。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#りゅうせいぐん}流星群{RUBY_E#}", + "Desc": "フィールド上にいる敵1体につき、装備キャラの攻撃力+#2[f1]%、この効果は最大で5層累積できる。敵が弱点撃破された時、装備キャラの与ダメージ+#1[i]%、1ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.09000000008381903 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.1049999997485429 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.13499999977648258 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23001": { + "Name": "{RUBY_B#よる}夜{RUBY_E#}の{RUBY_B#とばり}帳{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}で", + "Desc": "少女は気づかれないように小さく微笑んだ。\\n「どうして?」\\n「今、ここにいるのはワタシだけなのに……」\\n「なぜか…凄く賑やかな気がする」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#はな}花{RUBY_E#}と{RUBY_B#ちょう}蝶{RUBY_E#}", + "Desc": "装備キャラの会心率+#1[i]%。戦闘中に装備キャラの速度が100を超えた時、超過した速度#2[i]につき、通常攻撃と戦闘スキルによるダメージ+#3[i]%、必殺技ダメージの会心ダメージ+#4[i]%、最大で#5[i]層累積できる。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 10, + 0.060000000055879354, + 0.12000000011175871, + 6 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 10, + 0.07000000006519258, + 0.14000000013038516, + 6 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 10, + 0.0800000000745058, + 0.1600000001490116, + 6 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 10, + 0.09000000008381903, + 0.18000000016763806, + 6 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 10, + 0.10000000009313226, + 0.20000000018626451, + 6 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23002": { + "Name": "かけがえのないもの", + "Desc": "「スヴァローグ、もし私がいなくなったら、このデータベースは君に任せよう」\\n(誰だ……なぜ私の記録にこのようなボイスメッセージが……)\\n「スヴァローグ、君にとって、かけがえのないものは何だい?」\\n(かけがえのない……破損したパーツは……取り替えればいい……)\\n「スヴァローグ、いつか君にも見つかる……」\\n(そういうものは……面倒なだけだ……)\\n\\n「その時は、ここを離れるといい」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#かぞく}家族{RUBY_E#}", + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラが敵を倒す、または攻撃を受けた後、装備キャラの攻撃力#2[i]%分のHPを回復し、与ダメージ+#3[i]%、効果は自身の次のターンが終了するまで継続。この効果は累積できず、ターンが回ってくるたびに1回まで発動できる。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.0800000000745058, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.09000000008381903, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.10000000009313226, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.11000000010244548, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23003": { + "Name": "だが{RUBY_B#せんそう}戦争{RUBY_E#}は{RUBY_B#お}終{RUBY_E#}わらない", + "Desc": "「心に刻め。撤退しては、モンスター共との戦いに勝てない」\\n「私たちの背後がベロブルグ、私たちが最後の防衛線……」\\n「私たちだけは、何があっても、引くことは許されない!」\\n\\n顔を上げると、目の前には冷たい空と凍てついた大地、そしてどこまでも続く吹雪が広がっていた。\\n全てがいつも通り。\\nただ、彼女がいつも見つめていた後ろ姿だけが、いなかった。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#けいしょうしゃ}継承者{RUBY_E#}", + "Desc": "装備キャラのEP回復効率+#1[i]%。味方に対して必殺技を発動した時、SPを1回復する、この効果は必殺技を2回発動するたびに1回発動できる。装備キャラが戦闘スキルを発動した後、次に行動する他の味方の与ダメージ+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 1 + ] + }, + "2": { + "ParamList": [ + 0.12000000011175871, + 0.3500000003259629, + 1 + ] + }, + "3": { + "ParamList": [ + 0.14000000013038516, + 0.40000000037252903, + 1 + ] + }, + "4": { + "ParamList": [ + 0.1600000001490116, + 0.45000000041909516, + 1 + ] + }, + "5": { + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23004": { + "Name": "{RUBY_B#せかい}世界{RUBY_E#}の{RUBY_B#な}名{RUBY_E#}を{RUBY_B#もっ}以{RUBY_E#}て", + "Desc": "「ヴェルト……か……」\\n「この名前……かっこいいだろ?」\\n「じゃあ……」\\n「これからは、君がヴェルトだ」\\n「律者コアと……世界を守る使命……」\\n「頼んだぞ、ヴェルト」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#でんしょうしゃ}伝承者{RUBY_E#}", + "Desc": "デバフ状態の敵に対して、装備キャラの与ダメージ+#1[i]%。装備キャラが戦闘スキルを発動した時、その攻撃の効果命中+#2[i]%、攻撃力+#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.2700000002514571, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.3000000002793968, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23005": { + "Name": "{RUBY_B#しょうり}勝利{RUBY_E#}の{RUBY_B#せつな}刹那{RUBY_E#}", + "Desc": "「負けて泣きたい時は泣いてもいいよ、ジェパード」\\n「でも立ったまま泣くんだよ、私に勝てる日までね…5年かかろうとも、10年かかろうとも」\\nそして時が経ち、男の子は泣かなくなり、姉に負けなくなった。\\n\\n今、戦場に立つのは勇猛果敢なシルバーメインの戍衛官、どんな戦場であろうと彼は最後まで守り抜く\\n——敵を徹底的に潰す瞬間を狙うために。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "{RUBY_B#けつだん}決断{RUBY_E#}", + "Desc": "装備キャラの防御力+#2[i]%、効果命中+#4[i]%。自身が攻撃を受ける確率がアップする。装備キャラが攻撃を受けた後、さらに防御力+#3[i]%、効果は自身のターンが終了するまで継続。", + "Level": { + "1": { + "ParamList": [ + 2, + 0.24000000022351742, + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 2, + 0.2800000002607703, + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 2, + 0.3200000002980232, + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 2, + 0.3600000003352761, + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 2, + 0.40000000037252903, + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 27, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 59.40000000037253, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 102.6000000005588, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 145.80000000074506, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 189, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 232.20000000018626, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 275.40000000037253, + "BaseDefenceAdd": 4.050000000046566 + } + ] + }, + "23006": { + "Name": "{RUBY_B#ま}待{RUBY_E#}つのみ", + "Desc": "「まさかまだ教えてないことでもあるの?」\\n\\n相手の表情がこわばり、彼女は唾をのむ音を聞いた。\\nこの人は自分を恐れている、だから能力を使うまでもない。\\n実際、何を言っても構わない。\\n言葉が口から出た瞬間、恐怖は自由に増長する…\\nすぐにでも慌てて彼女が聞きたいことをペラペラと喋るだろう。\\n\\n彼女は待つのみ、早々に網を張ったクモのように。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#くも}蜘蛛{RUBY_E#}の{RUBY_B#す}巣{RUBY_E#}", + "Desc": "装備キャラの与ダメージ+#2[i]%。装備キャラが攻撃を行った後、速度+#3[f1]%、最大で#4[i]層累積できる。\\n装備キャラの攻撃が敵に命中する時、その敵が「遊糸」状態でない場合、100%の基礎確率で敵を「遊糸」状態にする。敵が「遊糸」状態の時、感電状態と見なされる。「遊糸」状態の敵はターンが回ってくるたびに、装備キャラの攻撃力#1[i]%分の雷属性持続ダメージを受ける、#5[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 0.04799999948590994, + 3, + 1 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 0.055999999633058906, + 3, + 1 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 0.06399999978020787, + 3, + 1 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 0.07199999992735684, + 3, + 1 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 0.0800000000745058, + 3, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23007": { + "Name": "{RUBY_B#ふ}降{RUBY_E#}りやまぬ{RUBY_B#あめ}雨{RUBY_E#}", + "Desc": "屋根の下を出たら、傘をさして鼻歌を歌いながら路地の奥にもぐりこむ彼女。\\nしばらくすると、雨が止む。\\n\\n彼女は少し悩む。そしてスクリーンをスライドしたら、頭上のわずかなスペースに、再び雨が滑り込んだ。\\n雨が傘にあたる音とゲームのBGMに、彼女は上機嫌。\\n「やっぱり雨の日にゲームをやるのが一番楽しい」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#げんえい}幻影{RUBY_E#}と{RUBY_B#げんじつ}現実{RUBY_E#}", + "Desc": "装備キャラの効果命中+#1[i]%。デバフが#4[i]つ以上ある敵にダメージを与える時、装備キャラの会心率+#5[i]%。装備キャラが通常攻撃、戦闘スキルまたは必殺技を発動した後、#2[i]%の基礎確率で攻撃を受けた敵の中から、「エーテルコード」を付与されてないランダムな敵1体に「エーテルコード」を付与する。「エーテルコード」を付与された敵の受けるダメージ+#3[i]%、1ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 1, + 0.12000000011175871, + 3, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 1, + 0.14000000013038516, + 3, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 1, + 0.1600000001490116, + 3, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 1, + 0.18000000016763806, + 3, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 1, + 0.20000000018626451, + 3, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23008": { + "Name": "{RUBY_B#ひつぎ}棺{RUBY_E#}のこだま", + "Desc": "男は真っ白なイチハツのそばで棺を叩く。\\n「たまに思うのだが、君と取引をしたのは、君を軽く見ていたような気がする」\\n返事はなく、いばらが男の手を貫くだけ。\\nしかし男は笑いながら、いばらを捕まえる。\\n\\n「そう、僕たちは互いを利用しようとしながら、互いを見くびる」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "いばら", + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラが攻撃を行った後、異なる敵に攻撃が命中するごとにEPを#3[f1]回復する。1回の攻撃で、この効果を通して最大で#4[i]回EPを回復できる。装備キャラが必殺技を発動した後、味方全体の速度+#2[i]、1ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 12, + 3, + 3 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 14, + 3.5000000004656613, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 16, + 4, + 3 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 18, + 4.500000000465661, + 3 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 20, + 5, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23009": { + "Name": "{RUBY_B#つ}着{RUBY_E#}かない{RUBY_B#ひがん}彼岸{RUBY_E#}", + "Desc": "彼は毎年、何本かの新しい剣を携えここにやってくる。\\n彼は剣の主たちの最期を見届けた。\\nその場を離れるたび、彼は無念に思う…\\n\\n己の剣は、いつになったらここに運ばれてくるのだろう。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "ならぬ", + "Desc": "装備キャラの会心率+#1[i]%、最大HP+#2[i]%。装備キャラが攻撃を受ける、または自身のHPを消費すると、与ダメージ+#3[i]%、この効果は装備キャラが攻撃を行った後に解除される。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.2700000002514571, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "23010": { + "Name": "{RUBY_B#よあ}夜明{RUBY_E#}け{RUBY_B#まえ}前{RUBY_E#}", + "Desc": "「将軍、くれぐれもご慎重に…将軍の名が歴史にどう残るか…」\\n雲騎将軍は目を半分つむり、部下の報告を聞く。\\n「歴史は勝手に判断するだろうが、私は歴史の結論に興味はない」\\n「為せば、今の私は自信を以て悠々自適」\\n「為さねば、今の私は雀を愛で、衆を失った逸楽者」\\n\\n雀が男の肩から飛び降り、彼は手を伸ばして受け止めた。\\n「私は、判断をしたまで」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#ちょうや}長夜{RUBY_E#}", + "Desc": "装備キャラの会心ダメージ+#1[i]%。装備キャラの戦闘スキルと必殺技によるダメージ+#2[i]%。装備キャラが戦闘スキル、または必殺技を発動した後、「夢身」効果を獲得する。追加攻撃を行う時、「夢身」を消費し、追加攻撃ダメージ+#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806, + 0.48000000044703484 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774, + 0.5600000005215406 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.24000000022351742, + 0.6400000005960464 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.2700000002514571, + 0.7200000006705523 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.8000000007450581 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23011": { + "Name": "{RUBY_B#と}閉{RUBY_E#}ざした{RUBY_B#ひとみ}瞳{RUBY_E#}", + "Desc": "額の痛みは一生付き纏うだろう。だが、それは過去に経験した苦痛の万分の一にも及ばない。\\n旧知の者が離れていくまで、彼女は神機妙算を自負していた。\\nそして今、彼女は変わり続ける万象、移り変わる時を「視る」…\\nしかし彼女は目を閉じた。なぜなら、未来はすでに定まっているからだ\\n——「第三の目」の中で。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "{RUBY_B#しかい}視界{RUBY_E#}", + "Desc": "装備キャラの最大HP+#1[i]%、EP回復効率+#4[i]%。装備キャラのHPが減った時、味方全体の与ダメージ+#2[f1]%#5[i]ターン継続。\\n各ウェーブ開始時、味方全体のHPをそれぞれ失ったHPの#3[i]%分回復する。", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.09000000008381903, + 0.8000000007450581, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.1049999997485429, + 0.8500000007916242, + 0.14000000013038516, + 2 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.12000000011175871, + 0.9000000008381903, + 0.1600000001490116, + 2 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.13499999977648258, + 0.9500000008847564, + 0.18000000016763806, + 2 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.1500000001396984, + 1, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23012": { + "Name": "{RUBY_B#どろ}泥{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}き{RUBY_B#ねむ}眠{RUBY_E#}り", + "Desc": "将軍の肩で眠りについても、男の子の手は剣を握りしめて離さなかった。\\n彼は男の子の頬を軽く叩いた、すると呟きが聞こえてくる。\\n「将軍…ようやく…勝ったよ……」\\n\\n彼は突然呆気にとられた、そして気付く。毎日努力して成長し続ける男の子と比べると、\\n長い歳月を生きてきた自分は、もう「不変」に慣れてしまっている。\\n\\n「じきに、君は全ての人に勝つだろう。だが、それからが始まりだ……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#うつ}美{RUBY_E#}しき{RUBY_B#ゆめ}夢{RUBY_E#}", + "Desc": "装備キャラの会心ダメージ+#1[i]%。装備キャラの通常攻撃または戦闘スキルで、会心が発生しなかった時、自身の会心率+#2[i]%#3[i]ターン継続。この効果は#4[i]ターンごとに1回発動できる。", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761, + 1, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555, + 1, + 3 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484, + 1, + 3 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.5400000005029142, + 1, + 3 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.6000000005587935, + 1, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23013": { + "Name": "{RUBY_B#じせつ}時節{RUBY_E#}は{RUBY_B#お}居{RUBY_E#}らず", + "Desc": "彼女は窓辺で四季の流れを幾度も見届けてきた。\\n\\n薄荷、ケイガイなどの辛温の生薬を配合する時、窓から見えるのは咲く花。\\nコウジュ、生姜などの辛熱の生薬を配合する時、窓から見えるのは注ぐ雨。\\nシャクヤク、烏梅などの酸温の生薬を配合する時、窓から見えるのは漂う落ち葉。\\nオウゴン、知母などの苦寒の生薬を配合する時、窓から見えるのは降る雪。\\n\\n時節は居らず、歳月は流れる。だがこの窓と、傍に座る者は変わらない。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#いちにち}一日{RUBY_E#}は{RUBY_B#しじ}四時{RUBY_E#}あり", + "Desc": "装備キャラの最大HP+#1[i]%、治癒量+#2[i]%。装備キャラが味方に治癒を行った時、治癒量が記録される。任意の味方が攻撃を行った後、攻撃を受けたランダムな敵1体に対して、装備キャラの属性と同じ属性で、記録された治癒量#3[i]%分の付加ダメージを与える。このダメージはバフの影響を受けず、ターンが回ってくるたびに1回まで発生する。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.12000000011175871, + 0.3600000003352761 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.14000000013038516, + 0.4200000003911555 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.1600000001490116, + 0.48000000044703484 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.18000000016763806, + 0.5400000005029142 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.20000000018626451, + 0.6000000005587935 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23014": { + "Name": "この{RUBY_B#み}身{RUBY_E#}は{RUBY_B#けん}剣{RUBY_E#}なり", + "Desc": "剣身が砕け、骨刺す極寒の中に落ちてゆく。\\n凡鉄、俗器は皆無用の物。その限界は一目で見通せる。\\n「剣など必要か?」\\n彼女は躊躇わなかった。その目にはいかなる物も入っていなかった。\\n\\n「これからは、この身が剣だ」\\n極限を超えるには、前人未到の域を突破するには\\n——己さえも「薪」にするしかない。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "この{RUBY_B#しょうぎょく}宵玉{RUBY_E#}を{RUBY_B#と}執{RUBY_E#}り", + "Desc": "装備キャラの会心ダメージ+#1[i]%。自身以外の味方が攻撃を受ける、またはHPを消費した後、装備キャラは「月蝕」を1層獲得する。この効果は最大で#2[i]層累積できる。「月蝕」1層につき、装備キャラの次の攻撃の与ダメージ+#3[f1]%。「月蝕」が上限の#2[i]層に累積した時、その回の攻撃は敵の防御力を#4[i]%無視する。この効果は装備キャラが攻撃を行った後に解除される。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 3, + 0.14000000013038516, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.2300000002142042, + 3, + 0.16499999980442226, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.26000000024214387, + 3, + 0.1900000001769513, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.29000000027008355, + 3, + 0.2149999998509884, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 3, + 0.24000000022351742, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23015": { + "Name": "{RUBY_B#ようこう}陽光{RUBY_E#}より{RUBY_B#かがや}輝{RUBY_E#}くもの", + "Desc": "生まれた時から、彼の世界には光のない牢獄だけが存在した。\\n関わりのない罪が彼をこの地に縛り付け、関わりのない記憶が彼を沈める。\\n彼はもがき、力の限り呼吸し、\\n果てのない海中で一縷の光を掴もうとする。\\n\\n光のない牢獄に将軍が足を踏み入れた時、\\n陽光よりも輝く少年の眼差しを見た。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "この{RUBY_B#いのち}命{RUBY_E#}に{RUBY_B#か}替{RUBY_E#}えても", + "Desc": "装備キャラの会心率+#1[i]%。装備キャラが通常攻撃を行った時、「龍吟」を1層獲得する、#2[i]ターン継続。「龍吟」1層につき、装備キャラの攻撃力+#4[i]%、EP回復効率+#5[f1]%。「龍吟」は最大で#3[i]層累積できる。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 2, + 2, + 0.18000000016763806, + 0.060000000055879354 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 2, + 2, + 0.21000000019557774, + 0.07000000006519258 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 2, + 2, + 0.24000000022351742, + 0.0800000000745058 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 2, + 2, + 0.2700000002514571, + 0.09000000008381903 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 2, + 2, + 0.3000000002793968, + 0.10000000009313226 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23016": { + "Name": "{RUBY_B#なや}悩{RUBY_E#}んで{RUBY_B#わら}笑{RUBY_E#}って", + "Desc": "一人前のカンパニーの社員として、「押し潰される」ことなんて許されざる失態。\\nプレッシャーだろうと疲労だろうと、立ち上がって真正面から向き合うべき!\\nただ、「彼ら」に「押し潰される」ことは論外。\\n\\n「もう、そんなに慌てないの!私の手は2つしかないんだから!」\\n残業を終えて家に帰った少女はモフモフの生き物たちに押し倒される。\\n彼らは彼女の言葉を理解できず、ただまん丸の頭を彼女の手にこすりつける。\\n疲労感が徐々に消え、モフモフを撫でる時の温かさが体中に染みていく。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#じゅんばん}順番{RUBY_E#}にね!", + "Desc": "装備キャラの会心率+#1[i]%、追加攻撃ダメージ+#2[i]%。装備キャラが追加攻撃を行った後、敵を「従順」状態にする。この効果は最大で#4[i]層累積できる。味方の攻撃が「従順」状態の敵に命中する時、「従順」1層につき会心ダメージ+#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.3000000002793968, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.3500000003259629, + 0.14000000013038516, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.40000000037252903, + 0.1600000001490116, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.45000000041909516, + 0.18000000016763806, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23017": { + "Name": "{RUBY_B#きょうこん}驚魂{RUBY_E#}の{RUBY_B#よる}夜{RUBY_E#}", + "Desc": "少女は門の後ろに隠れ、一歩も前に進めないまま震えている。\\n今夜のターゲットが目の前にあるせいか、彼女の心拍数は上がる一方だ。\\n「怖くない怖くない、怖くない……」\\n暗闇の中、沈黙が悲鳴を上げる。\\n\\n少女は震えながら手にしている「武器」を握り締めるが、やはり「ターゲット」には一歩も近付けない。\\n「何も怖いことなんてない…うう、こ…怖いよ!」\\n\\nとうとう痺れを切らしたシッポが光った。\\n「いい加減にしろ、ただ宅配便を取るだけだろうが!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#ぜんりょくしんこきゅう}全力深呼吸{RUBY_E#}", + "Desc": "装備キャラのEP回復効率+#1[i]%。味方が必殺技を発動した時、装備キャラは残りHP割合が最も低い味方のHPを、その味方の最大HP#2[i]%分回復する。装備キャラが味方に治癒を行った時、その味方の攻撃力+#3[f1]%、この効果は最大で#4[i]層累積できる、#5[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.10000000009313226, + 0.02399999974295497, + 5, + 2 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.11000000010244548, + 0.027999999467283487, + 5, + 2 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 0.031999999890103936, + 5, + 2 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.13000000012107193, + 0.035999999614432454, + 5, + 2 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.14000000013038516, + 0.0400000000372529, + 5, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23018": { + "Name": "その{RUBY_B#いっこく}一刻{RUBY_E#}、{RUBY_B#め}目{RUBY_E#}に{RUBY_B#や}焼{RUBY_E#}き{RUBY_B#つ}付{RUBY_E#}けて", + "Desc": "かつて彼は歌を聴き、その光を歌い広めた。\\nバラが咲き誇るのは、其の笑顔に応えるため。\\n朝日が輝くのは、其の尊顔を照らすため。\\n音楽が奏でられるのは、其の眠気を覚ますため。\\n\\nしかし、その光が帰ってくることはなかった。それでも、彼は彼方を求めて走る。\\n——ただ待つのみ、ただ信じるのみ、ただ純美のすべてを宇宙に広めるのみ。\\nたとえすべてが一瞬の出来事であろうとも、彼は己が求める答えをそこから得たのである。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#きし}騎士{RUBY_E#}の{RUBY_B#じゅんれい}巡礼{RUBY_E#}", + "Desc": "装備キャラの会心ダメージ+#1[i]%。装備キャラが必殺技を発動する時、装備キャラの最大EPに応じて装備キャラの必殺技によるダメージをアップする、1EPにつき+#2[f2]%、最大で#3[i]までカウントされる。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.0036000001709908247, + 180 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.00419999985024333, + 180 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.004800000227987766, + 180 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.005399999907240272, + 180 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.005999999586492777, + 180 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23019": { + "Name": "{RUBY_B#かがみ}鏡{RUBY_E#}の{RUBY_B#なか}中{RUBY_E#}の{RUBY_B#わたし}私{RUBY_E#}", + "Desc": "彼女は梅の花が散りそうになった時、その瞬間を封印して傍に置いておくのが好きだった。\\nそれから何年も経ち、騒々しいもの、甘いもの、様々な生命が彼女の手によって生み出されたが、梅の花だけは相変わらず決まった時期に散ってしまう。\\n何年経っても、鏡に映る姿は変わらない。しかし宇宙の尺度でいえば、彼女も短い時間しか生きられないということになるのだろうか?\\n\\n「すべてが死から逃れられないのなら、創造に何の意味があるのでしょう?」\\n永遠に続くかと思われた沈黙の後、風が吹き花が散る中で、鏡の中の人物は昔と同じように答えた。\\n\\n「梅の花を留める必要のない未来のために」\\nこうして冷たい鏡面を撫でながら呟くのは、もう何度目になるのだろうか。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#てっこつばいこう}徹骨梅香{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%。装備キャラが必殺技を発動した後、味方全体の与ダメージ+#2[i]%#3[i]ターン継続。また、装備キャラの撃破特効が#4[i]%以上の場合、SPを1回復。\\n各ウェーブ開始時、味方全体のEPを#5[f1]回復する。同系統のスキルは重ね掛け不可。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 3, + 1.5000000004656613, + 10 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 3, + 1.5000000004656613, + 12.500000000465661 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 3, + 1.5000000004656613, + 15 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 3, + 1.5000000004656613, + 17.50000000046566 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 3, + 1.5000000004656613, + 20 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23020": { + "Name": "{RUBY_B#じゅんすい}純粋{RUBY_E#}なる{RUBY_B#しい}思惟{RUBY_E#}の{RUBY_B#せんれい}洗礼{RUBY_E#}", + "Desc": "午後の日差しは心地よく、辺りには花の香りが満ちている。\\n彼は常に清潔であるよう気を配っているが、思考が滞ると必ず「汚れ」が発生してしまう。\\n\\n「思想の治癒は健康の維持と同じくらい大切だ」\\n愚か者の喧騒が疲労と共に遠ざかっていく。彼は水の中に身を沈め、思考を浮かせ、心を澄ませた。\\n\\n「真理は不浄を避ける。純粋な者だけが近づくことができるんだ」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#しそうくんれん}思想訓練{RUBY_E#}", + "Desc": "装備キャラの会心ダメージ+#1[i]%。敵にあるデバフ1つにつき、その敵に対する装備キャラの会心ダメージ+#2[i]%、最大で#3[i]層累積できる。必殺技で敵を攻撃する時、装備キャラは「論弁」効果を獲得し、与ダメージ+#4[i]%、追加攻撃が敵の防御力を#5[i]%無視する、この効果は#6[i]ターン継続する。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.0800000000745058, + 3, + 0.3600000003352761, + 0.24000000022351742, + 2 + ] + }, + "2": { + "ParamList": [ + 0.2300000002142042, + 0.09000000008381903, + 3, + 0.4200000003911555, + 0.2800000002607703, + 2 + ] + }, + "3": { + "ParamList": [ + 0.26000000024214387, + 0.10000000009313226, + 3, + 0.48000000044703484, + 0.3200000002980232, + 2 + ] + }, + "4": { + "ParamList": [ + 0.29000000027008355, + 0.11000000010244548, + 3, + 0.5400000005029142, + 0.3600000003352761, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.12000000011175871, + 3, + 0.6000000005587935, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23021": { + "Name": "{RUBY_B#じんせい}人生{RUBY_E#}は{RUBY_B#あそ}遊{RUBY_E#}び", + "Desc": "一瞬の花火のように、彼女も1分あれば数十種類の色に変幻できる。\\n\\n花火大会が終わる頃、彼女は高いところに座り、足元で賑わう人々を退屈そうに眺めていた。\\n考えが次々と浮かび上がっては消え、狡猾な光が万華鏡のような瞳の中で駆け巡る。\\n「よし、今日はこれで遊ぼう!」\\n\\n彼女は金色がかった赤い裾をなびかせ、飛び跳ねながら人ごみの中を進んでいく。\\n「ちゃんとついてきてね。いっちばんキレイな花火がこれから始まるんだから!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#き}気{RUBY_E#}まぐれ", + "Desc": "装備キャラの会心ダメージ+#1[i]%。戦闘開始時、装備キャラは「仮面」を獲得する、#6[i]ターン継続。装備キャラに「仮面」がある時、装備キャラ以外の味方の会心率+#5[i]%、会心ダメージ+#2[i]%。装備キャラがSPを1回復するたびに、「虹色の炎」を1層獲得する(SPを回復する際、上限を超えた分もカウントされる)。「虹色の炎」が#4[i]層に達した後、すべての「虹色の炎」を解除し、「仮面」を獲得する、#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.3200000002980232, + 0.2800000002607703, + 4, + 4, + 0.10000000009313226, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3900000003632158, + 0.3500000003259629, + 4, + 4, + 0.11000000010244548, + 3 + ] + }, + "3": { + "ParamList": [ + 0.4600000004284084, + 0.4200000003911555, + 4, + 4, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.530000000493601, + 0.49000000045634806, + 4, + 4, + 0.13000000012107193, + 3 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.5600000005215406, + 4, + 4, + 0.14000000013038516, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23022": { + "Name": "{RUBY_B#とき}時間{RUBY_E#}の{RUBY_B#きおく}記憶{RUBY_E#}を{RUBY_B#さいこうちく}再構築{RUBY_E#}して", + "Desc": "ロウソクに火をつけてカードを広げ、かぐわしい香りに浸る——\\n破れた記憶が光影にたゆたい顔となった。\\n炎から這い出た亡霊が、彼女に思い出深い過去を語る。\\n彼女は時間を切り取って一刻を凝固させ、最も貴重な瞬間をクリスタルの如き永遠に変えた。\\n\\n「失ったものはあまりにも多く、残ったものはあまりにも少ない…私たちは時の残酷さに抗うため、記憶を育んでいく」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#けっしょう}結晶{RUBY_E#}", + "Desc": "装備キャラの効果命中+#1[i]%。装備キャラが風化、燃焼、感電、または裂創状態の敵にダメージを与える時、それぞれ「予見」を1層獲得する、最大で#4[i]層累積できる。一度の戦闘において、各種類の持続ダメージ系デバフがそれぞれ累積できる「予見」は1層のみ。「予見」1層につき、装備キャラの攻撃力+#2[i]%、与える持続ダメージが敵の防御力を#3[f1]%無視する。", + "Level": { + "1": { + "ParamList": [ + 0.40000000037252903, + 0.05000000004656613, + 0.07199999992735684, + 4 + ] + }, + "2": { + "ParamList": [ + 0.45000000041909516, + 0.060000000055879354, + 0.07899999944493175, + 4 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 0.07000000006519258, + 0.08599999966099858, + 4 + ] + }, + "4": { + "ParamList": [ + 0.5500000005122274, + 0.0800000000745058, + 0.09299999987706542, + 4 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.09000000008381903, + 0.10000000009313226, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23023": { + "Name": "{RUBY_B#うんめい}運命{RUBY_E#}は{RUBY_B#つね}常{RUBY_E#}に{RUBY_B#ふこうへい}不公平{RUBY_E#}", + "Desc": "最後のカードがオープンされた。落胆、怒り、諦め、落ち着き…様々な感情が相手プレイヤーたちの顔に浮かび上がる。\\n「せっかくテーブルに上ったんだ、もっとスリルを味わわないか?」 \\n彼はオールインに出た。負けを認めた者は罵りながらテーブルから降り、彼の大敗を期待する。\\n\\n勝ち負け、名声、運…いずれも気に留める必要はない。彼が夢中になるのは、命が震えるその瞬間だけ——\\n深淵か天国か。決めるのはただ一つの選択。\\n\\nチップが投げ出され、嘆声が上がる。ゲームが終わり、幻想的な満足感が一瞬込み上がっては消えた。\\n「オール・オア・ナッシング。けど僕に選択できる自由はない……」 ", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "オールイン", + "Desc": "装備キャラの防御力+#1[i]%。装備キャラが味方にバリアを付与する時、装備キャラの会心ダメージ+#2[i]%#3[i]ターン継続。装備キャラの追加攻撃が敵に命中する時、#4[i]%の基礎確率で攻撃を受ける敵の受けるダメージ+#5[f1]%#6[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903, + 2, + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.4600000004284084, + 0.4600000004284084, + 2, + 1.1500000001396984, + 0.11499999975785613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.5200000004842877, + 0.5200000004842877, + 2, + 1.3000000002793968, + 0.13000000012107193, + 2 + ] + }, + "4": { + "ParamList": [ + 0.5800000005401671, + 0.5800000005401671, + 2, + 1.4500000004190952, + 0.1449999997857958, + 2 + ] + }, + "5": { + "ParamList": [ + 0.6400000005960464, + 0.6400000005960464, + 2, + 1.6000000005587935, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23023, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 30, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 66, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 114, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 162, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 210, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 258, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 306, + "BaseDefenceAdd": 4.500000000465661 + } + ] + }, + "23024": { + "Name": "{RUBY_B#なが}流{RUBY_E#}れ{RUBY_B#ゆ}逝{RUBY_E#}く{RUBY_B#きし}岸{RUBY_E#}を{RUBY_B#ある}歩{RUBY_E#}いて", + "Desc": "「有」と「無」の狭間を流れ、その両岸を永久に洗う冷たき潮水はすべてを終着点に連れゆく。\\n\\n溺水した者はここで助けを求めた。悲しみ、喜び、幸せ、そして苦痛がその中に映る…彼女は、そのすべてを身をもって経験することはできないが、そのすべてを心の底から感じられる。\\n最果てにたどり着くまで、歩むべき道はまだ長く、聞くべき声もまだ多い。そして、変えるべきこともたくさん残っている。\\n\\n彼女は手を差し伸べ、溺水者を虚無の誘惑から救い出す。すると、一つ一つの幻影が、彼女の背後で次々と砕け散った。\\n彼女は歩き続ける。この夢幻なる世界の、存在しない終点を目指して。\\n\\n——そして、ここではいつも雨が降っている。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#わた}渡{RUBY_E#}し{RUBY_B#もり}守{RUBY_E#}", + "Desc": "装備キャラの会心ダメージ+#1[i]%。装備キャラの攻撃が敵に命中する時、敵を「泡影」状態にする、1ターン継続。この効果は装備キャラが攻撃を行うたびに、敵それぞれに1回まで発動できる。「泡影」状態の敵に対する装備キャラの与ダメージ+#2[i]%、さらに必殺技によるダメージ+#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23024, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23025": { + "Name": "{RUBY_B#ゆめ}夢{RUBY_E#}が{RUBY_B#かえ}帰{RUBY_E#}り{RUBY_B#つ}着{RUBY_E#}く{RUBY_B#ばしょ}場所{RUBY_E#}", + "Desc": "アスデナ星系の果て。記憶の海の激しい波に揺られ、1粒の火の粉のような彼女は、今にも嵐の中に消えてしまいそうだった。\\n「夢を見ることができない人が共感覚夢境に入るには、『死』に匹敵する代償が必要だって聞いた」\\n仲間の心配そうな声が耳元で響いている。彼女は深く息を吸い込むと、記憶域の中に潜り込んだ。\\n潜水具が静かに底へ沈んでいくにつれ、隙間から星のような小さな光が漏れ、すぐに無限の暗闇に呑み込まれていく。\\n\\n「なぜ死に向かう?」\\nますます深くなる記憶の海の中で、記憶域の生物が放つ微かな光が見える。それはまるで、遠くから彼女を淡々と見つめる目のようだった。\\n\\n夢は彼女にとってあまりにも遠いものだ。果てしない暗闇を虚しく見つめながら、その体と魂はとっくに憶質の重圧によって潰されそうになっていた。意識が徐々に薄れていく自覚はあったが、頭の中では僅かに残った記憶が何度も繰り返されている――\\n空を覆わんばかりのスウォームに前線を突破された直後、彼女は炎を纏いながらスウォームに向かって飛び立った。大地は騎士たちの漆黒の残骸で埋め尽くされ、その上にはスウォームの灰が雪のように降り積もっている。\\n彼女は花束を手に取る間もなく、犠牲となった勇猛な騎士たちに最後の祈りを捧げた。彼らの命は瞬く間に花開き、儚く散ってしまったのだ。まるで一連の遺伝子コードのように、彼らに与えられたのは数字だけで、自分の名前を持つことは生涯なかった。\\n\\n「なぜ生きる?」\\n死のような静寂の中、炎が海に溶けるように、彼女は1粒の火の粉となって、ひたすらに光に向かって進み続ける……\\nどのくらいの時間が経っただろうか。目を覚ました彼女は、真珠のように淡く光る「未来」を見た気がした。涙が頬を伝って零れ落ちる——\\n「あたしだけの…『夢』を見つけるため……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#さなぎ}蛹{RUBY_E#}を{RUBY_B#やぶ}破{RUBY_E#}り{RUBY_B#ほたる}蛍{RUBY_E#}は{RUBY_B#ま}舞{RUBY_E#}う", + "Desc": "装備キャラの撃破特効+#1[i]%。装備キャラが敵に弱点撃破ダメージを与える時、敵に「敗走」状態を付与する、#4[i]ターン継続。「敗走」状態の敵は速度-#3[i]%、装備キャラから受ける弱点撃破ダメージ+#2[f1]%。同系統のスキルは累積できない。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 0.20000000018626451, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 0.20000000018626451, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 0.20000000018626451, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23025, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23026": { + "Name": "{RUBY_B#ひかり}光{RUBY_E#}あふれる{RUBY_B#よる}夜{RUBY_E#}", + "Desc": "鏡の中で歳月が流れ、未熟だった少女は余裕の感じられる歌手へと成長した。\\n彼女は鏡の中の自分を見つめる。時間はすべてを変えてしまったが、その緑色の両目だけは、依然として湖のように穏やかで、揺るぎない信念を語っているかのようだ。\\n\\n「何だか機嫌がよさそうですね」\\n「ええ…今日は大事な『公演』があるから」\\n「そうですね。さあ、もうすぐ調和セレモニーのリハーサルが始まりますので、そろそろ準備室に移動しましょう」\\n……\\n\\n彼女は楽屋を出て、光り輝く劇場から離れていく。\\n「私の舞台はここではないわ」\\nそう言った彼女は、目を閉じて夜の闇の中に溶けていった。\\n「今までも、これからも、私の歌は……」\\n「希望を失った人々のためにある」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#なぐさ}慰{RUBY_E#}め", + "Desc": "味方が攻撃を行うたび、装備キャラは「朗唱」を1層獲得する。「朗唱」1層につき、装備キャラのEP回復効率+#1[f1]%、最大で#2[i]層累積できる。装備キャラが必殺技を発動する時、「朗唱」を解除し「華彩」を獲得する。「華彩」がある時、装備キャラの攻撃力+#4[i]%、味方全体の与ダメージ+#3[i]%#5[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.030000000027939677, + 5, + 0.24000000022351742, + 0.48000000044703484, + 1 + ] + }, + "2": { + "ParamList": [ + 0.034999999683350325, + 5, + 0.2800000002607703, + 0.6000000005587935, + 1 + ] + }, + "3": { + "ParamList": [ + 0.0400000000372529, + 5, + 0.3200000002980232, + 0.7200000006705523, + 1 + ] + }, + "4": { + "ParamList": [ + 0.04499999969266355, + 5, + 0.3600000003352761, + 0.840000000782311, + 1 + ] + }, + "5": { + "ParamList": [ + 0.05000000004656613, + 5, + 0.40000000037252903, + 0.9600000008940697, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23026, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23027": { + "Name": "{RUBY_B#にどめ}二度目{RUBY_E#}の{RUBY_B#せい}生{RUBY_E#}に{RUBY_B#む}向{RUBY_E#}かって", + "Desc": "彼は深海に落ちたような感覚に陥った。何もかもが自分から離れていく中、空虚な思考だけが藻掻き、苦しんでいる。\\n\\n恐怖、不安、孤独、暗闇、怒り…それらの感情は肉体と共に消え去るのではなく、別の形で機械の体に収められ、ますます重くなっていった。\\n\\n亡者の叫びが聞こえた。モーターが唸る音が聞こえた。そして青い血が飢えた心臓に流れていき…いくつかの残酷な記憶が蘇る。深く刻み込まれた憎しみは、暗闇の中で朧げな光となり、その光に導かれ、彼はようやく水面に浮かび上がった。\\n\\n重い瞼を開けると、目の前で火花が散った。次いで聞こえてきたのは、医者からの祝福の言葉だ——\\n「改めて、この世界へようこそ」\\n彼は両手を握り締めた——その手は今、冷たい鉄でできている……\\n彼はもう、自分のためには生きられないだろう。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#くなん}苦難{RUBY_E#}の{RUBY_B#こうこう}航行{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%、与える弱点撃破ダメージが敵の防御力を#3[i]%無視する。戦闘中、装備キャラの撃破特効が#2[i]%以上の場合、速度+#4[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 1.5000000004656613, + 0.20000000018626451, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 1.5000000004656613, + 0.2300000002142042, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 1.5000000004656613, + 0.26000000024214387, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 1.5000000004656613, + 0.29000000027008355, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 1, + 1.5000000004656613, + 0.3200000002980232, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23027, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23028": { + "Name": "されど{RUBY_B#きぼう}希望{RUBY_E#}の{RUBY_B#めい}銘{RUBY_E#}は{RUBY_B#むか}無価{RUBY_E#}", + "Desc": "「レディ・ヒスイ、あなたが物資や寄付金を送り続けてくれなければ、孤児院は今頃……」\\n彼女は子供たちの頭を優しく撫でながら、院長の言葉を遮った。\\n「私がいる限り、今後のことを心配する必要はないわ…そんな話を子供たちに聞かせて、心配をかける必要もね」\\n\\n子供たちは顔を上げ、最近あった面白い出来事、悩み、夢について語り始める。\\n「レディ・ヒスイ、次はいつ来てくれるの?」\\n「あんまり無理しないで、早く寝てね……」\\n「大きくなったらレディ・ヒスイみたいな人になるんだ!」\\n彼女は子供たちの澄んだ目を見て固まってしまった。\\n「私みたいな人……」\\n1人の子供が彼女にりんごを手渡した。「うん!他の人に光と希望を与えられるような人!」\\n\\n貧困、過ち、憂い、苦難…彼女は銀河を旅しながら、他人の質草を受け取り、等価の見返りを与えている。\\n生命は欲望のために存在し、欲望のために奔走し、欲望のために死ぬ――これは抗いようのない法則であり、生命の必然だ。\\n表と裏の顔を持つ慈善活動家、魂を質草にする悪徳商人…彼女は世間からさまざまな肩書を与えられているが、こうした行いの裏にある道義を理解しているのは、彼女自身だけである。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#しょうだく}承諾{RUBY_E#}", + "Desc": "装備キャラの会心率+#1[i]%。戦闘中、装備キャラの会心ダメージが#2[i]%を超えた時、超過した会心ダメージ#3[i]%につき、追加攻撃ダメージ+#4[i]%。この効果は最大で#5[i]層累積できる。戦闘開始時および装備キャラが通常攻撃を行った後、追加攻撃ダメージと必殺技によるダメージがターゲットの防御力を#6[i]%無視する、#7[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1.2000000001862645, + 0.20000000018626451, + 0.12000000011175871, + 4, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.1900000001769513, + 1.2000000001862645, + 0.20000000018626451, + 0.14000000013038516, + 4, + 0.24000000022351742, + 2 + ] + }, + "3": { + "ParamList": [ + 0.22000000020489097, + 1.2000000001862645, + 0.20000000018626451, + 0.1600000001490116, + 4, + 0.2800000002607703, + 2 + ] + }, + "4": { + "ParamList": [ + 0.25000000023283064, + 1.2000000001862645, + 0.20000000018626451, + 0.18000000016763806, + 4, + 0.3200000002980232, + 2 + ] + }, + "5": { + "ParamList": [ + 0.2800000002607703, + 1.2000000001862645, + 0.20000000018626451, + 0.20000000018626451, + 4, + 0.3600000003352761, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23028, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23029": { + "Name": "{RUBY_B#いくどめ}幾度目{RUBY_E#}かの{RUBY_B#はる}春{RUBY_E#}", + "Desc": "幾度かのにわか雨が過ぎ、初春の空気が満ちると、青々とした草が盛んに成長を始める。\\n「これで何度目の春でしょうか」\\n彼は初めて戦場に赴いた若い兵士たちのことを思い浮かべる。毎年顔ぶれは新しくなるが、彼らは同じように生気と希望に満ち溢れていた。\\nしかし、柳の枝を折り尽くすほど待っていようと、彼らが最後に持ち帰るのは…二度と溶けることのない氷霜だけだ。\\n\\n木漏れ日が顔に当たり、彼は鳥の囀りの中で目を閉じた。\\n——「結局、残された者が一番寂しいんですよね」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#せじ}世事{RUBY_E#}は{RUBY_B#あと}跡{RUBY_E#}を{RUBY_B#のこ}残{RUBY_E#}さず", + "Desc": "装備キャラの効果命中+#1[i]%。装備キャラが通常攻撃、戦闘スキル、または必殺技を発動して敵に攻撃した後、#2[i]%の基礎確率で敵を「甲卸」状態にする。\\n「甲卸」状態の敵の受けるダメージ+#3[i]%#4[i]ターン継続。ターゲットが装備キャラによって持続ダメージ系デバフを付与されている場合、#5[i]%の基礎確率で装備キャラが付与した「甲卸」状態を「窮寇」状態に強化し、さらに敵の受けるダメージ+#6[i]%#4[i]ターン継続。\\n敵に「窮寇」状態がある時、装備キャラはその敵に「甲卸」状態を付与できない。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935, + 0.10000000009313226, + 2, + 0.6000000005587935, + 0.14000000013038516 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.6000000005587935, + 0.12000000011175871, + 2, + 0.6000000005587935, + 0.1600000001490116 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.14000000013038516, + 2, + 0.6000000005587935, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.6000000005587935, + 0.1600000001490116, + 2, + 0.6000000005587935, + 0.20000000018626451 + ] + }, + "5": { + "ParamList": [ + 1, + 0.6000000005587935, + 0.18000000016763806, + 2, + 0.6000000005587935, + 0.22000000020489097 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23029, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23030": { + "Name": "{RUBY_B#ゆうひ}夕日{RUBY_E#}に{RUBY_B#ま}舞{RUBY_E#}う", + "Desc": "燦然と輝く夕焼けの中、屋根の上を颯爽と駆け抜ける人影が1つ。\\n\\n「リリ、ココ、誰が一番速いか競争しよう!」\\n守衛の目を避けるため、少女は風に吹かれながら、素早く動く小動物のように、最後の日の光を追いかけていく。\\n\\n暖かい夕風が少女の頬を撫で、残照が猫たちを色鮮やかに染め上げた。\\n「リリとココの勝ち!」\\n彼女は額の汗を拭い、猫たちを抱き上げる。\\n薄っすらと瞬く星々の下で、彼女の無防備な笑顔が、まるで空を縁取る夕焼けのように咲き誇った。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#むがむちゅう}無我夢中{RUBY_E#}", + "Desc": "装備キャラの攻撃を受ける確率が大アップし、会心ダメージ+#1[i]%。装備キャラが必殺技を発動した後、「炎舞」を1層獲得する、2ターン継続、最大で#2[i]層累積できる。「炎舞」1層につき、装備キャラの追加攻撃ダメージ+#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 2, + 0.3600000003352761, + 5 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 2, + 0.4200000003911555, + 5 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 2, + 0.48000000044703484, + 5 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 2, + 0.5400000005029142, + 5 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 2, + 0.6000000005587935, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23030, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23031": { + "Name": "{RUBY_B#われ}我{RUBY_E#}が{RUBY_B#ゆ}征{RUBY_E#}く{RUBY_B#じゅんしゅ}巡狩{RUBY_E#}の{RUBY_B#みち}道{RUBY_E#}", + "Desc": "「滑稽で哀れな奴隷ども……」\\n豊穣の民の軍勢が大挙して戦線まで押し寄せてきた。狼毒は洪水のように青丘軍を呑み込み、兵士たちの心の奥深くに眠る恐怖を呼び起こそうとする。様々な恐怖が幻となって襲い掛かると、兵士たちは武器を下ろし、前進することを躊躇い始めてしまった。\\nだが、歩離人の侮蔑的な声にも動じず、陣は鉄壁のように強固なままだ。その折、ゆっくりと前に進み出る1つの影。\\n彼女は緩慢な動作で身体を動かす。その背後にある旗は目に見えない殺気に煽られ、たなびいた。\\n「将軍、将軍だ……」\\n「飛霄将軍……」\\n「『天撃』将軍だ!」\\n小さな呟きはやがて一つ所に集まり、天を震わす鬨の声となる。\\n\\n「飛翔不墜、常勝不敗!」\\n立っているのは彼女1人のはずだ。しかし、その存在感は1つの軍を想起させるかのようだった。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#いふう}威風{RUBY_E#}", + "Desc": "装備キャラの会心率+#1[f1]%。装備キャラが追加攻撃を行う時、「流光」を1層獲得する。「流光」は最大で#3[i]層累積できる。「流光」が1層あるごとに、装備キャラの与える必殺技ダメージが敵の防御力を#2[i]%無視する。装備キャラのターン終了時、「流光」が1層解除される。", + "Level": { + "1": { + "ParamList": [ + 0.1500000001396984, + 0.2700000002514571, + 2 + ] + }, + "2": { + "ParamList": [ + 0.17499999981373549, + 0.3000000002793968, + 2 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.33000000030733645, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2249999998603016, + 0.3600000003352761, + 2 + ] + }, + "5": { + "ParamList": [ + 0.25000000023283064, + 0.3900000003632158, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23031, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23032": { + "Name": "{RUBY_B#せきじつ}昔日{RUBY_E#}の{RUBY_B#かお}香{RUBY_E#}りは{RUBY_B#いま}今{RUBY_E#}も{RUBY_B#なお}猶{RUBY_E#}", + "Desc": "「一つ、仕事の習慣を正すこと」\\n「二つ、賞罰規定を厳格に実施すること」\\n「もちろん、最優先すべきは複雑になっている利害関係を徹底的に洗うことです……」\\n景色を楽しんでいたのに、いつの間にか仕事のほうへ流れていってしまった思考のせいで、気疲れと苛立ちに襲われる。\\n\\n彼女は急いで携帯している安神香に火をつけた。\\n「世界はこんなに美しいのに、私はこうも荒んでいるだなんて…休日ぐらい煩わしいことは忘れないと……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "{RUBY_B#あんしん}安心{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%。装備キャラが必殺技を発動して敵を攻撃した後、その敵を「忘憂」状態にする、#5[i]ターン継続。「忘憂」状態の敵が受けるダメージ+#2[i]%。装備キャラの撃破特効が#3[i]%以上の場合、敵の受けるダメージアップ効果がさらに+#4[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226, + 1.5000000004656613, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.12000000011175871, + 1.5000000004656613, + 0.10000000009313226, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 1.5000000004656613, + 0.12000000011175871, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.1600000001490116, + 1.5000000004656613, + 0.14000000013038516, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 0.18000000016763806, + 1.5000000004656613, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23032, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23033": { + "Name": "{RUBY_B#にんぽうちょう}忍法帖{RUBY_E#}・{RUBY_B#りょうらんはま}繚乱破魔{RUBY_E#}", + "Desc": "「忍界」のとある地方、灰色の霧が街を包み込んでいる。\\n\\n「グアアーッ!」\\n少女の姿が怪物の間を駆け抜け、その残像は月明かりのない大地に鮮やかな色彩を残しているかのようだった。\\n\\n戦火の中で「忍邪」たちは悲鳴を上げ、恐怖で身体を震わせる。\\n「お前は…誰だ……」\\n「拙者の忍号は『乱破』。一心不乱、破邪顕正なり」\\n「忍邪」たちは互いに顔を見合わせ、四方へ逃げ出そうとした。\\n「お主ら、辞世の句を詠む覚悟はできたか――」\\n舞う手裏剣は一筋の光となり、危険な気配が相手を襲う。\\n「奥義・繚乱滅殺陣!」\\n\\n爆発は戦跡が残る夜と1人の忍侠の背を照らした。\\n彼女は大きく息を吸い込み、ヘビーメタルのように騒がしいネオンの光の中へ飛び込んだ。\\n「あのような邪祟は実に醜悪だ。繚乱忍侠の壮絶・狩猟はまだ終わらない……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#はじゃ}破邪{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%。戦闘に入る時EPを#2[f1]回復し、装備キャラが必殺技を発動した後「雷遁」を獲得する。通常攻撃を2回行った後、「雷遁」の効果を解除し、装備キャラの行動順を#3[i]%早める。なお、装備キャラが必殺技を発動すると「雷遁」はリセットされる。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 30, + 0.5000000004656613 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 32.50000000046566, + 0.5500000005122274 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 35, + 0.6000000005587935 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 37.50000000046566, + 0.6500000006053597 + ] + }, + "5": { + "ParamList": [ + 1, + 40, + 0.7000000006519258 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23033, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23034": { + "Name": "{RUBY_B#だいち}大地{RUBY_E#}より{RUBY_B#てん}天{RUBY_E#}を{RUBY_B#めざ}目指{RUBY_E#}して", + "Desc": "虚妄はすでに打ち砕かれた——彼は万物の太陽になろうとしたが、空から大地へと落ちたのだ。\\n\\n「今、アナタは痛みを感じていますか?」\\n心の中のもう一つの声が語りかける。\\n「ええ。それこそが、ワタシが感じるべきものです」\\n土埃の中に落ちた彼は、揺るぎない歩みを以って答えとした。\\n\\nやがて、大地を渡り歩きながら、絶え間なく湧き出る泉のような人々の苦しみを、再び目の当たりにすることになる。\\n道を阻む茨を乗り越えて、人々の声に耳を傾け——そうして彼は苦悩を経て、ようやく平穏を手に入れられたのだった。\\n\\n「墜落とは飛翔の別名」\\nそして八日目、彼は自らの「旅立ち」を赦した。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#あら}新{RUBY_E#}たなる{RUBY_B#たびだ}旅立{RUBY_E#}ち", + "Desc": "装備キャラが味方キャラ単体に戦闘スキル、または必殺技を発動すると、装備キャラはEPを#1[f1]回復し、スキルターゲットは「聖なる詠唱」を1層獲得する、#4[i]ターン継続。最大で#3[i]層累積できる。「聖なる詠唱」1層につき、所持者の与ダメージ+#2[i]%。装備キャラが味方キャラ単体に戦闘スキル、または必殺技を#5[i]回発動するたびに、SPを1回復する。", + "Level": { + "1": { + "ParamList": [ + 6, + 0.1500000001396984, + 3, + 3, + 2 + ] + }, + "2": { + "ParamList": [ + 6.500000000465661, + 0.17250000033527613, + 3, + 3, + 2 + ] + }, + "3": { + "ParamList": [ + 7, + 0.19499999983236194, + 3, + 3, + 2 + ] + }, + "4": { + "ParamList": [ + 7.500000000465661, + 0.21750000002793968, + 3, + 3, + 2 + ] + }, + "5": { + "ParamList": [ + 8, + 0.24000000022351742, + 3, + 3, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23034, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23035": { + "Name": "{RUBY_B#ちょうと}長途{RUBY_E#}はやがて{RUBY_B#きと}帰途{RUBY_E#}へと{RUBY_B#つづ}続{RUBY_E#}く", + "Desc": "「あなたは…誰?」少女は見慣れない自分にそっと触れた。\\n\\nあの日の炎が、どのように自分を焼き尽くし、宝石と扇子を灰に変えたのかを思い出す。\\n\\n以前、長い道のりを歩き、光を探していた時。\\n外からの声が彼女に呼びかけ、前へ前へと導き、重く暗い闇を進ませた。\\n内なる声が告げる——果たされていない誓い、守るべき約束、そしてまだ叶えられていない夢が、今もなお彼女を待っていると——\\n\\nそれらは炎の中で消えるどころか、むしろさらに輝きを増している。\\n\\n「それが私……」\\n彼女は終着点に立ち、もう振り返ることはない——\\n「かつての私であり、新しい私でもある」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#しんせい}新生{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%。敵が弱点撃破される時、#2[i]%の基礎確率で「着火」状態を付与し、敵が受ける弱点撃破ダメージ+#3[i]%#4[i]ターン継続、最大#5[i]層累積できる。", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 1, + 0.18000000016763806, + 2, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 1, + 0.21000000019557774, + 2, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 1, + 0.24000000022351742, + 2, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 1, + 0.2700000002514571, + 2, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 1, + 0.3000000002793968, + 2, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23035, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 30, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 66, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 114, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 162, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 210, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 258, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 306, + "BaseDefenceAdd": 4.500000000465661 + } + ] + }, + "23036": { + "Name": "{RUBY_B#こういん}光陰{RUBY_E#}を{RUBY_B#お}織{RUBY_E#}り{RUBY_B#おうごん}黄金{RUBY_E#}と{RUBY_B#な}成{RUBY_E#}す", + "Desc": "「この一筋は、戦士の犠牲」\\n「この一筋は英雄の成長」\\n「そして、この一筋は都市国家の繁栄」\\n……\\nラフトラが金糸を手繰り寄せ、彼女の指先に集めていく。\\n「いくつかの英雄の軌跡は…すでに断たれています……」\\n彼女は他の金糸を引き寄せて織り続ける。\\n「いくつかの英雄の運命は…まだ紡がれていくべきです……」\\n\\n神性を与えられた織機が回り続け、ラフトラたちは軽やかに舞い、千年の歳月が織機によって織られていく。彼女は待つことにすっかり慣れてしまった——\\n\\nその忍耐強さは、光陰を黄金へと織り上げる「インスピレーション」のためにあるのだ。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "{RUBY_B#せつりつ}設立{RUBY_E#}", + "Desc": "装備キャラの基礎速度+#1[i]。装備キャラまたはその記憶の精霊が攻撃を行った後、装備キャラに「錦を織って」を1層付与する。「錦を織って」1層につき、装備キャラおよびその記憶の精霊の会心ダメージ+#4[f1]%、最大で#2[i]層累積できる。「錦を織って」の層数が上限に達すると、1層につき、追加で通常攻撃ダメージ+#3[f1]%。", + "Level": { + "1": { + "ParamList": [ + 12, + 6, + 0.09000000008381903, + 0.09000000008381903 + ] + }, + "2": { + "ParamList": [ + 14, + 6, + 0.1049999997485429, + 0.1049999997485429 + ] + }, + "3": { + "ParamList": [ + 16, + 6, + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "4": { + "ParamList": [ + 18, + 6, + 0.13499999977648258, + 0.13499999977648258 + ] + }, + "5": { + "ParamList": [ + 20, + 6, + 0.1500000001396984, + 0.1500000001396984 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23036, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23037": { + "Name": "{RUBY_B#ふ}触{RUBY_E#}れてはならぬ{RUBY_B#りょういき}領域{RUBY_E#}へ", + "Desc": "「博識学会からのメッセージ、処理完了」\\n「模擬宇宙は正常に作動中……」\\n「著作全集の再版完了」\\n「しーっ、声が大きい。マダム・ヘルタを邪魔しちゃ駄目……」\\n\\n……銀河の辺境にある塔の中、人形たちは整然と雑務をこなしながら彼女を待っていた。\\n時間はあっという間に過ぎ、数多の人々が歴史が刻まれた夜空を流星のように横切り、瞬いたと思えばすぐに軌跡を残して消えていく。\\n「マダム・ヘルタ、引きこもってからどれくらい経ったのかな……」\\n「今もまだ思索を続けてたりして……」\\n\\n「ふうん、あなたたちはいくつか公理を発見しただけで終わりだと思ってたの?」\\n彼女はゆっくりと背伸びした。演算過程を書き記したノートから目を逸らした瞬間、新しい考えが再び芽生えてくる——\\n「解明できないものなんてない…徹底的に追及してみせるから」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "マインドゲーム", + "Desc": "装備キャラの会心率+#1[i]%。装備キャラが必殺技を発動する時、装備キャラの戦闘スキルおよび必殺技ダメージ+#4[i]%#5[i]ターン継続。装備キャラが必殺技を発動した後、その回の必殺技で消費したEPが#3[i]以上の場合、SPを1回復する。", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 2, + 140, + 0.6000000005587935, + 3 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 2, + 140, + 0.7000000006519258, + 3 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 2, + 140, + 0.8000000007450581, + 3 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 2, + 140, + 0.9000000008381903, + 3 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 2, + 140, + 1, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23037, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23038": { + "Name": "もしも{RUBY_B#とき}時{RUBY_E#}が{RUBY_B#はな}花{RUBY_E#}だったら", + "Desc": "「ママ、またお話を聞かせて!」\\n\\n「ええ、いいわよ、私の可愛いトリスビアス。なら、今日は時間の話をしましょう」\\n\\n「時間の話……?」\\n\\n「時間はね、花みたいなものよ」\\n\\n「野原に咲くタンポポの花みたいなもの?」\\n\\n「そうよ。タンポポの花のように、時間は成長し、咲き誇り、実を結ぶ。そして、人はその花びらを——『光陰』と呼ぶわ」\\n\\n「じゃあ、実を結んだ後は?」\\n\\n「その後は、千枚になって散りゆき、残された種が各地に飛んでいく……」\\n\\n「ママ、もしかしてそれが『未来』なの?」\\n\\n「ふふ、そうよ。未来はその後どうなってると思う?」\\n\\n「えっとね、お花がたーくさん咲いて、綺麗なお花の海ができてると思う!」\\n\\n母親が答えるや否や、窓から差し込む日差しが女の子の顔を照らし、優しい母の姿が夢の中へと消えた。\\n彼女は目を開ける——\\n「もちも時間が花だったら……」彼女はつぶやいた。\\n「未来はきっと花の海になります」続けて物静かな女の子が言った。\\n「へへっ、きっとそうだ!」2人の後、元気な女の子がそう告げ、目の前の傑作に歓声をあげた。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "{RUBY_B#きぼう}希望{RUBY_E#}", + "Desc": "装備キャラの会心ダメージ+#1[i]%。装備キャラが追加攻撃を行った後、さらにEPを#2[i]回復し、「啓示」を獲得する、#3[i]ターン継続。装備キャラが「啓示」を所持している場合、味方全体の会心ダメージ+#4[i]%。戦闘に入る時、装備キャラのEPが#5[i]回復し、「啓示」を獲得する、#6[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 12, + 2, + 0.48000000044703484, + 21, + 2 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 12, + 2, + 0.6000000005587935, + 21, + 2 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 12, + 2, + 0.7200000006705523, + 21, + 2 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 12, + 2, + 0.840000000782311, + 21, + 2 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 12, + 2, + 0.9600000008940697, + 21, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23038, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23039": { + "Name": "{RUBY_B#ぜんと}前途{RUBY_E#}{RUBY_B#も}燃{RUBY_E#}やす{RUBY_B#ち}血{RUBY_E#}の{RUBY_B#ごと}如{RUBY_E#}き{RUBY_B#ほのお}炎{RUBY_E#}", + "Desc": "冷たい露が刃に付着し、赤い線を描いて滑り落ちる。\\n錆びた臭いが蔓延する荒野では、いまだ戦の余燼が灰の上で揺らめいていた。\\n\\n「メデイモス、さっきのはまるで神のような戦いぶりだったな!」\\n上裸の戦士は武器を拭きながら、そう興奮気味に声をかけた。\\n\\n「モーディス様!僕もあなたのような、百戦百勝の戦士になりたいです!」\\n折れた剣を握っている子供は、彼を尊敬の眼差しで見つめている。\\n\\n「殿下、どうやらクレムノスに戻れる日もそう遠くないようですね」\\n老人は笑いながら杯を上げ、彼に敬意を表した。\\n\\n男は軽く頷き、1人野営地の隅へと移動する。\\n再生の痛みが肌を覆うも、明日には再びクレムノスの孤軍を率い、異郷に向かうことになる。\\nこの彷徨がいつ終わるのかは彼にもわからない。だが——その身が血と炎で焼き尽くされるまで、彼は王としての責務を背負い続けるのだろう。\\n\\n夜が更けた頃、彼は血のように赤いメーレをあおる。通りすがりの吟遊詩人が弦を爪弾き、不安定な旋律が空に揺蕩う——\\n「故郷とは夢に見る地であり…辿り着けるものではない」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#えんぼう}遠望{RUBY_E#}", + "Desc": "装備キャラの最大HP+#1[i]%、受ける治癒量+#6[i]%。戦闘スキルまたは必殺技を発動する時、自身の最大HP#2[f1]%分のHPを消費し、その回の攻撃の与ダメージ+#3[i]%。この効果で消費したHPが#4[i]を超えると、さらに与ダメージ+#5[i]%。\\n残りHPが足りない場合、この効果で装備キャラの残りHPが1になる。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.060000000055879354, + 0.3000000002793968, + 500, + 0.3000000002793968, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.06499999971129, + 0.3500000003259629, + 500, + 0.3500000003259629, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.07000000006519258, + 0.40000000037252903, + 500, + 0.40000000037252903, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.07499999972060323, + 0.45000000041909516, + 500, + 0.45000000041909516, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.0800000000745058, + 0.5000000004656613, + 500, + 0.5000000004656613, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23039, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 62.40000000037253, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 137.28000000026077, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 237.12000000011176, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 336.96000000089407, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 436.80000000074506, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 536.640000000596, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 636.480000000447, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23040": { + "Name": "{RUBY_B#えいけつ}永訣{RUBY_E#}よ{RUBY_B#うつく}美{RUBY_E#}しくあれ", + "Desc": "それは幾度目かの別れの儀式だった。\\n少女は零れ落ちる月光を踏みしめ、川辺で別れの花冠を編んだ。\\n\\n古の哀歌は冷たい空気の中で凍りつき、静かな川は遥か彼方の花畑へと流れ込む。\\n血に染まった巻物、錆びた長剣、詩が刺繍されたハンカチ…彼女は彼らの生涯の物語と共に、遺品を受け取った。\\n\\n「私の目はレンズのように、いつまでも星空を想っている」\\nこれは早逝した学者に捧げる墓碑銘。\\n「戦士たる者、人生も死も、冷静に見つめなければならない」\\nこれは無名の戦士が一生涯貫いた言葉。\\n「命とは光を放つ死にすぎない」\\nこれは永遠を追い求めた詩人が命で綴った最後の一文。\\n……\\n\\n「どの花も、誇らしげに咲いていた……」\\n川が静かに奏でる嘆きの中、彼女は亡き者に詩篇と花冠、そして思い出を捧げた——\\n「枯れゆくことが避けられないのなら、少なくとも…私たちの別れは、より美しいものであってほしい……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "{RUBY_B#めいこく}銘刻{RUBY_E#}", + "Desc": "装備キャラの最大HP+#1[i]%。装備キャラまたは装備キャラの記憶の精霊が自身のターンでHPを失った時、装備キャラは「冥花」を獲得する。「冥花」を持つ場合、装備キャラおよびその記憶の精霊によるダメージは、ターゲットの防御力を#2[i]%無視する。#3[i]ターン継続。\\nまた、装備キャラの記憶の精霊が消えた時、装備キャラの行動順が#4[i]%早まる。この効果は1回まで発動でき、装備キャラが必殺技を発動するたびに、発動可能回数がリセットされる。", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 2, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.375, + 0.3500000003259629, + 2, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.45000000041909516, + 0.40000000037252903, + 2, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.5250000001396984, + 0.45000000041909516, + 2, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 2, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23040, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23041": { + "Name": "{RUBY_B#せいめい}生命{RUBY_E#}、{RUBY_B#しょうめつ}焼滅{RUBY_E#}すべし", + "Desc": "密かに行われる実験の中、いつもさまざまな幻が押し寄せ、彼の足を引っ張った。\\n\\n誘惑的な声は囁く——「危険な課題は放棄しろ」、「人生を賭ける必要はない」と。\\n脅迫する冷たい声は言う——「生と死の境を彷徨う者は、やがて命が焼き尽くされる」と。\\nそして、怒りに満ちた告発する声が言う——「神を冒涜する罪人は残酷な処刑場に投げ込め」と。\\n\\n「人生という名の舞台は、ようやくカーテンコールを迎えます」\\n\\n彼は両目を閉じ、神の火種を握りしめると、瀕死の魂を苦痛に溺れさせた。\\n決然とした目、鼓動する心臓、そして完全な魂…彼は最も純粋で激しい熔錬に己が身を投じた——\\n\\nあらゆる声が沸き上がり、やがて静寂に変わる。\\n暗闇の中、輝く真実が彼の手の中で形を成した。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#ようれん}溶錬{RUBY_E#}", + "Desc": "装備キャラのターンが回ってきた時、EPを#5[i]回復する。敵に装備キャラが付与した弱点属性がある場合、装備キャラがその敵に与えるダメージ+#3[i]%。\\n敵が装備キャラの攻撃を受ける時、装備キャラがその敵の防御力を#2[i]%ダウンさせる。#4[i]ターン継続。同系統のスキルは累積できない。", + "Level": { + "1": { + "ParamList": [ + 0, + 0.12000000011175871, + 0.6000000005587935, + 2, + 10 + ] + }, + "2": { + "ParamList": [ + 0, + 0.1500000001396984, + 0.7000000006519258, + 2, + 10 + ] + }, + "3": { + "ParamList": [ + 0, + 0.18000000016763806, + 0.8000000007450581, + 2, + 10 + ] + }, + "4": { + "ParamList": [ + 0, + 0.21000000019557774, + 0.9000000008381903, + 2, + 10 + ] + }, + "5": { + "ParamList": [ + 0, + 0.24000000022351742, + 1, + 2, + 10 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23041, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23042": { + "Name": "{RUBY_B#そら}空{RUBY_E#}の{RUBY_B#にじ}虹{RUBY_E#}が{RUBY_B#き}消{RUBY_E#}えぬように", + "Desc": "「感情が雲なら、私たちはそれを背負う空のようなものです。空が曇っていれば気持ちも不安定になります」\\n医者は訪ねてきた者の苦痛に耳を傾け、癒しの囁きを与える。\\n「目を閉じて、ゆっくりと息を吸って…自分が暖かく柔らかい場所にいる想像をしてください」\\n\\nその言葉には魔力が宿っているようで、翼獣の翼の下に虹色の光が降り注ぐ。\\n「野原からふくそよ風が花の香りを運び、漂うしっとりした雲は陽の光に満ち溢れている……」\\n訪問者は徐々に美しき夢に包まれ、落ち着いた呼吸音だけが返ってくる。\\n\\n最後の患者を診療した後、医者はそっと病室のドアを閉めた。\\n\\n遠くではまだ果てしない永夜が渦巻き、数え切れないほどの廃墟が傷跡のように大地に残されていく。\\n\\n「来世では、黎明がすべての人々に降り注ぐといいな……」\\n旅立つ前に、彼女は空に向かって願いことをした——\\n「どうか、空に架かる虹が、消えませんように」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "{RUBY_B#ほうよう}包容{RUBY_E#}", + "Desc": "装備キャラの速度+#1[i]%。装備キャラが通常攻撃、戦闘スキルまたは必殺技を発動する時、味方それぞれの残りHP#2[f1]%分のHPを消費し、装備キャラの記憶の精霊が次の攻撃を行った後に消費したHP#6[f1]%分の付加ダメージを1回与える。なお、この付加ダメージの属性は装備キャラの記憶の精霊と同じものになる。その後、消費したHPのカウントはクリアされる。装備キャラの記憶の精霊が精霊スキルを発動する時、敵全体の受けるダメージ+#4[f1]%#5[i]ターン継続。同系統のスキルは累積できない。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.010000000009313226, + 0, + 0.18000000016763806, + 2, + 2.5000000004656613 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.012500000186264515, + 0, + 0.2249999998603016, + 2, + 3.1249999997671694 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.014999999664723873, + 0, + 0.2700000002514571, + 2, + 3.750000000698492 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.017499999841675162, + 0, + 0.31499999994412065, + 2, + 4.375 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.02000000001862645, + 0, + 0.3600000003352761, + 2, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23042, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23043": { + "Name": "{RUBY_B#かぜ}風{RUBY_E#}に{RUBY_B#たゆた}揺蕩{RUBY_E#}う{RUBY_B#きょげん}虚言{RUBY_E#}", + "Desc": "猫耳の少女は屋根の上で体を伸ばし、夜の闇へと滑り込んだ。\\n千年もの間眠っていた宝庫の中で、少女は軽やかに移動し、貴重な宝物を抱きかかえ、音もなく逃げていった。\\n「あたしは愚かな運命なんかに掴まったりしないよ!」\\n\\n廃墟の風は荒野の匂いを帯び、少女のフードを揺らす。\\n冷たい石を枕にし、ざらついた干しパンを無理やり飲み込みながら、彼女は指の上でコインを転がしていた。\\n\\n遠くから微かな音が耳に届く。黎明に照らされた聖都では、人々が祝宴と温もりを楽しんでいた。\\n「あとどれくらいかな…1年?それとも1万年?」\\n\\n彼女は伸びをし、不安を振り払った。\\n「ふん、最後に笑うのはいつだってこのセファリアだよ」\\n\\n金色の稲妻が空を駆け、少女の宣言が風に乗って漂う\\n——千年前と同じように。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#ぎまん}欺瞞{RUBY_E#}", + "Desc": "装備キャラの速度+#1[i]%。装備キャラが攻撃を行った後、#2[i]%の基礎確率で敵それぞれを「茫然」状態にする。「茫然」状態の敵の防御力-#3[i]%#4[i]ターン継続。\\nまた、装備キャラの速度が#7[i]以上の場合、#5[i]%の基礎確率で敵それぞれを「盗難」状態にする。「盗難」状態の敵の防御力-#6[i]%#4[i]ターン継続。\\n「茫然」または「盗難」状態が重複して付与された場合、最後に付与されたもののみが有効となる。", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 1.2000000001862645, + 0.1600000001490116, + 2, + 1.2000000001862645, + 0.0800000000745058, + 170 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 1.2000000001862645, + 0.18000000016763806, + 2, + 1.2000000001862645, + 0.09000000008381903, + 170 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1.2000000001862645, + 0.20000000018626451, + 2, + 1.2000000001862645, + 0.10000000009313226, + 170 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 1.2000000001862645, + 0.22000000020489097, + 2, + 1.2000000001862645, + 0.11000000010244548, + 170 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 1.2000000001862645, + 0.24000000022351742, + 2, + 1.2000000001862645, + 0.12000000011175871, + 170 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23043, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23044": { + "Name": "{RUBY_B#も}燃{RUBY_E#}え{RUBY_B#さか}盛{RUBY_E#}る{RUBY_B#れいめい}黎明{RUBY_E#}のように", + "Desc": "男が再び旅の終点に立つと、その姿は金色の陽光に呑み込まれていった。\\n\\n「黄金の血も…救世の希望も…本当は……」\\n\\n彼の頬に伝う前に、その涙は蒸発して消えた。\\n「ファイちゃん、また明日!」\\n「救世主よ、最後まで生きろ」\\n「オンパロスの新しい黎明になって……」\\n\\n……\\n仲間たちの願いが空しく響く中、無名の英雄は打ち砕かれ、無惨な死が露わになった。\\n\\n「怒りの炎が、この不条理な運命を焼き尽くせないのなら……」\\n彼は幾度となく山頂を目指し、そして幾度となく転げ落ち、砕け散った——\\n\\n「せめて、その運命と共に燃え尽きよう!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "喪失", + "Desc": "装備キャラの基礎速度+#1[i]、ダメージを与えた時、敵の防御力を#2[i]%無視する。装備キャラが必殺技を発動した後、「烈日」を獲得する。この効果はターンが回ってきた時に解除される。「烈日」を所持している場合、装備キャラの与ダメージ+#3[i]%。", + "Level": { + "1": { + "ParamList": [ + 12, + 0.18000000016763806, + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 14, + 0.2249999998603016, + 0.7800000007264316 + ] + }, + "3": { + "ParamList": [ + 16, + 0.2700000002514571, + 0.9600000008940697 + ] + }, + "4": { + "ParamList": [ + 18, + 0.31499999994412065, + 1.1400000001303852 + ] + }, + "5": { + "ParamList": [ + 20, + 0.3600000003352761, + 1.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23044, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.200000000186265, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 68.64000000059605, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 118.56000000052154, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168.48000000044703, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 218.40000000037253, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 268.320000000298, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 318.2400000002235, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23045": { + "Name": "{RUBY_B#むく}報{RUBY_E#}われぬ{RUBY_B#たいかん}戴冠{RUBY_E#}", + "Desc": "幻境の中、あの日の会話が少女の耳元で蘇る。\\n\\n「マーリン、この剣を抜くのは驚くほど簡単でしたよ」\\n「君にとってはそうだろうね。何しろこの私が指導者なのだから。民が望む王になるのも容易いことさ。でもアルトリア…本当に難しいのはこれからだよ。だって、君はいつまでも皆の期待に応えられるわけじゃないからね」\\n「その時は、もっとふさわしい王をまた立てればいいでしょう。私は潔く身を引きます」\\n「もし『常に皆の期待に応えられるような人』なんて、この世に存在しないとしたら?」\\n「…ならば、皆の期待に応えられるよう全力で努力し続けるまでです」\\n\\n今となっては、少女も知っている。その選択がいかに深い悲劇に繋がるのかを。もし今、すべてをやり直せたとしたら、彼女はその道を選ばなかっただろうか?\\n\\n王は無言のまま剣の柄を握りしめ、\\n再び剣を抜く。それを収めていた岩が重い音を響かせた。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "騎士王", + "Desc": "装備キャラの会心ダメージ+#1[i]%。必殺技を発動した時、装備キャラの攻撃力+#6[i]%。なお、装備キャラの最大EPが#3[i]以上の場合、固定で最大EPの#5[i]%分回復し、さらに装備キャラの攻撃力+#2[i]%#4[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.40000000037252903, + 300, + 2, + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "2": { + "ParamList": [ + 0.45000000041909516, + 0.5000000004656613, + 300, + 2, + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.5400000005029142, + 0.6000000005587935, + 300, + 2, + 0.10000000009313226, + 0.6000000005587935 + ] + }, + "4": { + "ParamList": [ + 0.6300000005867332, + 0.7000000006519258, + 300, + 2, + 0.10000000009313226, + 0.7000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.7200000006705523, + 0.8000000007450581, + 300, + 2, + 0.10000000009313226, + 0.8000000007450581 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23045, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23046": { + "Name": "{RUBY_B#りそう}理想{RUBY_E#}を{RUBY_B#や}焼{RUBY_E#}く{RUBY_B#ならく}奈落{RUBY_E#}で", + "Desc": "平原を焼き尽くす業火。誰かの理想が灰になり、また誰かの理想が燃え上がる。\\n\\n守護者は銃弾と弓矢の隙間を縫うように駆け抜ける。\\nここには、彼に救える者などいない。されどここには、彼が救いたいと願う者だけがいる。\\n\\n1人を救えば別の1人を殺し、万人を救えば別の万人を殺すに等しい。互いに踏み躙る運命もまた、人類存続の一環だ。\\n\\n守護者はすべてに慣れきっている。その足取りには一片の躊躇もない。\\n両足を覆う意志は風のごとく、両腕を覆う意志は炎のごとく。\\n\\n彼は今もなお、救いという名の奇跡を探し続けている。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "赤原猟兵", + "Desc": "装備キャラの会心率+#1[i]%。戦闘に入る時、味方の最大SPが#2[i]以上の場合、装備キャラの攻撃力+#3[i]%。装備キャラが戦闘スキルを発動するたびに、装備キャラの攻撃力+#4[i]%、最大#5[i]層まで累積できる。", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 6, + 0.40000000037252903, + 0.10000000009313226, + 4 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 6, + 0.5000000004656613, + 0.12499999976716936, + 4 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 6, + 0.6000000005587935, + 0.1500000001396984, + 4 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 6, + 0.7000000006519258, + 0.17499999981373549, + 4 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 6, + 0.8000000007450581, + 0.20000000018626451, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23046, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "24000": { + "Name": "とある{RUBY_B#アイオーン}星神{RUBY_E#}の{RUBY_B#うんらく}殞落{RUBY_E#}を{RUBY_B#しる}記{RUBY_E#}す", + "Desc": "一筋の光から始まった。\\n其らは墜ちる、消滅の脅威が見下す。\\n其らは自己複製を止め、先を争ってお互いを抱擁せざるを得なかった、\\n繁殖の権利を対価に、生存の可能性を掴もうと試みた。\\n其らは手を取り合い、今までにない程に団結した。\\n——しかし、運命は突然途絶え、\\n其らは、真の死へと向かった。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "{RUBY_B#ひ}火{RUBY_E#}に{RUBY_B#と}飛{RUBY_E#}び{RUBY_B#こ}込{RUBY_E#}む", + "Desc": "装備キャラが攻撃した時、今回の戦闘中、装備キャラの攻撃力+#1[i]%、最大で#2[i]回累積できる。装備キャラが敵を弱点撃破した後、与ダメージ+#3[i]%#4[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 4, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 4, + 0.1500000001396984, + 2 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 4, + 0.18000000016763806, + 2 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 4, + 0.21000000019557774, + 2 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 4, + 0.24000000022351742, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24001": { + "Name": "{RUBY_B#せいかいじゅんこう}星海巡航{RUBY_E#}", + "Desc": "星海を往来する、\\n其の速度は七色の閃光が如く一瞬。\\n不死の忌み物を討ち、\\n幻の解薬を探し、\\n解脱の道を求める。\\n其の航海は、破られぬ誓いのように、\\n永遠に終わらない。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "{RUBY_B#りょうちく}猟逐{RUBY_E#}", + "Desc": "装備キャラの会心率+#1[i]%。残りHPが#2[i]%以下の敵に対して、さらに装備キャラの会心率+#3[i]%。装備キャラが敵を倒した後、攻撃力+#4[i]%#5[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.5000000004656613, + 0.0800000000745058, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 0.10000000009313226, + 0.25000000023283064, + 2 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 0.12000000011175871, + 0.3000000002793968, + 2 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 0.14000000013038516, + 0.3500000003259629, + 2 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.1600000001490116, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "24002": { + "Name": "{RUBY_B#きおく}記憶{RUBY_E#}の{RUBY_B#そざい}素材{RUBY_E#}", + "Desc": "宇宙はまるでゴミが山積みの荒地。\\nたまに琳琅があっても、拾う人がいない。\\n其は、過去の隙間を捲り、記憶の種を選ぶ。\\n——新しい命が芽吹いたら、その種は死んでいなければならない。\\nピンク、青、白の宝石が持ってこられ、\\n其の苗圃の中で軽やかに瞬く。\\nしかし、宇宙は依然として謎のように沈黙している。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "{RUBY_B#ちんぞう}珍蔵{RUBY_E#}", + "Desc": "装備キャラの効果抵抗+#1[i]%。装備キャラが攻撃を受けた後、バリアを所持していない場合、装備キャラの最大HP#2[i]%分の耐久値を持つバリアを1つ獲得する、#3[i]ターン継続。この効果は#4[i]ターン回ってくるたびに1回まで発動できる。装備キャラがバリアを所持する場合、自身の受けるダメージ-#5[i]%。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.1600000001490116, + 2, + 3, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 2, + 3, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742, + 2, + 3, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703, + 2, + 3, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232, + 2, + 3, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "24003": { + "Name": "{RUBY_B#こどく}孤独{RUBY_E#}の{RUBY_B#いや}癒{RUBY_E#}し", + "Desc": "神秘的な存在、無相にして無形。\\n万物は空虚であり、一瞬の夢にすぎない。\\n自ら滅するものは滅び、生きたい者は生きる。\\n消えゆくものが輝き、枯れるものが水を満たされる。\\n混沌の救済を悲しみ、霊薬は虚影を大きくする。\\n星の暗黒面に背を向け、いたずらに瓶に封印する。\\n\\n「このような逆説に我らは誇りを感じる。」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "{RUBY_B#こんとん}混沌{RUBY_E#}の{RUBY_B#れいやく}霊薬{RUBY_E#}", + "Desc": "装備キャラの撃破特効+#1[i]%。装備キャラが必殺技を発動する時、装備キャラの持続ダメージ+#2[i]%#3[i]ターン継続。装備キャラに持続ダメージ系デバフを付与された敵が倒される時、装備キャラのEPを#4[f1]回復する。", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742, + 2, + 4 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3000000002793968, + 2, + 4.500000000465661 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761, + 2, + 5 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555, + 2, + 5.500000000465661 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484, + 2, + 6 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24004": { + "Name": "{RUBY_B#た}絶{RUBY_E#}え{RUBY_B#ま}間{RUBY_E#}ない{RUBY_B#えんざん}演算{RUBY_E#}", + "Desc": "輝くデータが洪水のように、\\n永遠に虚空を漂う其の頭の中に流れ込む。\\n其は過去と未来の万物を記号に変え、\\n始まりの瞬間に終わり時を推測する。\\n知識、答え、真実……\\n情報の迷霧の中から眩い光が立ち昇り、\\n其の前ではすべてが明らかになった。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "{RUBY_B#きょうかい}境界{RUBY_E#}なき{RUBY_B#しこう}思考{RUBY_E#}", + "Desc": "装備キャラの攻撃力+#1[i]%。攻撃を行った後、命中した敵1体につき、さらに攻撃力+#2[i]%。この効果は最大で5回累積でき、次の攻撃を行った後まで継続。攻撃が#3[i]体以上の敵に命中した場合、自身の速度+#4[i]%#5[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529, + 3, + 0.0800000000745058, + 1 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.05000000004656613, + 3, + 0.10000000009313226, + 1 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.060000000055879354, + 3, + 0.12000000011175871, + 1 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.07000000006519258, + 3, + 0.14000000013038516, + 1 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 3, + 0.1600000001490116, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24005": { + "Name": "{RUBY_B#つ}尽{RUBY_E#}きぬ{RUBY_B#ついおく}追憶{RUBY_E#}", + "Desc": "繁栄したもの、荒れ果てたもの、短く終えるもの、長く生きるもの…宇宙に存在する星々では、常に無数の出来事が起こっている。\\n凝結した歴史は触れるだけで手の中に溶け、涙となって世界の瞳から流れ落ちる——\\n\\nある人は、その涙はとても重く、凝縮された月日は「永遠」さえも色褪せるほどだと言う。\\nまたある人は、その物語はとても美しく、透き通った悲しさや、明るく静かな嬉しさなど、感情に一切の偽りがないと言う。\\n\\n銀河は静かに流れる。其は沈黙したまま、ただ見つめる——\\n見つめて、それらが「記憶」になるのを待っているのだ。", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "{RUBY_B#ちょうしゅう}徴収{RUBY_E#}", + "Desc": "装備キャラの速度+#1[f1]%。装備キャラが戦闘スキルを発動した後、味方全体の与ダメージ+#2[i]%#3[i]ターン継続。", + "Level": { + "1": { + "ParamList": [ + 0.060000000055879354, + 0.0800000000745058, + 3 + ] + }, + "2": { + "ParamList": [ + 0.07499999972060323, + 0.10000000009313226, + 3 + ] + }, + "3": { + "ParamList": [ + 0.09000000008381903, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.1049999997485429, + 0.14000000013038516, + 3 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.1600000001490116, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + } +} \ No newline at end of file diff --git a/data/lightcones.kr.json b/data/lightcones.kr.json new file mode 100644 index 0000000..f4c94f8 --- /dev/null +++ b/data/lightcones.kr.json @@ -0,0 +1,35106 @@ +{ + "20000": { + "Name": "화살촉", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「당겨진 화살과 활을 들고 사슴을 쫓을 때, 사냥꾼의 두 눈이 가장 맑다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "위기", + "Desc": "전투 시작 시 장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20001": { + "Name": "풍작", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「생명은 질서의 정도가 어떤 역치(閾値)를 초월한 존재. 그 탄생은 적막한 우주의 마지막 해답이며, 오래된 혼돈의 시대가 돌아오지 않음을 선포한다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "번성", + "Desc": "장착한 캐릭터가 전투 스킬과 필살기 발동 시 치유량이 #1[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20002": { + "Name": "천경", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「만물의 소실은 탄생만큼이나 자연스럽다. 시간의 흐름 속에서 모든 유형의 것들은 소각되어 먼지가 된다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "파멸", + "Desc": "장착한 캐릭터가 일반 공격과 전투 스킬로 가하는 피해가 #1[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20003": { + "Name": "앰버", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「시간에 속박되지 않은 것만이 세월의 흐름에서 영원하리」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "정체", + "Desc": "장착한 캐릭터의 방어력이 #1[i]% 증가한다. 장착한 캐릭터의 현재 HP 백분율이 #2[i]% 미만일 경우 방어력이 추가로 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.5000000004656613, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.5000000004656613, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 20003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "20004": { + "Name": "그윽", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「그는 공허를 응시했다. 마치 만물의 종말에서 높이 걸린 검은 태양처럼, 또 마치 모든 의문에 해답을 내놓는 입처럼. 그 입이 말하길: ███ █ ███ ██ 이 대답은 인간의 어떤 언어로도 설명할 수 없었으나 모두가 이를 이해할 수 있었다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "타락", + "Desc": "전투 시작 시 장착한 캐릭터의 효과 명중이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 3 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 3 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20005": { + "Name": "합창", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「손가락을 모으면 주먹이 되고, 한마음 한뜻으로 모이면 힘이 되리라. 나 자신을 바쳐 더 높은 존재인 우리를 얻으리라」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "협력", + "Desc": "전투 진입 후 모든 아군의 공격력이 #1[i]% 증가한다. 같은 유형의 스킬 효과는 중복 적용되지 않는다", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20006": { + "Name": "아카이브", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「인류가 곧 멸망한다 해도, 도서관은 쓸쓸히 등잔을 밝히고, 움직이지 않은 채, 묵묵히 책들을 소장할 것이다. 쓸모없으나 오염되지 않은 채로」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "박식", + "Desc": "장착한 캐릭터가 필살기로 가하는 피해가 #1[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20007": { + "Name": "시위를 떠난 화살", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「전쟁은 시작되었고 다음 화살의 목표를 찾아야 한다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "호각", + "Desc": "장착한 캐릭터는 적을 처치한 후 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 3 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 3 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20008": { + "Name": "알찬 열매", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명\\n\\n「목이 마르면 모든 것이 달콤하다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "감미", + "Desc": "전투 시작 시 즉시 모든 아군의 에너지를 #1[i]pt 회복한다", + "Level": { + "1": { + "ParamList": [ + 6 + ] + }, + "2": { + "ParamList": [ + 7.500000000465661 + ] + }, + "3": { + "ParamList": [ + 9 + ] + }, + "4": { + "ParamList": [ + 10.500000000465661 + ] + }, + "5": { + "ParamList": [ + 12 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20009": { + "Name": "무너진 행복", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「어떤 사물을 파괴할 수 있는 능력이 있는 사람만이 진정한 지배자이다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "토벌", + "Desc": "장착한 캐릭터는 현재 HP 백분율이 #1[i]%보다 높은 적을 공격할 경우 가하는 피해가 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.5000000004656613, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.5000000004656613, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.5000000004656613, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20010": { + "Name": "수비", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「성벽 뒤의 강인한 시민들이 방어도 승리의 수단임을 증명했다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "부흥", + "Desc": "장착한 캐릭터가 필살기 발동 시 HP 최대치 #1[i]%만큼의 HP를 회복한다", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20011": { + "Name": "심연의 고리", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「도망자는 이 고통을 아무도 이해하지 못할 거라 여기며 과거의 환영에서 벗어나려고 한다. 그가 고개를 들었을 때, 미래의 자신은 무서운 두 눈을 뜨고 있었다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "추궁", + "Desc": "장착한 캐릭터가 감속 상태의 적에게 가하는 피해가 #1[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20012": { + "Name": "맞물린 톱니", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「이보다 더 조화로운 소리는 없을 것이다. 모두가 각자의 위치에 있고, 거대한 기계는 소리에 따라 움직인다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "속결", + "Desc": "장착한 캐릭터가 공격 발동 혹은 피격 후 추가로 에너지를 #1[i]pt 회복한다. 해당 효과는 단일 턴 내 중복 발동되지 않는다", + "Level": { + "1": { + "ParamList": [ + 4 + ] + }, + "2": { + "ParamList": [ + 5 + ] + }, + "3": { + "ParamList": [ + 6 + ] + }, + "4": { + "ParamList": [ + 7 + ] + }, + "5": { + "ParamList": [ + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20013": { + "Name": "영험한 열쇠", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「지식은 영원히 저 문 뒤에 있고 열쇠를 주는 이도 없다. 가장 원하는 사람이 손에 넣을 수 있을 뿐」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "깨달음", + "Desc": "장착한 캐릭터가 전투 스킬 발동 후 추가로 에너지를 #1[i]pt 회복한다. 해당 효과는 단일 턴 내 중복 발동되지 않는다", + "Level": { + "1": { + "ParamList": [ + 8 + ] + }, + "2": { + "ParamList": [ + 9 + ] + }, + "3": { + "ParamList": [ + 10 + ] + }, + "4": { + "ParamList": [ + 11 + ] + }, + "5": { + "ParamList": [ + 12 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20014": { + "Name": "대립", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「자유를 위해 싸우는 사람은 죽지 않는다. 그의 이야기는 영원히 노래로 불릴 것이다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Rogue", + "Refinements": { + "Name": "연맹", + "Desc": "장착한 캐릭터는 적을 처치한 후 속도가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.12000000011175871, + 2 + ] + }, + "3": { + "ParamList": [ + 0.14000000013038516, + 2 + ] + }, + "4": { + "ParamList": [ + 0.1600000001490116, + 2 + ] + }, + "5": { + "ParamList": [ + 0.18000000016763806, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20015": { + "Name": "증식", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「생명이 그 의미를 잃을 때, 계속 생명을 주시옵소서」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Priest", + "Refinements": { + "Name": "풍요의 백성", + "Desc": "장착한 캐릭터가 일반 공격 발동 후 다음번 행동 게이지가 #1[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20016": { + "Name": "전멸", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「어떻게 해야 행성의 과거를 더 완벽하게 만들 수 있을까? 지금, 바로, 갈기갈기 찢어버리는 거야」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warrior", + "Refinements": { + "Name": "군단", + "Desc": "장착한 캐릭터의 현재 HP 백분율이 #1[i]% 미만일 경우 캐릭터의 치명타 확률이 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.8000000007450581, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.8000000007450581, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.8000000007450581, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.8000000007450581, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 20016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "20017": { + "Name": "강토 개척", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「의지할 곳 없는 나날이 종지부를 찍었습니다, 컴퍼니는 여러분의 손을 잡고 도울 것입니다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Knight", + "Refinements": { + "Name": "컴퍼니", + "Desc": "장착한 캐릭터는 적의 약점을 격파할 시 자신 HP 최대치 #1[i]%만큼의 HP를 회복한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 12, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 45.60000000055879, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 64.80000000074506, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 84, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.20000000018626, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 122.40000000037253, + "BaseAttackAdd": 1.800000000745058, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20018": { + "Name": "숨은 그림자", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「공허가 우리를 찾아낼 수도 있지만, 못 찾아낼 가능성이 높습니다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Warlock", + "Refinements": { + "Name": "장치", + "Desc": "전투 스킬 발동 후, 장착한 캐릭터의 다음 일반 공격 1회는 적에게 자신 공격력 #1[i]%만큼의 추가 피해를 가한다", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 0.7500000006984919 + ] + }, + "3": { + "ParamList": [ + 0.9000000008381903 + ] + }, + "4": { + "ParamList": [ + 1.0500000000465661 + ] + }, + "5": { + "ParamList": [ + 1.2000000001862645 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20019": { + "Name": "어울림", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「불협화음을 없애는 것보다 유쾌한 일이 또 있을까?」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Shaman", + "Refinements": { + "Name": "가족", + "Desc": "전투 진입 시, 모든 아군의 속도가 #1[i]pt 증가한다. 지속 시간: #2[i]턴", + "Level": { + "1": { + "ParamList": [ + 12, + 1 + ] + }, + "2": { + "ParamList": [ + 14, + 1 + ] + }, + "3": { + "ParamList": [ + 16, + 1 + ] + }, + "4": { + "ParamList": [ + 18, + 1 + ] + }, + "5": { + "ParamList": [ + 20, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20020": { + "Name": "식견", + "Desc": "세월에서 추출한 희박한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「지혜의 인간이 인간의 신분을 버리지 못한다면, 그는 지혜로부터 버림받을 것이다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Mage", + "Refinements": { + "Name": "천재", + "Desc": "장착한 캐릭터가 필살기 발동 시 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 2 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 2 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 2 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20021": { + "Name": "불타는 그림자", + "Desc": "세월에서 추출한 미약한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「사람들은 항상 아름답지 않은 과거를 지우려 한다. 이게 바로 기억의 본질이다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Memory", + "Refinements": { + "Name": "미화", + "Desc": "장착한 캐릭터가 처음으로 기억 정령 소환 시 전투 스킬 포인트를 #1[i]pt 회복하고 자신의 에너지를 #2[i]pt 회복한다", + "Level": { + "1": { + "ParamList": [ + 1, + 12 + ] + }, + "2": { + "ParamList": [ + 1, + 14 + ] + }, + "3": { + "ParamList": [ + 1, + 16 + ] + }, + "4": { + "ParamList": [ + 1, + 18 + ] + }, + "5": { + "ParamList": [ + 1, + 20 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 14.400000000372529, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 31.6800000006333, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 54.72000000067055, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 77.7600000007078, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 100.80000000074506, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 123.84000000078231, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 146.88000000081956, + "BaseAttackAdd": 2.1600000001490116, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "20022": { + "Name": "추억 회상", + "Desc": "세월에서 추출한 미약한 힘. 보잘것없는 찰나의 순간들이 모여 엮어진 장렬한 운명.\\n\\n「짧은 아름다운 꿈속, 쇠약해진 영혼은 어린 시절 찬란했던 바다로 돌아간 것만 같았다」", + "Rarity": "CombatPowerLightconeRarity3", + "BaseType": "Memory", + "Refinements": { + "Name": "잠에 들다", + "Desc": "기억 정령의 턴 시작 시 장착한 캐릭터와 기억 정령이 각각 [회고]를 1스택 획득하며, 스택마다 가하는 피해가 #1[i]% 증가한다, 최대 중첩수: #2[i]스택. 기억 정령이 사라질 시 장착한 캐릭터와 기억 정령의 [회고]가 해제된다", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 4 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 4 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 4 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 4 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 20022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 3000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 4, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 28.800000000745058, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 6000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 2, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 63.360000000335276, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 12000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 2, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 4, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 109.44000000040978, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 30000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 155.5200000004843, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 60000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 3, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 3, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 201.6000000005588, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 120000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 6, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 247.6800000006333, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 20022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 293.7600000007078, + "BaseHPAdd": 4.320000000298023, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21000": { + "Name": "수술 후의 대화", + "Desc": "「깼구나… 고마워」\\n「네가… 날 구했구나… 나타샤. 고마워해야 할 사람은… 나야」\\n「아니, 감사는 내가 해야지… 수술이 끝날 때까지 버텨줘서 고마워」\\n\\n피곤한 의사와 환자가 눈을 마주치며 서로 말없이 웃었다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "상호 치유", + "Desc": "장착한 캐릭터의 에너지 회복효율이 #1[i]% 증가하고, 필살기 발동 시 치유량이 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21001": { + "Name": "밤 인사와 잠든 얼굴", + "Desc": "고요한 빛이 먼지의 실루엣을 비춘다.\\n규칙적인 숨소리에 소녀가 단잠을 꾸는 잠꼬대가 섞여있다.\\n한 사람의 그림자가 그녀 뒤로 나타나자 쥐 죽은 듯 조용해진다.\\n「후후후, 역시 안경을 벗으면 더 귀엽잖아」\\n소녀의 잠든 얼굴을 감상하던 기타리스트가 혼잣말한다.\\n「잘자, 걱정 많은 천재 소녀」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "고된 자", + "Desc": "적이 디버프 효과 1개를 보유할 때마다 장착한 캐릭터가 대상에게 가하는 피해가 #1[i]% 증가한다. 최대 중첩수: #2[i]스택. 해당 효과는 지속 피해에도 적용된다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21002": { + "Name": "여생의 첫날", + "Desc": "「오늘 폼폼이 새 옷으로 갈아입었어~ 좋아 좋아~」\\n「오늘은 내 생일이야. 난 올해도 귀여워」\\n「나도 드디어드디어드디어 후배가 생겼다네! 그렇지, {NICKNAME}?」\\n\\n망설임 없이 셔터를 계속 누른다.\\n당시의 즐거움을 담기 위해서야?\\n아니면 그때의 자신을 담기 위해서야?", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "지금 이 순간", + "Desc": "장착한 캐릭터의 방어력이 #1[i]% 증가한다. 전투 진입 후 모든 아군의 모든 속성 저항이 #2[i]% 증가한다. 같은 유형의 스킬 효과는 중복 적용되지 않는다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.0800000000745058 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.10000000009313226 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097, + 0.11000000010244548 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21003": { + "Name": "침묵만이", + "Desc": "「이미 도착했는데, 안 내려?」\\n머리 위에서 작은 웃음소리가 들린다. 그는 눈만 치켜뜨고 고개는 들지 않았다.\\n\\n「미리 말하자면, Mar. 7th가 자꾸 너보고 무표정이라고 하는데, 난 그렇게 생각 안해」\\n「열차 아카이브의 데이터에 업데이트한 흔적이 있는데, 결과를 저장하지 못했어」\\n「그래서… 뭐가 문제야?」\\n\\n그가 펜을 움켜쥐고 노트에 기억대로 다시 쓴 참혹한 장면을 본다.\\n\\n「아, 너에 대한 일이구나…」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "기록", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 필드 위의 적이 2명 이하일 경우, 장착한 캐릭터의 치명타 확률이 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21004": { + "Name": "기억 속 모습", + "Desc": "저택 책상 한구석에 놓여 있던 오래된 사진이다.\\n가끔 시선이 닿을 때도 있었지만, 그녀는 무의식적으로 시선을 돌려버렸다.\\n기억 속 모습은 이미 사라져 버렸지만 오늘 꿨던 꿈은 아직도 마음속에 남아 있다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "오래된 사진", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 장착한 캐릭터가 공격 발동 후 추가로 에너지가 #2[i]pt 증가한다. 해당 효과는 단일 턴 내 중복 발동되지 않는다", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 4 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 5 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 6 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 7 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21005": { + "Name": "두더지파가 환영해", + "Desc": "「두더지파, 두더지파」\\n「우린 지금 출발해」\\n「똑똑한 두더지는 두려워 하지 않아」\\n「두더지파, 두더지파」\\n「두더지파는 모험을 시작한다!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "기묘한 모험", + "Desc": "장착한 캐릭터가 일반 공격, 전투 스킬 혹은 필살기를 발동하여 적을 공격하면 각 1스택의 「장난기」를 획득하며 스택마다 장착한 캐릭터의 공격력이 #1[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21006": { + "Name": "「나」의 탄생", + "Desc": "처음에 그것은 이전 그림의 자세와 완전히 일치했다.\\n그녀는 자신과 똑같은 얼굴을 보며 이건 아직 그녀가 아니라고 생각했다.\\n\\n「세상에 두 점의 똑같은 그림이 있을 리가 있겠어?」\\n\\n그녀는 관절을 만지작거리며 눈을 뜨는 법을 가르쳤고 손가락이 더 부드러워지도록 가르쳤다.\\n그녀는 만족하며 손을 멈췄다.\\n\\n「어제와는 사뭇 다른 모습이 바로 오늘의 나야」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "그림 속 소녀", + "Desc": "장착한 캐릭터의 추가 공격으로 가하는 피해가 #1[i]% 증가한다. 해당 적의 현재 HP 백분율이 #2[i]% 이하일 경우, 추가 공격으로 가하는 피해가 추가로 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.5000000004656613, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.5000000004656613, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.5000000004656613, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21007": { + "Name": "같은 심정", + "Desc": "의사가 여자아이를 찾았을 때, 아이는 상처를 입었지만, 작동을 멈춘 기계를 여전히 꼭 껴안고 있었다. 주머니에는 여러 가지 부속품들이 가득했다.\\n그녀는 아이를 진료소로 급히 데려와 상처에 좋은 약을 발라주었다.\\n땀방울은 뺨에서 흘러내렸다. 아이는 아무 말도 하지 않았지만, 손은 잠시도 멈추지 않았다.\\n의사는 아이의 눈에는 기계만 보인다는 것을 알아차렸다. 치료를 기다리는 환자를 마주하는 자신처럼 말이다.\\n그래서 그녀는 위로도, 앞으로는 조심하라는 조언도 하지 않고, 그저 아이의 곁에 앉아 조용히 함께 했다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "치료와 수리", + "Desc": "장착한 캐릭터의 치유량이 #1[i]% 증가하고, 전투 스킬 발동 시 모든 아군의 에너지가 #2[f1]pt 회복된다", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 2.5000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 3 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 3.5000000004656613 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21008": { + "Name": "사냥감의 시선", + "Desc": "사실 사냥감은 대부분 자신의 처지를 깨닫지 못한다.\\n눈앞에 보이는 이 사냥감 역시 마찬가지다.\\n조준경이 천천히 돌아가고 있는데도 남자는 여전히 지폐 뭉치를 뿌리고 있다.\\n「탐욕스러운 모습을 좀 봐, 이 돈이면 내가 비즈니스 몇 건은 더 할 수 있을 것 같은데… 왜 누군가가 그를 죽이려고 하는지 알 것 같군」\\n\\n그의 마음속의 감회를 들은 듯 남자는 고개를 돌렸다.\\n「오래 기다렸다고. 이 돈이면 내 조건을 듣고 결정하기에 충분하지?」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "자신감", + "Desc": "장착한 캐릭터의 효과 명중이 #1[i]% 증가하고, 동시에 가하는 지속 피해가 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21009": { + "Name": "랜도의 선택", + "Desc": "「다신 거기 가지 마라, 알았니! 평민들이랑 어울려서 뭘 배우겠다고!」\\n「하지만 그 사람들이 처음 듣는 벨로보그 이야기를 해줬어요…」\\n\\n그녀는 아직도 변론하고 싶은 동생을 끌어다 자신 뒤에 숨겼다.\\n「너희는 랜도의 일원이다. 특히나 서벌 너도 언젠간 선택을 내려야 해」\\n\\n그녀는 동생이 아무 잘못도 없다는 걸 알고 있지만 어떻게 반박해야 할지 몰랐다.\\n온종일 치미는 울분을 가라앉힌 후 그녀는 결심했다.\\n「내가 어른이 되면 그땐 내릴 수 있겠지……」\\n「나만의 선택을」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "빠른 세월", + "Desc": "장착한 캐릭터가 피격될 확률이 증가하고 받는 피해가 #2[i]% 감소한다", + "Level": { + "1": { + "ParamList": [ + 2, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 2, + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 2, + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 2, + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 2, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21010": { + "Name": "논검", + "Desc": "소녀는 이해할 수 없다는 듯 손에 든 얇은 검을 바라봤다.\\n검은 양손으로 휘둘러야 제맛인 데, 이런 검도 검이라고 할 수 있을까? 이런 검으로 정말 적을 무찌를 수는 있는 걸까?\\n\\n하지만 검의 주인은 이 점을 전혀 신경 쓰지 않는 것 같다.\\n적을 처치하는 건 검의 성능에 달린 게 아니라 마음에 달렸다.\\n검이 무겁든 가볍든 무슨 차이가 있을까", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "각자의 답", + "Desc": "장착한 캐릭터가 동일한 적을 여러 회 명중 후 매번 가하는 피해가 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택. 공격 목표에 변화가 생길 경우 현재 버프 효과가 해제된다", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 5 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 5 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 5 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 5 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21011": { + "Name": "행성과의 만남", + "Desc": "길을 떠났을 때도 그녀는 여전히 이번 여정에 대해 아무것도 알지 못했다.\\n아는 것은 그저 이제 드디어 가족의 잔소리와 어디를 가도 쏟아지는 공격들을 뒤로할 수 있다는 것이다.\\n그녀가 창밖을 바라볼 때 마침내 그 시의 의미를 이해했다.\\n「우린 어느 순간부터는 더 이상 걷지 않고 비행한다」\\n\\n그리고 그녀의 눈에 반짝이는 빛은 바로 행성의 그림자이다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "출발", + "Desc": "전투 진입 후 아군이 장착한 캐릭터와 동일한 속성의 피해를 가할 시 가하는 피해가 #1[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21012": { + "Name": "비밀 맹세", + "Desc": "소년은 매번 떠나기 전에 팔꿈치 보호대와 장갑을 조심스럽게 확인한다.\\n그가 가장 좋아하는 장갑은 충분히 단단하며 많은 비밀을 숨길 수 있다.\\n이러다 보니 아무도 그의 손에 감은 붕대와 아래 숨은 상처를 볼 수 없다.\\n다들 그를 평범한 사람으로 생각하고 무난하게 그와 인사한다.\\n\\n이거면 충분하다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "젖 먹던 힘까지", + "Desc": "장착한 캐릭터가 가하는 피해가 #1[i]% 증가하며, 동시에 현재 HP 백분율이 장착한 캐릭터 자신의 HP 백분율 이상인 적에게 가하는 피해가 추가로 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21013": { + "Name": "세상을 진정시키지 마", + "Desc": "그녀는 무대 위에서 손을 흔들며 모든 사람이 그녀와 함께 자신의 목소리를 내길 원했다.\\n노래, 외침, 한탄과 같이 어떤 형태로든 말이다.\\n누군가 들을 때까지 자신의 소리를 내야 누군가 합류한다.\\n\\n「이 차가운 도심처럼 마음도 차갑게 낙심하지 말아요」\\n\\n——세상을 진정시키지 마", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "소리의 힘", + "Desc": "장착한 캐릭터가 전투 진입 시 에너지가 즉시 #2[i]pt 회복하고, 대상의 필살기가 가하는 피해가 #1[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.3200000002980232, + 20 + ] + }, + "2": { + "ParamList": [ + 0.40000000037252903, + 23 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 26 + ] + }, + "4": { + "ParamList": [ + 0.5600000005215406, + 29 + ] + }, + "5": { + "ParamList": [ + 0.6400000005960464, + 32 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21014": { + "Name": "알맞은 타이밍", + "Desc": "거리는 붐비고, 그는 걷고, 햇빛은 따라온다.\\n그는 발걸음을 멈추고 종이 우산을 들고 그늘을 펼친다.\\n그 한줄기의 시선도 가렸다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "굴절된 시선", + "Desc": "장착한 캐릭터의 효과 저항이 #1[i]% 증가하고, 장착한 캐릭터 치유량이 증가한다. 증가 수치는 효과 저항의 #2[i]%만큼이다. 치유량은 최대 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.33000000030733645, + 0.1500000001396984 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3900000003632158, + 0.21000000019557774 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.4200000003911555, + 0.24000000022351742 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.45000000041909516, + 0.2700000002514571 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21015": { + "Name": "땀방울처럼 빛나는 결심", + "Desc": "링의 불빛이 반짝이고 있지만,\\n등 사이로 흘러내리는 땀방울만큼 빛나지는 않는다\\n\\n그는 자신의 두 주먹으로 중요한 사람들을 지키기로 결심했다.\\n그에게 다짐을 준 것도 바로 그들이다\\n——무대 위든 아래든 그의 등뒤를 지키고 있다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "뒤돌아봄", + "Desc": "장착한 캐릭터는 적 명중 시 만일 해당 목표가 [함락] 상태가 아닐 경우 #1[i]%의 기본 확률로 대상을 [함락] 상태에 빠트린다. [함락] 상태의 적은 방어력이 #2[i]% 감소한다. 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.12000000011175871, + 1 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.13000000012107193, + 1 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 1 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.1500000001396984, + 1 + ] + }, + "5": { + "ParamList": [ + 1, + 0.1600000001490116, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21016": { + "Name": "우주 시장 동향", + "Desc": "행성의 가치는 다시 계산되고 있다……\\n\\n「채권 회수가 상호 이익이 된다는 점을 이 프로젝트로 설명할 수 있나요?」\\n「우리가 전해야 할 메시지는 단 하나, 바로 우리의 존재를 알리는 겁니다」\\n\\n「이 행성에 가치가 있다면 컴퍼니를 위해 가치를 창출해 줘야죠」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "새로운 개편", + "Desc": "장착한 캐릭터의 방어력이 #1[i]% 증가한다. 장착한 캐릭터가 피격된 후 #2[i]%의 기본 확률로 적이 연소 상태에 빠진다. 턴마다 장착한 캐릭터 방어력 #3[i]%만큼의 지속 피해를 준다. 지속 시간: #4[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1, + 0.40000000037252903, + 2 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1.0500000000465661, + 0.5000000004656613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1.1000000000931323, + 0.6000000005587935, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1.1500000001396984, + 0.7000000006519258, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1.2000000001862645, + 0.8000000007450581, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21017": { + "Name": "팔로우를 부탁해!", + "Desc": "「아——아——! 시청자 여러분, 여기 신호 잘 통하나요?」\\n\\n주황 머리의 소녀가 격하게 외치며 카메라를 향해 여유롭게 망치를 든다.\\n「여러분——소녀가 가슴 위에 있는 돌을 깨는 모습 본 적 있나요!」\\n\\n「제가 이런 일하려고 운기군이 된 게 아닌데 말이죠!」\\n갈색 머리 소녀의 눈에 별이 반짝이고, 주황색 머리의 소녀가 교활하게 웃는다.\\n「부탁할게요——이것도 흔쾌히 남을 돕는 거라고요!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "좋아요도 안 하고 가려고?", + "Desc": "장착한 캐릭터의 일반 공격 혹은 전투 스킬이 가하는 피해가 #1[i]% 증가하며, 장착한 캐릭터의 현재 에너지가 에너지 최대치일 시, 해당 효과는 추가로 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21018": { + "Name": "댄스! 댄스! 댄스!", + "Desc": "「후크는 왜 클라라처럼 빙글빙글 춤출 수 없는 거지…」\\n그녀는 주먹을 꽉 쥐었다. 입술을 중얼거리자, 동글동글한 뺨이 모자로 빨갛게 달아올랐다.\\n「스바로그 씨, 후크 좀 도와주실 수 있나요?」\\n로봇은 말없이 기계팔을 내밀었다.\\n\\n「어, 어지러워!! 윽, 빨리 내려줘!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "멈출 수 없어!", + "Desc": "장착한 캐릭터가 필살기 발동 후 모든 아군의 행동 게이지가 #1[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21019": { + "Name": "푸른 하늘 아래", + "Desc": "푸른 하늘 아래 이삭이 파도처럼 출렁인다.\\n소녀는 정성껏 화환을 엮어\\n가장 사랑하는 여동생의 머리에 얹었다.\\n\\n그때의 그들은 비슷한 키였고,\\n그때의 그들은 여전히 그렇게 웃었다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "파도치는 따스한 이삭", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터는 적을 처치한 후 치명타 확률이 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21020": { + "Name": "천재들의 휴식", + "Desc": "그녀는 청록색 경단을 주문했다.\\n「실험이 끝났으니 쉬어야 해. 막 나온 제철 간식을 놓칠 수 없지」\\n\\n그녀는 인형 소녀를 보고 미간을 찌푸리며 생각에 잠겼다.\\n「이 몸으로 먼저 보고 계세요. 나중에 한 상자 가져다드리겠습니다」\\n\\n그녀는 기계 귀족이 난색을 표하며 잔을 드는 걸 보았다.\\n「안심해, 엔진 오일이니까」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "각자 제자리에", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터는 적을 처치한 후 치명타 피해가 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.24000000022351742, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.4200000003911555, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.48000000044703484, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21021": { + "Name": "등가교환", + "Desc": "용녀가 해준 번개 마사지를 즐긴 후,\\n여우족 소녀는 손을 내밀어 그녀의 볼을 꼬집는다.\\n그녀가 입을 삐죽 내밀자 그녀는 요염하게 웃는다.\\n\\n「등가교환이랍니다~」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "편안함", + "Desc": "장착한 캐릭터의 턴 시작 시 랜덤으로 현재 에너지 백분율이 #1[i]% 미만인 다른 아군의 에너지를 #2[i]pt 회복한다", + "Level": { + "1": { + "ParamList": [ + 0.5000000004656613, + 8 + ] + }, + "2": { + "ParamList": [ + 0.5000000004656613, + 10 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 12 + ] + }, + "4": { + "ParamList": [ + 0.5000000004656613, + 14 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 16 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21022": { + "Name": "페르마타", + "Desc": "레코드판이 돌고 돌아, 고함소리가 열기에 젖어든다.\\n그녀는 무방비해 보이는 상태로 황홀한 멜로디에 취한다:\\n\\n도입부에서 기대감을 주고,\\n격렬하고 진지한 서사가 이어지고,\\n연이은 클라이맥스를 뛰어넘는다….\\n\\n레코드판이 멈추고 나서야 고함소리가 사라진다.\\n「임무 종료」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "쉼표", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가하고, 감전이나 풍화 상태의 적에게 가하는 피해가 #2[i]% 증가한다. 해당 효과는 지속 피해에도 적용된다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21023": { + "Name": "우리는 와일드 파이어", + "Desc": "그녀는 사람들이 집을 잃는 것에 익숙하다.\\n사람들이 생명을 잃는 것에도 익숙하다.\\n하지만 혼자일 때는 울어도 소용이 없다.\\n\\n「이 빨간 스카프를 매고, 서로의 고통을 분담한다」\\n「우리는 한 가족… 우리는 와일드 파이어다」\\n\\n넓은 손바닥이 그녀의 머리를 쓰다듬을 때, 그녀는 끝내 눈물을 참을 수 없었다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "눈물을 글썽이는 사람", + "Desc": "전투 시작 시 모든 아군이 받는 피해가 #2[i]% 감소한다. 지속 시간: #3[i]턴. 동시에 즉시 모든 아군이 각자 손실한 HP #1[i]%만큼의 HP를 회복한다", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.0800000000745058, + 5 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.10000000009313226, + 5 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871, + 5 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.14000000013038516, + 5 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.1600000001490116, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21023, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 33.60000000055879, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 73.92000000085682, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 127.6800000006333, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 181.44000000040978, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 235.20000000018626, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 288.96000000089407, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21023, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 342.72000000067055, + "BaseHPAdd": 5.040000000037253, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21024": { + "Name": "움트는 봄물", + "Desc": "검을 연마하던 소년은 잠시 휴식을 취한다.\\n햇살이 그의 뜨거운 목덜미를 데우고 그는 천천히 물에 들어간다.\\n물이 발에 찰랑 거리자 차가웠지만,\\n종이 울리고, 새가 지저귄다.\\n먼 곳의 사람들은 봄이 온 것을 알아차린다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "남은 추위 몰아내기", + "Desc": "전투 진입 후 장착한 캐릭터의 속도가 #1[i]% 증가하고, 가하는 피해가 #2[i]% 증가한다. 장착한 캐릭터가 피해를 받은 후 해당 효과는 사라지며 다음 턴이 종료되면 해당 효과는 회복된다", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21024, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21024, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21025": { + "Name": "과거와 미래", + "Desc": "손에 든 종이 연의 두 날개가 부러져 마치 가장 소중한 사람의 추락처럼 떨어진다.\\n그녀는 불길에 무릎을 꿇고 앉아 슬픔으로 가득 차 있다.\\n\\n「당신에게만 구원받을 수 있다면, 그럼 우리의 희생은…」\\n\\n포화가 하늘을 붉게 물들였고, 창공은 여전히 웅장했다.\\n그녀는 고개를 들어 하늘을 올려다보며 분노로 가득 찼다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "옛날 연", + "Desc": "장착한 캐릭터가 전투 스킬 발동 후 다음에 행동하는 다른 아군이 가하는 피해가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21025, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21025, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21026": { + "Name": "멍! 산책 시간!", + "Desc": "아직 아무도 눈치채지 못한 것이 아쉬울 뿐이다….\\n그것이 코를 이리저리 킁킁거리며 인적 없는 골목으로 들어가는 것을.\\n\\n아직 아무도 눈치채지 못한 것이 아쉬울 뿐이다….\\n그것이 발톱을 집어넣은 채 비밀번호를 입력하고는 자유의 품 속으로 뛰어드는 것을.\\n\\n아직도 눈치챈 사람이 없는가….\\n성장한 강아지는 스스로 우주를 산책하는 법을 터득했다!", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "튀어!", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가하고, 연소나 열상 상태의 적에게 가하는 피해가 #2[i]% 증가한다. 해당 효과는 지속 피해에도 적용된다", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21026, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21026, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21027": { + "Name": "느낌 있는 아침 식사 루틴", + "Desc": "아침 식사는 이미 준비되었지만…\\n누군가는 먼저 홍차를 마셨고\\n누군가는 먼저 사진을 찍었고\\n누군가는 먼저 신문을 읽었고\\n누군가는 먼저 무언가를 노트에 적었고\\n누군가는 먼저 휴대폰을 만지작거렸다.\\n\\n「얼른 식기 전에 먹어!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "각자 위치로", + "Desc": "장착한 캐릭터가 가하는 피해가 #1[i]% 증가한다. 적 1기를 처치할 때마다, 장착한 캐릭터의 공격력이 #2[i]% 증가한다. 해당 효과 최대 중첩수: #3[i]스택", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0400000000372529, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.05000000004656613, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.060000000055879354, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.07000000006519258, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.0800000000745058, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21027, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21027, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21028": { + "Name": "따듯한 밤은 길지 않고", + "Desc": "불을 켜고 핫초코 한 잔을 들고 옆에 있는 친구를 바라본다.\\n그녀가 자신이 보낸 책과 노트를 읽는 모습을 바라본다.\\n그녀가 평소에 좀처럼 내비치지 않는 웃음을 짓는 걸 바라본다.\\n\\n추운 밤, 아주 작은 행복만으로도 한기를 날려버릴 수 있다.", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "작은 등불", + "Desc": "장착한 캐릭터의 HP 최대치가 #1[i]% 증가하고, 일반 공격 혹은 전투 스킬 발동 후 HP를 각자 HP 최대치 #2[f1]% 만큼 회복시킨다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.02000000001862645 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.0249999996740371 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.030000000027939677 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.034999999683350325 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.0400000000372529 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21028, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21028, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21029": { + "Name": "훗날 기약", + "Desc": "처음에는 그것이 일종의 프로그램인 줄 알았다. 그러지 않으면 저렇게 지칠 줄 모를 리가 없었을 테니까.\\n하지만 프로그램이라면 최적의 해결책을 버리고 그녀가 설치해둔 함정을 피할 리가 없었다.\\n\\n「아무래도 장기전이 될 것 같네」\\n그녀는 하품을 했다.\\n\\n「얼른 자. 유기 생명체는 잠을 소중히 해야 한다고」\\n주위가 어둑어둑해졌다.\\n\\n그녀는 갑자기 깨어났다. 하지만 데이터 잔여물은 이미 쓸려나가 파괴된 상태였다. 모든 것이 꿈만 같았다.\\n——그러나 패배의 쓴맛은 너무나도 현실적이었다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "교섭 같은 교전", + "Desc": "장착한 캐릭터가 일반 공격 혹은 전투 스킬 발동 후 임의의 피격된 적 1기에게 자신의 공격력 #1[i]% 만큼의 추가 피해를 준다", + "Level": { + "1": { + "ParamList": [ + 0.48000000044703484 + ] + }, + "2": { + "ParamList": [ + 0.6000000005587935 + ] + }, + "3": { + "ParamList": [ + 0.7200000006705523 + ] + }, + "4": { + "ParamList": [ + 0.840000000782311 + ] + }, + "5": { + "ParamList": [ + 0.9600000008940697 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21029, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21029, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21030": { + "Name": "이게 바로 나야!", + "Desc": "소녀는 뭘 입어도 잘 어울리지만, 소녀는 만족스럽지 않은 모양이다. 등 뒤에 열 벌도 넘는 옷이 쌓여있다.\\n\\n「오늘이 마지막이려나?」\\n\\n그녀는 조용히 생각했다. 올려다보니 거울 속의 소녀는 오늘 특별히 기뻐 보인다.\\n\\n「됐어! 이게 바로 나야!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "지평", + "Desc": "장착한 캐릭터의 방어력이 #1[i]% 증가한다. 장착한 캐릭터는 필살기 발동 시 가하는 피해량이 증가하고, 증가 수치는 자신 방어력의 #2[i]%만큼이다. 해당 효과는 필살기를 발동할 때마다 적 1기당 1회만 적용된다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.7500000006984919 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.9000000008381903 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1.0500000000465661 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1.2000000001862645 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21030, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21030, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "21031": { + "Name": "또다시 저승으로", + "Desc": "언니의 곁에 있지만 그녀는 아무것도 들을 수 없었다.\\n마음속의 소리만이 점점 더 커져 갔다.\\n\\n「언니의 몸이 차가워」\\n「언니의 몸이 안 움직여」\\n\\n분노가 파도처럼 밀려와 그녀를 잠기게 했다. 그녀는 이미 생각할 겨를이 없었다——\\n\\n「언니의 몸은, 이미 오래전에 차가워졌어」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "용솟음", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 치명타 발동 후 #2[i]%의 고정 확률로 피격된 적이 보유한 버프 효과를 1개 해제한다. 해당 효과는 턴마다 1회만 발동할 수 있다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21031, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21031, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21032": { + "Name": "누월재운의 뜻", + "Desc": "그 황금 식기를 보자마자 마음에 들었던 그는 바로 그것을 사려고 했다.\\n그런데 어떤 여우족 소녀가 나타나더니 그를 가게 구석으로 끌고 가서 속삭였다.\\n「손님, 밤이 되면 다시 가게로 찾아오세요. 그때 결정하셔도 늦지 않답니다」\\n\\n그날 밤, 그는 약속대로 다시 가게를 찾았다.\\n문을 연 것은 그 여우족 소녀였다. 그녀는 미소를 지으며 그를 맞이했다.\\n「손님, 이쪽으로 오세요」\\n\\n한 줄기 달빛이 꽃무늬가 새겨진 그릇의 바닥을 비추었다.\\n장인은 세밀한 솜씨로 선의 깊이를 조절하며 꽃잎을 조각했던 것이었다. 만약 달빛이 아니었다면 그것을 눈치챌 수 없었을 것이 분명했다.\\n\\n그제야 그는 깨달았다. 그것이 왜 「누월재운(鏤月裁雲)」이라 불리는지를 말이다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "비밀", + "Desc": "전투 시작 시 및 장착한 캐릭터 턴 시작 시 랜덤으로 1개의 효과가 적용된다. 해당 효과 적용 시 이전 효과를 대체하며 이전과 중복되지 않는다. 효과 종류: 모든 아군의 공격력 #1[i]% 증가/모든 아군의 치명타 피해 #2[i]% 증가/모든 아군의 에너지 회복효율 #3[i]% 증가. 같은 유형의 효과는 중첩되지 않으며 장착한 캐릭터가 전투 불능 상태에 빠지면 해제된다", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.12000000011175871, + 0.060000000055879354 + ] + }, + "2": { + "ParamList": [ + 0.12499999976716936, + 0.1500000001396984, + 0.07499999972060323 + ] + }, + "3": { + "ParamList": [ + 0.1500000001396984, + 0.18000000016763806, + 0.09000000008381903 + ] + }, + "4": { + "ParamList": [ + 0.17499999981373549, + 0.21000000019557774, + 0.1049999997485429 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742, + 0.12000000011175871 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21032, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21032, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21033": { + "Name": "도망칠 곳은 없다", + "Desc": "그것은 그 남자와의 첫 만남이 아니었다.\\n언제부터인가 그 남자는 그림자처럼 그를 따라다녔다.\\n몇 번이나 창을 찔러넣어도 그는 다시 나타났다.\\n\\n그는 지지 않았지만, 이길 수도 없었다.\\n그는 도망치고 싶었으나, 도망칠 곳이 없었다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "곤경", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터는 적을 처치할 때 자신의 공격력 #2[i]%만큼의 HP를 회복한다", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21033, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21033, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21034": { + "Name": "오늘도 평화로운 하루", + "Desc": "새로운 놀이를 떠올린 그녀는 점심시간에 또 책을 빌려왔다.\\n손가락으로 헤아리면서 업무의 양을 계산해 본 그녀는 퇴근 시간에 딱 맞춰 끝날 정도의 속도로 느릿느릿 일했다.\\n그녀는 슬그머니 한쪽 구석으로 숨어 들어갔다.\\n\\n즐거운 시간은 그 누구에게도 방해받아서는 안 되니까.\\n——그게 부 태복이라 해도 말이다.\\n하지만 만일의 경우에는……\\n\\n「이 우유 사탕을 부 태복에게 주세요. 단것을 먹으면 화도 가라앉을 테니까!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "폭풍전야", + "Desc": "전투 진입 후 장착한 캐릭터의 에너지 최대치에 따라 장착한 캐릭터가 가하는 피해가 증가한다: 에너지 1pt당 #1[f2]% 증가. 최대 #2[i]pt까지 계산한다", + "Level": { + "1": { + "ParamList": [ + 0.001999999862164259, + 160 + ] + }, + "2": { + "ParamList": [ + 0.002500000176951289, + 160 + ] + }, + "3": { + "ParamList": [ + 0.0029999997932463884, + 160 + ] + }, + "4": { + "ParamList": [ + 0.0035000001080334187, + 160 + ] + }, + "5": { + "ParamList": [ + 0.003999999724328518, + 160 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21034, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21034, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21035": { + "Name": "무엇이 진실인가", + "Desc": "「만약 모든 시계가 잘못된 시각을 가리킨다면……」\\n「만약 한 사람이 약속을 어김으로써 약속을 지킨다면……」\\n「만약 꿈속에 빠진 사람이 실제로는 단 한 번도 잠든 적이 없다면……」\\n「만약 죽은 자가 살아 돌아왔을 때, 자신의 이름이 빼앗긴 것을 깨닫는다면……」\\n\\n「만약… 만약……」\\n그가 불을 불어서 끄자, 어둠 속에 남은 건 시계의 멈추지 않는 째깍거리는 소리뿐이었다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "가설", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 일반 공격 발동 후, 장착한 캐릭터는 HP 최대치의 #2[f1]%+#3[i]pt만큼 HP를 회복한다", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.02000000001862645, + 800 + ] + }, + "2": { + "ParamList": [ + 0.3000000002793968, + 0.0249999996740371, + 800 + ] + }, + "3": { + "ParamList": [ + 0.3600000003352761, + 0.030000000027939677, + 800 + ] + }, + "4": { + "ParamList": [ + 0.4200000003911555, + 0.034999999683350325, + 800 + ] + }, + "5": { + "ParamList": [ + 0.48000000044703484, + 0.0400000000372529, + 800 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21035, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21035, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21036": { + "Name": "좋은꿈 마을 대모험", + "Desc": "「친애하는 관객 여러분, 시계 소년과 그의 친구들이 또다시 여러분들을 만나러 왔습니다!」\\n\\n「지난 에피소드에서, 스톤 보스는 좋은꿈 마을에 풍부한 자원이 있다는 사실을 알고, 좋은꿈 마을의 통치권을 빼앗기 시작했습니다. 시계 소년은 하누 형제, 종이새와 힘을 합쳐 스톤 보스와 그의 가증스러운 부하들을 좋은꿈 마을에서 쫓아냈죠」\\n\\n「스톤 보스는 복수하기 위해 악당들을 모아 좋은꿈 마을을 짓밟을 준비를 하는데… 이번 에피소드에서는 시계 소년에게 최대의 위기가 닥칩니다!」\\n\\n「시계 소년은 어떻게 위기를 헤쳐 나갈 것인가! 또 어떤 새로운 동료가 합류하게 될 것인가? 『좋은꿈 마을 어드벤처』 최신화를 기대해 주세요!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "단결", + "Desc": "장착한 캐릭터가 일반 공격, 전투 스킬, 필살기 중 임의 유형의 스킬 발동 후 모든 아군에게 [동심]을 부여한다. [동심]은 아군의 상응하는 유형의 스킬이 가하는 피해를 #1[i]% 증가시킬 수 있다. [동심] 효과는 장착한 캐릭터가 가장 최근 사용한 스킬 유형에만 효과가 적용되며, 중첩할 수 없다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21036, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21036, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21037": { + "Name": "최후의 승자", + "Desc": "「날 못 믿는 건가?」\\n그는 도발하듯 눈앞에 있는 남자를 바라봤다. 총을 한 자루 꺼내서는, 총알 한 발을 남기고 나머지 총알을 비웠다.\\n\\n「보아하니, 즐거운 협력을 위해서는 내가 일하는 방식을 설명해야 할 것 같네」\\n그는 권총을 상대의 손에 쥐어주고, 실린더를 회전한 후 총구를 자신에게 향하게 했다.\\n\\n그는 연속으로 방아쇠를 당겼다. 공이가 빈 약실을 치는 소리가 세 차례 울렸고, 그의 미소에는 변화가 없었다.\\n「생명은 하나의 거대한 도박이야. 그리고 난 언제나 최후의 승자지」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "베팅", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터가 적에게 치명타를 가하면 [행운]을 1스택 획득한다. 최대 중첩수: #3[i]스택. [행운] 스택당 장착한 캐릭터의 치명타 피해가 #2[i]% 증가한다. [행운]은 장착한 캐릭터의 턴 종료 시 해제된다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 4 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.09000000008381903, + 4 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.10000000009313226, + 4 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.11000000010244548, + 4 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.12000000011175871, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21037, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21037, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21038": { + "Name": "불의 먼 곳에서", + "Desc": "「물건은 확보했어. 후방 엄호는 너한테 부탁할게」\\n통신기에서 동료의 목소리가 들려왔다.\\n\\n주위를 둘러보니 잔당들이 폐허가 된 대형 건축물의 복잡한 구조물 사이를 지나 그에게 접근하고 있었다.\\n「잠깐 기다려」\\n\\n한순간의 정적 후, 종말의 재앙 같은 격렬한 폭발이 일어났다. 먼지 폭풍이 일고 구름이 사방으로 흩어지며, 눈 부신 빛이 밤하늘을 낮으로 만들었다.\\n「적이 폭약을 가득 설치해 둔 걸 알고 있었지?」\\n\\n망토는 가벼운 산책이라도 마친 듯 바람에 펄럭였다.\\n「물론」\\n「그래서 내가 도화선에 불을 붙이는 성냥이 되어줬지」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "폭연", + "Desc": "장착한 캐릭터가 단일 공격에서 누적으로 잃은 HP가 최대 HP의 #1[i]%를 초과하거나, 자신이 단일 소모한 HP가 최대 HP의 #1[i]%를 초과할 시, 즉시 장착한 캐릭터 HP 최대치의 #3[i]%만큼 HP를 회복하고, 동시에 장착한 캐릭터가 가하는 피해가 #2[i]% 증가한다. 지속 시간: #4[i]턴. 해당 효과는 #5[i]턴마다 최대 1회 발동한다", + "Level": { + "1": { + "ParamList": [ + 0.25000000023283064, + 0.25000000023283064, + 0.1500000001396984, + 2, + 3 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3125000004656613, + 0.1500000001396984, + 2, + 3 + ] + }, + "3": { + "ParamList": [ + 0.25000000023283064, + 0.375, + 0.1500000001396984, + 2, + 3 + ] + }, + "4": { + "ParamList": [ + 0.25000000023283064, + 0.43750000023283064, + 0.1500000001396984, + 2, + 3 + ] + }, + "5": { + "ParamList": [ + 0.25000000023283064, + 0.5000000004656613, + 0.1500000001396984, + 2, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21038, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21038, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21039": { + "Name": "운명의 실을 엮다", + "Desc": "운명은 항상 이유 없이 사람들을 이끌고, 그녀는 어둠 속에 숨어 가장 중요한 순간을 새긴다.\\n\\n정렬, 조합, 셔플, 드로우…. 그녀는 운명의 손으로 사람들의 가능성을 조종하고, 혼란스러운 표상 아래에서 진실의 궤적을 찾는다.\\n\\n드디어, 모든 인물이 제자리를 찾았다. 그녀의 손이 응고한 카드 표면을 스치며, 심원한 진실을 맞춰나갔다.\\n「한 장이 부족하네…. 그렇다면, 내가 메꾸도록 하지」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "간파", + "Desc": "장착한 캐릭터의 효과 저항이 #1[i]% 증가한다. 장착한 캐릭터가 방어력을 #2[i]pt 보유할 때마다 가하는 피해가 #3[f1]% 증가하며, 해당 효과는 최대 #4[i]%까지 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 100, + 0.007999999448657036, + 0.3200000002980232 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 100, + 0.008999999379739165, + 0.3600000003352761 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 100, + 0.010000000009313226, + 0.40000000037252903 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 100, + 0.010999999940395355, + 0.44000000040978193 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 100, + 0.011999999871477485, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21039, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21039, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21040": { + "Name": "은하 함락의 날", + "Desc": "「치즈폭탄! 넌 행성의 수비대를 기절시켜!」\\n「팥앙금떡! 넌 행성의 병사들을 공격해!」\\n「염지 매실! 넌 행성의 우두머리를 처치해!」\\n「대왕님은 뭘 하실 건가요?」\\n「난 귀여운 냥이가 되어 이 바보 같은 인간들을 홀리겠어!」\\n\\n그날 은하의 문명들은 떠올렸다, 녀석들에게 지배당했던 공포를……", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "공략", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터가 공격 발동 후 피격된 적 2기 이상이 대응하는 약점 속성을 보유하고 있으면 장착한 캐릭터의 치명타 피해가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806, + 0.25000000023283064, + 2 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.3000000002793968, + 2 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097, + 0.3500000003259629, + 2 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21040, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21040, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21041": { + "Name": "쇼타임", + "Desc": "——그의 죽음을 목격한 자는 누구일까?\\n——나야, 내 작은 눈으로 봤어!\\n——그의 피를 가져간 사람은 누구지?\\n——나야, 내 접시를 썼지!\\n——그의 무덤을 판 사람은 누구지?\\n——나야, 내 끌과 삽으로 무덤을 팠어!\\n\\n현인(賢人)은 온갖 계책을 쓰고, 왕은 권세욕에 빠지고, 영웅은 독선적이나 우인은 웃음을 멈추지 않네——\\n「이제 올해 최고의 쇼 『페나코니의 섬뜩한 밤』을 선사해 주실 스파클 씨를 소개합니다!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "스스로 찾는 즐거움", + "Desc": "장착한 캐릭터가 적에게 디버프 상태를 부여한 후 [트릭]을 1스택 획득한다. [트릭] 스택당 장착한 캐릭터가 가하는 피해가 #1[i]% 증가한다. 최대 중첩수: #2[i]스택, 지속 시간: #3[i]턴. 장착한 캐릭터의 효과 명중이 #4[i]% 이상일 시, 공격력이 #5[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.060000000055879354, + 3, + 1, + 0.8000000007450581, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.07000000006519258, + 3, + 1, + 0.8000000007450581, + 0.24000000022351742 + ] + }, + "3": { + "ParamList": [ + 0.0800000000745058, + 3, + 1, + 0.8000000007450581, + 0.2800000002607703 + ] + }, + "4": { + "ParamList": [ + 0.09000000008381903, + 3, + 1, + 0.8000000007450581, + 0.3200000002980232 + ] + }, + "5": { + "ParamList": [ + 0.10000000009313226, + 3, + 1, + 0.8000000007450581, + 0.3600000003352761 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21041, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 21041, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "21042": { + "Name": "마음에 새긴 약속", + "Desc": "객지를 전전하던 과거, 고향을 지키는 책임, 세계를 개척하는 꿈——\\n커다랗고 거친 손이 세상 물정 모르는 소년에게 그것들을 건네주었다.\\n\\n「우린 이제 곧 더 넓은 세상으로 갈 수 있겠죠?」 \\n남자아이가 기쁜 마음으로 자신에게 전해진 증표를 받는다. 아직 어린 소년은 그것이 주는 무게감을 알지 못했다.\\n\\n「물론이지. 하지만 그때가 오기 전까지 이곳을 잘 지켜야 한단다, 미샤」\\n\\n그는 그때의 약속을 마음속 깊이 새겨 영원히 간직하고 있다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "전승", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 장착한 캐릭터가 필살기 발동 시 치명타 확률이 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.1500000001396984, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.1875, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.2249999998603016, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.26250000041909516, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.3000000002793968, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21042, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21042, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21043": { + "Name": "두 사람의 콘서트", + "Desc": "「오빠, 이건……」\\n「요새 즐겁게 노래한 적이 없잖아. 널 위해 무대를 만들었어. 좀… 초라하지만」\\n「하지만 선생님은 나와 안 맞는다고 하셨는걸……」\\n「그렇지 않아, 난 네 노래가 좋거든! 언젠간 너의 꿈을 이루고, 더 큰 무대에서 노래하게 될 거야……」\\n……\\n\\n수년이 흘러 반짝이는 무대 위에 선 그녀는 무대 아래 수많은 팬들을 내려다보던 중 잠시 다른 생각에 잠겼다——\\n꿈을 좇는 기나긴 길에서 그녀는 그 믿음의 눈빛과 자신의 첫 번째 「콘서트」를 잊은 적이 없다.\\n화려한 조명도 메이크업도 없이, 단지 한 아이가 꿈을 좇는 다른 아이를 위해 만들어 준 무대만이 있을 뿐이었다.\\n\\n「이제 우리의 꿈이 모두 이루어졌어. 하지만… 그걸 여전히 『우리』의 꿈이라고 할 수 있을까…?」\\n그녀는 마이크를 꽉 쥐었다. 다음 노래를 시작하기 전, 그녀는 슬픔을 느낄 겨를조차 없었다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "격려", + "Desc": "장착한 캐릭터의 방어력이 #1[i]% 증가한다. 필드 위에 실드를 보유한 캐릭터가 1명 있을 때마다 장착한 캐릭터가 가하는 피해가 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.0400000000372529 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.05000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.060000000055879354 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.07000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.0800000000745058 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21043, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 21043, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "21044": { + "Name": "끝없는 춤", + "Desc": "경쾌한 스텝에 따라 빛과 그림자가 교차했다. 그녀는 상대방의 손을 잡고 미소를 띠며 냉담한 두 눈을 바라봤다.\\n「아름다운 레인저… 『기억』의 무대에 온 걸 환영해. 이 거리에서 보니까… 더 매력적인걸」\\n\\n주변이 점점 어두워지고, 한 줄기의 빛이 돔에서 쏟아져 내려와 두 사람의 끊임없이 바뀌는 스텝을 쫓아갔다.\\n「하지만 원래 우리와 함께 춤을 춰야 할 사람들이 아직 도착하지 않았지……」\\n\\n회전하는 순간, 그녀는 무표정한 얼굴에 가까이 다가가 차가운 손을 꼭 잡고 조용히 물었다——\\n「무슨 일을 했는지 내게 알려주겠어?」\\n\\n점점 촉박해지는 스텝 속에서, 산산조각 난 과거의 파편들이 손끝을 타고 그녀의 머릿속으로 흘러들어왔다.\\n점점 멀어지는 과거에서 그녀는 빗소리와 생명이 사라지기 전 울부짖는 소리를 들었고, 눈앞의 춤추는 자가 가느다란 빗줄기 속에서 핏빛 종이 우산을 쥐고 있는 것을 보았다. 그리고 그녀의 시선이 닿는 곳에는——\\n\\n수많은 익사자의 시체가 홍수 속에서 떠다니고 있었다.\\n\\n그녀는 당황하며 손을 빼려고 했다가 뒤로 넘어졌다.\\n주변이 다시 밝아졌고, 연회의 시끌벅적한 소리가 다시 들려왔다. 상대방은 방금 무슨 일이 있었는지 전혀 모르는 듯 그녀의 허리를 부드럽게 받쳤다.\\n「기억하는 자, 정말 우아하고 아름다운 춤이야. 한 번 더 출까?」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "탐색", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 장착한 캐릭터가 방어력 감소 혹은 감속 상태의 적에게 가하는 치명타 피해가 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21044, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21044, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21045": { + "Name": "조화가 침묵한 후", + "Desc": "그토록 바라던 영원한 좋은꿈은 한순간에 사라졌다. 대지로 추락하던 순간, 그는 눈을 감고 싶었을 뿐 슬퍼하지 않았다.\\n\\n걸어온 옛길은 산산조각이 나 있었고, 앞길은 여전히 안개에 휩싸여 있었다.\\n「깨어난 후에도 세계는 여전히 고통의 굴레에서 벗어나지 못하고 있고, 그 무엇도 도망칠 수 없어. 언제나 그랬듯이……」\\n그는 과거를 짊어진 채 고향 땅을 뒤로하고 더 이상 존재하지 않는 낙원을 향해 계속해서 발걸음을 옮겼다.\\n\\n그래서 사람은 어째서 잠에 들고, 또 어째서 깨어나는가?\\n——수많은 행성이 창밖을 스쳐 지나갔다. 이제 그 답에 새로운 의미를 부여해야 할지도 모른다.\\n「어쩌면——어쩌면 난 아직……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "적막", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 장착한 캐릭터가 필살기 발동 후 속도가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.10000000009313226, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.12000000011175871, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.14000000013038516, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21045, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21045, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21046": { + "Name": "피어나길 기다리는 꽃", + "Desc": "희미한 새벽빛이 내린 고요한 꽃밭, 움직이는 그림자에 새들이 놀라 사방으로 흩어졌다.\\n\\n마음속으로 초식을 생각하며 검을 휘두르니, 서툴렀던 검법이 제법 능숙해졌다. 검기가 닿는 곳에는 꽃잎이 비처럼 떨어져 공중에 흩날렸고, 어느새 시원한 안개가 그녀의 머리카락을 적셨다.\\n\\n「좋은 검법이야!」\\n깜짝 놀란 그녀는 본능적으로 손에 든 검을 돌렸다——\\n뒤에 있던 회색 머리의 {F#소녀가}{M#소년이} 손에 든 카메라를 내려놓았다.\\n「아름다운 기억은 바람과 함께 사라지지 않아」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "잃지도, 잊지도 않으리", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 전투 진입 시 운명의 길이 같은 아군 캐릭터가 2명 이상일 경우, 해당 캐릭터들의 치명타 피해가 #2[i]% 증가한다. 같은 유형의 스킬 효과는 중복 적용되지 않는다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.20000000018626451 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21046, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21046, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21047": { + "Name": "그림자처럼 뒤따르는 밤", + "Desc": "「발자국」\\n「긁힌 자국」\\n「냄새」\\n\\n모든 것을 깔끔하게 처리한 후, 그는 까마귀 깃털 하나를 주워 옥상으로 가볍게 뛰어올랐다.\\n넓은 도시 속, 칠흑 같은 그림자가 아무도 주목하지 않는 구석을 가로질렀다.\\n\\n「난 그림자에 녹아들어 너희를 지켜볼게」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "은닉", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 전투 진입 시 또는 격파 피해를 가한 후 속도가 #2[i]% 증가한다, 지속 시간: #3[i]턴, 해당 효과는 턴마다 1회만 발동할 수 있다", + "Level": { + "1": { + "ParamList": [ + 0.2800000002607703, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.09000000008381903, + 2 + ] + }, + "3": { + "ParamList": [ + 0.4200000003911555, + 0.10000000009313226, + 2 + ] + }, + "4": { + "ParamList": [ + 0.49000000045634806, + 0.11000000010244548, + 2 + ] + }, + "5": { + "ParamList": [ + 0.5600000005215406, + 0.12000000011175871, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21047, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21047, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21048": { + "Name": "꿈의 몽타주", + "Desc": "「좋은꿈의 도시, 죄악의 온상, 혹은 약속의 땅……」\\n\\n사람들의 기억을 취한 그는 전율을 일으키는 순간을 엿보곤 이를 휘저어 재구성하고 이어 붙인다.\\n「대부분 사람들의 기억은 보잘것없고 무료하지. 일생을 통틀어 소중한 순간은 얼마 되지 않아. 다른 건 존재할 필요도 없어」\\n\\n프레임 한 컷 한 컷이 그의 손길을 거쳐 화려한 영상이 되어간다——\\n「우리는 추억을 옮기는 게 아니라 과거를 창조할 뿐이야」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "아카데믹 편집", + "Desc": "장착한 캐릭터의 속도가 #1[i]% 증가하고, 약점 격파 상태의 적을 공격하면 에너지를 #2[f1]pt 회복하며, 해당 효과는 턴마다 최대 #3[i]회 발동한다", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 3, + 2 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 3.5000000004656613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 4, + 2 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 4.500000000465661, + 2 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 5, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21048, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21048, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21050": { + "Name": "찰나에 결정되는 승리", + "Desc": "티탄 권속의 우렁찬 포효는 전장을 휩쓸었고, 전광석화 같은 두 그림자가 혈로를 열었다.\\n\\n「이 녀석들은 나 혼자만으로 충분해」\\n전사가 주먹을 날릴 때마다 뻗어나가는 피의 가시가 적의 몸을 꿰뚫었다.\\n「힘만 세군. 내 검술이나 잘 보라고!」\\n은백의 검이 아름다운 곡선을 그려내자, 괴물들이 나뭇잎처럼 우수수 쓰러졌다.\\n「속도를 겨뤄볼까?」\\n두 사람은 동시에 적을 향해 달려갔다——\\n울부짖는 소리가 들려왔고, 뒤에서 기습한 괴물은 즉사했다.\\n두 사람이 동시에 말했다——\\n「최후의 일격을 가한 건 나야!」\\n", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "최후의 일격", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가하며, 장착한 캐릭터의 기억 정령이 아군에게 스킬 발동 시 모든 아군이 가하는 피해가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 3 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.10000000009313226, + 3 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.14000000013038516, + 3 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.1600000001490116, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21050, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 38.40000000037253, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 84.48000000044703, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 145.92000000085682, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 207.36000000033528, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 268.80000000074506, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 330.2400000002235, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21050, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 391.6800000006333, + "BaseHPAdd": 5.760000000707805, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21051": { + "Name": "천재들의 안부 인사", + "Desc": "「축하해. 실험이 또 실패했네?」\\n「……」\\n「내가 말했잖아. 네 방법에는 문제가 있다고」\\n「……」\\n「맞다, 나 최근에 큰 성과가 있었어~」\\n\\n책 속에 묻혀있던 차가운 여자가 고개를 들었다——\\n「미안, 뭐라고 했어?」\\n그녀가 손을 저었다.\\n「별 건 아니고, 기껏해야 은하 절반에 영향을 줄 수 있는 정도?」\\n여자가 책을 덮었다.\\n「말해봐」\\n\\n「훗, 이 지니어스의 지혜는… 마음대로 들을 수 있는 게 아니야……」\\n「알지. 새로운 디저트를 좀 만들었으니, 먹으면서 얘기하자」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "축하해", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가하며, 장착한 캐릭터가 필살기 발동 후 장착한 캐릭터와 기억 정령이 가하는 일반 공격 피해가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.20000000018626451, + 3 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064, + 3 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.3000000002793968, + 3 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.3500000003259629, + 3 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.40000000037252903, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21051, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21051, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21052": { + "Name": "땀은 많이, 눈물은 적게", + "Desc": "둔탁한 타격음이 훈련실을 가득 채운다. 벼락처럼 공간을 가른 발차기에 샌드백이 터질 뻔했다.\\n\\n「장군님, 이런 훈련 강도라면 몸이 다 상하지 않을까요?」 옆의 병사가 묻는다.\\n\\n그녀는 미소를 지으며 고개를 젓고는 새로운 샌드백을 걸었다.\\n\\n「이게 뭐 힘들다고!」\\n\\n달빛을 받은 땀방울이 마치 맑고 투명한 진주처럼 흘러내린다. 세상을 떠난 장군의 말이 문득 머릿속에 떠오른다——「전쟁에서 눈물을 적게 흘리려면 평소 훈련할 때 땀을 많이 흘려야 해」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "와서 훈련해!", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가하며, 장착한 캐릭터의 기억 정령이 필드에 있을 시 장착한 캐릭터와 기억 정령이 가하는 피해가 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2700000002514571 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.33000000030733645 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.3600000003352761 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21052, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 9, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 19.800000000745058, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 34.200000000186265, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 48.60000000055879, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 63, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 77.40000000037253, + "BaseDefenceAdd": 1.350000000325963 + }, + { + "EquipmentID": 21052, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.80000000074506, + "BaseDefenceAdd": 1.350000000325963 + } + ] + }, + "21053": { + "Name": "언제나 여정이 평탄하기를", + "Desc": "소년은 별처럼 쏟아지는 빗속을 달리며, 오랜 가뭄 끝에 내린 단비에 환호했다.\\n\\n그 비는 아주 오랫동안 내렸고, 수레는 초록빛으로 뒤덮인 땅에 멈춰 섰다.\\n「엄마, 누나, 이제 더 이상 굶거나 추위에 떨지 않아도 돼!」\\n에브긴인들의 모닥불은 긴 밤을 따뜻하게 밝혔고, 소년은 누나의 이야기를 들으며 아침을 기다렸다.\\n\\n「카카바샤, 너도 지모신께서 주신 행운으로 우리가 할 수 없는 일을 해낼 거야…. 언제나 여정이 평탄하며, 영원히 계략을 들키는 일이 없기를……」\\n\\n황금빛 햇살이 꿈에서 새어나와 현실 속 거처를 비추자, 거래와 숫자가 또다시 시야에 들어왔다.\\n그는 움켜쥐었던 손을 풀었다——\\n\\n마치 아무것도 잡지 못한 것처럼, 마치 아직 온기가 남아 있는 것처럼", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Knight", + "Refinements": { + "Name": "달콤한 꿈", + "Desc": "장착한 캐릭터가 제공하는 실드량이 #1[i]% 증가한다. 아군이 실드를 보유할 시 가하는 피해가 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21053, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 21053, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "21054": { + "Name": "이야기의 다음 페이지", + "Desc": "산들바람에 물결치는 밀밭 속에서 소녀는 빈 수기를 들고 그 사이를 거닌다.\\n\\n엘리사이 에데스 밖, 낯설고도 익숙한 도시 국가에서, 각양각색의 동료들이 서로를 만나고 꿈 같은 여정이 시작될 것이다…….\\n\\n「이번엔 나와 함께……」\\n밀밭의 끝에서 오랫동안 기다려온 소녀가 책장을 덮고 「미래」를 향해 손을 내민다——\\n\\n「이야기의 새로운 장을 써 보자♪」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "작성", + "Desc": "장착한 캐릭터의 HP 최대치가 #1[i]% 증가한다. 장착한 캐릭터의 기억 정령이 공격하면 장착한 캐릭터와 기억 정령의 치유량이 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.1500000001396984, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21054, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 16.800000000745058, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 36.96000000089407, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.84000000078231, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 90.72000000067055, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 117.6000000005588, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 144.48000000044703, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21054, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 171.36000000033528, + "BaseAttackAdd": 2.5200000004842877, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21055": { + "Name": "내일의 내일이 올 때까지", + "Desc": "「트리스비오스, 내일 봐……」\\n\\n어머니가 먼 길을 떠날 때 소녀는 그녀의 얼굴에 흐르는 눈물을 닦았다.\\n\\n그녀는 자신이 어머니처럼 될 때까지 수많은 내일을 기다렸다.\\n그녀는 불씨를 움켜쥔 채 문 앞에 섰다. 그러자 귓가에 어머니의 말이 들려왔다.\\n\\n「그곳에는 눈보라도, 추위도, 폭우도 없을 거란다……」\\n\\n「하지만 내일 만나지 못한다면……」\\n\\n그녀는 유성이 하늘을 가르듯 어린아이의 모습만을 남긴 채 땅으로 추락했다.\\n\\n「내일의 내일 보자!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "이별", + "Desc": "장착한 캐릭터의 치유량이 #1[i]% 증가한다. 아군의 현재 HP 백분율이 #2[i]% 이상일 시 가하는 피해가 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.5000000004656613, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.5000000004656613, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21055, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21055, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21056": { + "Name": "바람을 쫓을 때", + "Desc": "「훗, 이건 운이 나쁜 그 녀석에게 줘야겠어. 그럼 그 빚쟁이 부모의 입을 막을 수 있겠지? 적어도 좀 덜 때리길 바라야지」\\n「이건 급한 대로 새콤 사탕 파는 할머니를 도울 수 있을 거야. 잔병치레를 다 고쳐야 나도 맛있는 사탕을 늘 먹을 수 있을 테니까……」\\n\\n소녀는 허리를 굽혀 주머니 속의 보석을 하나하나 세더니 갑자기 재채기를 했다.\\n「누가 내 생각이라도 하나?」\\n\\n「사이퍼라, 여기 있었구나?」\\n실이 어디서부터 시작할지 망설이듯 그녀의 뒤에 얽혀있었다.\\n\\n「앞으로 바람을 쫓을 땐……」\\n차가운 금실이 그녀의 손목을 휘감아 움직일 수 없게 만들었다.\\n\\n「자기 자신을 잘 챙기는 것도 잊지 마」\\n\\n그녀는 멀리 도망쳤다. 뒤를 돌아보니 실밥이 터진 망토 끝이 새것처럼 수선되어 있었다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "당황", + "Desc": "전투 진입 후 모든 아군이 가하는 격파 피해가 #1[i]% 증가한다. 같은 유형의 스킬 효과는 중복 적용되지 않는다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116 + ] + }, + "2": { + "ParamList": [ + 0.18000000016763806 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "ParamList": [ + 0.22000000020489097 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21056, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21056, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21057": { + "Name": "꽃은 잊지 않는다", + "Desc": "그녀들은 봄에 씨앗을 뿌린다.\\n여름이 되면 꽃밭에 물을 준다.\\n가을이 오면 열매를 딴다.\\n겨울이 깃들면 눈을 밟으며 즐겁게 노래한다.\\n……\\n\\n황폐했던 땅에는 꽃이 피었고, 나비는 은방울 같은 웃음소리에 이끌려 손끝에 내려앉았다.\\n「언니, 우리 앞으로도 같이 이곳을 드넓은 꽃바다로 만들자!」\\n\\n「봐, 우리의 약속을……」\\n나비가 피안을 향해 날아가자, 조금 과묵해 보이는 소녀는 여동생이 여전히 옆에 있는 것처럼, 따뜻한 꽃잎을 어루만졌다.\\n「나와 우리가 돌봐온 꽃들 모두… 잊지 않았어」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Memory", + "Refinements": { + "Name": "서로 의지하며", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 장착한 캐릭터의 기억 정령이 가하는 치명타 피해가 추가로 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.3000000002793968 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.3600000003352761 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.4200000003911555 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21057, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21057, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21058": { + "Name": "과거의 핏자국", + "Desc": "폭풍이 먼 곳에서 일렁이고 저승의 바다에서 손이 튀어나와 수상한 생명체를 놀리는 듯하다.\\n바다 괴물의 잔해에서 하늘로 솟구치는 파도가 돌멩이처럼 해연으로 추락한다.\\n\\n그들은 싸우는 포효가 열 낮과 밤 이어지고, 천둥소리를 넘었다고 한다.\\n그들은 천만 개의 목숨이 있어도 죽음의 바다에 맞설 수 없다고 한다.\\n\\n용맹함으로 미숙함을 씻어내고 거만함으로 나약함을 씻어낸 후——\\n\\n왜소한 그 몸은 해안가에 비틀거리며 올라왔다. 당시 해가 떠오르고 바닷물은 지난 날에 흘린 피와 같았다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "살육", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 장착한 캐릭터가 가하는 전투 스킬과 필살기 피해가 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21058, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21058, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21060": { + "Name": "밀 내음이 가득한 꿈", + "Desc": "산들바람이 소년의 손끝을 스치며 아직 잉크가 마르지 않은 편지를 먼 곳으로 가져갔다.\\n\\n「내 미래는 어떤 모습일까…?」\\n꿈이 머릿속에서 피어올라 하늘 끝으로 날아갔다.\\n밀이 바람을 따라 춤을 추며 잔물결을 일으켰다. 마치 그 미숙하지만 진심 어린 마음에 응답하는 것처럼 말이다.\\n\\n「무슨 일이 있어도, 설령 손에 검 한 자루만 있을지라도 난 이곳을 지키고 싶어!」\\n소년은 마음속으로 묵묵히 맹세했다——\\n\\n그 서원은 낙인처럼 마음속에 영원히 새겨졌다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "동경", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 장착한 캐릭터가 가하는 필살기와 추가 공격 피해가 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21060, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21060, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "21061": { + "Name": "휴일의 목욕탕 대모험", + "Desc": "「히아, 우리 새로 생긴 특색 목욕탕에 가보자!」\\n\\n오크마에서 진료를 마친 소녀는 호기심에 가득 찬 채로 아이와 함께 각양각색의 목욕탕에 들어갔다.\\n\\n「과일즙 안마, 한번 받아 보실래요?」\\n소녀는 붉은 두 손을 보곤, 의욕 넘치는 이카를 껴안은 채 몇걸음 뒤로 물러났다——\\n「과일즙은… 마시는 걸 더 선호해요……」\\n\\n「드로마스가 등 밟아드립니다! 기간 한정 할인 중이에요!」\\n호기심 많은 드로마스가 고개를 숙이자, 콧바람이 소녀의 머리카락을 스쳤다.\\n「다, 다음에 꼭 해볼게요!」\\n\\n「몸이 건강해지는 약초탕입니다. 몇 분이세요?」\\n소녀는 향긋한 약초 향을 맡으며 조심스레 탕 안으로 발을 들였다.\\n「몸에 아주 좋을 것 같아요……」\\n\\n「두, 두두!」\\n이카가 물속에서 신나게 배영을 하기 시작했다.\\n「이카도 많이 지쳤나보네……」\\n\\n모처럼의 휴가에 소녀는 포도즙을 마시며 적발의 아이와 잠을 잘 자는 비결부터 디저트를 만드는 방법까지 다양한 이야기를 나눴다.\\n\\n「큰일이야… 이, 이카가!」\\n놀란 아이의 외침이 목욕탕의 고요함을 깨뜨렸다.\\n\\n「두……」\\n「이카, 조금만 버텨!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "진정해", + "Desc": "장착한 캐릭터가 가하는 피해가 #1[i]% 증가한다. 장착한 캐릭터가 공격 후 피격된 목표를 #2[i]%의 기본 확률로 취약 상태에 빠트리고 받는 피해를 #3[i]% 증가시킨다, 지속 시간: #4[i]턴. 같은 유형의 효과는 중첩되지 않는다", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 1, + 0.11499999975785613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1, + 0.13000000012107193, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 1, + 0.1449999997857958, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 1, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21061, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 21061, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "21062": { + "Name": "그 종착지에서 다시 만나자", + "Desc": "분함의 눈물이 뺨을 타고 흘러내렸다. 파괴된 법진 중앙에 남은 것은 죽음의 그림자, 그리고 끝없는 고요함과 공허함이었다.\\n\\n그때, 어둠 속에서 탄식이 들려왔다. 그것은 「영혼」의 떨림이었다.\\n「…누나?」\\n소년은 손을 들어 올렸고, 그 눈동자에는 한 줄기 빛이 스쳤다. 가족의 모습은 아주 잠시 머물렀지만, 그 순간은 그의 마음속에서 천 년 동안 멈춰 있는 듯했다.\\n\\n「알겠어…. 마지막으로 작별 인사를 하러 와줘서 고마워」\\n그는 천천히 몸을 일으켰고, 첫 번째 아침 햇살이 단호한 얼굴과 마르지 않은 눈물 자국을 비췄다.\\n\\n「탐구는 길고 고독한 여정이 될 테니, 우린 종착점에서 다시 만나자……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Rogue", + "Refinements": { + "Name": "집착", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 장착한 캐릭터가 가하는 전투 스킬과 추가 공격 피해가 #2[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 21062, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 21062, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "22000": { + "Name": "초보자 임무 시작 전", + "Desc": "「얼마나 더 있어야 시작할 수 있지?」\\n「나한테 그런 걸 묻다니…. 신입한테 무슨 일이 생겼나 봐?」\\n「아니」\\n「엘리오께서 그녀를 부른 건 다른 이유 때문이지만, 그래도 초보자 임무에서는 살아남아야 할 텐데」\\n「그녀는 괜찮아」\\n「그렇다면 안심이야. 블레이디도 믿을 수 있는 선배가 된 모양이네」\\n「……」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warlock", + "Refinements": { + "Name": "빠른 눈썰미", + "Desc": "장착한 캐릭터의 효과 명중이 #1[i]% 증가한다. 장착한 캐릭터가 방어력이 감소된 적을 공격하면 에너지를 #2[i]pt 회복한다", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 4 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 5 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 6 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 7 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 8 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "22001": { + "Name": "저기, 나 여기 있어", + "Desc": "세 소녀가 어두운 밤 속을 걷는다. 주변 풍경은 오싹한 분위기가 더해지고 있다.\\n「곽향 님, 어서 따라오세요, 안 그럼 저희 안 기다려요!」\\n그녀는 으스스한 분위기에 영향을 받지 않은 듯 휴대폰을 들고 앞으로 성큼성큼 나아간다.\\n「저… 저 여기 있어요!」\\n앞에 서 있는 소녀가 쭈뼛쭈뼛 대답한다.\\n「응? 앞쪽에 계셨어요? 그럼, 저랑 쏘쏘 뒤에 있는 건……」\\n\\n이 장면에 가장 걸맞은 종지부는 분명 소녀의 비명일 것이다", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Priest", + "Refinements": { + "Name": "무섭지 않아…!", + "Desc": "장착한 캐릭터의 HP 최대치가 #1[i]% 증가한다. 장착한 캐릭터가 전투 스킬 발동 시 치유량이 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.1600000001490116, + 2 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.1900000001769513, + 2 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.22000000020489097, + 2 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.25000000023283064, + 2 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.2800000002607703, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 22001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "22002": { + "Name": "내일을 위한 여정", + "Desc": "나침반의 바늘이 끊임없이 회전하며 결국 꿈의 순간을 가리켰다.\\n차창밖, 기억 물질이 넘쳐나는 아스다나 은하계는 몽롱한 빛을 뿜고 있으며, 그곳에 위치한 변방 감옥은 전쟁의 불길이 끊이지 않는다.\\n\\n「있잖아, 꿈속 세계는 어떤 모습일까? 완전한 지도를 꼼꼼하게 그려야겠어!」\\n소녀는 측정기를 거두고, 동경에 가득 찬 눈빛으로 손만 뻗으면 닿을 수 있을 듯한 새로운 세계를 바라봤다.\\n「그곳은 엉망진창이야. 너희 둘, 도착하면 함부로 돌아다니지 마. 또 저번처럼 납치당하면, 난……」 \\n무기를 다 닦은 카우보이 차림의 남자는 음료 한 잔을 들고 소파로 걸어갔다. 그는 어쩔 수 없다는 듯 고개를 저었다.\\n「꿈의 땅에는 무한한 가능성이 존재해. 우린 반드시 엄청난 일을 해낼 수 있을 거야…. 차장, 우리가 이곳에 반해버려서 돌아오지 않으면 우리를 그리워할 거야?」\\n신사적인 차림의 무명객이 폼폼을 향해 윙크하며 미소 짓는다.\\n「차장을 함부로 놀리면 안 돼! 차장, 하고 싶은 말이 이거지?」소녀가 교활한 미소를 지었다.\\n「젠장! 너희들!」\\n기포가 음료 속에서 떠오르고, 열차 안은 웃음소리로 가득했다.\\n……\\n\\n젊은 무명객의 뒷모습이 점차 기억 물질에 삼켜졌다.\\n「조심해야 해……」\\n뒤를 돌아보니, 열차 칸은 텅 비어 있었다.\\n그는 멍하니 있었다…. 이미 이런 광경을 무수히 겪은 것처럼…", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Shaman", + "Refinements": { + "Name": "연결", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터가 필살기를 발동한 후 가하는 피해가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 0.18000000016763806, + 1 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 0.21000000019557774, + 1 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742, + 1 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 0.2700000002514571, + 1 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.3000000002793968, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "22003": { + "Name": "인사록•음률 사냥", + "Desc": "은하인법은 천변만화, 음률•사냥은 위풍당당. 들어라——\\n\\n기타 스트로크 연주, 심장을 울리는 베이스, 전자음의 윤무가 순식간에 공연장을 뜨겁게 달군다!\\n땀은 거짓말을 하지 않고 이어질 파란을 기록하며 건반의 음표가 되어 울려퍼지리.\\n요란하게 노래해라. 적극적으로 나서라. 상처투성이가 된다 해도.\\n「요란!」「요란!」「요란!」\\n헤헤, 귀공, 이 거친 파도 같은 세상에서 노래 정도는 목청껏 불러도 되지 않을까?", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Warrior", + "Refinements": { + "Name": "공연 시작!", + "Desc": "장착한 캐릭터의 HP 최대치가 #1[i]% 증가하고, 자신의 HP를 잃거나 회복하면 치명타 피해가 #2[i]% 증가한다, 지속 시간: #3[i]턴, 해당 효과는 턴마다 1회만 발동한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.18000000016763806, + 2 + ] + }, + "2": { + "ParamList": [ + 0.1500000001396984, + 0.2249999998603016, + 2 + ] + }, + "3": { + "ParamList": [ + 0.18000000016763806, + 0.2700000002514571, + 2 + ] + }, + "4": { + "ParamList": [ + 0.21000000019557774, + 0.31499999994412065, + 2 + ] + }, + "5": { + "ParamList": [ + 0.24000000022351742, + 0.3600000003352761, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 12, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 26.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 45.60000000055879, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 64.80000000074506, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 84, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 103.20000000018626, + "BaseDefenceAdd": 1.800000000745058 + }, + { + "EquipmentID": 22003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 122.40000000037253, + "BaseDefenceAdd": 1.800000000745058 + } + ] + }, + "22004": { + "Name": "우주 대사업", + "Desc": "데이터로 구성된 가상 전시장에서 전시회에 참가한 대표들이 의견을 나눈다.\\n두 실루엣이 부스 사이를 오가며 각자에게 필요한 모든 것을 배달한다.\\n\\n「어, 당신은 혹시…」\\n「방송에 나오신 거 봤어요」\\n그들은 게임, 미식, 서로의 체형, 그리고 우주의 아름다운 모든 것들에 대해 이야기를 나눈다.\\n자주 만날 일이 드문데도, 그들은 오랜 친구처럼 친밀하게 대화한다——\\n\\n「참, 제 제안을 다시 생각해 보시는 건……」\\n「열차는 비매품입니다!」", + "Rarity": "CombatPowerLightconeRarity4", + "BaseType": "Mage", + "Refinements": { + "Name": "상호 이익", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 적이 서로 다른 속성의 약점을 1개 보유할 때마다 장착한 캐릭터가 대상에게 가하는 피해가 #2[i]% 증가하며, 최대 7개까지 계산한다", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.05000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.060000000055879354 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.07000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.0800000000745058 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 22004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 4000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 5, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 8000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 3, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 10, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 16000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 3, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 6, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 40000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 6, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 9, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 80000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 4, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 5, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 160000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 8, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 7, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 22004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "23000": { + "Name": "은하철도의 밤", + "Desc": "발밑이 걱정된다면 다시 한번 하늘을 올려다 보라.\\n별들이 보내주는 부드러운 시선을 느끼면 마음은 바람을 타고 날아오를 테니까.\\n떠오르는 생각과 들려오는 속삭임은\\n모두 언제까지나 삶의 버팀목이 되어줄 것이다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "유성군", + "Desc": "필드에 적이 1기 있을 때마다 장착한 캐릭터의 공격력이 #2[f1]% 증가한다. 해당 효과 최대 중첩수: 5스택. 적의 약점이 격파될 시 장착한 캐릭터가 가하는 피해가 #1[i]% 증가한다. 지속 시간: 1턴", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.09000000008381903 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.1049999997485429 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.13499999977648258 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23001": { + "Name": "야경 속에서", + "Desc": "소녀가 희미한 미소를 짓는다.\\n「왜?」\\n「난 지금 분명 혼자인데…」\\n「왜… 혼자가 아닌 기분이 들까」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "꽃과 나비", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 장착한 캐릭터의 전투 중 속도가 100보다 높을 경우, #2[i]pt 초과할 때마다 일반 공격 및 전투 스킬이 가하는 피해가 #3[i]% 증가하고, 필살기의 치명타 피해가 #4[i]% 증가한다. 최대 중첩수: #5[i]스택", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 10, + 0.060000000055879354, + 0.12000000011175871, + 6 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 10, + 0.07000000006519258, + 0.14000000013038516, + 6 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 10, + 0.0800000000745058, + 0.1600000001490116, + 6 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 10, + 0.09000000008381903, + 0.18000000016763806, + 6 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 10, + 0.10000000009313226, + 0.20000000018626451, + 6 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23002": { + "Name": "대체할 수 없는 것", + "Desc": "「스바로그, 만약 어느 날 나도 없어진다면, 데이터베이스를 부탁할게」\\n(누구지… 왜 내 기록에 이런 녹음이 있지…)\\n「스바로그, 네게 대체할 수 없는 게 있을까?」\\n(대체 불가한… 고장 난 부속품은… 교체하면 된다…)\\n「스바로그, 너도 언젠가는 찾게 될 거야」\\n(그런 건… 귀찮을 뿐…)\\n\\n「그때가 되면… 여길 떠나」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "가족", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터는 적을 처치하거나 피격된 후 즉시 공격력 #2[i]%만큼의 HP를 회복하고, 가하는 피해가 #3[i]% 증가하며, 자신의 다음 턴이 끝날 때까지 지속된다. 해당 효과는 중첩될 수 없으며 턴마다 1회만 발동할 수 있다", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.0800000000745058, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.09000000008381903, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.10000000009313226, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.11000000010244548, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.12000000011175871, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23003": { + "Name": "아직 전투는 끝나지 않았다", + "Desc": "「명심해. 괴물과의 전쟁은 퇴각만으로 이길 수 없다」\\n「우리 뒤에 벨로보그가 있고, 우리가 바로 최후의 강철 방어선이다……」\\n「우리는 절대 퇴각해서는 안 된다!」\\n\\n그녀가 고개를 든다. 앞은 추위와 얼어붙은 땅, 그리고 끝없는 눈보라다.\\n모든 것이 그대로다.\\n다만 그녀가 지켜보던 뒷모습은 이제 없다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "계승자", + "Desc": "장착한 캐릭터의 에너지 회복효율이 #1[i]% 증가하고, 아군에게 필살기 발동 시 전투 스킬 포인트를 1pt 회복한다. 해당 효과는 필살기를 2회 발동할 때마다 1회 발동할 수 있다. 장착한 캐릭터가 전투 스킬 발동 후 다음에 행동하는 다른 아군이 가하는 피해가 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 1 + ] + }, + "2": { + "ParamList": [ + 0.12000000011175871, + 0.3500000003259629, + 1 + ] + }, + "3": { + "ParamList": [ + 0.14000000013038516, + 0.40000000037252903, + 1 + ] + }, + "4": { + "ParamList": [ + 0.1600000001490116, + 0.45000000041909516, + 1 + ] + }, + "5": { + "ParamList": [ + 0.18000000016763806, + 0.5000000004656613, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23004": { + "Name": "세계의 이름으로", + "Desc": "「웰트…」\\n「좋은… 이름이지?」\\n「그럼…」\\n「이제부터 너는 웰트야」\\n「율자 코어… 그리고 세계를 수호하는 사명도…」\\n「다 너에게 맡길게, 웰트」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "전승자", + "Desc": "장착한 캐릭터가 디버프 효과에 빠진 적에게 가하는 피해가 #1[i]% 증가한다. 장착한 캐릭터가 전투 스킬 발동 시 장착한 캐릭터의 이번 공격은 효과 명중이 #2[i]% 증가하고, 공격력이 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.24000000022351742, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.2700000002514571, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.3000000002793968, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23005": { + "Name": "승리의 순간", + "Desc": "「져서 울고 싶으면 울어도 돼, 게파드」\\n「하지만 울고 있어도 일어나야만 해. 날 이길 수 있을 때까지… 5년이 걸리든, 10년이 걸리든 말이야」\\n몇 년이 지나자 남자아이는 울지 않게 되었고, 누나에게도 더 이상 지지 않았다.\\n\\n이제 그 어떤 것도 두려워하지 않게 된 실버메인 철위대의 방위관은 전장에서 언제나 마지막까지 굳건히 버틴다.\\n——적을 철저히 무너뜨릴 수 있는 순간을 노리기 위해서", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "결단", + "Desc": "장착한 캐릭터의 방어력이 #2[i]% 증가하고, 효과 명중이 #4[i]% 증가하며, 자신이 피격될 확률이 증가한다. 장착한 캐릭터는 피격 후 자신의 턴이 끝날 때까지 방어력이 추가로 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 2, + 0.24000000022351742, + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 2, + 0.2800000002607703, + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 2, + 0.3200000002980232, + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 2, + 0.3600000003352761, + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 2, + 0.40000000037252903, + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 27, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 59.40000000037253, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 102.6000000005588, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 145.80000000074506, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 189, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 232.20000000018626, + "BaseDefenceAdd": 4.050000000046566 + }, + { + "EquipmentID": 23005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 275.40000000037253, + "BaseDefenceAdd": 4.050000000046566 + } + ] + }, + "23006": { + "Name": "필요한 건 기다림뿐", + "Desc": "「혹시 나한테 숨기는 게 더 있는 거야?」\\n\\n상대방의 잔뜩 움츠린 목과, 침을 삼키는 소리에 그녀가 물어본다.\\n두려움에 떠는 사람에게 그녀는 능력을 사용하지 않아도 된다.\\n사실 그녀가 무엇을 말하든 결과는 변함없다.\\n입밖으로 나온 그녀의 말로 인해 공포심은 점점 더 부풀어 오르게 되고…….\\n상대방은 당황해서 그녀가 듣고 싶어 하는 모든 걸 털어놓게 될 것이다.\\n\\n그녀에게 필요한 건 기다림뿐이다. 그물을 치고 사냥감을 기다리는 거미처럼", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "거미줄", + "Desc": "장착한 캐릭터가 가하는 피해가 #2[i]% 증가한다. 장착한 캐릭터가 공격을 발동할 때마다 속도가 #3[f1]% 증가한다. 최대 중첩수: #4[i]스택\\n장착한 캐릭터가 적 명중 시, 해당 목표가 [흐름] 상태가 아니면 해당 목표는 100%의 기본 확률로 [흐름] 상태에 빠진다. [흐름] 상태는 감전과 동일한 상태로 간주한다. [흐름] 상태에서 적은 턴이 시작될 때마다 장착한 캐릭터 공격력의 #1[i]%만큼 번개 속성 지속 피해를 받는다. 지속 시간: #5[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 0.04799999948590994, + 3, + 1 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 0.055999999633058906, + 3, + 1 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 0.06399999978020787, + 3, + 1 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 0.07199999992735684, + 3, + 1 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 0.0800000000745058, + 3, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23006, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23007": { + "Name": "계속 내리는 비", + "Desc": "그녀는 처마 밑에서 우산을 쓰고 콧노래를 부르며 골목으로 들어간다.\\n얼마 지나지 않아 비가 그쳤다.\\n\\n그녀는 머리를 긁적이며 화면을 닦았고, 머리 위 작은 공간에서 빗줄기가 다시 미끄러진다.\\n우산 위로 떨어지는 빗소리와 게임 소리가 들리자, 그녀는 한껏 들뜬다.\\n「역시 비가 오는 날에는 게임이 최고야」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "현실 속 신기루", + "Desc": "장착한 캐릭터의 효과 명중이 #1[i]% 증가한다. 장착한 캐릭터가 동시에 디버프 효과 #4[i]개 이상인 적에게 피해를 가하면 치명타 확률이 #5[i]% 증가한다. 장착한 캐릭터가 일반 공격, 전투 스킬, 필살기 발동 후 #2[i]%의 기본 확률로 [에테르 코드]를 보유하지 않은 랜덤 피격 목표 1기에 [에테르 코드]를 부여한다. [에테르 코드]를 보유한 목표가 받는 피해가 #3[i]% 증가한다. 지속 시간: 1턴", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 1, + 0.12000000011175871, + 3, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 1, + 0.14000000013038516, + 3, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 1, + 0.1600000001490116, + 3, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 1, + 0.18000000016763806, + 3, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 1, + 0.20000000018626451, + 3, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23007, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23008": { + "Name": "관의 울림", + "Desc": "하얀 아이리스 옆에서 그는 관을 두드린다.\\n「가끔 너와 이 거래를 한 건 널 과소평가한 거라고 생각해」\\n아무런 대답 없이 가시가 그의 손바닥을 뚫는다.\\n그러나 그는 웃으며 가시를 잡았다.\\n\\n「그래, 우린 서로를 이용하려 하지만 한편으로 서로를 과소평가하고 있지」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "가시", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터가 공격을 발동하면 다른 적 1기를 명중할 때마다 에너지를 #3[f1]pt 회복한다. 공격할 때마다 해당 방식으로 에너지를 최대 #4[i]회 회복한다. 장착한 캐릭터가 필살기를 발동하면 모든 아군의 속도가 #2[i]pt 증가한다. 지속 시간: 1턴", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 12, + 3, + 3 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 14, + 3.5000000004656613, + 3 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 16, + 4, + 3 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 18, + 4.500000000465661, + 3 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 20, + 5, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23008, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23009": { + "Name": "닿을 수 없는 저편", + "Desc": "그는 매년 이곳에 새로운 검들을 가지고 온다.\\n검의 주인들, 그는 그들의 마지막 모습을 보았다.\\n그는 떠날 때마다 아쉬움에 잠긴다…….\\n\\n자신의 검은 언제쯤 누가 이곳으로 가져와줄까….", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "불능", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가하고, HP 최대치가 #2[i]% 증가한다. 장착한 캐릭터가 피격되거나 자신의 HP를 소모한 후 가하는 피해가 #3[i]% 증가한다. 해당 효과는 장착한 캐릭터가 공격을 발동한 후 해제된다", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.18000000016763806, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.21000000019557774, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.24000000022351742, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.2700000002514571, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23009, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 15, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 33, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 57, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 81, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 105, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129, + "BaseDefenceAdd": 2.2500000002328306 + }, + { + "EquipmentID": 23009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 153, + "BaseDefenceAdd": 2.2500000002328306 + } + ] + }, + "23010": { + "Name": "동트기 전", + "Desc": "「장군님, 이 일은 신중해야 합니다… 앞으로의 역사는 장군님을 어떻게 평가할지…」\\n운기 장군은 두 눈을 반쯤 감고 부하의 보고를 듣는다.\\n「역사는 알아서 판단하겠지만, 나는 역사의 결론에 큰 관심이 없어」\\n「성사된다면, 난 당연히 자신만만하고 마음이 편해지겠지」\\n「성사되지 않으면, 난 절제를 모르고 작은 것을 위해 큰 걸 놓친 자가 될 거고」\\n\\n참새 한 마리가 그의 어깨에서 뛰어내리자 그는 손으로 받아낸다.\\n「난 나의 판단을 내릴 뿐이야」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "긴 밤", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가하며, 장착한 캐릭터의 전투 스킬과 필살기로 가하는 피해가 #2[i]% 증가한다. 장착한 캐릭터는 전투 스킬 혹은 필살기 발동 후 [몽신] 효과를 획득한다. 추가 공격 발동 시 [몽신]을 소모해 추가 공격으로 가하는 피해가 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.18000000016763806, + 0.48000000044703484 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.21000000019557774, + 0.5600000005215406 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.24000000022351742, + 0.6400000005960464 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.2700000002514571, + 0.7200000006705523 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.3000000002793968, + 0.8000000007450581 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23010, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23011": { + "Name": "그녀는 두 눈을 감았네", + "Desc": "이마의 고통은 여생을 함께하겠지만 그것은 과거 고통의 만 분의 일도 안 된다.\\n그녀는 과거의 인연이 세상을 떠나기 전까지 자신이 모든 미래를 알고 있다고 자부했다.\\n지금의 그녀는 만상이 대체되고 시대가 변하는 것을 「지켜본다」….\\n하지만 그녀는 두 눈을 감았다.\\n미래는 「제3의 눈」에서 결정되었기에——", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "펼쳐진 세계", + "Desc": "장착한 캐릭터의 HP 최대치가 #1[i]% 증가하고, 에너지 회복효율이 #4[i]% 증가한다. 장착한 캐릭터의 HP가 감소하면, 모든 아군이 가하는 피해가 #2[f1]% 증가한다. 지속 시간: #5[i]턴\\n웨이브가 시작될 때마다 모든 아군의 HP가 각자 손실한 HP의 #3[i]%만큼 회복한다", + "Level": { + "1": { + "ParamList": [ + 0.24000000022351742, + 0.09000000008381903, + 0.8000000007450581, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.2800000002607703, + 0.1049999997485429, + 0.8500000007916242, + 0.14000000013038516, + 2 + ] + }, + "3": { + "ParamList": [ + 0.3200000002980232, + 0.12000000011175871, + 0.9000000008381903, + 0.1600000001490116, + 2 + ] + }, + "4": { + "ParamList": [ + 0.3600000003352761, + 0.13499999977648258, + 0.9500000008847564, + 0.18000000016763806, + 2 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.1500000001396984, + 1, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23011, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23012": { + "Name": "깊게 든 단잠", + "Desc": "장군의 어깨에 기대어 곤히 잠든 상태에서도 소년은 검을 꽉 움켜쥐고 있었다.\\n그가 소년의 뺨을 부드럽게 토닥이자 소년은 잠꼬대를 중얼거렸다.\\n「장군님… 드디어… 이겼다……」\\n\\n그는 잠시 멍해졌다. 매일 노력하며 성장해나가는 소년에 비해\\n자신은 이미 너무 오랜 세월을 살아왔고, 그동안 「변하지 않는 것」에 익숙해져 있었다는 것이 문득 떠올랐기 때문이다.\\n\\n「너는 곧 모든 사람을 이길 수 있게 될 거야. 그리고 그때부터가 시작이지……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "좋은꿈", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 장착한 캐릭터의 일반 공격 혹은 전투 스킬 피해가 치명타를 발동하지 않으면 자신의 치명타 확률이 #2[i]% 증가한다. 지속 시간: #3[i]턴. 해당 효과는 #4[i]턴마다 1회만 발동할 수 있다", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761, + 1, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555, + 1, + 3 + ] + }, + "3": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484, + 1, + 3 + ] + }, + "4": { + "ParamList": [ + 0.45000000041909516, + 0.5400000005029142, + 1, + 3 + ] + }, + "5": { + "ParamList": [ + 0.5000000004656613, + 0.6000000005587935, + 1, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23012, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23013": { + "Name": "세월은 흐를 뿐", + "Desc": "그녀는 창가에서 오랫동안 시간이 흐르는 것을 지켜보았다.\\n\\n박하와 형개를 배합해서 향이 부드러운 약을 조제할 때는 창밖에서 꽃이 피어났다.\\n향유와 생강을 배합해서 향이 강한 약을 조제할 때는 창밖에서 비가 내렸다.\\n작약과 오매를 배합해서 시큼한 약을 조제할 때는 창밖에서 낙엽이 떨어졌다.\\n황금과 지모를 배합해서 쓰디쓴 약을 조제할 때는 창밖에서 눈이 내렸다.\\n\\n아무리 세월이 흘러도 창가에 앉아있는 사람은 변함이 없었다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "아침, 점심, 저녁, 그리고 밤", + "Desc": "장착한 캐릭터의 HP 최대치가 #1[i]% 증가하고, 치유량이 #2[i]% 증가한다. 장착한 캐릭터가 아군에게 치유 제공 시 치유량을 기록한다. 임의의 아군은 공격 발동 후 기록한 치유량의 #3[i]%에 따라 임의의 피격된 적 1기에게 장착한 캐릭터 속성의 추가 피해를 준다. 해당 피해는 보너스의 영향을 받지 않고 턴마다 최대 1회 결산한다.", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.12000000011175871, + 0.3600000003352761 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.14000000013038516, + 0.4200000003911555 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.1600000001490116, + 0.48000000044703484 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.18000000016763806, + 0.5400000005029142 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.20000000018626451, + 0.6000000005587935 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23013, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23014": { + "Name": "이 몸이 검이니", + "Desc": "검신이 파열되어 뼛속까지 스미는 추위 속으로 떨어진다.\\n평범한 도검과 무기는 무용지물이다. 그것들의 한계는 명확하다.\\n「내게 이제 검이 무슨 소용인가?」\\n그녀는 미련을 두지 않았고, 눈앞의 어느 것도 눈에 들어오지 않았다.\\n\\n「지금부터, 이 몸이 검이다」\\n극한이라는 것을 뛰어넘으려면, 전인미답의 경지에 오르려면\\n——자신마저 「장작」으로 여기는 수밖에 없다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "옥을 쥐고", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 동료가 공격을 받거나 HP를 소모하면 장착한 캐릭터는 [월식]을 1스택 획득한다. 최대 중첩수: #2[i]스택. [월식] 스택당 장착한 캐릭터의 다음번 공격이 가하는 피해가 #3[f1]% 증가한다. #2[i]스택까지 중첩 시, 이번 공격은 추가로 목표의 방어력을 #4[i]% 무시한다. 해당 효과는 장착한 캐릭터가 공격을 발동하면 해제된다", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 3, + 0.14000000013038516, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.2300000002142042, + 3, + 0.16499999980442226, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.26000000024214387, + 3, + 0.1900000001769513, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.29000000027008355, + 3, + 0.2149999998509884, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 3, + 0.24000000022351742, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23014, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23015": { + "Name": "태양보다 밝게 빛나는 것", + "Desc": "태어났을 때, 그는 한 줌의 빛도 들지 않는 지하 감옥에 갇혀있었다.\\n그와 무관한 죄가 그를 이곳에 묶어두고, 그와 무관한 기억이 그를 삼켰다.\\n그는 발악하며 최대한 숨을 들이켜려고 했고,\\n넓고 넓은 바닷속에서 한 줄기의 빛을 잡으려 했다.\\n\\n장군이 이 어두운 감옥에 들어선 그날,\\n그는 태양보다 빛나는 소년의 눈빛을 보았다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "결사 저항", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 장착한 캐릭터가 일반 공격을 발동하면 [용의 포효]를 1스택 획득한다. 지속 시간: #2[i]턴. [용의 포효] 스택마다 장착한 캐릭터의 공격력이 #4[i]% 증가하고, 에너지 회복효율이 #5[f1]% 증가한다. [용의 포효] 최대 중첩수: #3[i]스택", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 2, + 2, + 0.18000000016763806, + 0.060000000055879354 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 2, + 2, + 0.21000000019557774, + 0.07000000006519258 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 2, + 2, + 0.24000000022351742, + 0.0800000000745058 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 2, + 2, + 0.2700000002514571, + 0.09000000008381903 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 2, + 2, + 0.3000000002793968, + 0.10000000009313226 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23015, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23016": { + "Name": "고민, 그리고 행복", + "Desc": "적격한 컴퍼니 직원이라면 「압박에 무너지는」 것은 절대 용납할 수 없는 일이다.\\n스트레스나 피로에도 가슴을 펴고 맞서야 한다!\\n물론… 「그들」에게 무너지는 건 어쩔 수 없지만.\\n\\n「아이참, 재촉하지 마! 내 손은 두 개뿐이라고!」\\n야근을 마치고 귀가한 소녀는 털이 보송보송한 생명체들에 눌려 바닥에 쓰러진다.\\n그들은 그녀의 말을 알아듣지 못했는지 동그란 머리를 그녀의 손에 대기 바쁘다.\\n피로가 점차 사라지면서 부드러운 털의 온기가 온몸으로 퍼진다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "한 번에 하나씩", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가하고, 추가 공격으로 가하는 피해가 #2[i]% 증가한다. 장착한 캐릭터가 추가 공격을 발동하면 목표가 [온순] 상태에 빠진다. 해당 효과 최대 중첩수: #4[i]스택. 아군이 [온순] 상태의 적을 명중하면 [온순] 스택마다 가하는 치명타 피해가 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.3000000002793968, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.3500000003259629, + 0.14000000013038516, + 2 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.40000000037252903, + 0.1600000001490116, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.45000000041909516, + 0.18000000016763806, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.5000000004656613, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23016, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 112003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23017": { + "Name": "섬뜩한 밤", + "Desc": "소녀는 문 뒤에 숨은 채 앞으로 다가가길 꺼린다.\\n어쩌면 오늘 밤의 목표가 바로 눈앞에 있어서 그런 걸지도 모른다. 그녀의 심장이 더욱 빠르게 뛰고 있는 것 같다.\\n「무섭지 않아, 난 무섭지 않아……」\\n어둠 속에서 침묵이 비명을 지른다.\\n\\n소녀는 떨면서 손에 쥐고 있는 「무기」를 꽉 잡았지만 「목표」에 다가가는 것이 여전히 무섭다.\\n「안 무서워… 안… 무… 무서워!」\\n\\n몸 뒤의 꼬리는 결국 참지 못하고 번쩍 빛났다.\\n「빨리 해, 겨우 택배 하나 가져오는 거잖아!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "깊은 심호흡", + "Desc": "장착한 캐릭터의 에너지 회복효율이 #1[i]% 증가한다. 아군이 필살기 발동 시, 장착한 캐릭터는 현재 HP 백분율이 가장 낮은 아군의 HP를 대상 HP 최대치의 #2[i]%만큼 회복시킨다. 장착한 캐릭터가 아군에게 치유 제공 시, 해당 아군의 공격력이 #3[f1]% 증가한다. 해당 효과 최대 중첩수: #4[i]스택. 지속 시간: #5[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 0.10000000009313226, + 0.02399999974295497, + 5, + 2 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 0.11000000010244548, + 0.027999999467283487, + 5, + 2 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 0.12000000011175871, + 0.031999999890103936, + 5, + 2 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 0.13000000012107193, + 0.035999999614432454, + 5, + 2 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 0.14000000013038516, + 0.0400000000372529, + 5, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23017, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110171, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110172, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110173, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23018": { + "Name": "눈에 담긴 순간", + "Desc": "그는 한때 빛을 칭송하는 노래를 들은 적 있다:\\n장미가 활짝 피어난 건 그분의 미소에 보답하기 위함이라.\\n아침 햇살이 눈 부신 건 그분의 얼굴을 비추기 위함이라.\\n멜로디가 울려 퍼지는 건 그분의 지친 눈동자를 깨우기 위함이라.\\n\\n그러나 그 빛은 돌아오지 않았고, 그는 여전히 어딘가로 향하고 있다.\\n——오직 기다리고 믿으며, 아름다운 모든 것들을 온 우주에 퍼트리기만 하면 되리라.\\n모든 것이 눈에 잠시 머무는 한순간이라 해도, 그는 이미 원하는 대답을 얻었다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "기사의 순례", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 장착한 캐릭터가 필살기 발동 시 자신의 에너지 최대치에 따라 자신이 필살기로 가하는 피해가 증가한다. (에너지 1pt당 #2[f2]% 증가, 최대 #3[i]pt까지 계산)", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.0036000001709908247, + 180 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.00419999985024333, + 180 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.004800000227987766, + 180 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.005399999907240272, + 180 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.005999999586492777, + 180 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23018, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110131, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110132, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110133, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23019": { + "Name": "거울 속 지난날의 나", + "Desc": "매화가 질 무렵이 되면 그녀는 그 순간을 봉인해 곁에 두곤 했다.\\n세월이 수없이 흘러 달콤하고 시끄러운 가지각색의 생명체들이 그녀의 손에서 태어났지만, 매화는 여전히 예정된 시기에 시든다.\\n세월이 수없이 흘러도 거울에 비친 모습은 변함이 없다. 하지만 우주의 척도로 보면 그녀의 싱그러움이 유지되는 것도 한순간에 불과하지 않을까?\\n\\n「모든 게 죽음을 피해 갈 수 없다면 창조에 무슨 의미가 있지?」\\n\\n오랜 침묵 끝에 바람이 불고 꽃잎이 져도 거울에 비친 사람의 대답은 한결같다.\\n「매화를 붙잡아 두지 않아도 되는 날을 위해」\\n그녀가 차가운 거울을 어루만지며 중얼거린 게 벌써 몇 번째인지는 알 수 없다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "뼈에 사무치는 매화향", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 장착한 캐릭터는 필살기 발동 후 모든 아군이 가하는 피해를 #3[i]턴 동안 #2[i]% 증가시키며, 장착한 캐릭터의 격파 특수효과가 #4[i]% 이상일 경우 전투 스킬 포인트를 1pt 회복한다.\\n웨이브가 시작될 때마다 모든 아군은 즉시 에너지를 #5[f1]pt 회복한다. 같은 유형의 스킬 효과는 중복 적용되지 않는다", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 3, + 1.5000000004656613, + 10 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 3, + 1.5000000004656613, + 12.500000000465661 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 3, + 1.5000000004656613, + 15 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 3, + 1.5000000004656613, + 17.50000000046566 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 3, + 1.5000000004656613, + 20 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23019, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110161, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110162, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110163, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23020": { + "Name": "순수 사유의 세례", + "Desc": "오후의 햇살이 기분 좋게 내리쬐고, 향긋한 꽃향기가 퍼져 나온다.\\n그는 항상 청결에 신경을 썼지만, 생각은 둔해지면 먼지가 쌓이기 마련이다.\\n\\n「생각의 힐링은 건강을 유지하는 것만큼 중요하다」\\n어리석은 자의 소란은 피곤과 함께 멀어졌고, 물에 잠겨 생각이 흐르도록 놔두자 마음이 점점 맑아졌다.\\n\\n「진리는 불결을 멀리하며, 순수한 자만이 진리에 다가갈 수 있다」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "사고력 훈련", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 적이 보유한 디버프 효과 1개당 장착한 캐릭터가 해당 적에게 가하는 치명타 피해가 추가로 #2[i]% 증가한다, 해당 효과 최대 중첩수: #3[i]스택. 필살기로 적 공격 시 장착한 캐릭터는 [변론] 효과를 획득해 가하는 피해가 #4[i]% 증가하고, 추가 공격은 목표의 방어력을 #5[i]% 무시한다, 해당 효과 지속 시간: #6[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.0800000000745058, + 3, + 0.3600000003352761, + 0.24000000022351742, + 2 + ] + }, + "2": { + "ParamList": [ + 0.2300000002142042, + 0.09000000008381903, + 3, + 0.4200000003911555, + 0.2800000002607703, + 2 + ] + }, + "3": { + "ParamList": [ + 0.26000000024214387, + 0.10000000009313226, + 3, + 0.48000000044703484, + 0.3200000002980232, + 2 + ] + }, + "4": { + "ParamList": [ + 0.29000000027008355, + 0.11000000010244548, + 3, + 0.5400000005029142, + 0.3600000003352761, + 2 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 0.12000000011175871, + 3, + 0.6000000005587935, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23020, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23021": { + "Name": "속세에서의 유희", + "Desc": "그녀는 불꽃처럼 1분에 수십 가지 색을 만들어낼 수 있다.\\n\\n불꽃놀이가 끝날 무렵, 그녀는 높은 곳에 앉아 발밑의 붐비는 사람들을 지루한 듯이 내려봤다.\\n생각이 하나둘 떠올랐다가 사라지고, 교활한 빛이 만화경 같은 눈동자 속에서 어른거린다.\\n「좋아. 오늘은 이렇게 놀자!」\\n\\n그녀는 이리저리 뛰어다니며 인파 속을 가로질렀고, 황금빛 붉은 꼬리가 희끗하게 나타났다가 사라졌다.\\n「잘 따라와. 이제부터 가장 아름다운 불꽃놀이가 시작될 거거든!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "변덕", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 전투 시작 시 장착한 캐릭터가 [가면]을 획득한다, 지속 시간: #6[i]턴. 장착한 캐릭터가 [가면] 보유 시, 장착한 캐릭터 동료의 치명타 확률이 #5[i]% 증가하고 치명타 피해가 #2[i]% 증가한다. 장착한 캐릭터가 전투 스킬 포인트를 1pt 회복할 때마다 [무지개 화염]을 1스택 획득하고, 회복 시 초과한 전투 스킬 포인트도 계산에 포함된다. [무지개 화염]이 #4[i]스택에 도달하면 모든 [무지개 화염]을 해제하고 [가면]을 획득한다, 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.3200000002980232, + 0.2800000002607703, + 4, + 4, + 0.10000000009313226, + 3 + ] + }, + "2": { + "ParamList": [ + 0.3900000003632158, + 0.3500000003259629, + 4, + 4, + 0.11000000010244548, + 3 + ] + }, + "3": { + "ParamList": [ + 0.4600000004284084, + 0.4200000003911555, + 4, + 4, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.530000000493601, + 0.49000000045634806, + 4, + 4, + 0.13000000012107193, + 3 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.5600000005215406, + 4, + 4, + 0.14000000013038516, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23021, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23022": { + "Name": "시간의 기억에 대한 재구성", + "Desc": "촛불에 불을 붙이고, 카드를 펼친 후 향기에 몸을 맡긴다——\\n불완전한 기억들이 일렁이는 빛과 그림자 속에서 얼굴로 변한다.\\n불속에서 솟아 나온 유령이 그리웠던 자신의 과거 이야기를 속삭였다.\\n그녀는 시간을 오려내고 찰나를 응고시켜 가장 소중한 순간을 영원으로 바꿨다.\\n\\n「잃은 것은 너무 많고, 남은 것은 너무 적어…. 우리는 잔인한 시간에 대항하기 위해 기억을 키우지」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "결정", + "Desc": "장착한 캐릭터의 효과 명중이 #1[i]% 증가한다. 장착한 캐릭터가 풍화, 연소, 감전, 열상 상태에 빠진 적에게 피해를 가하면 각각 [예지]를 1스택 획득한다. 최대 중첩수: #4[i]스택. 단일 전투에서 지속 피해 상태 유형마다 [예지] 효과를 1회 중첩할 수 있다. [예지] 1스택당 장착한 캐릭터의 공격력이 #2[i]% 증가하고, 가하는 지속 피해가 목표의 방어력을 #3[f1]% 무시한다", + "Level": { + "1": { + "ParamList": [ + 0.40000000037252903, + 0.05000000004656613, + 0.07199999992735684, + 4 + ] + }, + "2": { + "ParamList": [ + 0.45000000041909516, + 0.060000000055879354, + 0.07899999944493175, + 4 + ] + }, + "3": { + "ParamList": [ + 0.5000000004656613, + 0.07000000006519258, + 0.08599999966099858, + 4 + ] + }, + "4": { + "ParamList": [ + 0.5500000005122274, + 0.0800000000745058, + 0.09299999987706542, + 4 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.09000000008381903, + 0.10000000009313226, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23022, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23023": { + "Name": "언제나 불공평한 운명", + "Desc": "마지막 카드가 공개되자 낙담, 분노, 체념, 침착 등 수많은 감정이 상대의 얼굴들에 드러났다.\\n「여기까지 왔는데 좀 더 자극적인 게 좋지 않겠나?」\\n그는 모든 칩을 내걸었고, 자신이 운이 없다고 생각한 사람들은 악담을 퍼부으며 게임을 포기하고는 그의 패배를 간절하게 바랐다.\\n\\n승패, 명성, 운… 그는 그런 것들을 전혀 신경 쓰지 않았다. 그저 가슴이 떨리게 만드는 그 순간에 취해있었다——\\n심연과 천당 사이엔 선택이라는 거리만이 존재한다.\\n\\n칩을 걸고, 또다시 탄식이 울려 퍼진다. 마치 환상과도 같은 이 만족감은 한바탕의 소란 끝에 순식간에 지나갔다.\\n「모 아니면 도, 하지만 내게 선택의 자유 따윈 없지……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "올인", + "Desc": "장착한 캐릭터의 방어력이 #1[i]% 증가한다. 장착한 캐릭터가 아군에게 실드 제공 시, 장착한 캐릭터의 치명타 피해가 #2[i]% 증가한다. 지속 시간: #3[i]턴. 장착한 캐릭터가 추가 공격을 발동해 적을 명중하면, #4[i]%의 기본 확률로 피격된 적이 받는 피해가 #5[f1]% 증가한다. 지속 시간: #6[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.40000000037252903, + 0.40000000037252903, + 2, + 1, + 0.10000000009313226, + 2 + ] + }, + "2": { + "ParamList": [ + 0.4600000004284084, + 0.4600000004284084, + 2, + 1.1500000001396984, + 0.11499999975785613, + 2 + ] + }, + "3": { + "ParamList": [ + 0.5200000004842877, + 0.5200000004842877, + 2, + 1.3000000002793968, + 0.13000000012107193, + 2 + ] + }, + "4": { + "ParamList": [ + 0.5800000005401671, + 0.5800000005401671, + 2, + 1.4500000004190952, + 0.1449999997857958, + 2 + ] + }, + "5": { + "ParamList": [ + 0.6400000005960464, + 0.6400000005960464, + 2, + 1.6000000005587935, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23023, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 30, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110211, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 66, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 114, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110212, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 162, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 210, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110213, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 258, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23023, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 306, + "BaseDefenceAdd": 4.500000000465661 + } + ] + }, + "23024": { + "Name": "흘러가는 강가를 따라", + "Desc": "「유」와 「무」 사이에 흐르고 있는 얼음같이 차가운 조수는 영원히 양쪽 물가에 부딪히며 모든 것을 최종의 귀착점으로 이끌었다.\\n\\n물에 빠진 자는 살려달라고 소리쳤다. 슬픔, 즐거움, 달콤함, 고통 모두 이곳에 비쳤다…. 그녀는 그것들을 직접 경험할 수는 없으나, 느낄 수는 있었다——\\n끝에 다다르기까지 여전히 가야 할 길은 멀고, 들어야 할 소리는 많으며, 바꿀 수 있는 일도 많다.\\n\\n그녀가 손을 뻗어 물에 빠진 자들을 공허의 유혹에서 구해내자, 환영들이 하나씩 그녀의 뒤에서 부서졌다.\\n그녀는 이 끝없는 세상에서 존재하지 않는 종점을 향해 계속해서 나아가고 있다.\\n\\n——그리고 이곳에선 영원히 비가 내린다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "뱃사공", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 장착한 캐릭터가 적 명중 시 적을 [포영] 상태에 빠트린다. 지속 시간: 1턴. 장착한 캐릭터가 공격할 때마다 적 1기당 1회만 발동한다. 장착한 캐릭터가 [포영] 상태에 빠진 적에게 가하는 피해가 #2[i]% 증가하고, 필살기로 가하는 피해가 추가로 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.24000000022351742, + 0.24000000022351742 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 0.2800000002607703, + 0.2800000002607703 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 0.3200000002980232, + 0.3200000002980232 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 0.3600000003352761, + 0.3600000003352761 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.40000000037252903, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23024, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23024, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23025": { + "Name": "꿈은 어디로 돌아가야 하는가", + "Desc": "아스다나 은하계의 변경. 거대한 파도가 넘실거리는 기억의 바다에서 그녀는 작은 불씨처럼 금방이라도 광풍 속에서 꺼질 듯했다.\\n「꿈을 꾸지 못하는 사람이 공감각 꿈세계에 들어가려면 『죽음』에 버금가는 대가를 치러야 해」\\n동료의 걱정스러운 목소리가 여전히 그녀의 귓가에 맴돌았지만, 그녀는 숨을 깊게 들이쉬고 기억의 영역으로 뛰어들었다.\\n조용히 기억의 영역 깊은 곳으로 들어가니, 작은 반딧불들이 틈새 사이로 흩어져 이내 끝없는 어둠에 삼켜졌다.\\n\\n「무엇을 위해 죽음을 향해 뛰어드는 걸까?」\\n깊어져 가는 기억의 바다에서 기억의 영역 생물이 내는 희미한 빛은 마치 먼 곳에 있는 눈처럼 냉담하게 그녀를 바라보았다.\\n\\n그녀에게 있어 꿈이란 건 여전히 너무나도 아득했다. 그녀는 끝없는 어둠을 바라보았고, 몸과 영혼은 기억 물질의 중압에 의해 무너지기 직전이었다. 의식이 점차 흐릿해지는 것이 느껴졌지만, 머릿속에서는 남은 기억만이 계속해서 되풀이될 뿐이었다.\\n하늘을 덮는 곤충 떼가 전선을 뚫었고, 그녀는 화염에 휩싸인 채 곤충 떼를 향해 날아갔다. 곤충 떼의 재는 눈처럼 흩날렸고, 아래에는 기사들의 새까만 잔해가 가득했다.\\n그녀는 희생된 철기들에게 일일이 꽃을 바칠 새도 없었다. 그들의 생명은 마치 숫자만 있고 이름은 없는 유전자 코드처럼, 순식간에 피어올랐다가 이내 시들었다.\\n\\n「무엇을 위해 살아가야 할까?」\\n죽음과도 같은 적막 속에서 그녀는 화염이 바다에 녹아들어 남은 미약한 불씨처럼 빛나는 곳을 향해 계속해서 나아갔다….\\n얼마나 지났을까, 그녀가 눈을 뜨자 진주처럼 희미하게 빛나는 「미래」가 보였고, 눈물이 그녀의 뺨을 타고 흘러내렸다.\\n 「나만의… 『꿈』을 찾기 위해……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "탈바꿈", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 장착한 캐릭터가 적에게 격파 피해를 가할 시 적을 [궤멸] 상태에 빠트린다, 지속 시간: #4[i]턴. [궤멸] 상태에서 목표가 장착한 캐릭터로부터 받는 격파 피해가 #2[f1]% 증가하고 속도가 #3[i]% 감소하며, 같은 유형의 효과는 중첩되지 않는다", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.24000000022351742, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.2800000002607703, + 0.20000000018626451, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.3200000002980232, + 0.20000000018626451, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.3600000003352761, + 0.20000000018626451, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 0.40000000037252903, + 0.20000000018626451, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23025, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23025, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23026": { + "Name": "찬란하게 빛나는 밤", + "Desc": "거울 속에서 세월이 흘러, 풋풋한 소녀는 여유를 지닌 가수로 변모했다.\\n그녀는 거울 속의 자신을 들여다봤다. 시간이 모든 것을 바꿔놓았지만, 그 초록빛 눈은 변치 않는 신념을 말해주듯 여전히 호수처럼 고요했다.\\n\\n「오늘은 기분이 좋아 보이시네요」\\n「맞아… 아주 중요한 『공연』이 있잖아」\\n「그렇죠, 조화의 축제 리허설이 곧 시작되니 준비실로 이동해주세요」\\n……\\n\\n그녀는 분장실을 나와 등불이 찬란하게 빛나는 극장과 멀어졌다.\\n「내 무대는 여기에 있지 않아」\\n그녀는 두 눈을 감고 밤이 그녀의 그림자를 집어삼키도록 두었다.\\n「과거부터 지금까지, 내 노랫소리는 오직……」\\n「희망을 잃은 사람들을 위한 거야」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "위로", + "Desc": "아군 캐릭터가 공격할 때마다 장착한 캐릭터가 [노래]를 1스택 획득한다. [노래] 스택마다 장착한 캐릭터의 에너지 회복효율이 #1[f1]% 증가한다. 최대 중첩수: #2[i]스택. 장착한 캐릭터가 필살기를 발동하면 [노래]가 해제되고 [카덴차]를 획득한다. [카덴차]는 장착한 캐릭터의 공격력을 #4[i]% 증가시키고, 모든 아군이 가하는 피해를 #3[i]% 증가시킨다, 지속 시간: #5[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.030000000027939677, + 5, + 0.24000000022351742, + 0.48000000044703484, + 1 + ] + }, + "2": { + "ParamList": [ + 0.034999999683350325, + 5, + 0.2800000002607703, + 0.6000000005587935, + 1 + ] + }, + "3": { + "ParamList": [ + 0.0400000000372529, + 5, + 0.3200000002980232, + 0.7200000006705523, + 1 + ] + }, + "4": { + "ParamList": [ + 0.04499999969266355, + 5, + 0.3600000003352761, + 0.840000000782311, + 1 + ] + }, + "5": { + "ParamList": [ + 0.05000000004656613, + 5, + 0.40000000037252903, + 0.9600000008940697, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23026, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23026, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23027": { + "Name": "두 번째 생명을 향해", + "Desc": "그는 깊은 바다에 떨어진 것 같았다. 모든 것이 그를 떠났고, 텅 빈 사고만이 날뛰며 몸부림쳤다.\\n\\n공포, 불안, 고독, 어둠, 분노… 그 감정들은 육신과 함께 사라지지 않았고, 오히려 또 다른 방식으로 기계의 껍데기에 남아 점점 무거워졌다.\\n\\n그는 죽은 자의 부름을 듣고, 타는 냄새를 맡았다. 기계의 윙윙 소리가 그의 귓가에 맴돌았고, 푸른 피가 그의 굶주린 심장으로 흘러들었다…. 몇몇 잔인한 기억들이 다시 떠올랐고, 뼈에 새긴 원한이 어둠 속에서 희미한 빛으로 변했다. 그는 빛을 따라 끝으로 걸어갔고, 온 힘을 다해 수면 위로 떠올랐다.\\n\\n그는 눈을 떴다. 불꽃이 번쩍이며 지나갔고, 그는 의사의 축하 인사를 들었다——\\n「이 세상에 다시 오신 걸 환영합니다」\\n그는 두 손을 꼭 쥐었다. 지금은 강철로 만들어진, 차가운 두 손을…\\n그는 더 이상 자신을 위해 살지 않을 것이다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "고된 항해", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가하고, 가하는 격파 피해는 목표의 방어력을 #3[i]% 무시한다. 전투 중 장착한 캐릭터의 격파 특수효과가 #2[i]% 이상일 경우 속도가 #4[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 1.5000000004656613, + 0.20000000018626451, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 1.5000000004656613, + 0.2300000002142042, + 0.14000000013038516 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 1.5000000004656613, + 0.26000000024214387, + 0.1600000001490116 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 1.5000000004656613, + 0.29000000027008355, + 0.18000000016763806 + ] + }, + "5": { + "ParamList": [ + 1, + 1.5000000004656613, + 0.3200000002980232, + 0.20000000018626451 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23027, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23027, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23028": { + "Name": "값을 매길 수 없는 건 희망뿐", + "Desc": "「보나제이드 씨께서 계속 물자와 자선금을 보내주시지 않았으면 저희 보육원은 아마……」\\n그녀는 아이들의 머리를 부드럽게 쓰다듬으며 원장의 말을 잘랐다.\\n「제가 있는 한 앞으로는 아무 염려 마세요…. 이런 말은 아이들이 걱정할 테니 들려줄 필요도 없고요」\\n\\n아이들은 고개를 들고 그녀에게 조잘조잘 최근에 있었던 일, 고민과 꿈을 이야기했다.\\n「보나제이드 님, 다음에는 또 언제 오세요?」\\n「너무 무리하게 일하지 말고 일찍 주무세요……」\\n「저는 커서 보나제이드 님 같은 사람이 될 거예요!」\\n아이들의 맑은 눈을 보고 있던 그녀는 잠깐 벙쪘다.\\n「나와 같은 사람……」\\n아이들은 그녀에게 사과를 건넸다. 「맞아요! 다른 사람에게 빛과 희망을 가져다주는 사람이요!」\\n\\n가난, 과오, 근심, 고난… 그녀는 우주를 거닐며 타인의 저당을 받고 그와 동등한 보답을 줬다.\\n생명은 욕망 때문에 존재하고, 욕망 때문에 분주하며, 욕망 때문에 죽는다. 이는 저항할 수 없는 법칙이고, 생명의 필연이다.\\n겉과 속이 다른 자선가, 영혼을 저당 잡는 악덕상인… 그녀는 세상 사람들로부터 여러 신분을 부여받았지만, 그녀만이 그 행동 뒤에 숨겨진 도의를 이해하고 있다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "약속", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 전투 중 장착한 캐릭터의 치명타 피해가 #2[i]% 초과 시 #3[i]%를 초과할 때마다 추가 공격으로 가하는 피해가 #4[i]% 증가하며, 해당 효과는 #5[i]스택 중첩 가능하다. 전투 시작 시 및 장착한 캐릭터가 일반 공격 발동 후, 필살기 또는 추가 공격이 가하는 피해는 목표의 방어력을 #6[i]% 무시한다, 지속 시간: #7[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 1.2000000001862645, + 0.20000000018626451, + 0.12000000011175871, + 4, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.1900000001769513, + 1.2000000001862645, + 0.20000000018626451, + 0.14000000013038516, + 4, + 0.24000000022351742, + 2 + ] + }, + "3": { + "ParamList": [ + 0.22000000020489097, + 1.2000000001862645, + 0.20000000018626451, + 0.1600000001490116, + 4, + 0.2800000002607703, + 2 + ] + }, + "4": { + "ParamList": [ + 0.25000000023283064, + 1.2000000001862645, + 0.20000000018626451, + 0.18000000016763806, + 4, + 0.3200000002980232, + 2 + ] + }, + "5": { + "ParamList": [ + 0.2800000002607703, + 1.2000000001862645, + 0.20000000018626451, + 0.20000000018626451, + 4, + 0.3600000003352761, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23028, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23028, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23029": { + "Name": "그 무수한 봄날", + "Desc": "몇 차례 소나기가 지나자 봄의 조수가 차오르고 푸른 새싹이 자라났다.\\n「이게 몇 번째 봄이지?」\\n그는 처음 전장에 뛰어들었던 젊은 전사들을 떠올렸다. 해마다 다른 사람들이었지만, 희망과 활기로 가득 찬 모습은 전부 같았다.\\n버드나무 가지를 꺾으며 돌아오기를 기다렸지만, 그들이 고향으로 가지고 온 것은… 영원히 녹지 않을 얼음서리였다.\\n\\n지저귀는 새소리에 그는 두 눈을 감았고, 나뭇잎 사이로 비치는 햇빛이 얼굴을 덮었다.\\n——「역시 남겨진 사람이 가장 외롭구나」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "흔적 없는 세상만사", + "Desc": "장착한 캐릭터의 효과 명중이 #1[i]% 증가하고, 장착한 캐릭터가 일반 공격, 전투 스킬, 필살기를 발동해 적을 공격하면 #2[i]%의 기본 확률로 해당 목표를 [무장해제] 상태에 빠트린다. [무장해제] 상태의 적은 받는 피해가 #3[i]% 증가한다, 지속 시간: #4[i]턴. 목표가 장착한 캐릭터가 부여한 지속 피해 상태일 시 #5[i]%의 기본 확률로 장착한 캐릭터가 부여한 [무장해제] 상태가 [궁지 몰이] 상태로 업그레이드되며, 적이 받는 피해가 추가로 #6[i]% 증가한다, 지속 시간: #4[i]턴, 지속 시간 동안 장착한 캐릭터는 해당 목표에게 [무장해제]를 부여할 수 없다", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.6000000005587935, + 0.10000000009313226, + 2, + 0.6000000005587935, + 0.14000000013038516 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.6000000005587935, + 0.12000000011175871, + 2, + 0.6000000005587935, + 0.1600000001490116 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.6000000005587935, + 0.14000000013038516, + 2, + 0.6000000005587935, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.6000000005587935, + 0.1600000001490116, + 2, + 0.6000000005587935, + 0.20000000018626451 + ] + }, + "5": { + "ParamList": [ + 1, + 0.6000000005587935, + 0.18000000016763806, + 2, + 0.6000000005587935, + 0.22000000020489097 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23029, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23029, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23030": { + "Name": "해 질 무렵 시작되는 춤", + "Desc": "찬란한 황혼 속에서 날렵한 그림자 하나가 지붕 위를 빠르게 달렸다.\\n\\n「리리, 코코, 누가 먼저 결승점에 도착하는지 시합하자!」\\n처마에 올라 경비병을 피해 바람을 탄 소녀는 마치 작고 민첩한 동물처럼 태양의 마지막 빛을 쫓았다.\\n\\n조금은 뜨거운 밤바람이 소녀의 얼굴을 스쳤고, 석양은 고양이를 알록달록하게 물들였다.\\n「너희가 이겼어!」\\n소녀는 이마에 맺힌 땀을 닦고 고양이들을 품에 안았다.\\n별들이 떠오르자, 경계를 푼 소녀의 천진난만한 미소가 하늘을 물들인 노을처럼 피어났다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "심취", + "Desc": "장착한 캐릭터가 피격될 확률이 대폭 증가하고, 치명타 피해가 #1[i]% 증가한다. 장착한 캐릭터가 필살기를 발동하면 [화염의 춤]을 1스택 획득한다, 지속 시간: 2턴, 최대 중첩수: #2[i]스택. [화염의 춤] 스택마다 장착한 캐릭터의 추가 공격으로 가하는 피해가 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 2, + 0.3600000003352761, + 5 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 2, + 0.4200000003911555, + 5 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 2, + 0.48000000044703484, + 5 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 2, + 0.5400000005029142, + 5 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 2, + 0.6000000005587935, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23030, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23030, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23031": { + "Name": "정복하고 사냥하리", + "Desc": "「가엽고 가소로운 노예들이여……」\\n수많은 풍요의 백성 군대가 경계선으로 몰려오고, 늑대 독은 홍수처럼 청구군을 집어삼키며 군인들 마음속 깊이 숨겨진 공포를 불러일으키려 한다. 다양한 공포로 이루어진 환상은 군인들이 무기를 내려놓고 주저하게 만들었다.\\n그러나 전선은 철통같은 방비로 보리인의 경멸의 소리에도 흔들리지 않았다. 그때 그림자 하나가 천천히 걸어 나왔다.\\n그녀가 천천히 몸을 움직이자, 눈에 보이지 않는 살기에 깃발이 흔들렸다.\\n「장군님, 장군님이 오셨다……」\\n「비소 장군님……」\\n「『천격』 장군!」\\n작은 외침이 모여 하늘을 울리는 함성이 되었다.\\n\\n「추락하지 않고, 만고불변의 승리를 이어가리!」\\n그녀는 그곳에 홀로 서 있었지만, 그 모습은 마치 하나의 군대 같았다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "진섭", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[f1]% 증가한다. 장착한 캐릭터가 추가 공격 발동 시 [유광]을 1스택 획득한다, 최대 중첩수: #3[i]스택. [유광] 1스택마다 장착한 캐릭터가 가하는 필살기 피해가 목표의 방어력을 #2[i]% 무시한다. 장착한 캐릭터의 턴 종료 시 [유광]이 1스택 해제된다", + "Level": { + "1": { + "ParamList": [ + 0.1500000001396984, + 0.2700000002514571, + 2 + ] + }, + "2": { + "ParamList": [ + 0.17499999981373549, + 0.3000000002793968, + 2 + ] + }, + "3": { + "ParamList": [ + 0.20000000018626451, + 0.33000000030733645, + 2 + ] + }, + "4": { + "ParamList": [ + 0.2249999998603016, + 0.3600000003352761, + 2 + ] + }, + "5": { + "ParamList": [ + 0.25000000023283064, + 0.3900000003632158, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23031, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23031, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23032": { + "Name": "오직 향만이 변함없이", + "Desc": "「첫째, 업무 습관을 정비할 것」\\n「둘째, 보상 및 처벌 규정을 엄격히 이행할 것」\\n「물론 가장 중요한 건 복잡하게 얽힌 이해관계를 최대한 빨리 밝혀내는 것……」\\n호수와 푸른 산이 어우러진 아름다운 경치를 보고 있었는데, 자신도 모르는 사이에 또 업무에 대해 생각하고 있었고, 스트레스와 짜증이 함께 몰려왔다.\\n\\n그녀는 서둘러 몸에 지니고 있던 안정향을 피웠다.\\n「세상은 이렇게나 아름다운데, 난 성질이나 부리고 있구나…. 휴일에는 그런 귀찮은 일들을 생각하지 말자……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Priest", + "Refinements": { + "Name": "안심", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 장착한 캐릭터가 필살기를 발동하여 적 공격 후 해당 적을 [망우] 상태에 빠트린다, 지속 시간: #5[i]턴. [망우] 상태의 적은 받는 피해가 #2[i]% 증가하고, 장착한 캐릭터의 현재 격파 특수효과가 #3[i]% 이상이면 받는 피해 증가 효과가 추가로 #4[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 0.10000000009313226, + 1.5000000004656613, + 0.0800000000745058, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 0.12000000011175871, + 1.5000000004656613, + 0.10000000009313226, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 0.14000000013038516, + 1.5000000004656613, + 0.12000000011175871, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 0.1600000001490116, + 1.5000000004656613, + 0.14000000013038516, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 0.18000000016763806, + 1.5000000004656613, + 0.1600000001490116, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23032, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110241, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110242, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110243, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23032, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23033": { + "Name": "인법첩•요란 파마", + "Desc": "「닌자계」의 어느 곳에 음산한 회색 안개가 도시를 뒤덮고 있다.\\n\\n「이얏——!」\\n한 소녀의 인영이 괴물 사이를 누빈다. 그 잔영은 마치 화려한 색채가 달빛 없는 대지에 뿌려지고 있는 것 같다.\\n\\n먼지 속에서 「사닌」들이 고통으로 신음하며 동요한다.\\n「넌… 누구냐……」\\n「소인의 닌호는 『라파』. 일심불란, 파사현정이란 뜻이지」\\n「사닌」들은 서로 눈빛을 주고받더니 사방으로 도망치려 했다.\\n「귀공, 사세구를 읊을 준비는 끝났어?」\\n수리검이 눈부시게 회전하면서 위험한 기운이 몰려온다.\\n「오의•요란 멸파살진!」\\n\\n뒤에서 일어난 폭발이 상처로 가득한 밤을 밝혔다.\\n그녀는 숨을 깊게 들이마신 뒤 헤비메탈처럼 요란한 네온사인 속으로 뛰어들었다.\\n「참으로 추악한 요괴로구나. 요란 닌자 레인저의 장대한•사냥은 계속되어야 해……」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "제악", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 전투 진입 시 즉시 에너지를 #2[f1]pt 회복하며, 장착한 캐릭터가 필살기를 발동하면 [뇌둔]을 획득하고, 일반 공격을 2회 발동하면 장착한 캐릭터의 행동 게이지가 #3[i]% 증가하고 [뇌둔]이 해제된다. 장착한 캐릭터가 필살기를 발동하면 [뇌둔]이 초기화된다", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 30, + 0.5000000004656613 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 32.50000000046566, + 0.5500000005122274 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 35, + 0.6000000005587935 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 37.50000000046566, + 0.6500000006053597 + ] + }, + "5": { + "ParamList": [ + 1, + 40, + 0.7000000006519258 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23033, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23033, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23034": { + "Name": "대지로 돌아온 비행", + "Desc": "허망한 망상은 산산이 부서졌다. 그는 만물의 태양이 되려고 했지만, 하늘에서 추락했다.\\n\\n「고통이 무엇인지 느껴지나?」\\n그의 마음속에서 또 다른 목소리가 말했다.\\n「그게 바로 내가 느껴야 하는 것이야」\\n먼지 속으로 떨어진 그는 무거운 발걸음으로 대답했다.\\n\\n그는 대지를 걸으며 인간 세상을 뒤덮은 괴로움을 또다시 보았다. 그것은 끊임없이 샘솟는 샘물 같았다.\\n그는 길을 막는 가시를 넘고, 평범한 사람들의 부르짖음을 들었다. 그는 고통을 견디고 고요를 얻었다.\\n\\n「추락은, 비상의 또 다른 이름이지」\\n여덟째 날, 그는 자신에게 「시작」을 주었다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "재출발", + "Desc": "장착한 캐릭터가 단일 아군 캐릭터에게 전투 스킬 또는 필살기를 발동하면 장착한 캐릭터는 에너지를 #1[f1]pt 회복하고, 스킬 목표는 [신성한 영창]을 1스택 획득한다, 지속 시간: #4[i]턴, 최대 중첩수: #3[i]스택. [신성한 영창] 1스택마다 보유자가 가하는 피해가 #2[i]% 증가한다. 장착한 캐릭터가 단일 아군 캐릭터에게 전투 스킬 또는 필살기를 #5[i]회 발동할 때마다 전투 스킬 포인트를 1pt 회복한다", + "Level": { + "1": { + "ParamList": [ + 6, + 0.1500000001396984, + 3, + 3, + 2 + ] + }, + "2": { + "ParamList": [ + 6.500000000465661, + 0.17250000033527613, + 3, + 3, + 2 + ] + }, + "3": { + "ParamList": [ + 7, + 0.19499999983236194, + 3, + 3, + 2 + ] + }, + "4": { + "ParamList": [ + 7.500000000465661, + 0.21750000002793968, + 3, + 3, + 2 + ] + }, + "5": { + "ParamList": [ + 8, + 0.24000000022351742, + 3, + 3, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23034, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 114013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23034, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23035": { + "Name": "먼 길 끝의 귀로", + "Desc": "「이 사람은… 누구지?」 소녀는 낯선 자신을 어루만졌다.\\n\\n그녀는 그날의 불길이 자신을 집어삼켜 보석과 부채를 잿더미로 만든 과정을 떠올렸다.\\n\\n소녀는 한때 기나긴 길을 걸으며 전방의 빛을 찾았다.\\n밖에서 들려오는 소리가 그녀를 불렀고, 깊은 어둠을 헤쳐 나갈 수 있도록 그녀를 이끌었다.\\n마음속의 소리는 아직 이루지 못한 맹세와 약속, 그리고 꿈이 그녀를 기다리고 있다고 상기시켰다——\\n\\n그것들은 불길 속에서 사라지지 않고 오히려 더욱 빛을 발했다.\\n\\n「이건 바로 나야……」\\n소녀는 종착점에 서서 더 이상 미련을 갖고 뒤돌아보지 않았다——\\n「본래의 나이자 새로운 나」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "신생", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 적의 약점이 격파될 시 #2[i]%의 기본 확률로 대상을 [타오름] 상태에 빠트리고 받는 격파 피해를 #3[i]% 증가시킨다, 지속 시간: #4[i]턴. 해당 효과는 #5[i]스택 중첩 가능하다", + "Level": { + "1": { + "ParamList": [ + 0.6000000005587935, + 1, + 0.18000000016763806, + 2, + 2 + ] + }, + "2": { + "ParamList": [ + 0.7000000006519258, + 1, + 0.21000000019557774, + 2, + 2 + ] + }, + "3": { + "ParamList": [ + 0.8000000007450581, + 1, + 0.24000000022351742, + 2, + 2 + ] + }, + "4": { + "ParamList": [ + 0.9000000008381903, + 1, + 0.2700000002514571, + 2, + 2 + ] + }, + "5": { + "ParamList": [ + 1, + 1, + 0.3000000002793968, + 2, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23035, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 30, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 66, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 114, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 162, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 210, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 113003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 258, + "BaseDefenceAdd": 4.500000000465661 + }, + { + "EquipmentID": 23035, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 306, + "BaseDefenceAdd": 4.500000000465661 + } + ] + }, + "23036": { + "Name": "시간을 황금으로 엮어", + "Desc": "「이 실은 전사의 희생」\\n「이 실은 영웅의 성장」\\n「이 실은 나라의 번영」\\n……\\n의상공은 실을 그녀의 손가락 끝에 모았다.\\n「일부 영웅들의 궤적이 끊겼어……」\\n그녀는 다른 금실들을 잡아당기고는 바느질을 이어갔다.\\n「어떤 영웅들의 운명은 계속 이어져야 해……」\\n\\n신성이 깃든 베틀은 여전히 돌아가고, 의상공들은 경쾌하게 춤을 췄다. 기나긴 시간이 베틀 위에서 흘러갔고, 그녀는 이러한 기다림에 익숙해진지 오래다——\\n\\n시간을 황금으로 엮는 「영감」을 위해서", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "창설", + "Desc": "장착한 캐릭터의 기본 속도가 #1[i] 증가한다. 장착한 캐릭터 및 장착한 캐릭터의 기억 정령이 공격 후 장착한 캐릭터는 [비단]을 1스택 획득하며, [비단] 스택마다 장착한 캐릭터 및 장착한 캐릭터의 기억 정령의 치명타 피해가 #4[f1]% 증가한다, 최대 중첩수: #2[i]스택. 최대 중첩수에 도달하면 [비단] 스택마다 가하는 일반 공격 피해가 추가로 #3[f1]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 12, + 6, + 0.09000000008381903, + 0.09000000008381903 + ] + }, + "2": { + "ParamList": [ + 14, + 6, + 0.1049999997485429, + 0.1049999997485429 + ] + }, + "3": { + "ParamList": [ + 16, + 6, + 0.12000000011175871, + 0.12000000011175871 + ] + }, + "4": { + "ParamList": [ + 18, + 6, + 0.13499999977648258, + 0.13499999977648258 + ] + }, + "5": { + "ParamList": [ + 20, + 6, + 0.1500000001396984, + 0.1500000001396984 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23036, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23036, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23037": { + "Name": "추궁할 수 없는 곳을 향해", + "Desc": "「지식학회의 편지 처리 완료」\\n「시뮬레이션 우주 정상 작동 중……」\\n「저서 모음집 재출간 완료」\\n「쉿, 조용. 헤르타 님께 방해되지 않도록 조심해……」\\n\\n……은하계 변경의 고탑 안, 인형들이 질서정연하게 각종 잡다한 일들을 처리하며 그녀가 나타나길 기다리고 있다.\\n시간은 빠르게 흘러가고, 셀 수 없이 많은 인물들이 유성처럼 역사의 밤하늘을 지나갔다. 그들은 찰나의 빛을 발하고, 결국 적막으로 돌아갔다.\\n「헤르타 님께서 오랫동안 모습을 드러내지 않으셨어……」\\n「아직도 생각하고 계신 건가……」\\n\\n「흥, 공리 몇 개 얻었다고 끝났다고 생각한 거야?」\\n연산을 하던 그녀는 기지개를 켜며 고개를 들었다. 새로운 생각이 떠오른 듯하다——\\n「의심 못하는 건 존재하지 않아. 난 답을 알아낼 때까지 계속 질문할 거야!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "두뇌 게임", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 장착한 캐릭터가 필살기 발동 시 장착한 캐릭터가 가하는 전투 스킬과 필살기 피해가 #4[i]% 증가한다, 지속 시간: #5[i]턴. 장착한 캐릭터가 필살기 발동 후 이번 필살기로 소모한 에너지가 #3[i]pt 이상일 경우 전투 스킬 포인트를 1pt 회복한다", + "Level": { + "1": { + "ParamList": [ + 0.12000000011175871, + 2, + 140, + 0.6000000005587935, + 3 + ] + }, + "2": { + "ParamList": [ + 0.14000000013038516, + 2, + 140, + 0.7000000006519258, + 3 + ] + }, + "3": { + "ParamList": [ + 0.1600000001490116, + 2, + 140, + 0.8000000007450581, + 3 + ] + }, + "4": { + "ParamList": [ + 0.18000000016763806, + 2, + 140, + 0.9000000008381903, + 3 + ] + }, + "5": { + "ParamList": [ + 0.20000000018626451, + 2, + 140, + 1, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23037, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 28.800000000745058, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 63.360000000335276, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 109.44000000040978, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 155.5200000004843, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 201.6000000005588, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 247.6800000006333, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 23037, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 293.7600000007078, + "BaseAttackAdd": 4.320000000298023, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "23038": { + "Name": "시간이 한 송이 꽃이라면", + "Desc": "「엄마, 이야기 하나만 더 해줘!」\\n\\n「그래, 우리 아가. 오늘은 시간에 대한 이야기를 들려줄게」\\n\\n「시간이… 뭐야?」\\n\\n「시간은 꽃과 같단다」\\n\\n「들판에 피는 민들레 같은 거야?」\\n\\n「맞아, 민들레처럼 시간도 자라고, 피어나고, 열매를 맺지. 그 꽃잎을——우린 『세월』이라고 불러」\\n\\n「그다음엔 어떻게 되는데?」\\n\\n「그다음엔 수많은 꽃잎으로 시들어 씨앗을 남기고 각지로 날아간단다……」\\n\\n「엄마, 그런 걸 『미래』라고 하는 거지?」\\n\\n「그 뒤엔 또 뭐로 변할 것 같니?」\\n\\n「아주 아주 많은 꽃으로 변해서, 찬란한 꽃바다가 되려나?」\\n\\n어머니가 대답하기도 전에 창밖의 햇살이 아이의 얼굴을 비췄고, 부드러운 그림자가 다시 꿈속으로 사라졌다.\\n그녀는 눈을 떴다——\\n「만약 시간이 한 송이 꽃이라면……」그녀는 중얼거렸다.\\n「분명 언젠간 꽃바다가 될 거야」조용한 아이가 말했다.\\n「물론이지!」 걸작을 완성한 장난기 많은 아이가 기쁘게 외쳤다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Shaman", + "Refinements": { + "Name": "희망", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 장착한 캐릭터가 추가 공격 발동 후 추가로 에너지를 #2[i]pt 회복하고 [지시]를 획득한다, 지속 시간: #3[i]턴. 장착한 캐릭터가 [지시] 보유 시 모든 아군의 치명타 피해가 #4[i]% 증가한다. 전투 진입 시 장착한 캐릭터가 에너지를 #5[i]pt 회복하고 [지시]를 획득한다, 지속 시간: #6[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 12, + 2, + 0.48000000044703484, + 21, + 2 + ] + }, + "2": { + "ParamList": [ + 0.4200000003911555, + 12, + 2, + 0.6000000005587935, + 21, + 2 + ] + }, + "3": { + "ParamList": [ + 0.48000000044703484, + 12, + 2, + 0.7200000006705523, + 21, + 2 + ] + }, + "4": { + "ParamList": [ + 0.5400000005029142, + 12, + 2, + 0.840000000782311, + 21, + 2 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 12, + 2, + 0.9600000008940697, + 21, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23038, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110231, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110232, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110233, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23038, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23039": { + "Name": "피의 불꽃이여, 앞길을 태워라", + "Desc": "차가운 이슬이 칼끝에 맺히고, 칼을 타고 떨어지면서 핏빛 흔적을 남긴다.\\n녹슨향이 나는 황야 속, 격전으로 불타오른 불길이 여전히 잿더미 위에서 춤을 추고 있다.\\n\\n「마이데이모스 님, 방금 그 전투는 마치 신과도 같았어요!」\\n윗옷을 벗은 전사는 무기를 닦으며 흥분한 채 외쳤다.\\n\\n「마이데이 님, 앞으로 저도 마이데이 님처럼 백전백승할래요!」\\n아이는 부러진 검을 쥔 채, 존경심에 찬 눈빛으로 그를 바라보았다.\\n\\n「왕세자님, 크렘노스로 돌아갈 날이 얼마 남지 않았습니다」\\n오랜 세월을 겪은 노인이 웃으며 술잔을 들고 그에게 인사를 올렸다.\\n\\n그는 고개를 끄덕이고는, 계속 야영지 경계선으로 향했다.\\n환생의 고통이 여전히 피부 위를 휘저었다. 내일, 그는 크렘노스 고군을 이끌고 다시 타지로 떠날 것이다.\\n언제까지 정처 없이 떠돌아다닐지 알 수 없었으나, 그가 확신할 수 있는 건 피의 불꽃이 전부 타버릴 때까지 왕의 책임을 짊어지리라는 것이다.\\n\\n밤이 점점 더 깊어지자, 그는 홀로 피의 술을 들이켰고, 지나가는 음유시인이 현을 울리자 불안정한 노랫소리가 허공에 울려 퍼졌다——\\n「고향은 꿈의 땅이지, 닿을 수 있는 곳이 아니야」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "조망", + "Desc": "장착한 캐릭터의 HP 최대치가 #1[i]% 증가하고, 받는 치유량이 #6[i]% 증가한다. 전투 스킬 또는 필살기 발동 시 자신의 HP 최대치의 #2[f1]%만큼 HP를 소모해 이번 공격으로 가하는 피해를 #3[i]% 증가시킨다. 해당 효과로 소모된 HP가 #4[i]pt보다 높을 경우 피해가 추가로 #5[i]% 증가한다.\\n현재 HP가 부족하면 해당 효과는 장착한 캐릭터의 현재 HP를 최대 1pt까지 감소시킨다", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.060000000055879354, + 0.3000000002793968, + 500, + 0.3000000002793968, + 0.20000000018626451 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.06499999971129, + 0.3500000003259629, + 500, + 0.3500000003259629, + 0.25000000023283064 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.07000000006519258, + 0.40000000037252903, + 500, + 0.40000000037252903, + 0.3000000002793968 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.07499999972060323, + 0.45000000041909516, + 500, + 0.45000000041909516, + 0.3500000003259629 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.0800000000745058, + 0.5000000004656613, + 500, + 0.5000000004656613, + 0.40000000037252903 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23039, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 62.40000000037253, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 137.28000000026077, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 237.12000000011176, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 336.96000000089407, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 436.80000000074506, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 536.640000000596, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23039, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 636.480000000447, + "BaseHPAdd": 9.360000000335276, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23040": { + "Name": "이별이 더 아름답도록", + "Desc": "또 한 번의 이별식이다.\\n소녀는 부서진 달빛을 밟으며, 강가에서 이별의 화환을 엮었다.\\n\\n오래된 애가는 차가운 공기 속에서 얼어붙었고, 고요한 강은 머나먼 저편의 꽃밭으로 흘러들었다.\\n피로 물든 서적, 녹슨 장검, 시문이 수놓인 손수건… 그녀는 그들의 유물과, 그들의 평생의 이야기를 건네받는다.\\n\\n「내 눈은 렌즈처럼, 별하늘을 영원히 그리워한다」\\n그건 일찍이 세상을 떠난 학자에게 바치는 묘비명이었다.\\n「인생에, 죽음에, 기사는 차가운 눈길만을 줄 뿐이다」\\n그건 무명의 전사가 평생 지켜온 잠언이었다.\\n「생명은 반짝이는 빛의 죽음에 불과하다」\\n그건 영원을 추구하는 시인이 생명으로 쓴 마지막 문장이었다.\\n……\\n\\n「모든 꽃은 한때 긍지를 가진 채 피어났다……」\\n강의 구슬픈 소리에 따라, 그녀는 세상을 떠난 자에게 시편과 화환을 바치고 기념했다——\\n「만약 시드는 걸 피할 수 없다면, 적어도 우리들의 이별이… 더 아름다웠으면 해」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "각명", + "Desc": "장착한 캐릭터의 HP 최대치가 #1[i]% 증가하고, 장착한 캐릭터 또는 장착한 캐릭터의 기억 정령이 자신의 턴 동안 HP를 잃을 시, 장착한 캐릭터가 [저승의 꽃]을 획득한다. [저승의 꽃]은 장착한 캐릭터와 장착한 캐릭터의 기억 정령이 피해를 가할 시 목표의 방어력을 #2[i]% 무시하게 한다, 지속 시간: #3[i]턴\\n장착한 캐릭터의 기억 정령이 사라질 시, 장착한 캐릭터의 행동 게이지가 #4[i]% 증가한다. 해당 효과는 최대 1회 발동하며, 장착한 캐릭터가 필살기를 발동할 때마다 발동 횟수가 초기화된다", + "Level": { + "1": { + "ParamList": [ + 0.3000000002793968, + 0.3000000002793968, + 2, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.375, + 0.3500000003259629, + 2, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.45000000041909516, + 0.40000000037252903, + 2, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.5250000001396984, + 0.45000000041909516, + 2, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.6000000005587935, + 0.5000000004656613, + 2, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23040, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 57.60000000055879, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 126.72000000067055, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 218.88000000081956, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 311.04000000003725, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 403.20000000018626, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 495.3600000003353, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23040, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 587.5200000004843, + "BaseHPAdd": 8.640000000596046, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23041": { + "Name": "생명은 불태워야 하는 것", + "Desc": "그윽한 실험 속, 여러 솟구치는 환상이 늘 그의 발걸음을 멈추게 했다.\\n\\n유혹의 속삭임이 말했다. 그 위험한 과제를 포기해, 굳이 자신의 일생을 걸 필요는 없잖아?\\n차가운 위협의 목소리가 말했다. 생사의 경계를 걷는 자는 결국 생명을 불태우게 될 것이다.\\n그리고 분노에 찬 고발의 목소리는 신을 모독하는 죄인은 잔혹한 형벌로 내몰아야 한다고 외쳤다.\\n\\n「인생을 넘나드는 공연에 마침내 피날레가 도래했군」\\n\\n그는 두 눈을 감은 채 신의 불씨를 움켜쥐고는 고통이 죽어가는 혼령을 집어삼키게 두었다.\\n단호한 눈동자부터 뛰는 심장, 그리고 온전한 영혼까지… 그는 자기 자신을 가장 순수하고 뜨거운 정련 속에 던졌다——\\n\\n여러 소리가 끓어오르다 결국 고요로 바뀌었다.\\n그렇게 어둠 속에서, 찬란한 진리가 그의 손에서 완성됐다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "정련", + "Desc": "장착한 캐릭터 턴 시작 시 에너지를 #5[i]pt 회복한다. 적이 장착한 캐릭터가 부여한 약점을 보유했을 경우 장착한 캐릭터가 대상에게 가하는 피해가 #3[i]% 증가한다.\\n적이 장착한 캐릭터의 공격을 받을 시 장착한 캐릭터가 대상의 방어력을 #2[i]% 감소시킨다, 지속 시간: #4[i]턴. 같은 유형의 효과는 중첩되지 않는다", + "Level": { + "1": { + "ParamList": [ + 0, + 0.12000000011175871, + 0.6000000005587935, + 2, + 10 + ] + }, + "2": { + "ParamList": [ + 0, + 0.1500000001396984, + 0.7000000006519258, + 2, + 10 + ] + }, + "3": { + "ParamList": [ + 0, + 0.18000000016763806, + 0.8000000007450581, + 2, + 10 + ] + }, + "4": { + "ParamList": [ + 0, + 0.21000000019557774, + 0.9000000008381903, + 2, + 10 + ] + }, + "5": { + "ParamList": [ + 0, + 0.24000000022351742, + 1, + 2, + 10 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23041, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23041, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23042": { + "Name": "무지개가 영원히 하늘에 머물길", + "Desc": "「감정은 구름과 같고, 우리는 감정을 품은 하늘이에요. 하늘에 먹구름이 짙게 드리우면, 마음은 불안해지죠」\\n의사는 환자의 고충에 친절하게 귀를 기울이며, 치유의 말을 건넸다.\\n「두 눈을 감고 천천히 숨을 쉬세요…. 자신이 따뜻하고 부드러운 곳에 있다고 상상해 보세요……」\\n\\n말에 마법의 힘이 담긴 듯, 날개 환수의 두 날개 아래에 무지갯빛이 흩뿌려졌다.\\n「산들바람이 들판을 타고 온화한 꽃향기를 가져온다. 젖은 구름이 지나가고 햇살로 가득 찬다……」\\n환자는 점점 아름다운 꿈에 빠졌고, 규칙적이고도 작은 숨소리만 냈다.\\n\\n마지막 환자를 진찰한 후, 의사는 가볍게 병실의 문을 닫았다.\\n\\n끝없는 영원한 밤이 먼 곳에서 밀려오고, 폐허들은 마치 대지의 상처와도 같았다.\\n\\n「내세에는 여명이 모두를 비추고…」\\n떠나기 전, 그녀는 하늘에 소원을 빌었다——\\n「하늘에 무지갯빛이 영원히 머물길」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "포용", + "Desc": "장착한 캐릭터의 속도가 #1[i]% 증가한다. 장착한 캐릭터가 일반 공격, 전투 스킬, 필살기 발동 시 모든 아군의 HP를 현재 HP의 #2[f1]%만큼 소모하고, 장착한 캐릭터의 기억 정령은 다음번 공격 후 추가로 공격 목표에게 장착한 캐릭터의 기억 정령 속성에 기반한 추가 피해를 HP 총 소모량의 #6[f1]%만큼 1회 가하며, 이후 HP 총 소모량을 초기화한다. 장착한 캐릭터의 기억 정령이 기억 정령 스킬 발동 시, 모든 적이 받는 피해가 #4[f1]% 증가한다, 지속 시간: #5[i]턴. 같은 유형의 효과는 중첩되지 않는다", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 0.010000000009313226, + 0, + 0.18000000016763806, + 2, + 2.5000000004656613 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 0.012500000186264515, + 0, + 0.2249999998603016, + 2, + 3.1249999997671694 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 0.014999999664723873, + 0, + 0.2700000002514571, + 2, + 3.750000000698492 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 0.017499999841675162, + 0, + 0.31499999994412065, + 2, + 4.375 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 0.02000000001862645, + 0, + 0.3600000003352761, + 2, + 5 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23042, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 52.80000000074506, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 21.600000000558794, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 116.16000000014901, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 47.52000000048429, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 200.64000000059605, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 82.0800000000745, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 285.12000000011176, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 116.64000000059605, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 369.6000000005588, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 151.20000000018626, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 454.0800000000745, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 185.7600000007078, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23042, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 538.5600000005215, + "BaseHPAdd": 7.920000000856817, + "BaseAttack": 220.32000000029802, + "BaseAttackAdd": 3.2400000002235174, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23043": { + "Name": "바람에 흩날리는 거짓말", + "Desc": "고양이 귀 소녀가 지붕에서 몸을 쭉 펴고 야경 속으로 들어갔다.\\n천 년 동안 침묵했던 보물 창고에서 소녀는 가뿐하게 왔다갔다 움직이며, 보물을 품에 안고 소리 없이 도망쳤다.\\n「어리석은 운명 따위 날 쫓아올 수 없지!」\\n\\n폐허에 불어오는 황야의 냄새가 섞인 바람은 소녀의 후드를 건드렸다.\\n소녀는 차가운 돌을 베고 누워 거친 식량을 삼키며 손끝에 있는 금화를 갖고 놀았다.\\n\\n먼 곳에서 나는 작은 소리가 그녀의 두 귀에 들려왔다. 여명의 빛이 비추는 거룩한 도시에서 북적거리는 사람들은 여전히 축제와 따뜻함을 즐기고 있었다.\\n「얼마나 더 필요하지… 1년, 아니면 만 년?」\\n\\n그녀는 기지개를 켜고 불안한 생각을 무시했다.\\n「후후, 사이퍼라는 늘 마지막까지 웃을 테니까!」\\n\\n금색 번개가 하늘을 갈랐고, 소녀의 선언이 여전히 바람 속에 흩날렸다.\\n——천 년 전과 다름없이 말이다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "기만", + "Desc": "장착한 캐릭터의 속도가 #1[i]% 증가한다. 장착한 캐릭터가 공격을 발동하면 #2[i]%의 기본 확률로 각 단일 적을 [망연] 상태에 빠트리며, [망연] 상태의 적은 방어력이 #3[i]% 감소한다, 지속 시간: #4[i]턴. 장착한 캐릭터의 속도가 #7[i] 이상일 경우 #5[i]%의 기본 확률로 각 단일 적을 [도난] 상태에 빠트리며, [도난] 상태의 적은 방어력이 #6[i]% 감소한다, 지속 시간: #4[i]턴. [망연] 또는 [도난]이 중복 부여될 경우, 가장 최근에 부여된 것만 적용된다", + "Level": { + "1": { + "ParamList": [ + 0.18000000016763806, + 1.2000000001862645, + 0.1600000001490116, + 2, + 1.2000000001862645, + 0.0800000000745058, + 170 + ] + }, + "2": { + "ParamList": [ + 0.21000000019557774, + 1.2000000001862645, + 0.18000000016763806, + 2, + 1.2000000001862645, + 0.09000000008381903, + 170 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 1.2000000001862645, + 0.20000000018626451, + 2, + 1.2000000001862645, + 0.10000000009313226, + 170 + ] + }, + "4": { + "ParamList": [ + 0.2700000002514571, + 1.2000000001862645, + 0.22000000020489097, + 2, + 1.2000000001862645, + 0.11000000010244548, + 170 + ] + }, + "5": { + "ParamList": [ + 0.3000000002793968, + 1.2000000001862645, + 0.24000000022351742, + 2, + 1.2000000001862645, + 0.12000000011175871, + 170 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23043, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110221, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110222, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110223, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23043, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23044": { + "Name": "이와 같이 타오르는 여명", + "Desc": "또다시 여정의 끝에 선 남자의 모습이 뜨거운 황금빛 태양에 삼켜진다.\\n\\n「황금색 피, 구세의 희망이… 사실은……」\\n\\n남자의 눈물은 떨어지기도 전에 증발했다.\\n「내일 봐, 파이!」\\n「끝까지 살아남으라고, 구세주!」\\n「가서 앰포리어스의 여명이 되어줘……」\\n\\n……\\n사람들의 염원은 텅 빈 메아리가 되었고, 이름 없는 영웅은 산산이 부서지며 그 격렬한 죽음을 드러냈다.\\n\\n「만약 분노의 불길이 이 황당한 운명을 불태울 수 없다면……」\\n그는 몇 번이고 산꼭대기를 향해 올라갔고, 끊임없이 떨어져 산산조각이 났다——\\n\\n「내가 그 운명과 함께 불타주지!」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "상실", + "Desc": "장착한 캐릭터의 기본 속도가 #1[i] 증가하고, 피해를 가할 시 목표의 방어력을 #2[i]% 무시한다. 장착한 캐릭터가 필살기 발동 후 [뜨거운 태양]을 획득하며, 턴 시작 시 해제된다. [뜨거운 태양] 보유 시 장착한 캐릭터가 가하는 피해가 #3[i]% 증가한다", + "Level": { + "1": { + "ParamList": [ + 12, + 0.18000000016763806, + 0.6000000005587935 + ] + }, + "2": { + "ParamList": [ + 14, + 0.2249999998603016, + 0.7800000007264316 + ] + }, + "3": { + "ParamList": [ + 16, + 0.2700000002514571, + 0.9600000008940697 + ] + }, + "4": { + "ParamList": [ + 18, + 0.31499999994412065, + 1.1400000001303852 + ] + }, + "5": { + "ParamList": [ + 20, + 0.3600000003352761, + 1.3200000002980232 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23044, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 31.200000000186265, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 68.64000000059605, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 118.56000000052154, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168.48000000044703, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 218.40000000037253, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 115013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 268.320000000298, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 23044, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 318.2400000002235, + "BaseAttackAdd": 4.680000000633299, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "23045": { + "Name": "보답 없는 왕관", + "Desc": "환상 속에서 소녀의 귓가에 그날의 대화가 울려 퍼진다.\\n\\n「멀린, 이 검을 뽑는 건 하나도 어렵지 않은걸요」\\n「그래, 사람들이 기대하는 왕이 되는 건 네게 어려운 일이 아니지. 그야 내가 널 지도해주고 있으니까. 하지만 알트리아… 진정 어려운 건, 언제까지나 사람들의 기대에 부응할 수 없다는 거야」\\n「그런 상황이 오면 사람들이 더 적합한 왕을 선택하겠죠. 저는 반대하지 않을 거예요」\\n「만약 그런 사람이 애초에 존재하지 않는다면?」\\n「…그럼, 모두의 기대에 부응할 수 있도록 노력해야죠」\\n\\n지금의 소녀는 그것이 얼마나 비극적인 일인지 알고 있다. 지금이 바로 그때 그 순간이라면, 그녀는 과연 포기할 것인가?\\n\\n왕은 말이 없다. 그녀는 그저 검을 꽉 쥐었다.\\n바위가 다시 한번 검이 뽑히는 굉음을 냈다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "기사왕", + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 필살기 발동 시 장착한 캐릭터의 공격력이 #6[i]% 증가하며, 장착한 캐릭터의 에너지 최대치가 #3[i]pt 이상일 경우 장착한 캐릭터의 에너지를 장착한 캐릭터 에너지 최대치의 #5[i]%만큼 고정으로 회복하고, 장착한 캐릭터의 공격력을 #2[i]% 증가시킨다, 지속 시간: #4[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.3600000003352761, + 0.40000000037252903, + 300, + 2, + 0.10000000009313226, + 0.40000000037252903 + ] + }, + "2": { + "ParamList": [ + 0.45000000041909516, + 0.5000000004656613, + 300, + 2, + 0.10000000009313226, + 0.5000000004656613 + ] + }, + "3": { + "ParamList": [ + 0.5400000005029142, + 0.6000000005587935, + 300, + 2, + 0.10000000009313226, + 0.6000000005587935 + ] + }, + "4": { + "ParamList": [ + 0.6300000005867332, + 0.7000000006519258, + 300, + 2, + 0.10000000009313226, + 0.7000000006519258 + ] + }, + "5": { + "ParamList": [ + 0.7200000006705523, + 0.8000000007450581, + 300, + 2, + 0.10000000009313226, + 0.8000000007450581 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23045, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110181, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111011, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110182, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111012, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110183, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111013, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23045, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "23046": { + "Name": "이상이 불타는 지옥", + "Desc": "평원에 업화가 타오른다. 누군가의 이상은 재가 되었고, 누군가의 이상은 활활 타오른다.\\n\\n수호자는 탄환과 화살 사이를 가로지른다.\\n이곳에는 그가 구원할 수 있는 대상은 없고, 그가 구원하고 싶은 대상으로 가득하다.\\n\\n한 사람을 구하면 한 사람을 죽이고, 만 명을 구하면 만 명을 죽인다. 서로를 짓밟는 운명 역시 인류 존속의 일환이다.\\n\\n이 모든 것에 익숙해진 수호자는 걸음을 멈춘 적이 없다.\\n두 다리를 덮는 의지는 바람과 같고, 두 팔을 덮는 의지는 불과 같다.\\n\\n그는 여전히 구원의 기적을 찾고 있다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "적원엽병", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 전투 진입 시 아군의 전투 스킬 포인트 최대치가 #2[i]pt 이상일 경우, 장착한 캐릭터의 공격력이 #3[i]% 증가한다. 장착한 캐릭터가 전투 스킬을 발동할 때마다 장착한 캐릭터의 공격력을 #4[i]% 증가시킨다, 최대 중첩수: #5[i]회", + "Level": { + "1": { + "ParamList": [ + 0.1600000001490116, + 6, + 0.40000000037252903, + 0.10000000009313226, + 4 + ] + }, + "2": { + "ParamList": [ + 0.20000000018626451, + 6, + 0.5000000004656613, + 0.12499999976716936, + 4 + ] + }, + "3": { + "ParamList": [ + 0.24000000022351742, + 6, + 0.6000000005587935, + 0.1500000001396984, + 4 + ] + }, + "4": { + "ParamList": [ + 0.2800000002607703, + 6, + 0.7000000006519258, + 0.17499999981373549, + 4 + ] + }, + "5": { + "ParamList": [ + 0.3200000002980232, + 6, + 0.8000000007450581, + 0.20000000018626451, + 4 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 23046, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 26.40000000037253, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110191, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 58.080000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 100.32000000029802, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110192, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 142.56000000052154, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 184.80000000074506, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110193, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 227.04000000003725, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 23046, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 269.28000000026077, + "BaseAttackAdd": 3.9600000008940697, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "24000": { + "Name": "어떤 에이언즈의 몰락", + "Desc": "한 줄기의 빛에서 시작되어,\\n그들은 추락하고, 멸망의 위협이 고조되고 있다.\\n그들은 어쩔 수 없이 자가 복제를 멈추고, 앞을 다투어 서로 껴안아,\\n번식할 권리를 대가로 생존의 가능성을 바꾸고자 했다.\\n그들은 손을 맞잡았다, 이렇게 단결해 본 적이 없음에도\\n——운명의 길은 끊기고,\\n그들은 진정한 죽음을 향해 갔다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warrior", + "Refinements": { + "Name": "자충수", + "Desc": "장착한 캐릭터가 공격 발동 시 장착한 캐릭터의 이번 전투에서 공격력이 #1[i]% 증가한다. 해당 효과 최대 중첩수: #2[i]스택. 장착한 캐릭터는 적의 약점을 격파한 후 가하는 피해가 #3[i]% 증가한다. 지속 시간: #4[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 4, + 0.12000000011175871, + 2 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 4, + 0.1500000001396984, + 2 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 4, + 0.18000000016763806, + 2 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 4, + 0.21000000019557774, + 2 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 4, + 0.24000000022351742, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24000, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110111, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110112, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110113, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24001": { + "Name": "별바다 순항", + "Desc": "별바다 사이를 오가는,\\n그의 속도는 빛처럼 빠르다.\\n불사의 흉물을 포위하고,\\n신비의 명약을 찾아내,\\n벗어날 길을 찾는다.\\n그의 항해는 깨지지 않는 서약처럼,\\n영원히 끝나지 않는다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Rogue", + "Refinements": { + "Name": "사냥감 추적", + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 장착한 캐릭터는 HP 백분율이 #2[i]% 이하인 적에게 가하는 치명타 확률이 추가로 #3[i]% 증가한다. 장착한 캐릭터는 적을 처치한 후 공격력이 #4[i]% 증가한다. 지속 시간: #5[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.5000000004656613, + 0.0800000000745058, + 0.20000000018626451, + 2 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.5000000004656613, + 0.10000000009313226, + 0.25000000023283064, + 2 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.5000000004656613, + 0.12000000011175871, + 0.3000000002793968, + 2 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.5000000004656613, + 0.14000000013038516, + 0.3500000003259629, + 2 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.5000000004656613, + 0.1600000001490116, + 0.40000000037252903, + 2 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24001, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 43.200000000186265, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 21, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110121, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 95.04000000003725, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 46.200000000186265, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 164.160000000149, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 79.80000000074506, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110122, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 233.28000000026077, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 113.40000000037253, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 302.40000000037253, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 147, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110123, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 371.5200000004843, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 180.6000000005588, + "BaseDefenceAdd": 3.1500000001396984 + }, + { + "EquipmentID": 24001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 440.64000000059605, + "BaseHPAdd": 6.480000000447035, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 214.20000000018626, + "BaseDefenceAdd": 3.1500000001396984 + } + ] + }, + "24002": { + "Name": "기억의 소재", + "Desc": "우주는 쓰레기가 가득 쌓인 황무지 같다.\\n가끔 귀한 물건이 있어도 주워가는 사람이 없다.\\n그는 지나간 날의 틈새를 넘겨보며, 기억의 씨앗을 골라낸다.\\n——새로운 생명이 움트기 위해선, 그 씨앗이 죽어야만 한다.\\n분홍색, 파란색, 하얀색의 가져온 보석이,\\n그의 묘포에서 반짝인다,\\n그래도 우주는 여전히 적막하다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Knight", + "Refinements": { + "Name": "간직", + "Desc": "장착한 캐릭터의 효과 저항이 #1[i]% 증가한다. 장착한 캐릭터는 피격 후 자신이 실드를 보유하지 않았다면 장착한 캐릭터 HP 최대치 #2[i]%만큼의 실드를 획득한다. 지속 시간: #3[i]턴. 해당 효과는 #4[i]턴마다 1회만 발동할 수 있다. 장착한 캐릭터가 실드를 보유하면 자신이 받는 피해가 #5[i]% 감소한다", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.1600000001490116, + 2, + 3, + 0.12000000011175871 + ] + }, + "2": { + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451, + 2, + 3, + 0.1500000001396984 + ] + }, + "3": { + "ParamList": [ + 0.12000000011175871, + 0.24000000022351742, + 2, + 3, + 0.18000000016763806 + ] + }, + "4": { + "ParamList": [ + 0.14000000013038516, + 0.2800000002607703, + 2, + 3, + 0.21000000019557774 + ] + }, + "5": { + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232, + 2, + 3, + 0.24000000022351742 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24002, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 19.200000000186265, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 24, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110141, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 42.24000000022352, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 52.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 72.96000000089407, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 91.20000000018626, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110142, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 103.6800000006333, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 129.6000000005588, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 134.40000000037253, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 168, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110143, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 165.12000000011176, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 206.40000000037253, + "BaseDefenceAdd": 3.6000000005587935 + }, + { + "EquipmentID": 24002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 195.8400000007823, + "BaseAttackAdd": 2.880000000819564, + "BaseDefence": 244.80000000074506, + "BaseDefenceAdd": 3.6000000005587935 + } + ] + }, + "24003": { + "Name": "고독의 치유", + "Desc": "자연에서 탄생한 신비한 것으로 형태와 실체가 없다.\\n만물은 공허하며, 한순간의 꿈에 불과하다.\\n죽고자 하면 죽을 것이고, 살고자 하면 살 것이다.\\n꺼진 것은 다시 빛을 찾고, 마른 것은 다시 채워질 것이다.\\n혼돈의 구원을 불쌍히 여기고, 영약은 허영을 키운다.\\n별의 어두운 면을 등진 채, 병 속에 봉인되었다.\\n\\n「이러한 역설을 우리는 오히려 영광으로 여기는 구나」", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Warlock", + "Refinements": { + "Name": "혼돈 영약", + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 장착한 캐릭터가 필살기 발동 시 장착한 캐릭터가 가하는 지속 피해가 #2[i]% 증가한다. 지속 시간: #3[i]턴. 장착한 캐릭터가 부여한 지속 피해 효과에 빠진 적이 처치되면 장착한 캐릭터는 에너지를 #4[f1]pt 회복한다", + "Level": { + "1": { + "ParamList": [ + 0.20000000018626451, + 0.24000000022351742, + 2, + 4 + ] + }, + "2": { + "ParamList": [ + 0.25000000023283064, + 0.3000000002793968, + 2, + 4.500000000465661 + ] + }, + "3": { + "ParamList": [ + 0.3000000002793968, + 0.3600000003352761, + 2, + 5 + ] + }, + "4": { + "ParamList": [ + 0.3500000003259629, + 0.4200000003911555, + 2, + 5.500000000465661 + ] + }, + "5": { + "ParamList": [ + 0.40000000037252903, + 0.48000000044703484, + 2, + 6 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24003, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110151, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110152, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110153, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24004": { + "Name": "멈추지 않는 연산", + "Desc": "영원히 허공에 멈춰 있는 채로,\\n빛나는 데이터가 홍수처럼 그의 머릿속으로 밀려 들어왔다.\\n과거와 미래의 만물은 부호가 되었고,\\n그는 시작의 순간에 종말의 때를 연역했다.\\n지식, 답, 진실……\\n정보의 안갯속에 찬란한 빛이 떠올랐고,\\n모든 것이 그에게 뚜렷해졌다", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Mage", + "Refinements": { + "Name": "끝없는 생각", + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 공격 발동 후 적을 1기 명중할 때마다 공격력이 추가로 #2[i]% 증가하며(최대 중첩수: 5회), 다음 공격 후까지 지속된다. #3[i]기 이상의 적을 명중하면 자신의 속도가 #4[i]% 증가한다, 지속 시간: #5[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.0800000000745058, + 0.0400000000372529, + 3, + 0.0800000000745058, + 1 + ] + }, + "2": { + "ParamList": [ + 0.09000000008381903, + 0.05000000004656613, + 3, + 0.10000000009313226, + 1 + ] + }, + "3": { + "ParamList": [ + 0.10000000009313226, + 0.060000000055879354, + 3, + 0.12000000011175871, + 1 + ] + }, + "4": { + "ParamList": [ + 0.11000000010244548, + 0.07000000006519258, + 3, + 0.14000000013038516, + 1 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.0800000000745058, + 3, + 0.1600000001490116, + 1 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24004, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110201, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110202, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110203, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + }, + "24005": { + "Name": "기억은 영원히 막을 내리지 않는다", + "Desc": "번화한 행성이든, 황량한 행성이든, 짧은 행성이든, 기나긴 행성이든… 모든 행성에는 모든 순간에 무수한 사건이 일어난다.\\n응결된 역사는 손에 닿자마자 녹아내려 눈물이 되어 세계의 눈동자에서 흘러내린다——\\n\\n어떤 이들은 그 눈물이 너무나도 무겁기에 응축된 세월은 영원을 퇴색시킬 수 있을 정도라고 한다.\\n어떤 이들은 그 이야기가 너무나도 아름다우며, 슬픔은 맑고, 기쁨은 평온하며, 그 사이에는 일말의 거짓도 없다고 한다.\\n\\n은하는 고요히 흐르고 있고, 그는 어떤 말도 하지 않고 그저 바라볼 뿐이다——\\n그들이 「기억」이 되길 기다리면서", + "Rarity": "CombatPowerLightconeRarity5", + "BaseType": "Memory", + "Refinements": { + "Name": "수취", + "Desc": "장착한 캐릭터의 속도가 #1[f1]% 증가한다. 장착한 캐릭터가 전투 스킬을 발동하면 모든 아군이 가하는 피해가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "Level": { + "1": { + "ParamList": [ + 0.060000000055879354, + 0.0800000000745058, + 3 + ] + }, + "2": { + "ParamList": [ + 0.07499999972060323, + 0.10000000009313226, + 3 + ] + }, + "3": { + "ParamList": [ + 0.09000000008381903, + 0.12000000011175871, + 3 + ] + }, + "4": { + "ParamList": [ + 0.1049999997485429, + 0.14000000013038516, + 3 + ] + }, + "5": { + "ParamList": [ + 0.12000000011175871, + 0.1600000001490116, + 3 + ] + } + } + }, + "Stats": [ + { + "EquipmentID": 24005, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 5000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 8, + "Rarity": "NotNormal" + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": 48, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 24, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 18, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 1, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 10000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110251, + "ItemNum": 4, + "Rarity": "NotNormal" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111001, + "ItemNum": 12, + "Rarity": "NotNormal" + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": 105.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 52.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 39.60000000055879, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 2, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 20000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 4, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 8, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": 182.40000000037253, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 91.20000000018626, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 68.40000000037253, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 3, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 50000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110252, + "ItemNum": 8, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111002, + "ItemNum": 12, + "Rarity": "Rare" + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": 259.20000000018626, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 129.6000000005588, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 97.20000000018626, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 4, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 100000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 5, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 6, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": 336, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 168, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 126, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 5, + "PromotionCostList": [ + { + "$type": "ItemConfigRow", + "ItemID": 2, + "ItemNum": 200000, + "Rarity": "Rare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 110253, + "ItemNum": 10, + "Rarity": "VeryRare" + }, + { + "$type": "ItemConfigRow", + "ItemID": 111003, + "ItemNum": 8, + "Rarity": "VeryRare" + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": 412.80000000074506, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 206.40000000037253, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 154.80000000074506, + "BaseDefenceAdd": 2.700000000651926 + }, + { + "EquipmentID": 24005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": 489.6000000005588, + "BaseHPAdd": 7.2000000001862645, + "BaseAttack": 244.80000000074506, + "BaseAttackAdd": 3.6000000005587935, + "BaseDefence": 183.6000000005588, + "BaseDefenceAdd": 2.700000000651926 + } + ] + } +} \ No newline at end of file diff --git a/data/main_affixes.json b/data/main_affixes.json new file mode 100644 index 0000000..70550f1 --- /dev/null +++ b/data/main_affixes.json @@ -0,0 +1,762 @@ +{ + "21": { + "1": { + "property": "HPDelta", + "base": 45.15840148925781, + "step": 15.805439949035645, + "step_num": null + } + }, + "22": { + "1": { + "property": "AttackDelta", + "base": 22.579200744628903, + "step": 7.902719974517822, + "step_num": null + } + }, + "23": { + "1": { + "property": "HPAddedRatio", + "base": 0.027648000046610832, + "step": 0.009677000343799593, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.027648000046610832, + "step": 0.009677000343799593, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.03456000238656998, + "step": 0.012096000835299492, + "step_num": null + }, + "4": { + "property": "CriticalChanceBase", + "base": 0.020736001431941983, + "step": 0.00725799985229969, + "step_num": null + }, + "5": { + "property": "CriticalDamageBase", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "6": { + "property": "HealRatioBase", + "base": 0.02211800031363964, + "step": 0.0077410005033016205, + "step_num": null + }, + "7": { + "property": "StatusProbabilityBase", + "base": 0.027648000046610832, + "step": 0.009677000343799593, + "step_num": null + } + }, + "24": { + "1": { + "property": "HPAddedRatio", + "base": 0.027648000046610832, + "step": 0.009677000343799593, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.027648000046610832, + "step": 0.009677000343799593, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.03456000238656998, + "step": 0.012096000835299492, + "step_num": null + }, + "4": { + "property": "SpeedDelta", + "base": 1.6128000020980835, + "step": 1.0, + "step_num": null + } + }, + "25": { + "1": { + "property": "HPAddedRatio", + "base": 0.027648000046610832, + "step": 0.009677000343799593, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.027648000046610832, + "step": 0.009677000343799593, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.03456000238656998, + "step": 0.012096000835299492, + "step_num": null + }, + "4": { + "property": "PhysicalAddedRatio", + "base": 0.024883000180125237, + "step": 0.008709000423550606, + "step_num": null + }, + "5": { + "property": "FireAddedRatio", + "base": 0.024883000180125237, + "step": 0.008709000423550606, + "step_num": null + }, + "6": { + "property": "IceAddedRatio", + "base": 0.024883000180125237, + "step": 0.008709000423550606, + "step_num": null + }, + "7": { + "property": "ThunderAddedRatio", + "base": 0.024883000180125237, + "step": 0.008709000423550606, + "step_num": null + }, + "8": { + "property": "WindAddedRatio", + "base": 0.024883000180125237, + "step": 0.008709000423550606, + "step_num": null + }, + "9": { + "property": "QuantumAddedRatio", + "base": 0.024883000180125237, + "step": 0.008709000423550606, + "step_num": null + }, + "10": { + "property": "ImaginaryAddedRatio", + "base": 0.024883000180125237, + "step": 0.008709000423550606, + "step_num": null + } + }, + "26": { + "1": { + "property": "BreakDamageAddedRatioBase", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "2": { + "property": "SPRatioBase", + "base": 0.012442000210285189, + "step": 0.004355000331997871, + "step_num": null + }, + "3": { + "property": "HPAddedRatio", + "base": 0.027648000046610832, + "step": 0.009677000343799593, + "step_num": null + }, + "4": { + "property": "AttackAddedRatio", + "base": 0.027648000046610832, + "step": 0.009677000343799593, + "step_num": null + }, + "5": { + "property": "DefenceAddedRatio", + "base": 0.03456000238656998, + "step": 0.012096000835299492, + "step_num": null + } + }, + "31": { + "1": { + "property": "HPDelta", + "base": 67.73760223388672, + "step": 23.708160400390625, + "step_num": null + } + }, + "32": { + "1": { + "property": "AttackDelta", + "base": 33.86880111694336, + "step": 11.854080200195312, + "step_num": null + } + }, + "33": { + "1": { + "property": "HPAddedRatio", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.05183999985456467, + "step": 0.018144000321626663, + "step_num": null + }, + "4": { + "property": "CriticalChanceBase", + "base": 0.03110400028526783, + "step": 0.010886001400649548, + "step_num": null + }, + "5": { + "property": "CriticalDamageBase", + "base": 0.06220800057053566, + "step": 0.021773001179099083, + "step_num": null + }, + "6": { + "property": "HealRatioBase", + "base": 0.03317800164222717, + "step": 0.011611999943852425, + "step_num": null + }, + "7": { + "property": "StatusProbabilityBase", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + } + }, + "34": { + "1": { + "property": "HPAddedRatio", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.05183999985456467, + "step": 0.018144000321626663, + "step_num": null + }, + "4": { + "property": "SpeedDelta", + "base": 2.4191999435424805, + "step": 1.0, + "step_num": null + } + }, + "35": { + "1": { + "property": "HPAddedRatio", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.05183999985456467, + "step": 0.018144000321626663, + "step_num": null + }, + "4": { + "property": "PhysicalAddedRatio", + "base": 0.037324998527765274, + "step": 0.013064000755548475, + "step_num": null + }, + "5": { + "property": "FireAddedRatio", + "base": 0.037324998527765274, + "step": 0.013064000755548475, + "step_num": null + }, + "6": { + "property": "IceAddedRatio", + "base": 0.037324998527765274, + "step": 0.013064000755548475, + "step_num": null + }, + "7": { + "property": "ThunderAddedRatio", + "base": 0.037324998527765274, + "step": 0.013064000755548475, + "step_num": null + }, + "8": { + "property": "WindAddedRatio", + "base": 0.037324998527765274, + "step": 0.013064000755548475, + "step_num": null + }, + "9": { + "property": "QuantumAddedRatio", + "base": 0.037324998527765274, + "step": 0.013064000755548475, + "step_num": null + }, + "10": { + "property": "ImaginaryAddedRatio", + "base": 0.037324998527765274, + "step": 0.013064000755548475, + "step_num": null + } + }, + "36": { + "1": { + "property": "BreakDamageAddedRatioBase", + "base": 0.06220800057053566, + "step": 0.021773001179099083, + "step_num": null + }, + "2": { + "property": "SPRatioBase", + "base": 0.018662000074982643, + "step": 0.006532000377774239, + "step_num": null + }, + "3": { + "property": "HPAddedRatio", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "4": { + "property": "AttackAddedRatio", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "5": { + "property": "DefenceAddedRatio", + "base": 0.05183999985456467, + "step": 0.018144000321626663, + "step_num": null + } + }, + "41": { + "1": { + "property": "HPDelta", + "base": 90.31680297851562, + "step": 31.61087989807129, + "step_num": null + } + }, + "42": { + "1": { + "property": "AttackDelta", + "base": 45.15840148925781, + "step": 15.805439949035645, + "step_num": null + } + }, + "43": { + "1": { + "property": "HPAddedRatio", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "4": { + "property": "CriticalChanceBase", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + }, + "5": { + "property": "CriticalDamageBase", + "base": 0.08294399827718735, + "step": 0.029029998928308487, + "step_num": null + }, + "6": { + "property": "HealRatioBase", + "base": 0.04423699900507927, + "step": 0.015483000315725803, + "step_num": null + }, + "7": { + "property": "StatusProbabilityBase", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + } + }, + "44": { + "1": { + "property": "HPAddedRatio", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "4": { + "property": "SpeedDelta", + "base": 3.225600004196167, + "step": 1.100000023841858, + "step_num": null + } + }, + "45": { + "1": { + "property": "HPAddedRatio", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "4": { + "property": "PhysicalAddedRatio", + "base": 0.04976600036025047, + "step": 0.01741800084710121, + "step_num": null + }, + "5": { + "property": "FireAddedRatio", + "base": 0.04976600036025047, + "step": 0.01741800084710121, + "step_num": null + }, + "6": { + "property": "IceAddedRatio", + "base": 0.04976600036025047, + "step": 0.01741800084710121, + "step_num": null + }, + "7": { + "property": "ThunderAddedRatio", + "base": 0.04976600036025047, + "step": 0.01741800084710121, + "step_num": null + }, + "8": { + "property": "WindAddedRatio", + "base": 0.04976600036025047, + "step": 0.01741800084710121, + "step_num": null + }, + "9": { + "property": "QuantumAddedRatio", + "base": 0.04976600036025047, + "step": 0.01741800084710121, + "step_num": null + }, + "10": { + "property": "ImaginaryAddedRatio", + "base": 0.04976600036025047, + "step": 0.01741800084710121, + "step_num": null + } + }, + "46": { + "1": { + "property": "BreakDamageAddedRatioBase", + "base": 0.08294399827718735, + "step": 0.029029998928308487, + "step_num": null + }, + "2": { + "property": "SPRatioBase", + "base": 0.024883000180125237, + "step": 0.008709000423550606, + "step_num": null + }, + "3": { + "property": "HPAddedRatio", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + }, + "4": { + "property": "AttackAddedRatio", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + }, + "5": { + "property": "DefenceAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + } + }, + "51": { + "1": { + "property": "HPDelta", + "base": 112.89600372314452, + "step": 39.51359939575195, + "step_num": null + } + }, + "52": { + "1": { + "property": "AttackDelta", + "base": 56.448001861572266, + "step": 19.756799697875977, + "step_num": null + } + }, + "53": { + "1": { + "property": "HPAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.08640000224113464, + "step": 0.030240001156926155, + "step_num": null + }, + "4": { + "property": "CriticalChanceBase", + "base": 0.05183999985456467, + "step": 0.018144000321626663, + "step_num": null + }, + "5": { + "property": "CriticalDamageBase", + "base": 0.10367999970912932, + "step": 0.036288000643253326, + "step_num": null + }, + "6": { + "property": "HealRatioBase", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + }, + "7": { + "property": "StatusProbabilityBase", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + } + }, + "54": { + "1": { + "property": "HPAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.08640000224113464, + "step": 0.030240001156926155, + "step_num": null + }, + "4": { + "property": "SpeedDelta", + "base": 4.0320000648498535, + "step": 1.399999976158142, + "step_num": null + } + }, + "55": { + "1": { + "property": "HPAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "2": { + "property": "AttackAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "3": { + "property": "DefenceAddedRatio", + "base": 0.08640000224113464, + "step": 0.030240001156926155, + "step_num": null + }, + "4": { + "property": "PhysicalAddedRatio", + "base": 0.06220800057053566, + "step": 0.021773001179099083, + "step_num": null + }, + "5": { + "property": "FireAddedRatio", + "base": 0.06220800057053566, + "step": 0.021773001179099083, + "step_num": null + }, + "6": { + "property": "IceAddedRatio", + "base": 0.06220800057053566, + "step": 0.021773001179099083, + "step_num": null + }, + "7": { + "property": "ThunderAddedRatio", + "base": 0.06220800057053566, + "step": 0.021773001179099083, + "step_num": null + }, + "8": { + "property": "WindAddedRatio", + "base": 0.06220800057053566, + "step": 0.021773001179099083, + "step_num": null + }, + "9": { + "property": "QuantumAddedRatio", + "base": 0.06220800057053566, + "step": 0.021773001179099083, + "step_num": null + }, + "10": { + "property": "ImaginaryAddedRatio", + "base": 0.06220800057053566, + "step": 0.021773001179099083, + "step_num": null + } + }, + "56": { + "1": { + "property": "BreakDamageAddedRatioBase", + "base": 0.10367999970912932, + "step": 0.036288000643253326, + "step_num": null + }, + "2": { + "property": "SPRatioBase", + "base": 0.03110400028526783, + "step": 0.010886001400649548, + "step_num": null + }, + "3": { + "property": "HPAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "4": { + "property": "AttackAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + }, + "5": { + "property": "DefenceAddedRatio", + "base": 0.08640000224113464, + "step": 0.030240001156926155, + "step_num": null + } + }, + "433": { + "1": { + "property": "DefenceAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + } + }, + "434": { + "1": { + "property": "CriticalChanceBase", + "base": 0.041471999138593674, + "step": 0.014515000395476818, + "step_num": null + } + }, + "436": { + "1": { + "property": "HealRatioBase", + "base": 0.04423699900507927, + "step": 0.015483000315725803, + "step_num": null + } + }, + "441": { + "1": { + "property": "HPAddedRatio", + "base": 0.055296000093221664, + "step": 0.019354000687599186, + "step_num": null + } + }, + "443": { + "1": { + "property": "DefenceAddedRatio", + "base": 0.06911999732255936, + "step": 0.024191999807953835, + "step_num": null + } + } +} \ No newline at end of file diff --git a/data/relics.cn.json b/data/relics.cn.json new file mode 100644 index 0000000..c59b215 --- /dev/null +++ b/data/relics.cn.json @@ -0,0 +1,1656 @@ +{ + "101": { + "Name": "云无留迹的过客", + "Icon": "SpriteOutput/ItemIcon/71000.png", + "Parts": { + "31011": { + "Name": "过客的逢春木簪", + "Desc": "枯木曾作发簪,枝梢有花苞初绽。而今往事已矣,花苞鎏金嵌入簪中,用以纪念新生的开始。", + "Story": "佚名之人自漫长的沉眠中醒来,遥远而熟悉的紧张感挥之不散,幻痛清晰锐利。过去种种成了锋利的碎片,自己的姓字也已忘却。\\n\\n在漫无目的的流离中,他接饮落雪解渴,搏杀野兽充饥,信手斩下一截枯枝作木簪绾住长发。\\n\\n黑发如山泉流水汩汩而出,皮下肌肉如江鲫翻涌般抽搐鼓动…奇妙的力量不断重塑着躯体,传来筋骨断开复又连接的苦楚。伴随着无数次幻痛折磨,支离破碎的过往开始缝合完整…他从水中窥觑自我倒影时,惨剧的始末也逐渐清晰。\\n\\n直到水中的面孔不再陌生,佚名之人倏忽间看见枯枝生出了花芽。\\n\\n他恍然醒悟。长生不死的诅咒其势甚烈,旧日的恩怨并未死去,他就是这条枯枝上新生的花朵。" + }, + "31012": { + "Name": "过客的游龙臂鞲", + "Desc": "如水的珊瑚金与未知的兽革制成的腕甲,唯有龙脉一族的巧匠才能打造出这等非凡工艺。", + "Story": "成双之物间似乎会遥相感应,佚名之人所持的护腕虽仅有一只,指尖触碰下却隐隐能感受到另一只的温度。\\n\\n他闭上眼,试图全力捕捉与另一只护腕若有似无的联系:它的位置,它的主人。\\n\\n一只修长有力的手曾穿戴另一只腕甲,手执长枪与自己比武,枪尖寒芒坠如流星。腕甲的主人也曾与自己推杯换盅,望向冷月,彼此无言沉默;最后,也是那人和自己一意孤行,将挚爱变成了怪物,让所有人坠入无穷悔恨的渊薮。\\n\\n成双之物总有一天会再度相逢,而此间绵长仇恨应如陈酒冰冷浓烈,慢慢啜饮,直至一切恩怨清偿为止。\\n\\n另一只护腕的主人也有同感么?他不想知道。" + }, + "31013": { + "Name": "过客的残绣风衣", + "Desc": "长摆残破的古旧风衣,绣纹被剑痕撕碎。肉体会快速愈合,但外衣却不能,正如人的痛苦。", + "Story": "佚名之人漂泊在长久的放逐途中,一如尸骸,阻住尸骸去路的,是墨镜女子和高大铠甲。二人邀约未至,回绝的剑锋既出,缠斗之后,女人笑着提出了他无法回绝的交易。\\n\\n于是,佚名之人接受邀请,获得全新的身份,再次回到文明与秩序之中。\\n\\n佚名之人被带到裁缝铺里,量身制版、裁剪缝纫,作出体面的衣物…还有人为他修剪鬓发、整理仪表,重现旧日模样。恍惚间,他开始难辨今夕何夕,在暧昧的旧时光里,原本准备将亲手打造的玉壶相赠友人,却在暗下决心之后,惊觉伊人不在。\\n\\n他意识到倚之行走世间的一切:这具形骸、这次生命、这段爱恨……乃至这身衣物,一切都是借贷。\\n\\n他要将这一切全数偿还,然后呼出最后一口气。" + }, + "31014": { + "Name": "过客的冥途游履", + "Desc": "一双经久耐用的短靴,曾踏遍诸多世界,出入死生。", + "Story": "佚名之人追随着奴隶的命令,与刚结识的同伴去往天空彼岸。他的足履带着茫然与恨意在无数个世界间行走,在生死间屡屡徘徊。\\n\\n他早已忘却了造物的快乐,只顾得脚步匆匆,从一个战场奔赴另一个战场。\\n\\n在过去,他曾身尝无数极致的剑光,身体在成百上千次败北中四分五裂,对手总会以一记穿心的剑招做结。而如今,那些错杂伤痕刻印下的剑招永志不忘,随着生死交锋而百炼升华。他挥洒剑光,为众人斩开阻碍,一次次倒地又一次次站起。在屏息舞剑的专注中,他一度遗忘了仇恨。\\n\\n奴隶许诺,会给他和他所恨的一切永恒的终结,永眠的葬仪。佚名之人点头,还剑入鞘,奔向下一个世界。\\n\\n如果人生是步伐连缀而成的路途,那末他希望抵达「终点」之前,能跨过深恨之人的血泊。" + } + }, + "RequireNum": { + "2": { + "Desc": "治疗量提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "在战斗开始时,立即为我方恢复1个战技点。", + "ParamList": [] + } + } + }, + "102": { + "Name": "野穗伴行的快枪手", + "Icon": "SpriteOutput/ItemIcon/71001.png", + "Parts": { + "31021": { + "Name": "快枪手的野穗毡帽", + "Desc": "一顶绑着野生麦穗的牛仔毡帽,传奇枪手奥克莱的标志。", + "Story": "奥克莱的毡帽继承自去世的父亲,她把野穗别在帽带上作为装饰,看上去可爱了许多。赏金客们有意无意地创作自己的标志,希望可以留给后人作为传说的开头。\\n\\n星际和平公司利用悬赏招募奇人异士去追缉星际盗团,而独来独往的奥克莱总是选择那些难捱的荒漠边陲。\\n\\n烈日数日,寒夜也数日。孤独的旅途中,奥克莱枕着毡帽、靠近篝火便能悄然入梦。梦境中总会被一名神秘枪手闯入,自称是来自远方的赏金客,他身形瘦削,却目光锐利。枪手要求奥克莱的父亲同他在正午决斗,枪声响起,毡帽飞离,父亲仰面倒下,随即便是母亲的嚎啕哭声……\\n\\n小奥克莱怔怔地盯着神秘枪手,那人的动作一气呵成,父亲毫无胜算。\\n\\n从梦中醒来,毡帽上留下泪水的痕迹。小奥克莱就是想要父亲那顶帅气的帽子,才开始学枪的。" + }, + "31022": { + "Name": "快枪手的粗革手套", + "Desc": "表面已经部分开裂的皮革手套,握枪处磨损尤其严重。", + "Story": "童年的奥克莱练习时不知疲惫,她在牧场中练习射击从日出开始,到日落为止。父亲有时为她的天赋暗自惊喜,有时又会为枪手的命运徒然忧愁。\\n\\n只有母亲可怜她那双白皙的小手,埋怨父亲不应该教授女儿枪法。\\n\\n从那场决斗之后,再到第一次悬赏任务完成,到后来名声大作,奥克莱已经戴着破旧的手套握枪多年。其他赏金客们并不理解她对手套的坚持,只有她自己才明白这其中矛盾的情感。那是母亲送给自己的饯别礼物。\\n\\n固执着不支持自己学枪的母亲,又到底是下了怎样的决心呢?\\n\\n那场决斗之后,母亲在奥克莱的怀中啜泣不止,奥克莱什么都没说,母亲已经知晓她的心意。" + }, + "31023": { + "Name": "快枪手的猎风披肩", + "Desc": "看上去是有民族风格的编制披肩,内衬部分编织了能够防弹的纤维。", + "Story": "枪手绝不该在决斗时率先露出破绽,奥克莱能不动声色地填弹上膛,并瞄准目标。外人看来她那蓬松的斗篷好像一动不动,直到枪声响起,人们也未能理解这是如何做到的。\\n\\n「细微的动作在披肩的掩护之下到位,决斗要在子弹出膛之前完成。」父亲曾反复叮嘱到。\\n\\n无意撞上一伙持枪歹徒后,奥克莱冷静地站定,并开始观察现况。出枪之前,奥克莱犹如几百年未曾移动的磐岩,在歹徒行动之前,奥克莱早已完成了所有准备。在数声清脆的枪响结束之后,奥克莱故意放走了一个强盗,她需要给盗贼团体一个巧妙的威慑。\\n\\n没有想法、没有表情,常常让对手觉得毫无胜算。这便是其他赏金客对奥克莱的评价。\\n\\n决斗时的奥克莱更像是那个闯入梦中的神秘枪手,干净利落、没有一点多余的动作。当她意识到自己与仇敌越来越像时,不禁对自己嫌弃起来。" + }, + "31024": { + "Name": "快枪手的铆钉马靴", + "Desc": "马靴有着V形剪裁的开口,看上去随性松弛,穿起来非常舒适。", + "Story": "漫长旅途的滋味并不好受,而形单影只的奥克莱早已习惯。奥克莱总是蹬上马靴,去往那些无人问津的边陲世界,领取微不足道的赏金。\\n\\n因为她有一种直觉:那个神秘枪手也不是个合群的人,他们的相遇必然不是个热闹的地方。\\n\\n得到口琴之后,断断续续的练习曲消磨掉了她大部分孤独的时间,路过的听众也不过狼蛛、沙尘以及风滚草而已。奥克莱独自消遣的技巧在旅程之中愈发熟练,曾有风儿为之驻足,曲终方散。公司向赏金客们提供了星际旅行的可能,孤独的枪手从不挑剔去往何方。\\n\\n神秘的枪手销声匿迹已久,说不定自己只是在追逐着幻影。但是她只是一次又一次地出发而已。\\n\\n奥克莱笃信着,只要「野穗」的名声足够响亮,神秘枪手就会找上自己,就像当时他闯入牧场找上父亲一样。" + } + }, + "RequireNum": { + "2": { + "Desc": "攻击力提高#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "使装备者的速度提高#1[i]%,普攻造成的伤害提高#2[i]%。", + "ParamList": [ + 0.060000000055879354, + 0.10000000009313226 + ] + } + } + }, + "103": { + "Name": "净庭教宗的圣骑士", + "Icon": "SpriteOutput/ItemIcon/71002.png", + "Parts": { + "31031": { + "Name": "圣骑的宽恕盔面", + "Desc": "如同宗教石雕宽恕女神的面具头盔,用以隐藏自己的相貌。", + "Story": "肃静骑士从未在人前卸下过坚硬厚重的面具,肃穆的宗教面庞与萨菲娜的沉默共同塑造了难以呼吸的威圧感。\\n\\n无论目中无人的恶魔,还是陷入疯狂的圣职,只会在肃穆的威压下露出本能的畏惧。\\n\\n只有少数教廷的圣职知道,在那宗教盔面之下,是萨菲娜隐藏起的恶魔出身。教廷畏惧恶魔,又渴望恶魔的力量,这才有了矛盾的结果…俘获了幼年的恶魔,将她培养成骁勇的肃静骑士,却禁止她在人前露出真实的面孔,而是服从教宗的命令,化身为圣女的沉默骑士。\\n\\n年龄相仿的圣女瓦妮拉曾亲自教导萨菲娜学习经文,她还记得烛光里恶魔的侧颜。\\n\\n「我亲爱的萨菲娜,我见过你的面庞,我始终都记得。」圣女瓦妮拉在成年之后逐渐失明。" + }, + "31032": { + "Name": "圣骑的沉默誓环", + "Desc": "装饰着教会纹样的银戒,镶嵌着看上去些许浑浊的宝石。", + "Story": "教宗骑士同僚挥剑相向,庄严和礼仪逐渐崩塌,誓约守护的戒指开始变得浑浊不堪。\\n\\n星海降下的力量赋予教会惩戒恶魔的实力,同时也传播了丧失人性的疯病。\\n\\n疯病折磨的教宗骑士已经分不清礼仪与秩序,叫嚣着要驱逐出所有的恶魔后裔,让教会得到救赎。面对迫近圣女的威胁,萨菲娜没有犹豫的间隙,即便对方是净庭教会的骑士长,她也不能手下留情。\\n\\n肃静骑士必须要保护好圣女,萨菲娜没有忘记。\\n\\n「我亲爱的萨菲娜,你不必愧疚,这是觊觎星神力量的下场,理应如此。」教堂只剩下最后的圣女和守护骑士。" + }, + "31033": { + "Name": "圣骑的肃穆胸甲", + "Desc": "厚重的胸甲装饰着净庭教会鲜明的符号,关节处也都密不透风。", + "Story": "肃静骑士的盔甲需要接受圣女瓦妮拉的祝福,这是缔结守护骑士誓约的仪式。\\n\\n教廷曾用金属锁链绑住幼年恶魔的手脚。如今萨菲娜恳求将来自恶魔之乡的金属铸成铠甲,以便安葬时有故土傍身。\\n\\n净庭教会的圣女仔细擦洗着盔甲上的罪孽,虔诚地献上神明的祷词,将久远的奇迹封印在胸甲上心脏的位置。教会并不相信恶魔的忠诚,但却坚信教义拥有净化一切的力量。萨菲娜沉默着,注视着复古的仪式赋予自己的责任。\\n\\n圣女并不相信仪式本身的目的,没有什么能清洗掉莫须有的罪恶。\\n\\n「我亲爱的萨菲娜,骑士可要保护好圣女啊。」瓦妮拉依靠在萨菲娜的胸甲上,听见剧烈的心跳声。" + }, + "31034": { + "Name": "圣骑的秩序铁靴", + "Desc": "净庭教会骑士的标准骑士长靴,脚后跟上刻印着简短的单词:「秩序」。", + "Story": "净庭教会已经崩塌,萨菲娜卸下骑士的铁靴,和圣女瓦妮拉踏上前往恶魔之乡的远行。\\n\\n在圣女的恳求下,萨菲娜没有让任何教宗骑士将疯病带离教廷,秘密被永远留在她们心中。\\n\\n不知何时,人们听说了一个传言:被教会驱逐的恶魔后裔附身在圣洁的肃静骑士身上,邪恶的魔女驱使着骑士破坏了教宗的秩序…传言化为了「真相」,虔诚的信徒将绝望和疯狂倾泻在肃静骑士的身上,将她看作是一切的罪魁祸首。\\n\\n失去了容身之所之后,圣女提出了归乡远行的建议。\\n\\n「从此,我成为了魔女,你变回了恶魔。」面对瓦妮拉的说法,萨菲娜无法否认。" + } + }, + "RequireNum": { + "2": { + "Desc": "防御力提高#1[i]%。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "4": { + "Desc": "使装备者提供的护盾量提高#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "104": { + "Name": "密林卧雪的猎人", + "Icon": "SpriteOutput/ItemIcon/71003.png", + "Parts": { + "31041": { + "Name": "雪猎的荒神兜帽", + "Desc": "巨大的雪原熊头部毛皮做成的兜帽。毛皮似乎寄宿鬼神,刀枪不入。", + "Story": "在斯诺兰德的雪原上流传着属于猎人们的生存铁则:在「荒神」捕食的期间,绝对不能去山岭的南面,那位撼山震岳的白色巨熊不欢迎任何人。\\n\\n作为协会指派的猎人,休格收到救援信号赶往岭南,未曾想到会遭遇到一场计划已久的埋伏。\\n\\n从漫长的枪击休克中醒来之后,休格立刻意识到自己曾在生死关前躲过一劫;但在下一秒,休格就立刻意识到,危机并未过去,他正处在「荒神」的注视下。即便掌击再近再快,「荒神」毫无章法的攻击也未必能够全部命中…休格冷静地等待机会,抽出带着剧毒的骨刀,以超越常人的动作瞬间跃起,胜负就在这一瞬间逆转了。\\n\\n他取下「荒神」的头颅与皮毛,在枪伤未愈的情况下,撑过了第一个风雪之夜。\\n\\n多日后,猎人协会找到了无头的「荒神」遗体。那时开始,他们便知道该死去的猎人未能死去,而未曾预料的复仇者却因此诞生。" + }, + "31042": { + "Name": "雪猎的巨蜥手套", + "Desc": "雪岩巨蜥的鳞爪与战术手套紧密缝合起来,可以在任何墙面上自由地攀爬悬挂。", + "Story": "雪岩巨蜥既缺乏敏捷的身手,也没有压倒性的力量。它们可以在岩壁上蛰伏半月,直到猎物放松警惕、露出破绽,出现一击致命的机会。\\n\\n然而注册猎人已经无法忍受等待,他们决心全面进入雪山猎捕休格,以消除迫近的威胁。\\n\\n协会的注册猎人虽然强手如云,但他们从来都不是性命相托的伙伴。猎人们为了协会的天价赏金而聚齐在一起,也时常为赏金而互相背叛——毕竟,荒野上任何事情都可能发生…只要除掉老猎人休格,所有人就能赚到更多的赏金,他们达成了共识,并付出了相应的代价。\\n\\n休格做足了准备,狩猎顶尖的猎户不比怪物更加容易,他必须比以往更加耐心,耐心才是猎人最重要的品质。\\n\\n猎人公会的注册猎人不断减少,「不死休格」的恐惧感正在不断蔓延。" + }, + "31043": { + "Name": "雪猎的冰龙披风", + "Desc": "由冰龙细鳞制作的披风,在奇妙光学折射下,近乎隐形。", + "Story": "「冰湖之主」栉生独特的鳞片,在日光下能反射出炫目强光,潜入水中便能隐藏身形。很少有猎人能够掌握与无形巨物之间的对决。\\n\\n多日后,猎人协会的注册猎人们找到被剥去鳞甲的冰龙遗体,那一瞬间,恐惧胜过了惊讶。\\n\\n休格狩猎过成百上千头雪原上的野兽,每一次对手都独一无二,都弥足珍贵。对猎人来说,只有将猎物的个性与习性琢磨透彻,狩猎才能算是完成…「冰湖之主」对休格来说就像是雪原上的最后一块拼图,他必须完成狩猎,完成他的猎人之魂。\\n\\n原赏金榜最高位的「冰湖之主」被「猎人休格」所替换, 丑陋的全面猎捕开始了。\\n\\n所有猎人都必须做好成为猎物的觉悟,休格如此,背叛者更应该如此。" + }, + "31044": { + "Name": "雪猎的鹿皮软靴", + "Desc": "麋鹿柔软的毛皮包裹着增强动力靴,在雪原,猎户的鞋底只会留下浅浅的印记。", + "Story": "即便身负重伤,体温不足以融化冰雪,在垂死之际的炬角大麋也能够成为最具致命性的野兽。\\n\\n休格举起猎枪正对垂死的大麋时,他总是在想,那双能将人彻底瞪住的眼睛,和自己一模一样。\\n\\n自从被注册猎人埋伏之后,休格的生命之火就早已经是风中残烛。他清楚自己之所以能够勉强生存,无非是他那鬼神不让的复仇念头,一旦他的欲念得到满足,他的生命也将随飞雪而去…尽管休格总是觉得脚步沉重,但是宽底的鹿皮软靴却没有留下任何足迹,他必须紧绷起精神面对生命中最后一次狩猎。\\n\\n猎人协会在恐惧之中逐渐分崩离析,慌乱地肃清起背叛者,希望得到休格的饶恕,换来的却只是相互猜忌的自我毁灭。\\n\\n休格没等到品尝完复仇成功的快感,便永远地倒在了雪原之上。" + } + }, + "RequireNum": { + "2": { + "Desc": "冰属性伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "当装备者施放终结技时,暴击伤害提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "105": { + "Name": "街头出身的拳王", + "Icon": "SpriteOutput/ItemIcon/71004.png", + "Parts": { + "31051": { + "Name": "拳王的冠军护头", + "Desc": "防护效果极佳的拳击护头,与物件主人的脸型完美贴合。", + "Story": "混迹街头的林赛从未考虑过正经拳赛的邀约,打一开始她就不相信有人能击败自己,更不必说是个半百老人。\\n\\n自称拳击教练的老人为林赛准备好护具,并向林赛发出挑战,如若胜利便要林赛成为她的徒弟。\\n\\n林赛不屑于繁复的穿戴,将老人递来的护具弃置一旁。原以为自己能够凭借反应速度轻松取胜,却没想到被三步之内被老人近身,快拳直取面门。在短暂的昏厥之后,林赛将拳击护头捡起,在狭小的视野中,她看到了一个崭新的世界。\\n\\n「这就是拳击手的拳头吗?有意思,你要是打算教我的话,就得让我成为最强的。」\\n\\n尽管嘴上颇有抱怨,林赛还是愿赌服输。她佩戴起护具,正式跨入拳击的世界。" + }, + "31052": { + "Name": "拳王的重炮拳套", + "Desc": "保养得极好的拳击手套,细微的破损并不影响实际的使用。", + "Story": "初入拳场时的林赛拳法犀利,只懂得进攻,却不懂得如何防御。\\n\\n街头的经验并不完全能够在围绳擂台上适用,伊卡翠娜安排的拳赛挫去了野小子的高傲。\\n\\n在地方赛事中受挫之后,她原本高高在上的尊严和自信散落一地,不得不开始思考伊卡翠娜教给她的攻防节奏。原本只懂得挥拳的林赛仿佛被格斗女神亲吻,逐渐理解了攻防转换的趣味。当她回过神来,第一次发现凝胶护指已经断裂,而那双拳套也已浸满了血液与汗水。\\n\\n「你要找到自己的节奏,不要掉进对手的陷阱里。」\\n\\n林赛恍惚间理解了伊卡的箴言,也明白了温情似水的眼神,一向严厉的伊卡早已将她视若己出。" + }, + "31053": { + "Name": "拳王的贴身护胸", + "Desc": "拳击手的专业护胸,外罩和内衬垫相互组合,既保障了安全又不影响技术发挥。", + "Story": "拳王争夺战前夜的训练馆如同往日,快速而又沉重的拳头将沙袋击打得嘶嘶作响。\\n\\n汗水浸透了贴身的护胸,灼热的蒸汽将林赛和现实隔离开来,她想要逃避。\\n\\n林赛竭力控制着情绪,汗水混杂泪水在她的面孔上反射微光。深夜里,她卸下拳击护胸,在内侧写上「伊卡」的名字,她想为这个名字许下胜利的承诺。这是通向拳王的关键比赛,也是林赛第一场没有教练陪伴的比赛。走上擂台前,林赛对着镜头骄傲地挺起胸膛。\\n\\n「林赛…你和我的女儿竟然有着一样的名字。当她离开时,我以为世界已经崩塌了,直到我遇见了你。谢谢你,林赛。」\\n\\n「保护我,伊卡。」最重要的名字正贴着心脏。" + }, + "31054": { + "Name": "拳王的弧步战靴", + "Desc": "巧妙地将皮革和网结合,采用了厚鞋垫、薄鞋底的设计,保证了脚步灵活。", + "Story": "身材娇小的林赛以快速灵动的出拳风格而闻名,翩跹的步法轻快得如蝴蝶穿花。\\n\\n尽管对手的快拳凌厉如雨,却始终只能与林赛擦肩而过,这便是招牌的「林赛舞步」。\\n\\n为了训练林赛的特殊步伐,伊卡翠娜将街头少女带到上流的舞会里,手牵着手,旋转接着旋转……林赛从磕磕绊绊到逐渐跟上脚步,她好像明白了,这个自称是拳击教练的老人,似乎不仅是教练这样简单。在迷离的舞池里,林赛心中某处柔软的地方突然被一道奇妙的感觉击中。\\n\\n「想再跳一支舞吗?」\\n\\n街头出身的林赛从未想过会有这样的体验,她望着伊卡翠娜澄澈的双眼,无法拒绝。" + } + }, + "RequireNum": { + "2": { + "Desc": "物理属性伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "当装备者施放攻击或受到攻击后,其在本场战斗中攻击力提高#1[i]%,最多叠加#2[i]层。", + "ParamList": [ + 0.05000000004656613, + 5 + ] + } + } + }, + "106": { + "Name": "戍卫风雪的铁卫", + "Icon": "SpriteOutput/ItemIcon/71005.png", + "Parts": { + "31061": { + "Name": "铁卫的铸铁面盔", + "Desc": "经过统一改造过的覆面头盔,通过内部的填充物使头部保持温暖。", + "Story": "在寒潮之中严阵以待绝非易事,但雅利洛-Ⅵ的银鬃铁卫们早已习惯如此。凛冽的寒风从面甲的缝隙里穿过,就像是寒铁小刀轻轻划过。\\n\\n自天外而来的怪物再次整顿军势,全副武装的士兵在大守护者的命令下严阵以待。\\n\\n负责前哨的士兵们常常需要在雪地中蛰伏数日,侦察怪物们的行动。长时间的霜寒将士兵的肌肤、汗水以及填充面甲的棉绒一同冻住,往往需要热水浇灌才能将头盔安全取下。筑城者的工匠们将铸铁面盔的片状金属板弧度偏折,尽可能减少重盔在风雪中承受的阻力。\\n\\n坚硬、温暖、威风凛凛,铁卫面盔的制式就这样一直传承了下来。\\n\\n「你们戴着这么个面罩,到底是怎么看得清路的?」每个执勤的铁卫都曾被询问过同一个问题。" + }, + "31062": { + "Name": "铁卫的银鳞手甲", + "Desc": "闪耀着银光的金属手甲,复合的机械结构深藏其中。", + "Story": "身携毁灭印记的入侵者阻断了近卫队的去路,拉斯洛•朗道命令队员保护守护者撤离,自己则独自留下断后。\\n\\n即便是银鬃铁卫中最骁勇善战的戍卫官,也没有办法在怪物洪流中全身而退。\\n\\n凶狠野蛮的怪异生物叫嚣不歇,猛烈的攻势如同疾风骤雨,尽管孽物们从未停止过冲锋,但未能突破朗道孤身固守的防线。激烈的攻防漫长持久,拉斯洛疲于招架,直到援军出现,他才体力不支地昏厥过去。士兵们发现,拉斯洛在惨烈的战斗中失去了双手。\\n\\n筑城者最好的工匠铸造了精致的手甲赠予英雄,让他终能重执军旗。\\n\\n「美中不足啊,」拉斯洛看着精致的手甲,喃喃说道,「这双手再也感受不到琴弓的震颤了。」" + }, + "31063": { + "Name": "铁卫的旧制军服", + "Desc": "熨烫妥帖的银鬃铁卫旧制军服,结实的排扣将布料压出褶痕。", + "Story": "歌德家祖传的旧款军服长期被压在箱底,只有属于军人的荣誉才能将之唤回世间。\\n\\n面对毁灭士卒的蛮荒推进,银鬃铁卫誓守天险,早已经没有退路。\\n\\n维瓦洛保卫战中,霍尔斯•歌德率领敢死队苦守隘口长达数月,直到增援的号角回荡山谷,众人才知道英雄们早已尸骨无存。大守护者阿丽萨在嘉奖仪式上亲手为英勇的霍尔斯•歌德后人别上荣誉勋章,小歌德身穿旧制军服,代表逝去的英雄们,挺起了胸膛。\\n\\n小歌德看到的是军服和勋章,而大守护者看到的却是英雄们留下的遗产——贝洛伯格的未来。\\n\\n「霍尔斯•歌德是真正的战士,你应以歌德之姓为豪。」这句话是年轻的歌德对大守护者仅有的记忆。" + }, + "31064": { + "Name": "铁卫的白银护胫", + "Desc": "坚硬的白银色金属护胫,注重防护的同时,足够轻巧又保暖。", + "Story": "银鬃铁卫野战部队常因战术需要,不得不在齐腰深的积雪中日行千里。长途奔袭的疲惫、严重的冻伤考验着战士们的双足。\\n\\n漫漫的雪地远征,偶尔会遇到一些久违的老友。\\n\\n负责雪原游击的银鬃铁卫时常在营地里听见冰原狼的长嚎,这种可怜的生物也在入侵者的铁蹄下流离失所。野战中队的耶格尔士官本是猎户出身,将狼鬃做成皮草制品是他的看家本领。而在漫无止境的寒潮来临之后,他极少再见到这些凶猛野兽。寒夜里,少数冰原狼放下戒备心,凑近铁卫的营火,伏卧在耶格尔身旁一言不发。黎明时分,这些野兽在温暖的梦境中永久睡去。\\n\\n耶格尔士官将处理过的狼鬃填进士兵的白银护胫里,让他们的远行稍微好受一些。\\n\\n「冰原狼还没有彻底失去家园,我们也一样。」耶格尔士官如此表达对冰原狼的怜惜。" + } + }, + "RequireNum": { + "2": { + "Desc": "受到伤害降低#1[i]%。", + "ParamList": [ + 0.0800000000745058 + ] + }, + "4": { + "Desc": "回合开始时,如果装备者当前生命值百分比小于等于#1[i]%,则回复等同于自身生命上限#2[i]%的生命值,并恢复#3[i]点能量。", + "ParamList": [ + 0.5000000004656613, + 0.0800000000745058, + 5 + ] + } + } + }, + "107": { + "Name": "熔岩锻铸的火匠", + "Icon": "SpriteOutput/ItemIcon/71006.png", + "Parts": { + "31071": { + "Name": "火匠的黑曜目镜", + "Desc": "以漆黑焰晶打造的防护目镜,在镜片之下,激烈的火星迸裂也只不过是斑驳残影。", + "Story": "铸造神兵利刃对于火匠一族来说,既是天赋的使命又是伴生的诅咒。\\n\\n被解放的火匠一族自从来到战争熔炉的世界中,才华在极致的释放下开始染上毁灭的气息。\\n\\n炉光与火花耀目灼眼,在漫长的锻造过程中,胚料铸成神器,而匠人失去视力。弗埃曾在火山底部找到一簇罕见的曜石焰晶,将其仔细打磨做成了护目镜片,激烈的火花从此化作苍白的剪影。但是贪心的匠人未能逃避诅咒的命运,他也在极致的火光中燃尽了一切。\\n\\n弗埃将战争熔炉中的反物质军团视作锤炼的素材,而自己便是那升腾的烈火。\\n\\n「有没有一种可能,比如说,将热核反应变成我的熔炉?」弗埃寻找提升至极限的炉火,并在失控的聚变反应中毁灭。" + }, + "31072": { + "Name": "火匠的御火戒指", + "Desc": "有着火焰标志的戒指,是火匠一族中最高荣誉的象征。", + "Story": "九百度的篝火能烧土成陶,上千度的炉火能熔断铜锡…越是本质的塑造,越渴求着极限的温度。\\n\\n军团的生物渴望着从物质形态中剥离开来,祈求着只有毁灭热浪才能带来的更新质变。\\n\\n技艺纯熟的火匠大师能够将炉火提升到不可思议的程度:烈焰的黑体辐射呈现蓝色光谱,几与濒死的恒星相近。火匠皆是掌控烈焰的天才,但只有其中佼佼者才被授予象征大师技艺的御火戒指。\\n\\n战争熔炉早已不分匠人与匠材,锤炼着反物质生灵的火匠大师们也成为了毁灭武器的一部分。\\n\\n「铸器由炉温决定,炉温由火匠决定。」对掌握毁灭技艺的火匠们来说,这再理所当然不过了。" + }, + "31073": { + "Name": "火匠的阻燃围裙", + "Desc": "铁匠围裙没有多余的装饰,只有皮革纹理与家族标识清晰可见。", + "Story": "反物质军团将衰亡的「战争熔炉」赠予火匠,让他们在烈焰世界中自由锻造。\\n\\n在熔岩灼目的世界里,只要锤炼不止,新生与毁灭便不再是二元对立。\\n\\n苏鲁特擅长利用活火山中喷涌的熔浆,为军团的生灵注入一道暴戾的毁灭气息。无论剧毒气体的沸动、还是热熔岩浆的翻滚,都不能打断苏鲁特淬火的专注。热浪喷溅着苏鲁特的围裙,那是由火巨蜥皮制成的阻燃衣料,待熔浆退去,皮革表面依然光洁如新。\\n\\n大量的军团战力,在洪炉中被反复锤炼,直到肉体和武器在火匠的熔锤下结为一体,成为毁灭的武器。\\n\\n「无与伦比的毁灭之力……」驾驭火焰的工匠们从不掩饰他们寄托在武器中的可怖愿望。" + }, + "31074": { + "Name": "火匠的合金义肢", + "Desc": "金属材质的义肢,表面上缠绕着火焰的立体花纹。", + "Story": "旧日监牢主人担忧失去世间无二的锻造技术,只好用低劣的手段束缚着火匠一族——在被禁锢的岁月里,火匠的族长无一例外都必有腿部缺陷。\\n\\n毁灭的主人解放了被囚禁的火匠一族,毁灭印记赋予了火匠们用之不竭的力量。\\n\\n离开牢笼之后,火匠族长无法再像常人一般行动自如,但他获得了真正的自由——不再因卓越的技艺而被囚禁的自由。族长将怨恨与屈辱倾注其中,锤击数日也不会感到疲惫。顽固而高傲的反物质生灵在一次次锤击下,不得不改变形态,屈从于毁灭者的改造。\\n\\n纵使牢狱不再有形,火匠对铸造的痴狂又何尝不是一种牢笼呢。\\n\\n「血肉是种拖累,铸造亦是毁灭。」族长看着残缺的匠人越来越多,不禁感慨道。" + } + }, + "RequireNum": { + "2": { + "Desc": "火属性伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "使装备者战技造成的伤害提高#1[i]%,并使施放终结技后的下一次攻击造成的火属性伤害提高#2[i]%。", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + } + } + }, + "108": { + "Name": "繁星璀璨的天才", + "Icon": "SpriteOutput/ItemIcon/71007.png", + "Parts": { + "31081": { + "Name": "天才的超距遥感", + "Desc": "基于超距遥感技术制造出的通讯目镜,打破了传播介质与距离的束缚。", + "Story": "天才俱乐部的成员大多都是怪人,怪人之间缺少交流是公认的事实。\\n\\n对旅居不同世界的天才们来说,社交确是一种多余的负担。对凡人来说,又何尝不是呢?\\n\\n但#56会员,俱乐部第二任会长以利亚萨拉斯曾尝试解决这一问题。他热心地为当时的会员们准备了搭载超距遥感功能的通讯目镜。遗憾的是,即便跨越远星的桥梁已经搭好,愿意过桥之人仍然寥寥无几——银河史上最好的通讯装置问世以来,从未进行过真正的有效对话。\\n\\n「『您所胡椒的用户不在糊物区』,假装人工智能拒绝我的时候也认真一点吧……」\\n\\n叹息的以利亚萨拉斯知道这确实是强人所难,他总得试试,反正这技术总能派上用处。" + }, + "31082": { + "Name": "天才的频变捕手", + "Desc": "装有精密的频变捕捉器的手套,能够对客观的声光振动进行直观地操作。", + "Story": "由于寄居在养父的水果店中打零工,如何偷懒,以及如何偷懒不被发现便成为#84会员斯蒂芬•劳艾德的小课题。\\n\\n他制作了能捕捉特定频段的手套,抓取声光逃逸,让自己可以尽情躲在频段栅栏后研究弦乐。\\n\\n能够留住特定区域内声音和光线而不流动,是能够改变科学轨迹的重大发现,至少在现有的利尔他经典科学体系中实在很难解释…不过他无心对当今的科学界造成任何冲击,本人并没有将这项技术投入公共领域的考虑,毕竟这只是为了偷懒随手制造的玩具而已。\\n\\n「斯蒂芬,虽然不知道你具体做了什么,但你肯定在偷懒对吧?」\\n\\n尽管斯蒂芬•劳艾德被称为「天才中的天才」,但对养父来说,这就只是个喜欢幻想和偷懒的孩子。" + }, + "31083": { + "Name": "天才的元域深潜", + "Desc": "启动后形似包裹全身的潜水服,将全身的神经信号实时传输至元域空间。", + "Story": "#29会员丝丝喀尔建立的元域空间超越了生物种族与多元维度,任何生物只需借助深潜装置,便能将神经信号同步到意识网络中。\\n\\n那些无法跨越世界的生物也能借由一个共通的梦境相连,寻找现实中不存在的平静与安详。\\n\\n宇宙生灵在虚拟数据编织成的元域空间里创造了数不尽的文化资产,新生的秩序正在悄然建立。正当有人预言新兴的乐土将取代现实时,「创世织网者」丝丝喀尔却如同玩笑一般将意识网络的连接彻底切断,整个元域空间如同冬日寂静。\\n\\n「整天讨论元域空间的投资人都已经疯了,产业赋能了无数次,元域却没了。」\\n\\n人们总在失去之后止不住地猜想:元域原本是灵魂的培养皿,邀请不同的生物进入其中只是为了得到免费的灵魂样本罢了。" + }, + "31084": { + "Name": "天才的引力漫步", + "Desc": "穿戴式引力捕获装置,形似冰鞋,能在快速滑行时倒映出群星的光芒。", + "Story": "俱乐部#64会员:恶名昭彰的「原始博士」因其所犯下的大罪,一生都在躲避无穷尽的星际追捕。\\n\\n「原始博士」似乎乐在其中,有意把握了与游侠的距离,不至于被抓住,也不会消踪匿迹。\\n\\n他将某种引力捕获的技术应用在逃亡过程中,能够在仅仅运用引力的情况下,自由漫步于太空之中。博识学会的天体物理学家未能参透其中的原理,只能假想行星间的引力差发挥了核心作用。追猎者们的驾驶着重力时代的代步工具,勉为其难地紧随其后,立志将大罪之人捉拿归案。\\n\\n「太空漫步是件浪漫的事,」巡海游侠说,「可惜那个人是原始博士。」\\n\\n直至「原始博士」彻底失踪之后,巡海游侠并不相信「推定的死亡」,仍然不停追捕。" + } + }, + "RequireNum": { + "2": { + "Desc": "量子属性伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "当装备者对敌方目标造成伤害时,无视其#1[i]%的防御力。若目标拥有量子属性弱点,额外无视其#2[i]%的防御力。", + "ParamList": [ + 0.10000000009313226, + 0.10000000009313226 + ] + } + } + }, + "109": { + "Name": "激奏雷电的乐队", + "Icon": "SpriteOutput/ItemIcon/71008.png", + "Parts": { + "31091": { + "Name": "乐队的偏光墨镜", + "Desc": "主唱之一的詹尼斯所戴的经典款墨镜,镀铬镜片反射着蓝色的光芒。", + "Story": "恒星的寿命加剧消逝。在红巨星彻底爆发之前,爱墨瑞得-Ⅲ的住民逃离了母星。\\n\\n面对无处可逃的未来,精英们带走了希望,佯装没有听见绝望的恸哭。\\n\\n詹尼斯的父母支付了巨额信用点登上飞船,被动地期待星间的救赎。行星将在红巨星爆发中毁灭,而恒星则坍缩变成白矮星…在可以预见的终末降临前,逃离是唯一的答案。但混沌医师詹尼斯却打算直面星系的湮灭,她竭尽全力,试图证明存在的痕迹不会化为虚无。\\n\\n濒死的太阳愈发灼眼,詹尼斯拿走母亲的墨镜,和志同道合的年轻人回到母星。\\n\\n「懦夫只会向外逃去,口中却嚷着救赎之名。」《廉价救赎》,激雷乐队第一张专辑里的单曲,詹尼斯将与父母吵架时说的气话改成了歌词。" + }, + "31092": { + "Name": "乐队的巡演手绳", + "Desc": "贝斯手席德的手绳,由巡演时的丝带手环编织而成,上面写着几句歌词。", + "Story": "爱墨瑞得-Ⅲ的激雷乐队凭借着几支强劲的先行曲,迅速点燃了整个星球的激情。\\n\\n节奏吉他手戴夫激烈扫弦时迸发出的雷电火花,是巡演开场的标志,却被乐迷们视为余生唯一的光。\\n\\n乐队的巡演皆由乐迷们自发维持秩序,他们在进场时派发丝质手环用以识别身份。这些乐迷们大多支付不起高昂的逃生费用,无奈接受了等待电磁爆发的命运。但自从目睹叛逆的年轻人重返行星,便感到自己的灵魂也在这一刻点燃。他们在手环上记录了歌词,记录了每一场演出的时间,也记录了自己的无声呐喊。\\n\\n贝斯手席德收集了每一场巡演的手环,他让女友南希编成了手绳,并一直戴着。\\n\\n「没有意义没有方向,没有别的地方可去,我们没有未来。」《我们的路》,激雷乐队第二张专辑里的单曲,席德的人生信条。" + }, + "31093": { + "Name": "乐队的钉刺皮衣", + "Desc": "主唱之一的大卫在皮衣背面画上了白色的星星,它成为了乐队最后一张专辑的封面。", + "Story": "激雷乐队的摇滚响彻星系,不甘逃亡的年轻人们纷纷返航,回到了即将毁灭的爱墨瑞得-Ⅲ。\\n\\n主音吉他手吉米将乐队带到了地下,他们将在这里歌唱,他们将把行星毁灭的悲鸣传遍整个宇宙。\\n\\n在演出开始之前,大卫给钉刺皮衣的背面喷涂上白色的星星,那是恒星坍缩之后的白矮星,是恒星存在过的证明。无论是离开了星系的人,还是留下来面对毁灭的人,都一同聆听着激雷般的摇滚,共同挥舞着同一个醒目的符号。\\n\\n乐队虽已消亡,但他们的存在却被刻进了乐曲之中,成为了永恒。\\n\\n「我们要用生命燃烧下去,点燃孤独的白矮星。」《白星》,激雷乐队最后一张专辑的同名曲,词曲由大卫一手包办。" + }, + "31094": { + "Name": "乐队的铆钉短靴", + "Desc": "鼓手博纳姆的短靴,折射着舞台灯光的漆面上粘着铆钉尖刺。", + "Story": "激雷乐队改变了人们面对终末的态度,改变不了终末到来的结局。\\n\\n荒凉的行星地表满是荒颓和惆怅,在物资匮乏的时代,乐队用废弃的X光片灌录了所有专辑。\\n\\n在爱墨瑞得-Ⅲ的长夜来临时,地表温度骤降,原本难耐的空气凉爽了不少。人们纷纷从地下避难所走出,追寻着乐队演出的地点。在最后一场「雷鸣」巡演的现场,焦躁的空气中满是电磁风暴的预兆,天雷通过金属脚手架传导到舞台之上。电光在博纳姆的靴下跃动,乐队与雷电彻底融为一体。安可曲结束之后,巨大的球形闪电吞没了舞台。\\n\\n谢幕之夜过去,激雷乐队的演出就此变成了绝唱,一如他们的歌词。\\n\\n「雷鸣覆盖了我们的声浪,闪电在我们血液里流淌。带着我们的音乐,和恒星一同消亡。」《激雷之歌》,激雷乐队最后一张专辑里的单曲,博纳姆的得意之作。" + } + }, + "RequireNum": { + "2": { + "Desc": "雷属性伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "当装备者施放战技时,使装备者的攻击力提高#1[i]%,持续#2[i]回合。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + } + }, + "110": { + "Name": "晨昏交界的翔鹰", + "Icon": "SpriteOutput/ItemIcon/71009.png", + "Parts": { + "31101": { + "Name": "翔鹰的长喙头盔", + "Desc": "高速飞行中使用的流体头盔,形似空渔鹰的鸟喙。", + "Story": "萨尔索图的空渔人每日黎明时从移动城市的「空港」出发,展开扑翼装在空中翱翔,猎捕从沙地中飞出的燃素水母。\\n\\n构成「灵火」的燃素是驱动着巨大移动城市的血液,必须捕捞充足,才能保证整座城市不会被晨昏线甩在身后。\\n\\n若有人力竭而亡,抑或是遭到巨禽的袭击罹难,萨尔索图人会尽一切可能带回其遗骸,将翼装和鹰盔伴他一同葬入黑暗的大地。在萨尔索图的传统仪式中,「落地」即为死亡,即为永恒的休憩。\\n\\n飞行不能停下,城市亦不能停下。\\n\\n这顶鹰盔的鸟喙部分刻着一句悼词。「大地并非鹰的枷锁,翅膀才是。因为它,你必须飞翔。」" + }, + "31102": { + "Name": "翔鹰的鹰击指环", + "Desc": "卓越空渔人大师所佩戴的指环,空渔鹰双翅纹样紧抱手指。", + "Story": "只有技术最为卓越、最值得尊敬和依赖的渔猎队长会被授予「鹰击指环」。他们在空中吹动渔哨,组织起严丝合缝的协同,是最为敏锐的猎鹰。\\n\\n对队员们来说,每一次翱翔总是孤独而脆弱的,能依靠的只有队长传来的124种「哨型」。\\n\\n因此,在萨尔索图流传着一句话:「空渔人将三分之一的性命交付给千锤百炼的技术,将三分之一的性命交给巧夺天工的装备。而最后的三分之一交给他们信赖的渔猎队长。」\\n\\n肩负着不同家庭托付的队长,时刻感受到小小指环所承载的重量。\\n\\n这枚鹰击指环的蚀刻已经斑驳了,指环内侧刻着一个词语:「责任」。" + }, + "31103": { + "Name": "翔鹰的翼装束带", + "Desc": "连接扑翼装的腰带,金属支撑藏在粗麻束带中,柔软贴身。", + "Story": "萨尔索图的空渔人围捕从沙地中飞出的燃素水母并非易事。面对的凌乱气流,乍看柔软贴身的束带,在强风吹拂的城外空域里成为了空渔人的生命纽带。\\n\\n围捕从沙地中飞出的燃素水母绝不容易,佯动、驱赶、以及拦截捕获,在每一个环节上都伴随着陨落的风险。\\n\\n未成年的空渔人需要取父母各自的一根发丝同金属支撑一同包裹在束带中,已婚的则由配偶提供,这样的翼装束带就会受到名为「家」的祝福,保护空渔人始终能回到家中。\\n\\n在残酷的生存世界里,只有「家」能将空渔人轻轻托起。\\n\\n这条束带中的发丝仍然完整,它来自一名女性,发根处微微发白。" + }, + "31104": { + "Name": "翔鹰的绒羽绑带", + "Desc": "飞行中确保腿部保暖的绑带,装饰着空渔鹰的翎羽。", + "Story": "萨尔索图的空渔人渔猎燃素水母的过程,是一场漫长的生存竞逐。远离心脏的双腿,必须借助绒羽绑带保持温度。\\n\\n总是在长时间高度紧张的狩猎结束后,极限的身体才开始暴露出痛感和疲惫。\\n\\n未做好周全准备的空渔人,此时才会感受到严重冻伤导致的局部坏死。因此,空渔人在出发之前,都会反复确认绑带的牢固程度,毕竟在高速的飞行中,是不会有机会二次调整的。\\n\\n他们踏入天空的那一刻就已经明白,疾风会带走什么。\\n\\n这条绑带内置的金属壳中有少量的石灰粉和铝粉的使用痕迹,像是用来应急加热的手段。" + } + }, + "RequireNum": { + "2": { + "Desc": "风属性伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "当装备者施放终结技后,使其行动提前#1[i]%。", + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "111": { + "Name": "流星追迹的怪盗", + "Icon": "SpriteOutput/ItemIcon/71010.png", + "Parts": { + "31111": { + "Name": "怪盗的千人假面", + "Desc": "用以改变面貌的面具,结合精湛的演技便能以假乱真。", + "Story": "流星怪盗卢布朗视行窃之事如参加假面舞会,隐藏身份是礼仪的一部分。\\n\\n「为什么面具还能改变身高和声音?哈哈哈哈,这是在下的专利技术,保密。」\\n\\n怪盗借用假面化身普通员工,潜入公司的安保会议之中,并对「怪盗防范措施」献计献策。直到偷盗结束后半个月后,安保部门才回想起自己从没见过这位「同事」。\\n\\n盗贼过着双重生活,总是需要一些掩人耳目的手段,这是怪盗界的传统。\\n\\n「让你们的编剧想想办法,看能不能让怪盗全程戴面具。」公司影视部门的市场营销对制片人说道,「我再强调下这个面具周边的需求,价格低廉,大受欢迎。」" + }, + "31112": { + "Name": "怪盗的绘纹手套", + "Desc": "编入纳米材料的特殊手套,可即时编写手套表面纹样。", + "Story": "流星怪盗卢布朗没有不留痕迹的洁癖,他总是留下些误导的线索、恰到好处的挑衅。\\n\\n「为什么公司的人会因为假指纹上当无数次?也许,你应该问的是公司而不是我。」\\n\\n他的手套能够生成各种纹样,不仅让公司的指纹探测技术沦为笑话,还留下了一堆无伤大雅的「盗贼破绽」。安保部门在存放宝物的密室里找到了上百个印记,其中包括史前翼龙、星际瓢虫,拉布拉多…当然,没有一个属于他自己。\\n\\n仅仅是销声匿迹未免太过无趣,只会和那些担惊受怕的小毛贼们拉不开格局。\\n\\n「戏说也不能胡说,现在谁还用指纹系统?」公司安保部门抱怨道。「这些编剧到底有没有生活常识啊?」" + }, + "31113": { + "Name": "怪盗的纤钢爪钩", + "Desc": "伪装成编织腰带的钢索,腰带卡扣里隐藏着挂钩和滑轮。", + "Story": "考虑周全的怪盗总能在绝境之中安全撤离,腰间常备救命钩索。\\n\\n「腰间的钩索要怎么瞄准到想去的位置…你会解释你是如何迈出脚步吗?」\\n\\n放置宝物的密室里机关遍布险象环生,然而怪盗借助腰部的飞索抓钩闪转腾挪,如同在半空中舞出华尔兹。抓钩在三分之一秒内发射至数十米高墙上,滑轮随即回转,瞬间便将怪盗送到「狮子座之星」的面前。\\n\\n借助腰间的钢索就能飞天遁地,这便是飞贼的基本职业素养。\\n\\n「续作可以让我们的特技替身出演,还能省笔预算呢。」动作指导讥讽道。「反正带着面具,观众也看不出来谁是谁。」" + }, + "31114": { + "Name": "怪盗的流星快靴", + "Desc": "一双辅助增强人体机能的靴子,帮助怪盗在楼宇之间大步流星。", + "Story": "怪盗在城市上空快速跃动时,会刻意留下炫目的残影,这便是「流星」之名的来历。\\n\\n「要是没有高楼大厦的话该怎么逃走?哈哈哈哈,请不要再问这些缺乏趣味的问题了。」\\n\\n无数次有惊无险的逃亡过程让怪盗早已驾轻就熟。没有人能够在城市中追上怪盗的流星快靴,除非有人能够知晓怪盗的据点。让怪盗意外的是,一位鸡窝头侦探端着咖啡杯正坐在卢布朗的椅子上,早已等候多时。\\n\\n怪盗的故事已经完结,接下来该讲讲侦探的故事了。\\n\\n「很多人不相信我们敢这么写,这就是我们这么写的原因。」编剧(匿名)解释充满争议的盗贼结局。" + } + }, + "RequireNum": { + "2": { + "Desc": "击破特攻提高#1[i]%。", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "使装备者的击破特攻提高#1[i]%。当装备者击破敌方目标弱点后,恢复#2[i]点能量。", + "ParamList": [ + 0.1600000001490116, + 3 + ] + } + } + }, + "112": { + "Name": "盗匪荒漠的废土客", + "Icon": "SpriteOutput/ItemIcon/71011.png", + "Parts": { + "31121": { + "Name": "废土客的呼吸面罩", + "Desc": "能够过滤沙尘与辐射的面罩,像是由废弃呼吸器改造而来。", + "Story": "塔利亚的废土客们总是时刻备着呼吸面罩,毕竟辐射和沙尘暴是这里的家常便饭。谁都很难说这样擅自改造的呼吸面具符合了什么科学原理,不过是一点儿自我安慰而已。\\n\\n「听说了没有?山谷那边有个老东西在面罩上插着水管呢!换我我肯定受不了。」\\n\\n废土客们似乎很少抱怨塔利亚极端的恶劣天气,一来他们无力改变现状,这破地方自从核爆以来就一直沙尘漫天;二来他们极其乐观,在红沙遮天蔽日的时候,他们会戴上防尘面罩冲向其他的匪窝,裹挟着风尘滚滚,如同阎罗鬼煞打家劫舍。\\n\\n一伙有准备土匪突袭另一伙没有准备土匪,这便是塔利亚的生存法则。\\n\\n这个防尘面罩看上去穿脱不便,还有着「钉壳镇」的防伪标记。" + }, + "31122": { + "Name": "废土客的荒漠终端", + "Desc": "能检测电离辐射气体的多功能垃圾,会讲垃圾话。", + "Story": "塔利亚在成为盗贼公国之前,就以「繁星的垃圾场」之名远近闻名,不同世界的科技废品在这里找到第二次春天。\\n\\n「不要问我是不是喜欢戴着比枷锁还重的手部终端设备!关键时候,它比锤子还厉害。」\\n\\n钉壳镇建立之后,塔利亚最离谱的废土工程专家们终于找到一处安全的场所大展拳脚,他们创造了独属于塔利亚的「凭感觉科技」。铯尘计数器和会讲脏话的手部智能终端桥接在一起,就能诞生废土特有的多功能垃圾「荒漠终端」。\\n\\n所谓「凭感觉科技」的核心就在于:不要询问原理,也不要询问目的,没人在乎的。\\n\\n「竟然把我和垃圾组合在一起,你们简直是地沟里的臭老鼠。」智能终端的声音真诚而又热切。" + }, + "31123": { + "Name": "废土客的修士长袍", + "Desc": "宽松的长袍,由传教士的款式改造而来。", + "Story": "塔利亚的悍匪们大多没期待过救赎,更不知道什么是修士。他们只觉得这长袍子看上去中用,可以拿回去擦灰。\\n\\n「『无知为王的时代还没结束』?这是什么狗屁不通的句子!」\\n\\n废土客们发现了早已荒无人烟的修道院,甚至翻出了旧文明的典籍。他们近乎直觉地察觉到文明记录的珍贵价值,在一番虚情假意的感慨之后,欢快地付之一炬。废土客们带走的只有修士们剩下的长袍,除此以外的破东西在钉壳镇可是一文不值。\\n\\n废土客大多都没有文化,再多有关文明的资料都比不上一顿饱餐更有用,这也不应该指责他们。\\n\\n至少修士们的长袍留了下来,这也是一种文明存在的形式。" + }, + "31124": { + "Name": "废土客的动力腿甲", + "Desc": "动力甲的腿部,废铁和旧电线制作的外骨骼。", + "Story": "钉壳镇的匪徒们需要一些手段来捍卫他们来之不易的水源和垃圾,用来凑数的匪徒科技就此应运而生,华而不实的动力装甲只有腿部实现了运转。\\n\\n「我要的是一整套动力装甲,现在你告诉我上面的部分都炸了?!你问问你自己,这腿甲你敢用吗?」\\n\\n隔三差五爆发的钉壳镇保卫战促进了「凭感觉科技」的战时发展,来路不明的材料和一拍脑门的工艺甚至能做出动力装甲。遗憾的是,初代废铁动力装甲只剩下了腿甲的部分,大幅简化之后仍然能让人像火箭一样发射出去,具体原因工程师也不太清楚。\\n\\n按照设计师的说法解释到:这是半梦半醒之间完成的设计,是一生只有一次的灵感之作。\\n\\n管他是可回收垃圾还是有害垃圾,还能用的垃圾就是好垃圾。" + } + }, + "RequireNum": { + "2": { + "Desc": "虚数属性伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "装备者对陷入负面效果的敌方目标造成伤害时暴击率提高#1[i]%,对陷入禁锢状态的敌方目标造成伤害时暴击伤害提高#2[i]%。", + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451 + ] + } + } + }, + "113": { + "Name": "宝命长存的莳者", + "Icon": "SpriteOutput/ItemIcon/71020.png", + "Parts": { + "31131": { + "Name": "莳者的复明义眼", + "Desc": "曾属于某人的机巧义眼,如今它被逐出主人的身体,百无一用。", + "Story": "在晦暗混沌的梦境之中,她总会梦见光明复现那几日看到的事物。千顷楹树悠然摇曳,花瓣翩翩。靛蓝海浪击打着礁石,凝作逸散白玉。飞鸟展开银翼,消失在碧绿的竹林之中。\\n\\n她总在梦中徒劳地寻找着另一个人,一个本该与她共同欣赏美景的人。\\n\\n但她只能看到一个模糊的影子。她清楚地记得那人绸缎似的短发与墨玉似的眸子,但回忆却像是坠入了神经系统构建的迷宫,她总是在看清面庞前便骤然惊醒。惺忪恍惚间,她摩挲着令她百般疼痛的义眼。借助虚假的眼睛,她便不必再靠声音、气味和指尖拼凑一个模糊的影子。\\n\\n「它已是无用之物。」烬灭祸祖的令使道。她听见扇面轻摇的风,还有令使细碎的笑声。「很快,你就能看到所有你想看到的事物了——用你自己的眼睛。」\\n\\n「这便是在下自己的眼睛。」她轻笑了一声,「况且它曾目睹的美景,在下已经再也无缘得见了。」" + }, + "31132": { + "Name": "莳者的机巧木手", + "Desc": "专为长生种制造的机巧义肢,使用时无需侵入肉体。", + "Story": "在发育不全的手臂末端涂抹上保护凝胶,再将神经电讯号接收器紧紧贴合在皮肤上,最后调节松紧,将机巧木手牢牢固定在身体上——这是她几百年来每日的早课。\\n\\n木手给她带来了多余的关注。可她既不想招来祸端,也绝不愿博取同情。\\n\\n即便残缺之人如她,身怀世所罕见的才能,掌握司部决策的权力,也从未改变过他人态度中的疏离感:欺软怕硬的宵小迟早会作鸟兽散去,另一些自以为心怀慈悲的伪善之辈,却又会像苍蝇似的盘旋而来,称赞她为「了不起的盲眼独臂天缺者」。\\n\\n过去她听过几万次,每一次都令她作呕。如今她亲眼注视着摇尾乞怜的目光,更觉得糟心。\\n\\n她不自觉地将左手搭在滚烫的炉鼎上,霎时间一阵尖锐的疼痛传来——她赶忙抽回手,烫伤正在掌心急速愈合。\\n\\n「有时候觉得,还是原先的那只木手好用一些。」" + }, + "31133": { + "Name": "莳者的承露羽衣", + "Desc": "据古籍记载纺织的羽衣,它属于万古的妖人,亦或万人的救主。", + "Story": "在逸史残篇中寻找信息对盲人来说尤为艰难,伙伴将浩如烟海的古籍不加分辨地读给她听,她将其中文句编纂摘录,探幽索秘。\\n\\n天资聪颖如她,大多经籍听过一遍便能记住。但从故纸堆中找到「被羽妖妇」的志异故事,她却反复听了数遍仍不满足。\\n\\n相传某位洞天主人为了挽救伴侣,将之托体鸟雀,延续长生。可她最终禁不住鸟儿的呼唤,也幻化形体,与之比翼同飞。天长日久,洞天主人最终迷乱了本性,成了半羸半羽的异形。当她的臣民率军攻入宫城,以炽燃矛矢刺穿她时,两只鸟儿啼出最后的哀唱,同化为飞灰散去。\\n\\n她喜爱这个故事,于是取来鸟雀的精髓,在丹鼎间炼化成形,而后命人织造了一身奢丽的羽衣。她不知羽衣的华美,但喜欢穿着它在屋中踱步——那是穿给一个不再存在的人看的。\\n\\n在衣袂飘飞的瞬间,她总觉得有灵魂似鸟儿飞舞穿行在指掌肩头,不曾离去。" + }, + "31134": { + "Name": "莳者的天人丝履", + "Desc": "一双鞋底薄如蝉翼的丝履,它的主人一定长久不曾用双脚行走了。", + "Story": "每当她为了向教众展示仙迹,漂浮在半空,脱离大地掌控时,总是不自觉想起古国神话传说——\\n\\n「有修道有成者行于地上,尽汲地脉之气施展仙道,变化万端,无不应验。那修道者试图御风空行,与星辰同列,却发现自己早已远离地脉,最终失足堕入死亡的渊薮。」\\n\\n但此刻的情况有所不同,她念道,仙舟本无根,是「建木」给予它根系,使它与丰饶之主一体共存,也将它与药师所允诺的无垠净土紧密相连。而如今,叛徒们斩断了仙道连接,使仙舟重新成了飘摇的孤岛。\\n\\n仙舟上虚伪的大地不能给予她力量,她所寻找的根系并不在脚下,而在天渊之间。她将带领莳者们重生「建木」,拥抱丰饶的无上恩典。\\n\\n她穿着轻薄的丝履漂浮在千人之上,用洪亮的声音宣告道:「众人啊,当你们仰视我时,仰视的并非是我,而是高天之上本应属于你们的位置。」" + } + }, + "RequireNum": { + "2": { + "Desc": "生命上限提高#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "当装备者受到攻击或被我方目标消耗生命值后,暴击率提高#1[i]%,持续#2[i]回合,该效果最多叠加#3[i]层。", + "ParamList": [ + 0.0800000000745058, + 2, + 2 + ] + } + } + }, + "114": { + "Name": "骇域漫游的信使", + "Icon": "SpriteOutput/ItemIcon/71021.png", + "Parts": { + "31141": { + "Name": "信使的全息目镜", + "Desc": "外形酷似滑雪目镜,不仅能防眩光,还能看虚拟人直播。", + "Story": "热夜之都的信使们为了躲避财阀的私警部队,通常在警备较少的城市上空进行移动。\\n\\n他们喜欢嚼着便宜的口香糖、佩戴着高度改造的全息目镜,开启脉冲扫视整座赛博城市。\\n\\n目镜会将城市的实时信息投影在视网膜上,使不可能的路线变成信使的空中走廊:建筑天台,空调外箱、广告板,起重机的吊臂…甚至物流无人机都可以成为走廊中的一环。因此信使们必须掌握足够的技巧,否则偏差一步便是意外的坠亡。\\n\\n「有个混蛋把目镜无差别地黑掉了,而我当时正巧在空中,落地的那一瞬间真是糟透了。」\\n\\n这款「小黄鸭」目镜是绝版的旧款式,据说在爱好者中价值不菲。" + }, + "31142": { + "Name": "信使的百变义手", + "Desc": "可随便拆卸的机械义手,能够将指节像子弹一样发射出去。", + "Story": "并非所有的信使都拥有机械义手,但拥有义手的信使总会热衷于义手改造。毕竟,没有人能接受自己的赛博义肢长得和别人一模一样。\\n\\n热夜之都的居民们痴迷于赛博义体,有限的城市法规只能规劝过度义体化带来的狂热。\\n\\n热夜之都登记备案的改造标准只有三大类计十八种,对于离经叛道的信使们来说这显然不够。他们将巨额的薪资投入在突发奇想的设计上:让义手上的电子转机能放出落雷,让义手能像导弹一样发射…改造的蓝图越来越夸张,而信使的邮费更是水涨船高。\\n\\n「这些信使到底是为了保护信息在奔跑,还是在为了天价邮费在奔跑呢?」\\n\\n这只「小黄鸭」义手经过特殊改造,每一个手指指节都能高速旋转,并像子弹一样发射出去。" + }, + "31143": { + "Name": "信使的密信挎包", + "Desc": "时尚的信使邮差包,添加了各种挂件,看上去有些可爱。", + "Story": "热夜之都的财阀们监管着城市中所有的信息流动,他们习惯性运用信息垄断的方式维持着财阀的统治地位,任何妄图颠覆之人,都会受到治安法的规范。\\n\\n人们曾经抗议过,于是财阀们许诺了便捷的承诺。很快,人们便放弃了「私密」。\\n\\n无论是在现实还是虚拟的场合,无论是有用还是无用的信息,事无巨细,财阀们都会贪婪地搜集起来。如此一来,信使们的邮差包便成为了「私密」的最终防线。邮差包轻便小巧,仅能用来携带芯片或是文件。然而,正是这样一个又一个狭窄的信息盲区,保障了热夜之都仅剩的「信息独立」。\\n\\n「为什么在繁华的热夜之都,还有人会用网络之外的渠道传输信息呢?信使们也想知道。」\\n\\n这个限量的「小黄鸭」邮差包虽有一些陈旧,但是各种配件让它看上去还很时尚。" + }, + "31144": { + "Name": "信使的酷跑板鞋", + "Desc": "支持自由跑酷的滑板鞋,穿上去很舒服,仅此而已。", + "Story": "热夜之都曾经的信使们将板鞋扔于一处,短暂沉默之后便各自离开。大多数的信使们不会在这座城市里留下名字,也不会留下痕迹,这种行为不过是一个自我感动的休止音符。\\n\\n信使们也很难说清从哪一天开始「信使的性质」变了,信使变成了自己最讨厌的人。\\n\\n不知不觉间,信使保障的「信息独立」变成了垄断;不知不觉间,信使面对的风险变成了价码;不知不觉间,信使成了阴谋家的帮凶…财阀们未能摧毁他们,是不成熟的理想背叛了信使。在一切彻底失控之前,信使们聚集在一起,告别了奔走的生涯。\\n\\n「也许,信使就应该止步于此,让所有人看清这座城市,让真正的改革者们行动起来。」\\n\\n这是双弃置于路边的「小黄鸭」板鞋,热夜之都的信使们已经成为了过去的传说。" + } + }, + "RequireNum": { + "2": { + "Desc": "速度提高#1[i]%。", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "当装备者对我方目标施放终结技时,我方全体速度提高#1[i]%,持续#2[i]回合,该效果无法叠加。", + "ParamList": [ + 0.12000000011175871, + 1 + ] + } + } + }, + "115": { + "Name": "毁烬焚骨的大公", + "Icon": "SpriteOutput/ItemIcon/71024.png", + "Parts": { + "31151": { + "Name": "大公的冥焰冠冕", + "Desc": "不停燃烧的火焰冠冕,熊熊野心是它的不尽燃料。", + "Story": "优雅的火魔于万火之火中诞生,并笃信毁灭是赐予陀斐特的至上冠冕。\\n\\n「我,于毁灭之际诞生,是陀斐特的罪恶信仰。我,即是纳努克的怒火。」\\n\\n纳努克亲手覆灭陀斐特,白星烈焰与毁灭之力共同孕育了等离子体生命。优雅的火魔将诞生视为蒙受天启——「毁灭君主今日征服陀斐特,祂以炽焰授勋,轻浮与空虚的荣誉随日珥逸散,沉重与厚实的荣誉将为我加冕。」阿弗利特自诞生起,便痴迷于破坏与杀戮。\\n\\n「世间荣誉的桂冠,皆是荆棘编织而成;胜过荆棘的桂冠,只有我无上的冥焰冠冕。」\\n\\n毁灭星神灭星的余烬,被阿弗利特亲手捧起,捏制成陀斐特王冠的模样,佩戴至今。" + }, + "31152": { + "Name": "大公的绒火指套", + "Desc": "以火焰为绒毛的洁白手套,将暴戾藏于缎面之下。", + "Story": "阿弗利特策动无数次生灵湮灭的危机,大公自诩为指挥家,只有带好手套才能握住有刺的短棍。\\n\\n「我奉毁灭天启而来,一手用来夺走,一手用来给予。」\\n\\n笃信「物之珍稀,在其绝迹」,冥火大公将里沙利特星的历史文化付之一炬,焚毁贵族光华灿烂的丝绸,烧光诗人侈丽闳衍的长卷,燃尽绘师妙手丹青的壁画…「文明如同若虫,只有在焚毁烧尽的处刑中化为黑蝴蝶随风飘荡而去,才能获得新生。」阿弗利特如同低头监视的焚化炉的送葬者,引导着文明的绝唱。\\n\\n「通过我的努力、想象和指挥,使不同的灾难之间的配合、演奏次序、音调以及速度…融合为一幕精彩的毁灭表演。」\\n\\n阿弗利特在意满的毁灭结束后,擦去手上血污,戴上洁白手套,如同殷实富足的访客参加宴会。" + }, + "31153": { + "Name": "大公的蒙恩长袍", + "Desc": "一袭华美的袍,彰显长袍主人的端庄风雅。", + "Story": "优雅的火魔在惨无人道的屠杀之后,欣赏着穿衣镜中的身姿,觐见君主总是需要适宜的华服。\\n\\n「服装的目的不在于修饰仪表,而是展现本质;如同烈焰的本质,便是在于毁灭。」\\n\\n恒远燃烧的火魔一族视纳努克为皇帝,称其为恩主,却从未得到星神瞥视。阿弗利特的毁灭掺杂了炫耀与权利、征服与动机,「永火官邸」与「耶佩拉兄弟会」的争夺更是肮脏不堪。「不纯的毁灭比污垢更容易弄脏最华丽的衣饰。」关于纯粹,阿弗利特始终不得其要领。\\n\\n「毁灭之价值,在于被毁灭之物的价值;吾等之价值,便是践行毁灭直到君主瞩目。」\\n\\n阿弗利特心怀虔诚,穿戴锦缎华服,以缁绛色的火焰织就,等待着毁灭传召。" + }, + "31154": { + "Name": "大公的绅雅礼靴", + "Desc": "经典而舒适的靴子,保养完好,造型挺括,修饰脚型。", + "Story": "优雅的火魔足迹逶迤之处,被焚毁的文明总是无声哭诉。阿弗利特从来不曾理会——\\n\\n「无路可走的人是不需要靴子的,那穷途末路的文明又何必对我控诉?」\\n\\n头顶火冠的「冥火大公」被诸多文明视为天外恶魔,却受到盛宴之星的邀请。阿弗利特欣然盛装出席,「我会备好礼数周到的毁灭,一截残骨也别想留下」。优雅的火魔集结了星海恶党,盘算着为宴会献上尸山血海的盛况…那些被毁掉的文明,不过是通往毁灭的巡礼之路,匹诺康尼也只是道中站点而已。\\n\\n「毁灭你们,与你们无关,而是为了祂的注视」。\\n\\n在远方的宴会声呼唤下,阿弗利特欣然踏上漫长旅途赴宴。" + } + }, + "RequireNum": { + "2": { + "Desc": "追加攻击造成的伤害提高#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "Desc": "装备者施放追加攻击时,根据追加攻击造成伤害的次数,每次造成伤害时使装备者的攻击力提高#1[i]%,最多叠加#2[i]次,持续#3[i]回合。该效果在装备者下一次施放追加攻击时移除。", + "ParamList": [ + 0.060000000055879354, + 8, + 3 + ] + } + } + }, + "116": { + "Name": "幽锁深牢的系囚", + "Icon": "SpriteOutput/ItemIcon/71025.png", + "Parts": { + "31161": { + "Name": "系囚的合啮拘笼", + "Desc": "紧扣兽面囚徒面部的犬嘴笼,严防末路恶逆露出獠牙伤人。", + "Story": "嗅觉曾经构建了歩离人战首的感官世界,雨、尘土、篝火、鲜血、伤药...从战场最深处摇摇晃晃、幽幽荡荡地传来,汇成气味洪流,淹没他每一寸神经。\\n\\n如今他只能嗅到刑具的沉重坚固、与陪审者的畏缩恐惧充盈空气。\\n\\n他知道这些血肉软弱的审判者忌惮獠牙锐利——他曾伫立陡峭的崖顶,沐浴疯狂的月华,感受血脉中本能冲动;他曾循着气味组成的迷宫,于无光黑夜里,深入敌营,逐一咬碎猎物的头颅…歩离人战首崇敬磋磨后的獠牙,将其视为砥锋白刃,是撕裂一切的力量与自信。\\n\\n「步离巢父,啮噬吮血,荼害无辜。判其拘笼终身覆面,钳口固齿,问十恶重罪。」\\n\\n战首轻蔑地环视着四周,如冰海怒涛般席卷一切的剑客不在这里…他对繁芜的判词不感兴趣。" + }, + "31162": { + "Name": "系囚的铅石梏铐", + "Desc": "紧缚魔手的沉重镣铐,钢针钉腕,钳制凶爪恶逆再造杀孽。", + "Story": "云开雾散,朦月幽光倾覆于步离战首伤痕累累的身体之上。被银发剑客斩去的巨爪遗落一旁,走投无路的战首血脉奔涌,伴随着痛苦的长嚎,再次生长出利爪。\\n\\n月狂催化下,战首勉强追上如同月光的剑击。他默祷着丰饶之力,决心完成最后的困兽斗。\\n\\n他已忘记步离军队是第几次突围,只记得手足们无数次用利爪撕开前进的缺口,随即又严密合上。疲惫不已的步离人依仗着难以摧毁的复苏之力,挣扎着撕毁一切阻碍——战首鲜血沃灌着双爪,如陷迷狂,恍惚间惊觉自己无处脱逃,也早已无人追随。\\n\\n「步离巢父,手刃生灵,杀业无数。须铅石缚手,严加管制。」\\n\\n战首终是无力倒在剑客面前,第一次感受到精疲力尽的濒死体验。「那真是无与伦比的剑」,他不禁想到,「那真是无与伦比的刺激!」" + }, + "31163": { + "Name": "系囚的幽闭缚束", + "Desc": "捆缚危险重犯的拘束囚服,反扣关节,限制囚徒身体的变化能力。", + "Story": "步离人天生便是战士。他们骨架宽阔瘦长,下颌与颈部肌肉有力,犬齿发达,颅顶生有兽耳,手足生就锐利指爪——氏族同胞崇拜健硕躯体,将其视作神恩厚泽。\\n\\n战首既是精神领袖,亦是部族最强战力,指挥着如同黑潮的军队,主宰着战场的生死。\\n\\n出征的狰狞兽舰铺天盖地,他俯视战场那些躁动不安的战士——步离战首感应月狂呼唤,锋利刺骨撑破肌体,漆黑鲜血如雾般消失在风中。他如同殉道者伸展双臂,步离狼毒——那致人恐惧的信息素,随着血雾弥散开来,刺激着步离人战士感官,如神鬼附身。\\n\\n「巢父大人,赐予我等铜筋铁骨。巢父大人,赐予我等通天神力。」\\n\\n他回想起血肉不受拘束的日子。承受「月狂」的步离儿女突破血肉限制,皮开肉绽,再也不会感到疼痛与恐惧。指引他们,曾是专属于强者的特权和责任。" + }, + "31164": { + "Name": "系囚的绝足锁桎", + "Desc": "桎缚兽足的金属脚镣,禁锢末路恶逆,以防脱逃酿祸。", + "Story": "步离族人游牧于银河之间,鄙夷固土而居的文明形态。他们掳走和平安稳,带来滔天战火。苛刻的生存信仰迫使他们征战不停,始终投入到刀尖舔血生活之中。\\n\\n他们自有信念与手段,使步离人置足之处,便是歩离人的疆域国土。\\n\\n步离战首骄傲于燃起一处又一处的凄艳战火,碾压守护者尊严,痛饮流离者眼泪,践踏亲密者信任。他任荆棘疯长,沃土尽毁,他迫人为奴,奢侈享乐…为了超越历代王者,新任战首不得不抛却安稳,率将士远征外界以战功立名,巩固族中地位。\\n\\n「步离巢父,行则战至,祸遍诸界。判其绝足禁闭,不得受生 。」\\n\\n战首对判词感到疑惑,他环顾四周,惊讶于弱者们的审判。那些所谓罪行,不过是生存的法则。" + } + }, + "RequireNum": { + "2": { + "Desc": "攻击力提高#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "敌方目标每承受1个持续伤害效果,装备者对其造成伤害时就无视其#1[i]%的防御力,最多计入#2[i]个持续伤害效果。", + "ParamList": [ + 0.060000000055879354, + 3 + ] + } + } + }, + "117": { + "Name": "死水深潜的先驱", + "Icon": "SpriteOutput/ItemIcon/71028.png", + "Parts": { + "31171": { + "Name": "先驱的绝热围壳", + "Desc": "俄尔刻龙常见款式的潜水重盔。透过小小的舷窗只能看到令人难以忍受的无边黑暗。", + "Story": "俄尔刻龙的夜晚积云层层,烁烁行星环遮掩其中。紫红色的雪花落在厚重的头盔上,静静填补了锈铁的沟壑,将侵蚀的痕迹掩盖起来。她和她坐在雪松林间…旅途暂歇片刻。\\n\\n「看!俄尔刻龙的空气是树莓味的。」紫红色的雪花落在松软如云朵的糖絮上,很快消失不见。来自推罗的小小无名客吃吃地笑着,马上又弯腰捧腹,她笑自己的用词——气味怎能用眼睛看到呢!欢声笑语之后,安静就像刀锋一般尖锐,空中好像霎时结了霜。\\n\\n「扶里巴斯,你还是要往『IX』的深处去么?」发问的是那位旅伴,总提着一柄长刀。她是个好伙伴,但没人知道她从哪里来。\\n\\n小小的无名客躲在笨重的潜水衣里,沉默半晌,她递给对方一枝微微焦黑的棉花糖,眼睛眯得像张满的帆:\\n\\n「当然啦——因为我要走一条比阿基维利更深、更远的路!」" + }, + "31172": { + "Name": "先驱的虚极罗盘", + "Desc": "一块腕表式指南针,磁针已被拆去,不再能指示任何方向。", + "Story": "「海底的一股洋流,\\n「低语着啄她的骨头,就在一起一落的时光,\\n「她经历了苍老和青春的阶段,\\n「而进入旋涡。」\\n\\n女孩听过这样一个故事。在故事里,人们所处的世界被描绘成参天大树,由无主的能量构成。「这种能量看不见摸不着,既不可理解,也没有意义,」她思考,「就像『IX』也没有意义。」\\n\\n小小的无名客有些怅然,她为自己步入「虚无」深处后该如何辨识方向而发愁。但不久她就有了灵感——十四岁那年,妈妈留给她最后一件生日礼物,一块小小的罗盘。\\n\\n「既然这样,只要让罗盘感应到的不是磁场,而是『能量』,不就可以解决问题了吗?」\\n\\n小小无名客拆下了罗盘的磁针,可当女孩潜入黑暗的瞬间,她意识到罗盘唯一的方向只有下落。" + }, + "31173": { + "Name": "先驱的密合铅衣", + "Desc": "废铁打造的重型潜水服,密不透风,使用者也常常调侃它更像是一具深水棺材。", + "Story": "「扶里巴斯,那来自推罗的无名客,死了十四个日夜,\\n「她忘了海鸥的啼哭,深渊里的涛声,\\n「利益和损失。」\\n\\n小小的无名客望向那比推罗大道还要宽阔的行星环,她决定将自己发射到黑洞里的奇点去。\\n\\n「就连阿基维利都没能去到那里。」女孩总能听到涛声在她心底隐隐回荡:「我一定能比祂走得更深、更远。」她为此做足了准备——来历不明的锈铁皮、二手氧气瓶、废旧陀螺仪姿态控制装置、自循环生命支持系统和整流罩…她将材料全部锻在一起,确保整套装甲密不透风,她觉得这样可以保护自己远离「虚无」的伤害。\\n\\n她拾起爸爸留下的潜水头盔,佩戴上一枚自制的「荣誉徽章」。临行前,她与旅伴再次前往雪松林间,最后再烤一次棉花糖。\\n\\n后来,当扶里巴斯的飞行器抵近黑洞边缘时,这便是她所能回想起的、有关俄尔刻龙的全部回忆。" + }, + "31174": { + "Name": "先驱的泊星桩锚", + "Desc": "重靴形似船锚,它的主人已经做好了永不返回水面的打算。", + "Story": "「你们呵,转动舵轮和观望风向的人,\\n「想想她,扶里巴斯,\\n「也曾像你们一样漂亮而高大。」\\n\\n铁锚般的铅靴领着女孩不断下坠,它们正忠实地履行着设计之初便赋予的使命。\\n\\n女孩始终没有合上眼睛,与冰冷而孤独的黑暗顽强对抗。她想起自己第一次听说阿基维利的故事;想起踏上旅途的那一天,她为自己打造的「荣誉徽章」;她想起与旅伴同行的30日;想起她们第一次和最后一次集合的林间空地,那里的空气是树莓味的;想起口哨、吉他和竹笛,以及她们一起唱过的歌;想起紫红色的雪花落在微焦的棉花糖上,很快不见踪影。\\n\\n历历在目的回忆末尾,莫大的空虚行将来临,她突然见到一抹鲜红在黑色的世界中心转瞬即逝。\\n\\n于是,小小的无名客想起佩刀的她最后一次接过棉花糖时,自己发自内心的笑:\\n\\n「我从没想过能遇见和自己一样的人。在这条「路」上,你走过的距离比我远了好多。\\n「所以你也一定会陪我走到最后的,对吧?\\n「当然,我们的结局早已注定…但就和你说的一样——\\n「哪怕我最终会化作一潭浅浅的死水,但在走向那一刻的路上,我能做的事依然很多。所以无论如何,我都一定要去试试看——\\n「——因为我要走一条比阿基维利更深、更远的路!」" + } + }, + "RequireNum": { + "2": { + "Desc": "对受负面状态影响的敌人造成的伤害提高#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "暴击率提高#1[i]%,装备者对陷入不少于#4[i]/#5[i]个负面效果的敌方目标造成的暴击伤害提高#2[i]%/#3[i]%。装备者对敌方目标施加负面效果后,上述效果提高100%,持续#6[i]回合。", + "ParamList": [ + 0.0400000000372529, + 0.0800000000745058, + 0.12000000011175871, + 2, + 3, + 1 + ] + } + } + }, + "118": { + "Name": "机心戏梦的钟表匠", + "Icon": "SpriteOutput/ItemIcon/71029.png", + "Parts": { + "31181": { + "Name": "钟表匠的极目透镜", + "Desc": "一枚金雕目镜,镜片映照远方的纷繁奇象,助它的主人望穿迷梦。", + "Story": "在匹诺康尼关于「钟表匠」的故事里,他总是别具慧眼,能轻易看穿梦幻泡影下的商机,创造出谁也未曾料想的伟大事业。\\n\\n边陲监狱在万界之癌中争得自由,又在家族的光照下迎来和平与繁荣。据说钟表匠就是在此刻入局,他的目镜映出这片梦境的本质——人们在「薄暮的时刻」挥金如土,只为寻得「梦中的不可能之事」。从此,匹诺康尼的梦中出现了许多不可思议的事物:会讲笑话的茶壶、一边行驶一边旋转的跑车、每天都会变换位置的豪宅…它们大多毫无用处,却标卖着天文数字,而那些远道而来的人们,却愿意为之挥霍无度。\\n\\n此乃虚幻梦境,何不放肆狂想?一句「独存梦中,独一无二」,便将梦境中的奢侈与价值重新定义。\\n\\n苜蓿草家系与商界的老逐梦客们总为此事感到懊悔,埋怨自己为何没有早点看到这样的机会。而钟表匠只不过是看得比他们远了一点——每次都远了一点。" + }, + "31182": { + "Name": "钟表匠的交运腕表", + "Desc": "一块做工精美的手表,有着奇特的子盘与时针,据说是梦境中好运的象征。", + "Story": "「钟表匠」被称作钟表匠的原因,是系列故事最大的谜团。\\n\\n有人说他曾是钟楼的修补工匠,有人说他曾是贩售钟表的行商,甚至有人说他真的有一个表盘形状的脑袋——就像他创作的钟表小子一样。\\n\\n随着流言四起,梦中的腕表也借着钟表匠的名声一炮而红。逐梦客们知晓它们与本尊毫无联系,却依然将之视作对他的敬意,幸运的象征。在一系列商业行为的推动下,钟表图案成了匹诺康尼最常见的事物——服装、首饰、食品…从街头小巷的涂鸦到酒店大堂的巨钟,这位传奇大亨的影子无处不在。\\n\\n「在匹诺康尼,谁会不喜欢钟表呢?」\\n\\n而真正的钟表匠似乎默许了这一切,从未对那款最初的腕表发表过任何意见。直到钟表图案在匹诺康尼变成理所当然,直到再没有人追问钟表匠的来由。" + }, + "31183": { + "Name": "钟表匠的空幻礼服", + "Desc": "一身富丽堂皇的皮领礼服,华美典雅,通常用于宴会等正式场合。", + "Story": "在匹诺康尼的诸多传闻中,「钟表匠」有着截然不同的身份与外表。\\n\\n在虚构无端的故事里,他时而是和蔼的老者,时而是优雅的淑女,甚至有传言说他是一位身高百尺的巨人绅士…但无论在哪个故事里,他总有一身华丽的行头。\\n\\n传言钟表匠会在晨昏交界的梦境中,将自己的秘密分享给舞伴。听闻此言,人们纷纷步入华服舞会,向每一位藏在金装玉裹的人群中的神秘宾客发出邀请——越来越多的逐梦客借此相识相知,舞会也渐渐变成友情与爱情的交际场。价格高昂的入场券总是开售即空,哪怕传闻中身着华服的主人从未现身,也不妨碍来宾们寻求邂逅的热情。\\n\\n「瞧您的打扮,莫非就是大名鼎鼎的钟表匠?」这句话从最初的真诚询问,到后来的夸赞奉承,最终成了邀舞的托词。\\n\\n钟表匠多了一份舞会的生意,而梦境中也多了一份浪漫与激情。" + }, + "31184": { + "Name": "钟表匠的隐梦革履", + "Desc": "一双款式优雅的皮靴,穿戴者曾以神秘的姿态踏梦潜行。", + "Story": "「钟表匠」踏遍了每一刻梦境,也踏遍了匹诺康尼的历史。他的名字已然在梦想之地流传了数百年,而如今的逐梦客却依然能听见他的动向。\\n\\n人们不禁开始怀疑,钟表匠究竟是一个人,还是一个团体,抑或是家族的一个谎言?\\n\\n一些逐梦客誓要发掘出钟表匠的真相,前往各个梦境探寻神秘豪绅的踪迹,最后却只寻得掠影浮光——某次商业会谈的神秘来客、某个异军突起的无主品牌、某笔来路不明的巨额投资…每当他们试图推论钟表匠并不存在,却反而印证了钟表匠在梦中无处不在。\\n\\n关于钟表匠的书籍塞满了「初醒图书馆」的书架,他的名字永远萦绕着匹诺康尼。\\n\\n人们越是想要探究真相,就越是被谎言掩蔽…在千篇故事与万般传言中,这位盛会巨星只是留下足迹,不曾留下身影。" + } + }, + "RequireNum": { + "2": { + "Desc": "击破特攻提高#1[i]%。", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "当装备者对我方目标施放终结技时,我方全体击破特攻提高#1[i]%,持续#2[i]回合,该效果无法叠加。", + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + }, + "119": { + "Name": "荡除蠹灾的铁骑", + "Icon": "SpriteOutput/ItemIcon/71032.png", + "Parts": { + "31191": { + "Name": "铁骑的索敌战盔", + "Desc": "深度强化感官信号的钢铁战盔,将格拉默铁骑的意识与装甲融为一体。", + "Story": "遮天蔽日的虫群在火海中化为灰烬,银白的雪花飘散在深空中,映射恒星的惨淡光辉。仅在此刻,耳畔无休止的振翅声,以及通讯频道里的指令终于得以宁静。\\n\\n袭击「帝国」的虫群并未被彻底涤荡干净,下条出击指令也会在短暂愣神之后鸣响起来,一如既往。\\n\\n「帝国」的铁骑感受着深髓信号传输带来的外界感受,她回想起上次脱离驾驶舱时的体验,热风轻微撩起长发,郁热的空气浸透了她的后颈,汗珠附着在皮肤上。她并不讨厌那种感受,它比模拟信号鲜活百倍。装甲将感官与驾驶员深度同步,尽管这会进一步加剧失熵的痛苦,但为了战胜虫裔,铁骑早已没有选择。\\n\\n「格拉默军规第8条,存活的骑士应主动归队……」\\n\\n直到铁骑看见戮首的银色盔甲,才明白装甲的感官信号欺骗了自己——下条出击指令不会再响起了,多么残忍的短暂休憩。" + }, + "31192": { + "Name": "铁骑的摧坚铁腕", + "Desc": "粉碎虫裔的强劲铁腕,尖锐而轻盈,坚硬又稳固。", + "Story": "格拉默铁骑攥紧铁腕将肮脏鞘翅坼裂,任由虫腹腔内失压的腐蚀性液体肆意喷溅。虫液接触到银色甲胄时瞬间气化,仅仅留下血渍污秽。\\n\\n装甲与虫肢的残骸散作深空碎屑,环绕格拉默的「死亡之河」在引力的牵引下静静流淌,血战终究迎来了终结。\\n\\n议会的领袖们商讨着战后的格局,他们向从未掌握实权的「泰坦尼娅」降下审判,因为她支配着匹敌蠹虫的铁骑兵团,她的存在是共和国存续的最大隐患…人们敲响和平的钟声,向民众们宣告虫群消散、湛蓝的天空将重新回到共和国手中。\\n\\n「倘若不对『女皇』加以约束,还有谁能控制这些兵器?」\\n\\n铁骑们在短暂的生命中不断磨砺铁拳的腕力,但他们未曾想过——议会里那些苍白无力的枯手高高举起,便拥有改变格拉默命运的力量。" + }, + "31193": { + "Name": "铁骑的银影装甲", + "Desc": "迸发烈焰的推进装甲,给予格拉默铁骑足以点燃战场的烈焰。", + "Story": "数道烈火的弧光自夜空穹顶划过,越过曙光升起的地平线,前往格拉默的不同星区——这是共和国居民最为熟悉,也是最为恐惧的日常。\\n\\n银影装甲翱翔天际,他们争分夺秒地奔赴满目疮痍的战场,无暇俯瞰自己日夜守护的光景。\\n\\n女皇的命令不容置辩,面容相似的战士们自培养舱中诞生,宣誓为女皇效忠夺回格拉默的苍穹。铁骑穿越薨薨飞虫的尸山血海,燃烧蠹虫躯壳的焦灼余烬,击碎巨颚栉齿的败鳞残骸…格拉默铁骑的宿命,是承受慢性解离的熵变,在生死边缘熊熊燃烧。\\n\\n直到烈焰被彻底扑灭,直到遮天蔽日的虫类化为烬黑焦土,直到无人生还——如此日常还会继续下去……\\n\\n什么是活着?推进装甲的加速度死死扼住胸膛,刺破失熵麻木的痛楚在肢体上短暂浮现时,他们品尝到些许活着的滋味。" + }, + "31194": { + "Name": "铁骑的行空护胫", + "Desc": "兼具破坏力与速度的机骑护胫,格拉默铁骑会高高跃起,将力量集中于一处踢向敌人。", + "Story": "铁骑的足迹遍布格拉默「帝国」的每个角落,宛若炽热的流星,却走不出泰坦尼娅编织的「梦」中。\\n\\n共和国的人们担忧着为战而生的兵团,那从未存在过的「帝国」究竟与自己熟知的疆域有几分重合……\\n\\n女皇赐予她的骑士荣誉与信仰,铁骑为女皇献上忠心与承诺…新人类不断自培养舱出生,被赋予编号与使命;旧人类躲在钢铁壁垒之下,忧心忡忡地享用期盼已久的和平。平静的谎言需要有人揭破,那动摇人类本质的战争手段不应存在于世,当天灾褪去,心怀恐惧的人们便要彻底摧毁扭曲的战争产物——\\n\\n铁骑的护胫踏破天空,只要他们愿意,便可抵达任何一颗星星。\\n\\n然而「帝国」已无处可寻,铁骑面前只存在一条既定的轨迹,一头连着死亡,一头连着自己。" + } + }, + "RequireNum": { + "2": { + "Desc": "击破特攻提高#1[i]%。", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "当装备者的击破特攻大于等于#1[i]%时,对敌方目标造成的击破伤害无视其#3[i]%的防御力。当装备者的击破特攻大于等于#2[i]%时,对敌方目标造成的超击破伤害额外无视其#4[i]%的防御力。", + "ParamList": [ + 1.5000000004656613, + 2.5000000004656613, + 0.10000000009313226, + 0.1500000001396984 + ] + } + } + }, + "120": { + "Name": "风举云飞的勇烈", + "Icon": "SpriteOutput/ItemIcon/71033.png", + "Parts": { + "31201": { + "Name": "勇烈的玄枵面甲", + "Desc": "以凶鸟「大风」为原型的面甲,两对辅眼曾目睹过神迹示现。", + "Story": "她的鹰盔有两对辅眼,确保能在任何光照条件下看清周身环境。然而辅眼此时被干涸的污血附着,视线可及之处都浸染着铁锈色。\\n\\n将军自昏迷中醒来,从尸山上爬起。身后,「瞰云镜」如一座高耸尖塔向天而立。塔尖之上,一道光芒律动不休,重复着只有观星士们才能解读的密语。承托联盟万亿众生的愿力,它在向神祈愿——此刻,她与那些四处枕藉、早已了无生气的同侪们奋战至今,为的便是令这声低唤上达天听,赐下死亡。\\n\\n「来了…」将军喃喃低语,仰天瞩目。她看不见神的形象,听不见祂的纶音,但她能感受到祂抵达的证据:灼热的气浪陡然腾起,宛如烙铁游走于肌肤。炽红的火星随血雾猎猎飞扬,如帷幕遮天,在随后的瞬间里,被不可直视的光撕开——\\n\\n来了,那道无数将士战死所交换的神迹来了。她曾目睹被神罚化为死域的天体残骸,也曾追逐这光的尾迹而战。她本以为这光极快,快到不容一丝杂念浮想。但她错了,那一刹那至少足够她再想起心爱的弟子:\\n\\n「那就许个愿吧。愿她行于坦——」\\n\\n大地如翻涌怒浪,随光之海咆哮而来,她再无俗念,化为光中尘埃。" + }, + "31202": { + "Name": "勇烈的钩爪腕甲", + "Desc": "嵌合肌体的仿生手甲。若想狩猎猛兽,就要有比猛兽更锐利的爪牙。", + "Story": "她麾下的青丘军战士有着不输步离狼卒的悍勇。即便剑折弓断,无有寸铁在手,他们也能凭手甲上的锐爪死战到底。\\n\\n传闻青丘卫的狐人战士多解救自步离人所统治的世界。这些诞生自「沦陷地」的狐人血缘驳杂,偶有呈现返祖状态的突变个体。这些狐人会被充做战奴,受狼头恩主们驱使,成为战前的先锋与延阻仙舟进攻的炮灰。\\n\\n「加入青丘军,我们将给你向狼头恩主复仇的机会!」在募新训练中,将军还记得自己对年纪幼小的狐女如此说道。但她为自己没法说出口的后半句而感到愧疚:你和我一样,为战而生,也将为战而死。\\n\\n战奴虽拥有堪与狼头恩主媲美的力量与速度,但突变也透支了他们的生命与理智。当意志随狂怒燃烧殆尽,战奴便会沦为暴戾嗜血的怪物。\\n\\n当纯粹兽性的怒火支配肉身时,在完成此生最后的猎杀奔逐后,这副手甲将成为桎梏双手的铐枷,再难与血肉分开。" + }, + "31203": { + "Name": "勇烈的飞翎瓷甲", + "Desc": "身如凛风,翱翔群狼仰首处,猎物与猎人终将易位而处。", + "Story": "她依旧记得狐民中的古老民谣,唱的是一阕不成曲调,只余悲伤的去国哀歌。「有狐绥绥,在彼岸滨。行道迟迟,载渴载饥。我心伤悲,莫知我哀」……\\n\\n于数千年前开始,他们成了狼爪下的牲畜、奴仆与通货。于数千年后,他们仍然在为解放同胞奔走征战。尽管没有天敌那般不断强化异变的肉身,但他们拥有灵敏应变的机智。\\n\\n狼头恩主命令他们造器供用,却又反复挖去他们的双眼防其习艺,禁绝他们持有金属以免仿造器物。这一切都不能磨灭狐民们内心的渴望:终有一日,他们要教猎人懂得被狩的惶恐;终有一日,他们要与猎人易地而处,追逐不休。\\n\\n最终,狐民们烧瓷为甲。青丘瓷甲如风般轻盈,如钢般坚韧。狼头恩主的爪牙与他们的血肉武器无法伤其分毫。\\n\\n将军将这身瓷甲披挂着装,与青丘卫的战士们乘风而起,成为步离人头顶的梦魇。他们结阵进退,犹如出猎的群鸟,彼此呼应。但无论这甲胄如何坚固,她始终相信:被疼痛锤炼的肉体才是最好的武器,患难与共的战友才是最好的护甲。\\n\\n「鸟扬羽翼,兽露牙爪。岂曰无持,同袍为甲。」" + }, + "31204": { + "Name": "勇烈的逐猎腿甲", + "Desc": "禽爪制式的战靴,着装之人迅疾如风地奔袭战场,轻易踏行于荆棘坎坷。", + "Story": "她看着女孩的身影在朦胧月光下动如脱兔。她追随女孩的足迹与气味如追猎物。最终,她在道路尽头等着女孩到来。\\n或者,是女孩在等她到来。\\n\\n月光映照下,将军看清了那张脸。\\n「你就那么想加入云骑?」\\n「我不想给狼头恩主卖命。」\\n少女的步离语艰难断续。那张脸上的神情,她曾在无数次解救沦陷地同胞时目睹过。\\n那些人虽和她流着同样的血,却说着不同的语言,怀着不同的心思。\\n他们从不认为自己是狐族的子裔,可这样一来,他们又是谁?\\n将军微微颤身,让出一条路。\\n「你走吧,今夜开始,他们不会再追赶你了……」\\n「可我要他们死。」\\n\\n将军难以置信地瞧着她,如同看到天空掠过流星般惊异,小兽般的身姿倏然没入黑暗。\\n将军闭目,仿佛被月光灼痛了眼。片刻后,她低头,瞧见少女精赤的双足,布满棘刺血痕与污泥。\\n\\n「怎么不穿鞋?」\\n「忘了。没发现。」\\n将军脱下自己的战靴,比了比尺码,为女孩穿上。\\n「倒挺合适的…那就出发吧。」\\n「你怎么办?」\\n「我早习惯走在荆棘上了。」\\n\\n她迈开步伐,赤足如飞,女孩一路紧紧追赶她的身影。\\n又或者,是她们在追赶彼此的身影。" + } + }, + "RequireNum": { + "2": { + "Desc": "攻击力提高#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "使装备者的暴击率提高#1[i]%,装备者施放追加攻击时,使终结技造成的伤害提高#2[i]%,持续#3[i]回合。", + "ParamList": [ + 0.060000000055879354, + 0.3600000003352761, + 1 + ] + } + } + }, + "121": { + "Name": "重循苦旅的司铎", + "Icon": "SpriteOutput/ItemIcon/71038.png", + "Parts": { + "31211": { + "Name": "司铎的律音耳坠", + "Desc": "他常常坐在告解室内侧耳倾听。耳坠不断提醒着他,即便是最微末的细语也是有重量的。", + "Story": "「谨遵您的意志。我犯了错,我谎称各个家系心有隔阂,以此流言换取新闻酬劳……」\\n\\n透过隔窗,家主注意到那名记者目光闪躲,小心翼翼地等待着自己的回应,就像无数次「圣事告解」一样——用铃音般的宽慰令信徒们痛悔罪过。不过此刻他不自觉地侧过头去,欲言又止,任由那金属坠子在耳畔发出清脆的杂音。\\n\\n「我清楚知道,这实属无稽之谈。寄以神主之恩,家族全体万众一心。这是众多家系成员的愿望,也是家系成员们投身神主怀抱的缘由。」\\n\\n告罪者对所告之罪痛悔并定改,从谐音中领洗所犯罪过的赦免。家主轻阖双目,宣告圣音——\\n\\n「很好。向其他家人展现真诚、澄清流言,如此便能与之重修谐音。平安回去吧。」\\n\\n真言善语又何罪之有?律音铎铎,却沉重如枷。他叹息摇头。\\n\\n「…请下一位上前。」" + }, + "31212": { + "Name": "司铎的授邀手套", + "Desc": "他常常站在公馆内接待访客,无数遍发出邀请的动作。洁净的手套提醒着他切记谦卑与礼数。", + "Story": "「报告家主。这些人自称是有要事会见,其中好几人身份成疑,进入梦中的手段非同一般……」\\n\\n闯入梦中的不速之客排成一排。不出意外,以恶待人的凶徒将被驱逐,谎报身份的罪犯将遭收押,他不发一言,便已然安排就绪。无辜之人目睹了他的盛怒,眼中闪烁着期待与不安——随后,他露出微笑,向面前众人探出手作邀请状,是表达认可,也是展现威严。\\n\\n「各位是橡木家系的尊贵客人,自当礼遇。或许你们好奇自己是如何得到正当评判,在此容许我稍作解释,那是因为诸位所行之『道』与我相会。」\\n\\n侍者、艺伶、无业无为之人…纷纷打消疑虑,他们理解了邀约的真诚含义,心中再无介怀。\\n\\n「让罪人得到应有的惩罚,让客人得到应有的礼仪,谐律本应如此。」\\n\\n家主恩威并施,足以博得来客的信任。他环视众人,缓缓侧身微躬——\\n\\n「欢迎来到橡木家系。」" + }, + "31213": { + "Name": "司铎的圣职礼服", + "Desc": "他常常站在试衣镜前,确认仪容衣装。在出门前就确保一切井然有序,绝不偏移。", + "Story": "「…若鸟儿生来并无镣铐,又是什么束缚我命运♬?」\\n\\n排练日,年轻的家主将自己藏身于观众席的角落中,他并不想分散舞台上歌者的注意力,恰到好处的陪伴感正是他所期许的。他身着礼装,正襟危坐,是此时此刻唯一的听众。在熟悉的歌声中,他的思绪回到孩童时期,那时她站在「舞台」之上歌唱,自己也是彼时唯一的听众——\\n\\n「好久没有快乐地唱过歌了吧…我为你搭了一座舞台,就是…有点简陋。」\\n\\n在两个人的演唱会上,他许下约定,终有一日要实现她的梦想,去往更大更璀璨的舞台之上。\\n\\n「让我的心勇敢地振翅飞翔,穿过深沉的黑夜,去追逐皎洁的月光♬……」\\n\\n他从失神中恍惚片刻,正视自己不敢更接近舞台的原因——身着礼装并非为了享受演出,而是为了在任何时候抽身离开。\\n\\n「恭喜你妹妹,我们的梦想都实现了。」他小声说道。" + }, + "31214": { + "Name": "司铎的苦旅短靴", + "Desc": "他常常在旅行开始之前,挑选一双适脚的靴子。他摔倒过很多次,但他站起过同样多次。", + "Story": "「走吧,你自由了,妄图超越本分的神选者。把自己的羽翼折断,到人间去,走在大地上,看看这人世真正的模样。」\\n\\n自那以后,他常常回味公司高管话语中的含义。他走进喧嚷的街头,他走在谧静的海边,他始终都在行走,却一步也未曾出发…他从未怀疑过自己拥有百折不挠的品质,也从不怀疑自己拥有坚决执行的能力。在下一次站起来之前,他打算停下来,体味理想坠地时的坚硬触感——\\n\\n「斑驳的石片上,浸过兽血和人汗,却始终冰冷,始终粗粝,始终坚硬如故……」\\n\\n作为家系主理人,他曾开导过太多迷途的羔羊,赐之以正道。但面对自己时,那些轻柔的宽慰似乎褪去失去了魔法,再产生不了效力——他并不需要数落,更不需要同情。\\n\\n「只有泥泞才会诞生跋涉苦行的人,走下去,我将从失败之中学到比成功更多。」\\n\\n在真正的再出发开始之前,他有充足的时间放缓脚步,整理思绪,再继续徘徊。\\n\\n「行走从没有复杂的哲学,当一条路走不通时,便换一条路,仅此而已。」" + } + }, + "RequireNum": { + "2": { + "Desc": "速度提高#1[i]%。", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "对我方单体目标施放战技或终结技时,使技能目标的暴击伤害提高#1[i]%,持续#2[i]回合,该效果最多叠加#3[i]次。", + "ParamList": [ + 0.18000000016763806, + 2, + 2 + ] + } + } + }, + "122": { + "Name": "识海迷坠的学者", + "Icon": "SpriteOutput/ItemIcon/71039.png", + "Parts": { + "31221": { + "Name": "学者的银边视镜", + "Desc": "一枚映照着巨厦的单片晶石眼镜,与手杖、表链、胸针一起衬托出主人的时髦与学识。", + "Story": "【序号】 EVD-W019EI06-003\\n\\n【名称】晶石单片镜\\n\\n【基本特征】有明显的碎痕\\n\\n【取证地点】俄亥提中央综合科学院能源研究部「柏环」研究室\\n\\n【当事人】柏环,能源分析领域首席科学家,天才俱乐部#7成员\\n\\n【现场分析】\\n根据现场情况来看,当事人在启动观测仪操作不当,导致容器内燃素聚合体泄露,当事人左手严重受伤。事故发生时,单片镜不巧从高处摔落导致损坏。\\n\\n【证言补充】\\n柏环称实验过程中,单片镜内出现异常可见光,强光刺激导致一系列巧合接连发生,并最终导致燃素聚合体泄露事故发生。\\n\\n由于当事人描述的巧合过多,该证言不被采信。\\n\\n【备注信息】\\n种种迹象暗示了这是一次蓄谋已久的犯罪行为。由于连续巧合发生的「蝴蝶效应」无法被认定为「可复现的犯罪手段」,该泄露事件最终以「意外」结案。\\n\\n【相关录音】\\n「…我可能还要感谢这次意外,它把拉姆重新送回了我身边。这是我们第四次复婚了…说起来怪不好意思的,这还是第一次由我提出复婚呢。」该音频记录来自柏环。" + }, + "31222": { + "Name": "学者的辅助指节", + "Desc": "以合金制成、辅助手指活动的外骨骼,需要配合使用者手型订制,价值不菲。", + "Story": "【序号】 EVD-X024DE18-002\\n\\n【名称】嵌有「灰玺金」合金的手指外骨骼\\n\\n【基本特征】有明显外力捶打损坏的痕迹,已确认在爆炸事件前损坏\\n\\n【取证地点】极地能源掘场中控室\\n\\n【当事人信息】拉姆(死亡),生物波探测领域首席科学家,天才俱乐部#8成员\\n\\n【现场分析】\\n根据监控录像来看,当事人操作不当导致中控室发生爆炸,当事人直接死亡。\\n\\n【证言补充】\\n「鬼知道她心里藏着什么,她要是出了什么事,克莱恩肯定逃不开干系!」\\n\\n爆炸事故发生前两周,警方接取柏环报案,称妻子患有残疾的右手受暴徒恶意伤害。随后,拉姆作为实际受害者拒绝了进一步调查,并取消了立案。\\n\\n【备注信息】\\n爆炸案后,当事人丈夫要求调查结束后取回外骨骼,并附有当事人指骨。\\n该爆炸案中连续发生的偶然事件过多,建议引起高度重视。\\n\\n【相关音频】\\n「克莱恩,你给我出来,我们之间还有笔账没有清算。你我最清楚,这个世界上没有绝对的『巧合』,更何况是这一系列的『不可思议的巧合』。」该音频记录来自克莱恩宅邸安全系统。" + }, + "31223": { + "Name": "学者的粗纺外套", + "Desc": "粗花呢外套和针织衫是学院中常见的搭配,耐用不易皱的面料对访问学者来说正合适。", + "Story": "【序号】 EVD-X043FE21-001\\n\\n【名称】粗花呢外套,粗纺羊毛马甲,白衬衫\\n\\n【基本特征】左胸处有直径8厘米左右的燃素灼烧痕迹\\n\\n【取证地点】俄亥提中央综合科学院能源研究部「柏环」研究室\\n\\n【当事人信息】柏环(死亡),能源分析领域首席科学家,天才俱乐部#7成员\\n\\n【现场分析】\\n根据现场情况来看,当事人携带「灰玺金」颗粒,吸附了大量燃素,于心脏处瞬时形成近千度高温。外套、马甲、以及衬衫均留下烧灼痕迹。\\n\\n烧灼处留下半截未烧尽的无名指骨,经鉴定该指骨来自拉姆,或与高纯度「灰玺金」颗粒有关。\\n\\n【证言补充】\\n「…我们早该想到人总有疏忽的时候,何况他其实从未对丧妻一事释怀……」\\n\\n根据研究室的学者们描述,制定安全手册规范的柏环不应该犯下如此「低等错误」。\\n\\n【备注信息】\\n「灰玺金」是由天才俱乐部成员#9成员克莱恩研制的稀有合金,具备捕获并储存燃素的性质。\\n\\n当一系列的巧合太多时,巧合还是巧合吗?\\n\\n【相关文档】\\n「严禁携带高纯『灰玺金』合金产品进入置有燃素观测库的实验室。」出自能源研究部实验室安全手册。" + }, + "31224": { + "Name": "学者的绒皮雪靴", + "Desc": "松软舒适的女式短靴,搭配合适的小腿裤会有恰到好处的时尚感,已陪伴主人极地科考多年。", + "Story": "【序号】 EVD-X031JA12-004\\n\\n【名称】极地科考女式雪地靴\\n\\n【基本特征】有明显破损和修补痕迹,鞋底藏有磁盘一枚,初步排除间谍活动可能\\n\\n【取证地点】克莱恩家中地下室\\n\\n【当事人信息】克莱恩(死亡),合金材料学领域首席科学家,天才俱乐部#9成员\\n\\n【现场分析】\\n\\n根据现场情况来看,科学家拉姆的大量遗物出现在克莱恩家中,该短靴也是其中之一。\\n\\n【证言补充】\\n「也许我错怪他了,我是说克莱恩,而我的妻子拉姆…她离开很久了,我只觉得…陌生。」\\n\\n柏环对妻子遗物出现在克莱恩家中一事并不知情,从神态上推断他似乎并不意外。\\n\\n【备注信息】\\n克莱恩的宅邸较为偏僻,法医推断的死亡时间前后无人前往。初步判断为意外死亡。\\n\\n柏环、拉姆、克莱恩三人关系特殊,他们所遭受的「巧合」已经接近「灵异」范畴。\\n\\n【相关音频】\\n「唉,柏环我知道你在怀疑我,我也知道我无法向你证明我的清白。关于拉姆的事,我很抱歉,我问心有愧但我绝不会去伤害她…关于凶手的事,我已经有些了眉目,你听说过『寂静领主』吗?*无意义的噪音*」该音频记录来自短靴中的磁盘。" + } + }, + "RequireNum": { + "2": { + "Desc": "暴击率提高#1[i]%。", + "ParamList": [ + 0.0800000000745058 + ] + }, + "4": { + "Desc": "战技和终结技造成的伤害提高#1[i]%,施放终结技后,下一次施放战技时造成的伤害额外提高#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064 + ] + } + } + }, + "123": { + "Name": "凯歌祝捷的英豪", + "Icon": "SpriteOutput/ItemIcon/71040.png", + "Parts": { + "31231": { + "Name": "英豪的冠军桂冠", + "Desc": "竞技场冠军所得的桂冠。每一片金色的桂叶都闪烁着勇气与荣耀。", + "Story": "时间仿佛在欧洛尼斯的叹息中变得迟缓。他听得见自己沉重的呼吸,胸口的肋骨也隐隐作痛,仿佛要把竞技场中的每一寸空气都吸进肺里…汗水与血水交织流淌,脚下的大地诱惑着他放弃,享受那片柔软、舒适的安息——他已筋疲力尽。\\n\\n「下一击将哪方来?左,还是右?佯攻还是……」\\n\\n枪尖已经袭来,他来不及思忖。索性将命运托付给纷争之泰坦,自己只需向前刺出一枪。\\n\\n尘土缓慢沉降,斜阳从竞技场外照射进来,映照着他的侧脸。看台上的观众们纷纷起身,掌声与呐喊声如同潮水一般席卷而来。此时他惊讶地发现,竞技场竟是如此宽阔,无路可逃的紧迫感似不复存在。偌大的场地中央只剩下血泊、倒下的对手,以及孤独而耀眼的胜者。\\n\\n城主高举起他的手,宣告冠军的归属。锣鼓声随之响起,他戴上桂冠,成为竞技场的传奇。\\n\\n「你被选为城主身旁的督战勇士,你的名字将与胜利,一同被书写在英雄的史诗之中!」\\n\\n此后,他的名字被全城呼唤,尼卡多利的荣光笼罩着他,仿佛整个世界都为他而存在。" + }, + "31232": { + "Name": "英豪的鉴金腕铠", + "Desc": "一对精致的督战勇士护腕。紧贴着勇士的手腕,稳稳地支撑着胜利号角。", + "Story": "无论是大捷或是惨败,竞技场的冠军总能从战场归来。城主将他的强运视作「胜利象征」,夺过他手中的长矛与盾牌,换以号角与战旗,命他将强运赐予全军。将士们深信,尼卡多利的荣光与他同行,只要他引领向前,必是胜利之途。\\n\\n「从此以后,你无需再是一名战士,而应成为一个符号。」\\n\\n那日夜锤炼、如铁石般坚韧的躯体,如今却如同神殿的石像,仅用来观瞻。\\n\\n他被挡在备战的训练营外,士兵们生怕「胜利象征」遭遇任何微小的意外;他受邀来到城主宴会上,嘉宾们询问着那十六场生死相搏的传奇故事。如今,他伫立在战场的边缘,手握号角,金光流转的腕甲映出那张逐渐陌生的侧脸,不禁心头猛然一紧——他只需吹响胜利号令,早已无须冲锋陷阵…原来,这便是人们口中的「不战英雄」。\\n\\n「…如果这能为全军带来胜利,我甘愿放弃战场上的荣耀。」\\n\\n尼卡多利从不为「一个符号」选择胜利之道,他不敢懈怠,也许此生的最后一战即将到来……" + }, + "31233": { + "Name": "英豪的骁战金甲", + "Desc": "宛如天神的铠甲,完美贴合着雄健的身躯。", + "Story": "与深陷疯狂的神明对峙,注定无人能以胜者之姿离开。尼卡多利的长锋所掠过之处,长矛折断,盾牌纷飞,战线寸寸崩溃…失去秩序的士兵们陷入前所未有的混乱与恐惧。竞技场英雄的号角声被埋没在嘶喊、哀嚎与铁器碰撞的铿锵声中,早已无力扭转溃败的结局。\\n\\n「尼卡多利想要收回它许诺的胜利,而我必须以长矛与鲜血归还。」\\n\\n翻滚烟尘中,残破的旗帜朝着尼卡多利不断前进。士兵们注意到,强运的英雄选择不再归去。\\n\\n起初,只有四五个人跟随,而后是数十、数百人…他们紧随那宽阔的背影,朝着必死的战场发起最后的冲锋——曾经倒下的战友似乎化作英灵,在他们的耳边低语,激励生者完成这最后一搏。即便尼卡多利已然陷入疯狂,也本能地感受到了这群战士不屈决心与无畏意志。\\n\\n「看啊!竞技场的英雄还在不断前进,我们必须紧紧跟随!」\\n\\n鎏金的护甲在余晖映照下依旧闪耀,他带领军队迈向了体面而尊严的死亡。" + }, + "31234": { + "Name": "英豪的赴火护胫", + "Desc": "紧密贴合战士腿部的护胫,曲线优雅而坚固,蕴藏着决不退缩的信念。", + "Story": "士兵们沉默地走进废墟,开始打扫战场。有人艰难地拖动遗体,将战友与敌人分开;有人跪在阵亡的同伴旁,轻轻合上他们的眼帘…战场的嘶喊声早已远去,留下的只有令人窒息的静默——竞技场的英雄亦长眠于这群死者中,仅余一对烫金的护胫孤立于血尘之间。\\n\\n「记住,战场上的战士从未彻底消失,他们的英魂将永远留在后人的记忆里。」\\n\\n随后,静寂被哀婉的歌声打破,祭司们缓步走上战场,为阵亡者举行葬礼。\\n\\n火焰于黑夜中腾起,哀歌久久不能停息…忽然,远处的天空被一道璀璨的光芒穿透,宛如天谴之矛刺向大地,那是尼卡多利呼唤着此地的英灵。随即,出席葬礼的士兵与平民纷纷跪地,双手高举,心中充满敬畏与感激——那光芒化作温暖的气息,轻轻托起每一位战士的亡魂,低语着泰坦的恩赐与宽恕,宣告英雄们的永恒不朽。\\n\\n「看啊,即便身陷死亡,竞技场的英雄仍在引领战士们,通往故土的方向。」\\n\\n英雄轻轻颔首,在古老的歌谣中,他那高尚的灵魂将再次被重铸。" + } + }, + "RequireNum": { + "2": { + "Desc": "攻击力提高#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "装备者的忆灵在场时,装备者的速度提高#1[i]%,装备者的忆灵攻击时,装备者和忆灵的暴击伤害提高#2[i]%,持续#3[i]回合。", + "ParamList": [ + 0.060000000055879354, + 0.3000000002793968, + 2 + ] + } + } + }, + "124": { + "Name": "哀歌覆国的诗人", + "Icon": "SpriteOutput/ItemIcon/71041.png", + "Parts": { + "31241": { + "Name": "诗人的莳萝花冠", + "Desc": "春日黄昏神庙前,最出色的吟游诗人将得到墨涅塔赐福的莳萝花冠。", + "Story": "「墨涅塔,我们向你祈福。若世上没有歌声,没了歌声的春天,没有树林会开出花朵……」\\n\\n用溪流濯洗双手,再用双手捧出清冽的供神佳酿,吟游诗人们聚集在神庙前,为谁能获得墨涅塔赐福的花冠彼此争论。以恋爱诗闻名的帕提亚三姐妹率先展露歌喉,紧接着是有一千个奇妙比喻的老诗人鲁珀。绮音妙语并未打动女神,面前的酒杯纹丝不动。\\n\\n直到一位流浪的诗人,拨弄手中七弦的竖琴,弹奏起古老莎草纸上记载的故事。千年前的风沙席卷而来,故事这样开头:在世上还有众多城邦存在的时候,曾有一座城邦遭遇了恶龙的侵袭。\\n\\n「哀歌我的故国——\\n「怪物高踞殿堂,贵嗣沦为恶种,\\n「只怪那闯入高塔的巨龙,\\n「蛊惑了我的王,吞吃了我国的公主……」\\n\\n佳酿被女神斟饮而尽,流浪的诗人成了花冠的所有者。" + }, + "31242": { + "Name": "诗人的贵金手镯", + "Desc": "被人喜爱的金属打造的手镯,故事中的恶龙,也曾背负这样金属打造的枷锁。", + "Story": "「人们从吉奥里亚的身躯里掘出黄金,这是第一样凶狠的金属,从此便有了阴谋和战争。」\\n\\n战争的起源已不可考,众多历史化作传说。可即便是传说——分明傲慢、诡计、贪婪才是人们争斗不休的起因,却让黄金无辜承担了罪名。好比烂漫不知纷争的年岁里,白铁和青铜原本是祭神的礼器,尔后才被从祭台上推下,熔铸为刀枪,成了比黄金更凶狠的金属。\\n\\n故事中的巨龙已经被讨伐了吧…诸邦国间的战争也接近平息,流浪的诗人跋涉来到圣城,为人们弹唱后来的故事:在恶龙占领了城邦之后,人们征集猎龙的勇士救出公主。\\n\\n「哀歌我的故国——\\n「勇猛的百夫长,以沉金打造的枷锁,终将恶龙制服。\\n「塔顶传来老国王的悲哭…\\n「龙腹中只堪堪拼凑出被吞吃的公主,遗下的骸骨。」\\n\\n贵金手镯的流苏碰过琴弦,发出一声清脆的叹息。" + }, + "31243": { + "Name": "诗人的缀星裙摆", + "Desc": "黎明是最温柔的时辰,她的裙摆也恰如黎明前的最后一缕晚星,那般颜色。", + "Story": "「艾格勒睁开眼皮的时候,所有的星星全部入眠,唯余一颗偷眼的晚星,数它最为好奇。」\\n\\n叙事诗一直唱到了第二个昼夜更替的伦次,诗人的身边聚集了越来越多的听众,他们当中有箭矢琅琅作响的悬锋人,投掷占卜棒叩问神旨的雅努萨波利斯人。自黑潮侵蚀诸邦以来,散佚的文献不尽其数,树庭的学者们来不及收集所有的资料,许多零星的小城邦甚至未能留下名字。\\n\\n只有流浪的诗人知道,被恶龙侵袭的旧城邦,曾经流传着深秘的炼金术:以血肉为根基,依此可造万物,依此可达奇迹,炼金术士对痛失爱女的国王如是说。\\n\\n「哀歌我的故国——\\n「巧言的炼金术士,自言能从龙的血肉中复活公主。\\n「已死之物,死而未死,又过了十个昼夜,\\n「仪式最终炼成。然而……」\\n\\n最后一缕晚星恋恋不舍地阖上眼睛,贪念着未听完的人子们的故事。" + }, + "31244": { + "Name": "诗人的钉银之履", + "Desc": "织履镶着银钉,行在沙地上印出字样的纹路,为了采撷旧日的诗篇她始终步履不停。", + "Story": "「世人无处寻得塞纳托斯的踪迹,还有传说中没有生者能趟过的冥河,那河流通往何方?」\\n\\n我们从未听过那样的巨龙,更不曾在任何古书中见过复活血肉仪式的存在,听众中有人发出质疑。诗人答道,她并非旧城邦的末嗣,亦不知晓是否真正有过作恶的巨龙,这只是她从更早的吟游诗人那里听来的、一代代口耳相传的诗歌。\\n\\n若无人传唱,旧城邦的历史才是真正被尘封,一切都会随着时间褪色:昔日繁荣的邦国,遭到冥河冲刷吞没,成为野狗和盘旋的秃鹫都会憎恶的地方,这是被恶龙吞食的魂灵遗下的诅咒。\\n\\n「哀歌我的故国——\\n「公主啊!竟被炼成恶龙的模样。\\n「将炼金的术士、勇猛的百夫长、昏聩的国王全部吞吃。\\n「一场血腥飨宴,召来了死亡的影子,旧城邦由此湮没……」\\n\\n记住湮没邦国的名字吧!这是有关「斯缇科西亚」的故事,由穿着钉银之履的诗人弹唱,她采集故事只为了故事本身,正如织履上的银钉留下的字样,「记住故事,忘记我。」" + } + }, + "RequireNum": { + "2": { + "Desc": "量子属性伤害提高#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "使装备者的速度降低#6[i]%。进入战斗前,若装备者的速度小于#2[i]/#3[i],使装备者的暴击率提高#4[i]%/#5[i]%。该效果同时对装备者的忆灵生效。", + "ParamList": [ + -0.07999999984167516, + 110, + 95, + 0.20000000018626451, + 0.3200000002980232, + 0.0800000000745058 + ] + } + } + }, + "125": { + "Name": "烈阳惊雷的女武神", + "Icon": "SpriteOutput/ItemIcon/71044.png", + "Parts": { + "31251": { + "Name": "女武神的翱翔翼盔", + "Desc": "这顶翼盔曾见证了阳雷骑士挑落天神,它也见证了天空阖眼。", + "Story": "滚烫的黄金熔岩在女武神脚下翻涌不息,她将表情藏于铁盔之下,如同冬雾遮蔽星辉。\\n\\n最后的天空之子已然沉没,而她也将孤独奔向截然相反的远方。\\n\\n「塞涅俄丝,你想起了谁?」朝夕相伴的翼兽察觉到她那轻微的思绪。女武神沉默片刻,那些众人向天空祈祷的旧时光早已一去不复返。「我想起了谁?我已经想不起任何具体的人了。我是那样炽烈地爱着世人,我又是如此仇恨人性之中的软弱,如今,我却谁也想不起……」\\n\\n翼兽们垂首不语,它们曾见过女武神曾追随过坚定的信念,也陷入过自欺的泡影。\\n\\n那覆面的铁盔之下,如今又是怎样的面庞?又有着怎样的视野?" + }, + "31252": { + "Name": "女武神的骑枪手铠", + "Desc": "这对护手陪伴骑士赢下了所有的战斗。它能够让人紧握最致命的武器,忍受最痛苦的背叛。", + "Story": "银鳞岩在锻炉中嘶鸣。年长的山之民为铸好的护手注入祝愿后,将其赠予身旁的女武神。\\n\\n「柔软,受伤。骑士,坚硬。比云母柔韧,愿你的骨骼。」\\n\\n她接过精致的手铠,轻轻擦拭那银鳞冰甲…她开始遥想自己手握着雷电劈斫而成的长枪、烈焰绽放而成的圆盾,她将冲向天空的战场,拯救所有人——强大只是拯救的必要条件。山之民仔细将真理的箴言烙印在指节上,并叮嘱女武神要始终记得铁手套的柔软之处。\\n\\n「焐热河床卵石,要用掌心。勿将冰川,雕琢成利剑。」\\n\\n可后来,她那近乎极端的使命感和正义感,只将那工匠的祝福灼烧成永不愈合的焦痕。" + }, + "31253": { + "Name": "女武神的启程披风", + "Desc": "这袭披风为阳雷骑士遮雨避尘,陪伴她经历所有的冒险——留下那天空中最醒目的背影。", + "Story": "尚未成为骑士的少女,在导师隐居的山洞中,接受出类拔萃的武艺指导。\\n\\n「做得好。很快,我就没什么可以教你的了。你想用这份力量做什么?」\\n\\n听闻神谕之后,少女心绪便早已不在训练之上。温和的导师看出了她的烦恼心思,轻轻将松脂涂抹在她常用的短剑上。「老师,我想活在真实之中。您听说了吗…雅努萨波利斯的圣女,以及她传来的神谕?」少女担忧着导师劝止自己,却早已暗下决心。\\n\\n「可,什么是真实呢?」温和的导师反问她,「…你需用一生去分辨它,这并不容易。」\\n\\n子夜她悄悄起身,想趁黎明到来之前就匆忙离去,却发现那叠好的披风,早已在启程的行囊之中。" + }, + "31254": { + "Name": "女武神的勋礼马刺", + "Desc": "这对马刺来自阳雷骑士两只翼兽伙伴的馈赠——走在追求真实的道路之上,这是必要的疼痛。", + "Story": "英雄塞涅俄丝身边有两只翼兽伙伴——索拉比斯和露奈比斯,她的坐骑与战友。\\n\\n「我们追随你,塞涅俄丝。让我们见证你弑神取火的序篇吧。」它们信任着自信凌厉的女武神。\\n\\n两只翼兽托付大工匠打造出一对马刺,作为「阳雷骑士」授勋仪式的一部分——「感谢你们的心意,可是我用不上它」她知道那是骑士精确操控坐骑的辅助道具,「你们与我的心意一致,无需借助它的刺激,我们便能无间配合彼此。」\\n\\n「收下它吧,塞涅俄丝。你走在追求真实的道路上,应该明白『疼痛』使我们清醒。」露奈比斯的目光坚定如炬,索拉比斯引导着她的手接过那对马刺。\\n\\n阳雷骑士接受了象征友情的勋礼——若疼痛能让人及时调整方向,那便是必要的疼痛。" + } + }, + "RequireNum": { + "2": { + "Desc": "速度提高#1[i]%。", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "当装备者及其忆灵为装备者及其忆灵以外的我方目标提供治疗后,使装备者获得【甘霖】,每回合最多触发1次,持续#3[i]回合。装备者持有【甘霖】时,速度提高#1[i]%,我方全体暴击伤害提高#2[i]%,该效果无法叠加。", + "ParamList": [ + 0.060000000055879354, + 0.1500000001396984, + 2 + ] + } + } + }, + "126": { + "Name": "恶海逐波的船长", + "Icon": "SpriteOutput/ItemIcon/71045.png", + "Parts": { + "31261": { + "Name": "船长的领航笠帽", + "Desc": "泛着珍珠光泽的宽边太阳帽。海上驰骋的船员们,借此抵挡艾格勒的烈日。", + "Story": "岸边的礁石间,三层桨座战舰的残骸如巨鲸般搁浅——那是征伐海妖的舰船,海浪将船只推回了海岸,却将遇难者留在了大海之中。\\n\\n「法吉娜的勇士啊,无论你是谁,我恳请你站出来保卫斯基亚纳!」国王的悲泣无人回应——与那海妖为敌,结局不外乎化为海上浮尸。\\n\\n「给我艘坚固无比的大船,再给我五十名船员,我来杀死那作恶的海妖!」佩戴着宽边太阳帽的年轻船长,从拥挤的人群中挤出,他那笠帽泛着珍珠般的光泽,为众人惨白的脸庞镀上一层七彩虹晕——他的出现就像是海上黎明,转瞬之间,地平线上已是鱼肚白。\\n\\n「我会给你打造一艘世上最好的船!」工匠们被年轻船长的神采吸引。那巨船的木材能在大海之上永不腐烂,船首还装着从瑟希斯的巨树上削下的木板,拥有预言的能力——\\n\\n「去吧,贤人培养的弟子,众神选中的英雄,去驯服法吉娜的癫狂吧。」三日后,满载着船员的舰船从斯基亚纳出航。" + }, + "31262": { + "Name": "船长的捕光星盘", + "Desc": "捕获星光指引方向的航海罗盘。即使身处昏黑无边的大海中,也会有星光指出前进方向。", + "Story": "乌云如铅铁般挤压着桅顶,暴风雨中舰船如同飘零的浮萍,那宝树制成的甲板在滔天巨浪中也不禁剧烈晃动。\\n\\n「那终年浪静风恬的海域,也染上了海妖乖张暴虐的恶习。」年轻的船长站在舰艏塔楼上,愁眉紧锁盯着远方浓黑的乌云…手腕上的星盘仍然没有回应。\\n\\n一道惊雷落下,主帆索应声而断,水手们乱作一团——年轻的船长呵斥众人,要求桨手们听从号令发力,指挥舵手调转方向,避开一道道如山巨浪…在艾格勒引航的星光闪烁之前,竭力应对法吉娜的盛怒。忽地,船长振臂高呼,那腕上的航海罗盘反射着斑驳星光——\\n\\n「所有人,跟随那道光,我们就要冲破风暴!」\\n\\n水手们鼓足精神,高唱着船歌。舰船如同利刃一般劈开海浪,冲向黎明。\\n\\n「很快我们就要将她带出枷锁~看清前路,准备!出发!」" + }, + "31263": { + "Name": "船长的驭风斗篷", + "Desc": "航海斗篷如同巨帆般飞舞。若长风不助我,我便化为长风。", + "Story": "一人高的青铜弩箭裹着烈焰刺破海雾,却在靠近海妖鳞甲瞬间裂作齑粉。那淡蓝色的腕足将人拦腰缠住,被斩断的腕足在船板上翻滚,啃噬着惊恐的船员。\\n\\n「船员的手脚在空中挣扎,哭喊着我的名字,这是我航海生涯中最可怖的景象。」船长的声音带着唇齿颤抖,他并没有说谎。\\n\\n巨大的海妖浮上海面,那虬结的触须将舰船紧紧抱住,它的背脊如移动的岛屿。大副将烧红的铁矛刺入那上千尖齿的口中,腥臭的黑血染黑了整个甲板。船员们侥幸从一次致命袭击中逃生,船长回首时看见,船尾塔楼被巨大的腕足拍碎,如同尼卡多利的天谴之矛砸碎一枚核桃壳。机会千载难逢,是冲刺,还是逃走,所有人望向船长——\\n\\n「左满舵,桨手们,全速前进!帆面全开,以撞角迎敌!」\\n\\n船长的斗篷在猎猎长风中舞动,船员们亦视死如归——钢铁与鳞甲纠缠在一起,龙骨折断,海妖哀嚎。它的身躯失去了曾经不可一世的伟力,缓缓沉入海底。" + }, + "31264": { + "Name": "船长的踏浪游靴", + "Desc": "破碎的浪花在船长靴下绽放。即便他一去不返,海潮也会带回他的祝福。", + "Story": "不知何处的海滩上,年轻的船长仰面朝天。残阳为破碎的海岸镀上一层黄金…在这片光晕中,遥远的斯基亚纳似乎变得触手可及——他知道,这便是生命中最后的时光。\\n\\n「…我等已然驯服了法吉娜的癫狂。」海妖早已逃往海水更深处,百年内不可能再度侵犯海岸。\\n\\n那块取自瑟希斯巨树上的木板询问着船长最后的话语。它将乘坐着海浪,回到魂牵梦萦的斯基亚纳,传唱英雄的征途,鼓励更多的年轻人驶出海岸。船长望见自己被截断的半身,那是贤师赠予他的长靴,曾助他遍历城邦…眼下,漫长的征途将停于此处——\\n\\n「告诉他们,我还有一片冥海去征服。故乡啊,千万别为我悲伤。」\\n\\n海风年复一年轻拂着斯基亚纳的城墙,海妖的故事,变成了母亲哄睡孩童时的呢喃…那些侥幸恶海逃生的水手们,还在等待船长踏浪归来。" + } + }, + "RequireNum": { + "2": { + "Desc": "暴击伤害提高#1[i]%。", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "装备者成为其他我方目标的技能目标时,获得1层【助力】,最多叠加#1[i]层。施放终结技时,若持有#1[i]层【助力】,消耗所有【助力】,使装备者攻击力提高#2[i]%,持续#3[i]回合。", + "ParamList": [ + 2, + 0.48000000044703484, + 1 + ] + } + } + }, + "301": { + "Name": "太空封印站", + "Icon": "SpriteOutput/ItemIcon/71012.png", + "Parts": { + "33015": { + "Name": "「黑塔」的空间站点", + "Desc": "位面封装的是「黑塔」空间站,它停靠在湛蓝星上空,沿着既定轨道缓缓漂流,寂静的银河像是本书卷等待翻阅。", + "Story": "黑塔女士曾一度为遍历星域的藏品发愁,数量巨大、封装不易,本人更是不愿打理。\\n\\n热情慷慨的星际和平公司随即提出方案,封存智慧与秘密的空间站「黑塔」便由此诞生。站内上下围绕藏品制定详尽的收容措施,力求「于清晰合理之中包罗万象」。现象被特殊容器收纳,奇物被奇物条目规范——大千藏品被分门别类,封藏于站内深处以供研究。\\n\\n随即公司提出共同探索繁星奥秘的倡议,求新探异的学者们纷纷进驻站点,开展学问。\\n\\n科员们大多仰慕黑塔女士,誓愿践行星空理想,探寻寰宇间繁星低语的秘密。他们探秘星空生命的疆域,明辩义理争论的正义,概拓星河原野的风貌,破解宗仪典祀的玄秘,践行格物致知的精神…秉承「传历智识」之理念,从事着自由而广阔的研究。\\n\\n但空间站进入航道后便自行其是,黑塔女士鲜少露面。公司此时才发现,站内满是科员的日常,而天才不见踪影。\\n\\n不同舱段的光照很难让人感到时间流逝,只有在倦怠的生活气息中,可以窥探到一丝痕迹。常有为藏品争论不休的三两干员,随着时间推移扭打一起;也有负责安保人士缺席日常巡逻,躲在行军床上小憩;年长的科员们向后辈讲起过往恋爱经历,伪装成临时杂工的大人物等待着下次转机…研究之余这里亦是生活,望向舷外便知,繁星沿途同行。\\n\\n虽行止有限,科员们仍会以浪漫的方式提起空间站内的庶务生活:星河是隽永的诗篇,「黑塔」空间站正徐徐地翻开书卷。" + }, + "33016": { + "Name": "「黑塔」的漫历轨迹", + "Desc": "「黑塔」空间站建立起那一刻,黑塔女士便失去了兴致。它在湛蓝星上空保持着第一宇宙速度,在卫星轨道上留下环绕的轨迹。", + "Story": "「黑塔」空间站因为其真正主人黑塔女士,经历了无数危机,也渡过了无数危机。\\n\\n满载着全宇宙中最奇异的藏品,就像是垂涎欲滴的肥猪置于饥饿食客的眼前,从来都不是安全的。仅凭公司招募的防卫科员、略显先进的防御系统,空间站还不足以承受来自星间的歹意…黑塔女士预先调遣,空间站留下一道优雅弧线,让谋划已久的太空阴谋来不及上演就已匆匆结束。\\n\\n至于逢凶化吉的情报本事,则被本人轻描淡写地描述为「将别人看书的时间用在了泡咖啡上」。\\n\\n比起意欲窃取藏品的盗贼、目的不明的各式派系,空间站最主要的威胁仍然来自其主人自身。她要是突发奇想,空间站便即刻遭殃。拟态恒星湮灭的奇物、暗星系碰撞的畸变引力场…黑塔女士趁着兴致,将各式藏品收集起来;实际到手后,她又常常失去兴致,再也不予问津。\\n\\n因此,尽管「黑塔」在深空中不言不语,其珍藏的各形态危机却像柄重锋宝剑悬于头顶。\\n\\n上级科员们对危险的现状早已熟稔于心,深知「秘密藏于危险之中」的道理。他们严格守护高度机密,切实按照标准执行收容,将危险隐没于平静之中…在空间站的茶水间里,他们是插科打诨的朋友;在空间站的收容舱深处,他们是技巧娴熟的专家,在这里,秘密将始终是秘密。\\n\\n在湛蓝星的近地轨道上,空间站一如既往地运行着,正如在冰湖表面上推出一枚砾石,它将依旧平缓滑行,悄无声息。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的攻击力提高#1[i]%。当装备者的速度大于等于#2[i]时,攻击力额外提高#3[i]%。", + "ParamList": [ + 0.12000000011175871, + 120, + 0.12000000011175871 + ] + } + } + }, + "302": { + "Name": "不老者的仙舟", + "Icon": "SpriteOutput/ItemIcon/71013.png", + "Parts": { + "33025": { + "Name": "罗浮仙舟的天外楼船", + "Desc": "泛于星海的罗浮仙舟被收拢于球中,玉界门上浮槎去来,若星月之出入。无数人曾来此寻求长生之秘,却又失望而归。", + "Story": "罗浮仙舟数千年前从古老国度出发,横渡深空,谒见神明,求取不死仙药。\\n\\n生态巨舰缓缓驶入星空,如同坠入夜色中寂静的清月,长路漫漫而不知所向。在孤航旅程中,人们交替不断地沉睡、醒来、沉睡…追逐流星的鲸群在天顶陨落,亚空晶格结构体跨越光年延绵不绝。求药使们亲眼见证了超然伟力的存在,暗自欢喜,坚定了寻得长生不死的信心。\\n\\n罗浮仙舟航行数千年渐行渐止,在现实与虚幻混淆不清的边界遭遇「丰饶」之主。药师在舰船上降下神迹,倏忽间「建木」生成。其荫如云,遮天蔽日,其根繁密,包覆仙舟——罗浮仙舟遂如活物般获得了生命。\\n\\n贪求长生之人吞下「建木」果实,寻得梦寐以求的「无尽形寿」。自诩天人的仙舟民开始纵情享受无尽的生命,又以「建木」阐演仙道,造就种种非人奇迹。\\n\\n然而物盛而衰,乐极则悲,日中而移,月盈而亏。直到三劫既出,民不聊生,仙舟民才认清「奇迹」的真面目,是无法承受的灾厄。\\n\\n危难之时,英雄力挽帝弓,斫断建木。仙舟诸民重拾人本尊严,誓愿「复归凡身,清除寰宇不死劫」。随后的岁月里,仙舟开始巡猎星河,以清除长生孽物为己任。狐族重获自由与天空,持明封印污染与遗祸,三族缔结盟契,仙舟联盟于兹成立。\\n\\n繁荣与灾厄在航行中交迭同行,英雄与传说也伴随着历史不断登场。如今罗浮仙舟在得来不易的平和中休养重建,自由的商贸与开放的态度让它重焕生机。\\n\\n长生不老永久地塑造了罗浮仙舟,使它几经沉浮,沉淀出独特的、有关古典与现代的气质。寰宇商人途径此处,只消伫立片刻便能感受到时间留下了什么。" + }, + "33026": { + "Name": "罗浮仙舟的建木枝蔓", + "Desc": "曾经罗浮仙舟因建木生发,成为仙舟舰队之尊;后来罗浮仙舟因建木成祸,自食长寿恶果…建木枝蔓已经牢牢缠住罗浮命运,难以分离。", + "Story": "「丰饶」之主在罗浮仙舟中心埋下因果的种子,赐予求药使们名为「建木」的奇迹。而奇迹之所以被称为奇迹,是因为当它发生时,人们能立刻领会它的意义。\\n\\n建木缔结神实,满溢生命活力,求药使们所追求的无尽形寿蕴藏其中。从此,古老的禁忌与律法化为一纸废话,衰老与死亡的伦理也成为尘封旧史。人们遵循「仙道」对建木数度开发,使得坌土息壤掘之不尽,自在应身血肉化形,鸡犬得智能言…无数难以想象的技术,也在建木垂枝下化为有形。\\n\\n然而,建木却在时间催化下逐渐褪去面纱,初露狰狞,使长寿之人开始承受长寿之苦。\\n\\n仙人们繁衍不尽,却未尝一死。舰船上人满为患、饿殍遍地;仙舟社会少者郁志难伸,老者盘桓高位,更是结构崩溃、大厦将倾…金人叛乱、外敌当头,千年混乱劫余之后,人们又发现了藏在长生血脉中的黑暗,所谓「天人之体」只是超越人智的技术,堕入「魔阴身」的倾向警示仙舟人,自身与孽物仅差一步之遥。\\n\\n万般绝望之时,英雄长矢破空,天裂一射,斫断建木…尽管建木烬毁成桩,但仙舟命运从未与之断绝。\\n\\n它招引着外患侵凌,丰饶孽物数度入侵,开凿血肉扭曲形骸,誓将仙舟民吞噬殆尽;它也诱惑着仙舟民,药王秘传破除禁忌,深入建木丰饶之秘,重铸长生强权帝国…在漫长的外忧内患中,建木遗骸如同暗处绵延不绝的藤蔓,潜伏起来,意图择日再起灾祸。\\n\\n所幸,罗浮仙舟从未对「垂死枯木」放松警惕,他们誓将一切扭曲的源头,带往一切终结的尽头。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的生命上限提高#1[i]%。当装备者的速度大于等于#2[i]时,我方全体攻击力提高#3[i]%。", + "ParamList": [ + 0.12000000011175871, + 120, + 0.0800000000745058 + ] + } + } + }, + "303": { + "Name": "泛银河商业公司", + "Icon": "SpriteOutput/ItemIcon/71014.png", + "Parts": { + "33035": { + "Name": "公司的巨构总部", + "Desc": "位于庇尔波因特的公司总部被封存在位面球中。在星际和平公司的商业宏图之中,没有一颗星球可以置身事外,他们前往深空,是为了将全宇宙的力量集合起来。", + "Story": "亚空间的敲击撼天震地,沉默的巨像孤独地铸造着横垣星河的壁障。自称领受神谕之人开始行动,他们要协助星神克里珀筑墙。\\n\\n宇宙危在旦夕,筑墙更是刻不容缓。渺小的人类无意效仿神明壮举,他们聚集成群,自命为星神的「后援队」,愿意将一切奉献给琥珀王——「后援队」借助存护之力,驾驶舰队去往不同的星系,采购石块、木料、黄金、超钛等建筑材料,片刻不停将建材运向亚空障壁,堆满行星荒原。\\n\\n短暂的黎明发展期结束之后,「后援队」在庇尔波因特站稳脚跟,成立了「星际和平公司」。为贯彻奉献的愿景,他们将目光投向深空。\\n\\n路易斯•弗莱明振臂一呼,远航贸易船队驶离星神克里珀身旁的星系,大宗贸易商品不再局限于建筑材料…他们计划连结银河、采办一切。随后,东方启行为跨越星河的商业世界执规行矩,构筑「信用点」体系,给寰宇中的一切商品制定价格。数以兆计的资产汇聚在庇尔波因特的巨构建筑之下,它像是沉默的黑洞,侵吞着人们关于财富尽头的想象。\\n\\n如今,星际和平公司的舰船遍布星河,仍未停止过扩张。「商业独裁」的言论甚嚣尘上,公司毫不在意,他们自知初心从一至终。\\n\\n公司新人入职培训方式日新月异,近八百个琥珀纪后,唯有一项历史观摩活动从未改变——彼时,公司创始人路易斯•弗莱明站在「后援队」前激情演讲,他提出联合宇宙的宏愿,支援星神保护宇宙的理想。演讲话音刚落,遥远而巨大的敲击声落下,为这庄严肃穆的一刻注入了崇高的使命,那时他们便知道,这就是百折不移的信仰。\\n\\n「一切献给琥珀王。」" + }, + "33036": { + "Name": "公司的贸易航道", + "Desc": "借助「信用点体系」的便利,跨越星际的商贸得以成立。星际和平公司用经济活动连缀繁星,拓展了贸易边界。", + "Story": "「后援队」围绕着星神克里珀身边的星系往来匆匆,旧日舰船轨迹形成了最初的航道。\\n\\n深信着星神所为必有意义的「后援队」,向邻近的星系跨出物物交换的第一步。「后援队」备好运力充足的舰队,稀缺珍贵的物资,以及难以拒绝的条件,无数跨越星系的贸易就此产生。随即,「后援队」掌管航道信息,独占议价权利,率先制定了银河商业铁则。\\n\\n满载着木材、石头、钢筋、超钛的舰队行过星神克里珀身边,如同飞虫盘旋。琥珀王不言不语,未曾投下注视。\\n\\n时移世易,邻近星系的贸易已经不再满足繁忙的「后援队」。两位聪明人决心纵深银河,星际和平公司就此成立。公司提供一切其他星球感兴趣的商品,并用「信用点」标上了公平价格。从此以后,银河的贸易航道建立起来,加入公司商业网络的各星球都能共享同样的货币,购买同样的商品,享用同样的服务。\\n\\n「信用点体系」下的商船在星海间流动,贸易航道交叠重合,交织成泛银河网络。满载着远星异宝的舰船无数次行过星神克里珀身边,仍如萤虫环绕,星神沉默如旧。\\n\\n自「后援队」时代累积的建材,已经堆满星神克里珀身边的每颗星球,数目只增不减。星神克里珀无意采用殷勤的馈赠,祂始终关注着凡人不可预见的危机,不得不以光年为单位铸造障壁。昔日采办物资的小组织,早已成为银河中伸手云覆手雨的庞大势力,他们凝望着无首巨像,从未觉得这一切都是徒然无功。\\n\\n「一切资本的翻滚及增长,都是为了在克里珀有需要之时,能够满足星神的愿望。」" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的效果命中提高#1[i]%。同时提高装备者等同于当前效果命中#2[i]%的攻击力,最多提高#3[i]%。", + "ParamList": [ + 0.10000000009313226, + 0.25000000023283064, + 0.25000000023283064 + ] + } + } + }, + "304": { + "Name": "筑城者的贝洛伯格", + "Icon": "SpriteOutput/ItemIcon/71015.png", + "Parts": { + "33045": { + "Name": "贝洛伯格的存护堡垒", + "Desc": "位面封装的是贝洛伯格行政区最常见的风景:永冬铭碑。人们从这里路过,感受到来自遥远而温暖的目光守护着他们。", + "Story": "几千年前,彼时的雅利洛-Ⅵ拥有四季如春的气候与令人嫉妒的海洋环境。\\n\\n林中缀满硕果,潮汐送来湿润暖意,美酒如甘泉般可随手掬取、人人痛饮。当地的居民极富进取心与活力,修建了道路、城市、海边的别墅以及精美的宫殿。富足滋润的生活似乎总是从晨曦的一杯咖啡开始,到暮色的一杯麦芽酿结束。\\n\\n随后星轨连通了雅利洛-Ⅵ的世界,为这里带来了星间贸易和天外科技。\\n\\n一开始,异界的访客们为追寻地髓矿石而来,这些晶莹剔透的矿物蕴藏着驱动工业的血液,琥珀色的反射倒映出存护的光彩;再后来,异界的访客们为长住久安的生活而来,它的海湾、棕榈树、节奏轻快的乐曲,适合任何疲惫的旅客寻求归宿——人们相信假以时日,这颗气候湿润的星球必将如同其他耀目明星一般在银河闪烁。\\n\\n约摸一千年前,一枚星核划过天际,坠落在这个世界上。\\n\\n随即,整个星球的命运急转直下,如同荒诞的闹剧。暴戾的毁灭军团从天而降,滔天的战火此起彼伏。筑城者们构筑起城墙与战线,百米巨像峨然耸立与龙形巨兽角力——紧接着,毫无征兆的寒潮突然出现,凛冽的风暴不分敌我,吞没了一切,整颗星球万籁俱寂…看不见的巨大空间屏障遮覆了堡垒城市,就像寒夜里怀中护住的烛火,文明因此延续。\\n\\n再后来,这座城市被称为贝洛伯格。" + }, + "33046": { + "Name": "贝洛伯格的铁卫防线", + "Desc": "贝洛伯格的银鬃铁卫矗立在风雪之中,他们排成一线,等待着前来进犯的天外入侵者。铁卫的意志坚不可摧,铁卫的阵线也绝不后退。", + "Story": "灾难来临前,筑城者曾对雅利洛-Ⅵ有过美好畅想。\\n\\n筑城者效仿克里珀伟力,铸造出能够改造行星的机械。数百座「造物引擎」吐息烈焰,轰然行于大地,犹如不倦的巨人园丁修葺荒芜的花田。短短几十年,沟壑与丘陵被整为平原与森林,城市星罗棋布耸立于海岸之畔。\\n\\n「毁灭」的预兆降临后,筑城者将机械悉数投入战场,构筑起最初的「铁卫防线」。\\n\\n毁灭的兵卒们如同蹈火的飞萤,紧随星核而至,在地表划下生灵涂炭的轨迹。曾用于「造物」的机械也不得不沦为凶器,在不属于它们的战场上抡动铁拳;最终,耕耘花园的巨人力尽倒下,仿佛一座座文明的墓碑,标记了阵线逐日溃退的历程。\\n\\n退无可退的那一日,铁卫们握紧武器,身后是仅存的家园。\\n\\n寒潮的到来出乎所有的人的意料。天外的怪物与前线的士兵锋刃交错的瞬间,雪线漫涌天际。一片混沌中,贝洛伯格成了世间唯一的灯火。为了扑灭它,为了守护它,双方陷入了漫无止境的厮杀。铁卫们咆哮着阿丽萨•兰德的名字,返身进入风雪深处,再也没有回来。\\n\\n直到暴雪止歇,贝洛伯格的居民战战兢兢地攀上城头远眺。\\n\\n他们见证了最后的「铁卫防线」。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的防御力提高#1[i]%。当装备者的效果命中大于等于#2[i]%时,防御力额外提高#3[i]%。", + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "305": { + "Name": "星体差分机", + "Icon": "SpriteOutput/ItemIcon/71016.png", + "Parts": { + "33055": { + "Name": "螺丝星的机械烈阳", + "Desc": "位面封装的是螺丝星的核心——行星被囚于由无数杠杆、活塞与齿轮构成的囚笼中,螺丝星的住民美其名曰「钢铁太阳」。", + "Story": "关于机械生命的本源,博识学会的碳基学者们有个意趣的推测:一簇偶然诞生的电子流。\\n\\n电流于大气和岩层中四处流窜,在无数次引力与斥力作用下又分化成大小不一的次级形态——在学者们的自圆其说中,此举无异于碳基生命演化中的「复制」;随后,无数电流又经由行星表面天然形成的晶体管结构随机输出高低不一的电位,缔造了最原始的程序——学者们自鸣得意,正论机械便是如此拥有媲美碳基生命的「思想」。\\n\\n某位机械学者对此提出异议:尚无法解明本身生命起源的碳基生命,何来权利对这谬论言之凿凿?一言既出,寰宇学界便剧烈震荡——机械生命开始重新审视蛮横的「碳基中心主义」、审视自身的本源。\\n\\n然而,螺丝星上的螺丝族却只能暂缓步伐——因星体能源比它们的灵感回路枯竭得更快。它们必须首先寻求种群存续的方式。\\n\\n最终,它们决定践行超越数个琥珀纪的疯狂计划:它们将那濒临死寂的星球当作燃料,用以驱动星体差分机。令人惊叹的齿轮巨构不知疲倦地吞吐刻有空隙的纸带,有条不紊地反复演算。在行星级的能源供给下,庞然机械将模拟出逼真且稳定的超生态系统——它们将围绕母星打造新的家园。\\n\\n行星危机解除,螺丝族暂得歇息。向来理智、乐观、优雅的它们决心以纯粹理性的方式探索起源的答案。\\n\\n庞大的系统中充斥着轴承摩擦的声响,致密的咬合驱动着打孔纸带流动数据。一个分支流淌出复数的分支,无数的分支又指引着数以万亿的齿轮轰响…随后,这些分支再一次次收束、倾倒,坠入熔炉之中,在泡沫的寂灭里归于沉静。在漫长的时间中,程序设定的超生态系统渐趋于一种绝妙的相对稳定——有关机械根源的猜想开始令螺丝族浮想联翩。\\n\\n驱动废星的钢铁架构再次激活了灵动的思想电流。它们将继续思考、探索自身本源何在,直到那举目恒见的机械烈阳彻底燃尽为止。" + }, + "33056": { + "Name": "螺丝星的环星孔带", + "Desc": "行星环承载着螺丝星的一切——有多少人曾意识到密布的矩形孔隙阵列书写了行星系统的真相?", + "Story": "绝大多数螺丝族都有所不知——螺丝星正是无机生命解答本源问题的一次伟大尝试。\\n\\n螺丝咕姆感到有些空虚。解明螺丝星的运作逻辑一事甚至没能在它的智能脉冲波形图上引发哪怕一组异常震荡。\\n\\n他站在自家宅邸的宽阔露台上,仰头遥望着那未曾止熄的行星引擎。方孔密布的行星环从星体背后穿出,这颗星球所承载的一切就坐落在条带之上,以引擎为轴静静公转,日复一日。他已见证过了,这个行星系统的本质实在荒诞到令人绝望:一串优雅的状态转移方程,一只巨大且冰冷的滚筒——这就是螺丝星的全部,别无其他。\\n\\n根据他对方程的解读——行星差分机诞生之初,它的领衔缔造者试图将宇宙本源解释为一种元胞自动机及其递归,而螺丝星本身即为一种生命游戏的实践。\\n\\n螺丝族及其他星球表面的无机生命担任该自动机中的「细胞」,同时也是规模更小的细胞自动机。自动机总由许多更小的自动机构成,一直可以追溯到组成宇宙间一切物质的最小组分。可最小组分是什么?没人知道,螺丝咕姆不知道,那位首先提出打造差分机的学者恐怕也不知道。\\n\\n这就是螺丝咕姆感到空虚的原因。\\n\\n那位学者的尝试难道就此失败了吗?可行星差分机已不知疲倦地运作了数个琥珀纪;这岂不是意味着螺丝族与母星、乃至全宇宙的本源都可归于那串优雅的方程?又不尽然——在这超生态系统彻底崩溃之前,那方程是不可证伪的。\\n\\n他摇晃着盛满机油饮品的精美玻璃杯,视线不曾从那记录着行星真相的星环上移开。巨幕般的打孔环星带不知疲倦,矩形孔隙阵列筛下后夜的月光。螺丝咕姆不住地沉思。他想,递归的出口真的存在吗?无机生命——或更进一步地,宇宙的本源究竟是什么?\\n\\n他真的甘于只做前人思想的见证者吗?\\n\\n「不。」螺丝咕姆得出结论。他决定求取答案。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的暴击伤害提高#1[i]%。当装备者的暴击伤害大于等于#2[i]%时,进入战斗后装备者的暴击率提高#3[i]%,持续到施放首次攻击后结束。", + "ParamList": [ + 0.1600000001490116, + 1.2000000001862645, + 0.6000000005587935 + ] + } + } + }, + "306": { + "Name": "停转的萨尔索图", + "Icon": "SpriteOutput/ItemIcon/71017.png", + "Parts": { + "33065": { + "Name": "萨尔索图的移动城市", + "Desc": "位面封装的是萨尔索图星上仅剩的移动城市之一:风滚草。这座城市从未停下,才勉强做到不被黑夜或者极昼吞没。", + "Story": "若从宇宙的视角看去,萨尔索图星整体因广袤的沙海而呈现出发亮的金色,星球表面的巨大陨石坑群也清晰可见。\\n\\n在某个时刻,奇特的陨石雨连续不断坠入萨尔索图星。「陨石星群」造成的持久冲击与行星形成了特殊的夹角,让星球的自转渐行渐止。像是摁下了「世界停止」的按钮,萨尔索图的昼夜逐步延长,直到日出日落漫长无比,直到没有人能够忍受,直到整个星球的自转停了下来……\\n\\n长达半年的日照酷暑和黑夜严寒既成事实。整个萨尔索图只剩下唯二的移动城市,仍紧紧咬住晨昏线,一刻不停地移动。\\n\\n磅礴的空中堡垒如同体积巨大的雨云,缓缓从金色沙漠的上空飞过,鸣声轰响如雷;所经之处沙尘如瀑,铺天盖地。在巨大的移动城市之上,背负翼装的萨尔索图人在城市建筑间上下翻飞。天灾中侥幸生存下来的飞行民族,属于天空,却又被束缚于天空。\\n\\n清晨,空渔人们从港口出发,俯冲向沙地,猎捕燃素水母,于傍晚回到城市。借着神秘的能量生物,城市勉强地维系着航行。\\n\\n尽管生存延续的危机仅寄托在两片脆弱的羽翼之上,但是萨尔索图人生性乐观,不愿意让沉重的命运压弯了脊梁。他们花费时间与家人一同练习玻璃制成的乐器,将乐声录进玻璃蚀刻之中;他们也爱好结交笔友,将书信放进「蒲公英信箱」里,留给晨昏线另一端的移动城市……\\n\\n地磁场逐渐衰弱,大气层也日渐稀薄。即便末日近在眼前,但生命尚未熄灭,翔鹰便会一刻不停地飞下去。" + }, + "33066": { + "Name": "萨尔索图的晨昏界线", + "Desc": "停止自转的萨尔索图星的日夜周期漫长无比,人们只有追逐着「晨昏交界线」不断迁徙,才能勉强维持住仅剩的生存空间。", + "Story": "自从「陨石星群」造成的停滞开始,「晨昏交界线」便成为了萨尔索图人狭隘的生命线。\\n\\n当一切刚开始的时候,人们仍然以为昼夜交替理所当然。晨昏线拂过大地,翻越山峰、跨过沟壑,给未醒的带去黎明,给将眠的送上晚霞…而当光与暗的步伐缓慢之后,白昼和黑夜不再熟悉,无尽漫长的酷热严寒如同地狱泥沼,将深陷其中的生命缓慢埋葬。于是,挣扎求生的萨尔索图人,搭上飞行的移动城市,追逐着晨昏。\\n\\n登上移动城市「风滚草」的瞭望台,顺着前进的方向看去,前方是白昼,身后则是黑夜。\\n\\n「风滚草」的追赶并非只是为了生存,更是为了尊严的生活。它前进得比晨昏线更快一些,清晨就会步入午后;比晨昏线更慢一些,黄昏便潜入深夜。生性乐观的萨尔索图人还原了每一个「平凡一日」。与生俱来中的浪漫基因,让他们能在安宁闲适的午后吟唱,也能在满缀繁星的夜晚酣睡。\\n\\n然而,顽强执拗的飞翔却终究是陷落了,移动城市的残垣断壁还是被晨昏线甩在了身后。\\n\\n多年以后,两座始终互不相见的移动城市矗立在一起,残骸中炮塔分别指向彼此。想必是某座城市跨越过半颗星球的昼夜奔向了另一座城市,率先挑起了战争。两座城市惨烈的战争痕迹在沙丘之下若隐若现,连同无名的仇恨合二为一,化为了同一座废墟。\\n\\n萨尔索图星沉默着,不知从何时起,它的自转周期渐渐减少,将在无人的未来迎来星球自愈。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的暴击率提高#1[i]%。当装备者当前暴击率大于等于#2[i]%时,终结技和追加攻击造成的伤害提高#3[i]%。", + "ParamList": [ + 0.0800000000745058, + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "307": { + "Name": "盗贼公国塔利亚", + "Icon": "SpriteOutput/ItemIcon/71018.png", + "Parts": { + "33075": { + "Name": "塔利亚的钉壳小镇", + "Desc": "位面封装的是塔利亚上无依无靠的破落小镇:「钉壳」。盗贼们在这个水源地建立破布、钢筋和木板的小镇,为了暂时的和平。", + "Story": "一场意外,慌忙逃生的星际盗贼来到了塔利亚,为了躲避「巡海游侠」的追击。\\n\\n最开始的时候,塔利亚只是被称为「繁星垃圾场」的荒凉地,曾经的灭星战事给塔利亚表面带来了堆积如山的断迹残垣、弥散不去的辐射污染,同时也带走了这里的仅存生机。慌张的盗贼走投无路,却落入了星球表面之下的洞窟,那是鼠类种族曾经留下的隧道…盗贼们逃过一劫,有关「盗贼公国」的理想在遗落秘境中悄然诞生。\\n\\n无数的地穴网络,互相连接,如同巨大的迷宫。更多的盗贼团体被理想吸引,来到这里积累财富、交换技术,为公国打下了基础。\\n\\n越来越多的盗贼在这里定居,蛮荒的星球开始热闹非凡。大盗贼演说着「盗贼公国」的理想,承诺「金库」将用于建立人人公平的国家。但当财富越来越多时,妄图独占它的大盗贼们又撕毁了脆弱的协议。佣兵、暴乱、里应外合…混乱的战争此起彼伏,也许筹划者们从一开始就不相信所谓人人公平的理想。\\n\\n于是痛恨幻想的盗贼们再次回到了「无知者为王」的混沌时代,他们抢占水源建立城镇,嘲弄着公平正义。\\n\\n「钉壳镇」里人人皆是悍匪,他们驾驶着气质暴戾的越野车横征暴敛,与荒漠上其他的匪帮争夺资源,用废铁和旧电线创造了机甲和武器…越是贫瘠的废料堆上,反而越能获得末路狂欢的洒脱。那些甜美的理想如同辐射热风中的一缕狗屁,早已经没有留下什么痕迹了。\\n\\n觥筹交错恍惚间,半梦半醒的盗贼们理解了,「盗贼公国」从来就不是建立什么,而在于摧毁什么。" + }, + "33076": { + "Name": "塔利亚的裸皮电线", + "Desc": "这是从废料场中收捡来电线,它的绝缘层部分脱落,部分残留,但仍然没有退役。在塔利亚的盗匪小镇上,从来就没有真正的废物。", + "Story": "这条裸皮电线是陈旧的,它曾整齐排布在一艘慌忙逃窜的星舰上,直到巨大的冲击让它与潮湿的空气接触一起。\\n\\n整艘星舰被拖入错综复杂的地下通路之中。盗贼星舰上,钢板钢甲被逐层卸下,电源线路被粗暴拆解,它们被用来建立最初的同盟市集。随后,盗贼们在这里积攒财富,畅谈理想…随后,旷日持久的尔虞我诈开始了,互相猜忌与背叛,独裁者和叛徒的战火从地下隧洞烧到了地上荒漠。\\n\\n这条裸皮电线依然是陈旧的,它被匪徒从坑洞中挖出,连接在一辆四面漏风的巨大改装越野车上,奔向远方的水源地。\\n\\n告别背叛战争之后的幸存者们当务之急是寻找塔利亚的水源地。他们驾驶着简陋无比,质量堪忧的交通工具,在满是玻璃碎渣的戈壁上日行千里。悍匪们的车队,时而相互追逐,扬起沙尘与浓烟;时而自由地将人类抛出,扔进车上或者其他任何地方…生存的压力让他们别无他想,只有闷头前进时不会迷惘。\\n\\n这条裸皮电线始终是陈旧的,它又被匪徒从越野车上拆下,添置到小镇的灯箱里,老化的电线致使灯光闪烁频频。\\n\\n自称是「警官」的老流氓建立了最初的「钉壳镇」。他手腕强硬、作风毒辣,凭借着个人魅力将废料场打理得井井有条,小镇也日渐热闹。缺根筋的工程师做出意料之外的废物机器,不要命的废土客也喜欢在地下的竞技场打得有来有回…在夜深的吧台前,他们斟满汽油味的葡萄汁儿,把杯子碰在一起,庆祝着侥幸又活过一天。\\n\\n塔利亚没有什么新鲜事物,不过是老东西随着变动的时代得到新使命罢了。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的击破特攻提高#1[i]%。当装备者的速度大于等于#2[i]时,击破特攻额外提高#3[i]%。", + "ParamList": [ + 0.1600000001490116, + 145, + 0.20000000018626451 + ] + } + } + }, + "308": { + "Name": "生命的翁瓦克", + "Icon": "SpriteOutput/ItemIcon/71019.png", + "Parts": { + "33085": { + "Name": "翁瓦克的诞生之岛", + "Desc": "位面封装的翁瓦克星球上最著名的岛屿——瓦克岛。整座岛屿郁郁葱葱,在名为「西斯腾」的大树上,结满了各式动物的果实。", + "Story": "翁瓦克是颗狭小拥挤的星球,遍布着雨林和岛屿,旺盛的生命力是这最醒目的象征。\\n\\n旺盛的生命力使得翁瓦克赤道附近的雨林遮天蔽日,雨林低处常年不见日照,满是腐生菌类和弱光植物。生存在这里的智慧生物聚集在回归线附近,无论高低的植物在这里都能自然发育,每天都有新的蔬果长成,随时随处都可摘取,当地人也大多以蔬果为食。\\n\\n不过,无论是迁居至此的人类还是土著种族瓦克瓦克,始终对西斯腾大树上的动物果实保持着近似宗教的敬畏。\\n\\n西斯腾大树总是一刻不停结成果实——那些澄黄半透明的球形果实,随着时间逐渐变大、变得沉重,从树枝上垂下,直到果梗承受不住,它便会发出清脆的响声坠向地面。纤薄果皮碎裂开来,各式各样的生物从此处诞生:鱼类、飞鸟、寒带的白熊…在翁瓦克星,他们有着共同的母亲。\\n\\n被称为「魔王」的生物也在西斯腾的果实中诞生,它自醒来一刻便懂得挥动刀斧般的巨钳,向翁瓦克的整个生态宣战。\\n\\n然而每隔六十个自然年,西斯腾大树都会诞下新的魔王,周而复始。翁瓦克住民们对绝望的宿命轮回早有防备,临近魔王苏醒之时,他们便会暂置争端、携手与共,组织起最强的战士驶向瓦克岛…六十年后又六十年,荒谬的讨伐战在狭小地貌上反反复复上演了数百年。魔王是翁瓦克恒常的灾难,文明的缓存被周期性地清理干净。\\n\\n因此,对翁瓦克而言,旺盛的生命们彼此争斗不休,看似变化动荡激烈,实则如同一潭死水。" + }, + "33086": { + "Name": "翁瓦克的环岛海岸", + "Desc": "瓦克岛的海岸线上,海面时高时低,浪潮时涨时落…千年不变的风景,见证了如同潮汐一般的兴衰。", + "Story": "随着西斯腾的果实因丰硕而坠落地面,不同种类的生物在瓦克岛上苏醒、啼哭、随即离开,它们离开海岸线在翁瓦克上寻找自己的栖息地。\\n\\n一开始,星际外来者被当作是莽撞的窃贼,在部落式的「亲切问候」中,逐渐理解了翁瓦克的文明困境。随即外来者乘上当地住民的木船驶向瓦克岛的海岸线,好奇怎样的魔王会从果实中诞生。部落战士们心怀忐忑地潜伏在浅滩上,握紧石器时代的武器,为了六十个自然年的和平安宁,他们早已下定不归家的决心。\\n\\n随着战事深入,外来者查清了「魔王」的面目——那是曾一度绝种的星际虫类,从未有人想过它会如在宇宙角落里以这样的面目出现。\\n\\n惨烈的讨伐结束之后,幸存的少数本地居民带着胜利的消息离开了海岸线,而好事的外来者则悄悄留了下来。他们拨开巨树垂下的树枝,陷进淹没半身的泥沼,在雨林洼地之下,外来者找到深处的管理舱室——至此,关于翁瓦克的秘密得以揭晓:高等文明的物种恢复系统化身西斯腾大树,将无数生命方程解码放出,以恢复星球生态。\\n\\n周期性出现的魔王,不过是茫茫生物库中的一条数据。外来者删除了魔王数据,离开了翁瓦克,深藏功与名。\\n\\n瓦克岛的海岸线上只有潮汐静静拍打的声音,翁瓦克的土著联军列阵以待,确信魔王再也没有降临。他们举杯同庆、彻夜欢歌,畅谈未来。然而两族盟友转身告别之后,便各自策划着独占翁瓦克的战争…没有魔王的翁瓦克,盟约只是一纸空谈。狭小的星球经不起两个种族的冲突,短暂而脆弱的和平从此消失踪迹。\\n\\n瓦克岛的海岸线依旧平静。人类与瓦克瓦克退出历史舞台之后,翁瓦克终于完成了生态恢复。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的能量恢复效率提高#1[i]%。当装备者的速度大于等于#2[i]时,进入战斗时立刻使行动提前#3[i]%。", + "ParamList": [ + 0.05000000004656613, + 120, + 0.40000000037252903 + ] + } + } + }, + "309": { + "Name": "繁星竞技场", + "Icon": "SpriteOutput/ItemIcon/71022.png", + "Parts": { + "33095": { + "Name": "泰科铵的镭射球场", + "Desc": "位面封装的泰科铵星规格最高的竞技场——泰科铵大球馆。球馆内外人声鼎沸,彩旗展动…激动人心的机动球竞技比赛将在万众瞩目中盛大开幕。", + "Story": "泰科铵星曾是公司的沉船港星球,定损业务员会被派去清理旧船残骸,发掘剩余价值。\\n\\n业务员将「派驻泰科铵星」视作一去不返的流放。在这颗小行星上,成山的碳纤维与不锈钢描摹着巨船退役前的轮廓,钢筋废墟上投下虚无的阴影,渴望召回的欲望愈演愈烈。数年间,业务员们在甲板之下抢夺高规零件,穿着推进设备在沉船舱通道中疾速追逃,形成了一套阴影中的「地下法则」…即便如此,困兽们也未能得偿所愿,终究无人返航。\\n\\n困兽们的「地下法则」从未躲过监视,被随身影像传回公司,化为高位者的饭后笑谈。「传统项目部」投资人颔首沉思,从中嗅到一丝「娱乐」的可能性。\\n\\n按照规划,全银河首个以「泰科铵机动球」为主体的竞赛项目将在泰科铵星横空出世。数座星球改造机器降临这里,它们将废弃的星船连根拔起,不留一处阴影。默默无闻的小行星,围绕着「机动球」运动改头换面,转眼之间成为璀璨耀眼的竞技圣地。「届时,将无人会在乎荒诞的原型,留下的只有纯洁的运动精神、以及高额的商业合同」。\\n\\n身着推进器护甲的运动员,变幻莫测的立体赛道,激荡火花的身体对抗…「机动球大赛」一经推出,便跻身银河焦点。终年夜色的泰科铵星上从此镭光四射,不见阴影。\\n\\n大球馆内,球队主客攻防难解难分,声嘶力竭的观众座无虚席,他们高呼战队的名字,高呼球星的名字,山呼海啸的喝彩声经久不绝;大球馆外,泰科铵星也未曾安静片刻,转播授权、特许赞助、广告合同在交易市场上明争暗夺,地下世界的乐透式投注也常常暗潮汹涌,各自欢喜离愁…如同墨水一般的夜色阴翳早已化为镭光底板,默默衬托着竞技场的流光溢彩。\\n\\n泰科铵大球馆从诞生起便一直夜如白昼,谁也不记得褪去的阴影究竟藏在何处了。" + }, + "33096": { + "Name": "泰科铵的弧光赛道", + "Desc": "泰科铵大球馆的标准赛道通常为金属结构外覆光滑混凝土与原木地板。为了让场内观众清晰观赛,大量透明聚碳酸酯材料被投入球馆,战况一览无余。", + "Story": "「传统项目部」召集来星际和平娱乐的运动专家,要求他们剔除所有荒蛮要素,将泰科铵的「地下法则」改造成「能赚钱的竞技比赛」。\\n\\n材料专家率先设计出「机动球」尝试满足需求——直径35厘米,重约30公斤,混合了碳纤维与不锈钢的科技铁球。它无时无刻不追逐着相位灵火的变换,通过无规律移动增加了比赛的意外性。运动装备专家跟进设计,开发出机动球标准推进护甲,方便尖端的运动、医疗企业能够呈现企业素质,确保了稳定收入与安全竞技的可持续性。\\n\\n至此,泰科铵机动球协会正式成立,制定了初版《泰科铵机动球比赛规则》。两支队伍各7人的比赛制度也从此确立。\\n\\n博识学会的赛道建筑师将「竞逐」概念提制成立体环状赛道——标准长度2.91公里,赛道中心平直区域宽5米,两侧弧形区域宽2到14米不等…机动球队员们将在宽敞明亮的赛道上单向飞驰数圈,伴着呼啸声与碰撞声,完成整场比赛。根据实际测试,在赛道高速行进过程中,非连贯的点状光源会在运动员视觉暂留中连接成线,数条幽明可现的流明会形成专属的弧光赛道。星际和平娱乐向富商们发出邀请,承诺他们最受瞩目的竞技应有的曝光率。随即,联赛俱乐部建制完备,最具天赋的球员齐聚一堂、整装待发。\\n\\n星际和平影视独占赛事转播,借助超距遥感,他们将实况比赛放送到殊方异域的角落。顶尖运动员的感官体验也被全程录制,足不出户的观众能直接体验速度与碰撞、呼啸与弧光。旧日沉船港停满观光舰船,纷乱的人群在布满灯光与广告的街头汇集,随后缓慢地流向大球馆内。他们确认好席位,四处张望,满眼尽是横幅彩旗与麦芽飞沫,明亮的赛道在探照灯下静静伫立。\\n\\n在山呼海啸的欢呼声中,第一场比赛开始了。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的暴击率提高#1[i]%。当装备者的当前暴击率大于等于#2[i]%时,普攻和战技造成的伤害提高#3[i]%。", + "ParamList": [ + 0.0800000000745058, + 0.7000000006519258, + 0.20000000018626451 + ] + } + } + }, + "310": { + "Name": "折断的龙骨", + "Icon": "SpriteOutput/ItemIcon/71023.png", + "Parts": { + "33105": { + "Name": "伊须磨洲的残船鲸落", + "Desc": "位面封装的是塔拉萨的伊须磨洲自治区。仙舟「岱舆」断舰坠毁于此,启迪了伊须磨洲文明。", + "Story": "「在很久很久以前,众神的宫殿自高天之上陨落。」\\n\\n先是大气层外的影子,紧接着是大气摩擦的火光,最后它露出了全貌——那是一座偌大的宫殿,即便聚集起整个伊须磨洲的工匠,也造不出的伟物。它下坠得很缓慢,就像是凝结在天边一样,伊须磨洲的海洋足够宽阔,但没人确定它足以容纳这座自高天之上陨落的仙宫。\\n\\n「一些人四散奔逃,一些人留在海底和陆上的村落中,等待着神陨的降临。」\\n\\n陨落的仙舟「岱舆」残舰撞击了塔拉萨行星表面。伊须磨洲海域中心被撞出深井似的水坑,七个行星日后才逐渐平复。宏伟的废墟静默地屹立在海床之上,宛若神骸,悲凉又壮丽。劫后余生的伊须磨洲人原本就生活在海底,他们惊叹、惋惜,熟悉的家园被天外仙宫砸得粉碎。他们欢呼、雀跃,「神陨」之后,「岱舆」的断舰残骸成为了他们新的家园。\\n\\n生存条件改善,伊须磨洲人有了更多时间和精力用于思考。环顾天降宏伟废墟,他们终于来得及提出重要的问题:「他们」是谁?「他们」从何而来?\\n\\n彼时,伊须磨洲人不知冶炼金属,也尚未发明文字。只好用想象力弥补知识,用故事理解一切。于是,「传说」诞生了。传说口耳相闻,「神话」便应运而生。神话构筑认知,「文明」便由此创生。星移物换几百年以后,塔拉萨已成为了仙舟联盟的贸易伙伴,伊须磨洲的水居者们第一次踏入「仙宫」,第一次见识到仙舟全貌,也终于知晓了「神陨」的真相。\\n\\n学养良好的伊须磨洲人总是将自己视为「岱舆」的某种存续,「岱舆曾追随的即是我们应追随的,岱舆曾抗击的即是我们应抗击的」。当他们谈起过去的故事时,依然会如此开头——\\n\\n「在很久很久以前,众神的宫殿自高天之上陨落。」" + }, + "33106": { + "Name": "伊须磨洲的坼裂缆索", + "Desc": "坠落的仙舟「岱舆」断舰永远地碇泊在异乡,也许是时候解开缆索,让它返航了。", + "Story": "随着文明启迪,伊须磨洲人不再将断舰中的遭难者们视为陨落的神明,但这分毫不改变他们崇敬之情。伊须磨洲的诗人如是吟咏:「大海吞没的是凡人,魂灵却永生不死。」\\n\\n按照伊须磨洲的历法,每年潮骚月的第二个休息日是「神陨节」——水居者们吟诵经文、吞食草药、随着水流跳起怪异的舞蹈,以纪念那些自身陨落却为伊须磨洲带来庇佑的「神明」。到了近现代,「神陨节」逐渐失去原本的宗教意义——歌谣代替了经文,美食取代了草药,只剩下怪异的舞蹈作为文化遗产传承至今。\\n\\n最近数百个星历年中,伊须磨洲毫不吝啬地将独特的文化与外界共享,神陨节的形式也在悄然发生着改变。\\n\\n伊须磨洲的陆地城市通常是年轻人的世界,神陨节期间更是通宵达旦、彻夜笙歌。域外访客们常常选择神陨节期间共襄盛举,尤其仙舟游客都很喜欢这里,他们钟情于城市中生机勃勃的气氛,如火焰般热辣炽热、如海啸般势不可挡。随着青春期过去,水居者肺部会逐渐萎缩,颈侧演变成鳃状,手脚和双眼也会变得更适合海底生活。诗人们总是说「伊须磨洲人将喧闹狂欢的青春留给了陆地,将沉静肃穆的暮年留给了海洋」。\\n\\n在仙舟天驱商会推动下,神陨节多了一项仪式——潜入「岱舆」断舰中搜寻到仙舟人遗骨敛入星槎,发射至塔拉萨所属的恒星。\\n\\n伊须磨洲人接触到「岱舆」历史的同时,也了解了陨落时刻的悲剧:当岱舆仙舟四分五裂,一切都已无可挽回之时,岱舆的领袖青竹即刻决断,誓用壮绝的牺牲断绝寿瘟诅咒的污染。仙舟联盟希望陨落的英雄们能得到体面的慰灵奠仪,而免遭罹难的伊须磨洲人也给出了自己的回答。\\n\\n神陨节的夜晚的某个时刻,狂欢戛然而止——青年、孩子与仙舟人们坐在岸边,年长者浮出水面,肃穆地凝望着海平面。紧接着,几艘星槎破水而出,自海底向着恒星飞去。\\n\\n星槎上镌刻着一行秀丽的伊须磨洲文字——「你应为溺亡的水手解下缆索。别哭泣,我死后你便能平安航行。」" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的效果抵抗提高#1[i]%。当装备者的效果抵抗大于等于#2[i]%时,我方全体暴击伤害提高#3[i]%。", + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 0.10000000009313226 + ] + } + } + }, + "311": { + "Name": "苍穹战线格拉默", + "Icon": "SpriteOutput/ItemIcon/71026.png", + "Parts": { + "33115": { + "Name": "格拉默的铁骑兵团", + "Desc": "位面球中封装的是格拉默帝国盛名在外的铁骑变形鞘。无数白银机甲被装载进舰船,驶向星系外缘,抵御自深空而来的虫群恶蠹。", + "Story": "苍穹帝国格拉默享有数万光年的广大疆域,远眺银河,雄心勃勃。在帝国最强盛的纪元里,格拉默的女皇,至尊无上的泰坦尼娅陛下建立恢宏的舰队,誓将文明硕果带往所有蛮荒的边境,令其领略帝国的仁慈,归于一统。\\n\\n然而远征最终折戟沉沙,自天幕彼端,虫裔汹涌而来、无穷无尽。格拉默的军队抗击,失败,抗击,再失败…殖民地尽数失散,引以为傲的钢铁舰队接连沦陷。在生有复眼与鞘翅的群魔围攻之下,格拉默子民的呼告声被绝望淹没,苍穹从此支离破碎。\\n\\n直到某一日,身披机械战甲的骑士从天而降,将铺天的蠹虫歼灭殆尽。银白的铁骑从此往返于帝国各个星区,跨越满目疮痍的疆土,抵挡覆灭星系的灾厄。他们宛如为对抗虫群而生的战士,无人知晓这些铁人面具下的真容,但他们的降临有如神明垂恩,令苍穹的曙光再现人间。在女皇的统率下,格拉默的铁骑兵团驰骋天际,终于遏阻敌潮,为帝国带来片刻喘息。\\n\\n但在和世仇永无休止的战斗中,帝国变得越来越像自己的敌人——越来越多的铁骑飞上高空,一如虫潮来袭的那一日,将苍天遮蔽。人们投向女皇和骑士的视线,已然和对待虫群异类的恐惧目光毫无二致。也许终有一日,帝国会获得它想要的胜利。可是那一天,格拉默是否还是人类安憩的乐园?\\n\\n在战火不熄的格拉默边境,铁骑兵团构成了最后的防线。战舰之上,沉默的骑士们身负使命,承载着整个帝国的希望,迎击淹没群星的敌潮。" + }, + "33116": { + "Name": "格拉默的寂静坟碑", + "Desc": "鼎盛的「帝国」格拉默化为了尘埃。没有任何东西能证明它往日的辉煌,唯有星尘、机甲、舰船与虫群的残骸飘荡在真空中绵延成河,维持着惨烈战线的原状,也成了它陨落的纪念碑。", + "Story": "博识学会的史学家认为格拉默共和国毁于虫潮之灾;而另一种观点称,格拉默共和国毁于对强敌的全面超越。\\n\\n为了自虫群的恐怖攻势下扭转局势,执政议会孤注一掷,决心为适应战争而动摇人类的本质——创造出「为战而生」的兵器。\\n\\n这一切的成果便是「泰坦尼娅」。不掌握任何权力的女皇以心灵感应指挥、约束着与她相连的骑士。在这些战士被编织的梦中,存在的意义即为守护泰坦尼娅和她的「帝国」。在短暂的生命中,他们学习、战斗,接受女皇的统领,无畏迎敌,又光荣战死。\\n\\n无人知晓这一谎言是何时被揭破的。是从格拉默领土上的旧人类低于某个比例的那一天开始?是从科学家们发现女皇开始向囚禁发起反抗的那一天开始?还是…当虫群的攻势消散殆尽的那一天开始?\\n\\n人们只知晓铁骑兵团为不存在的「帝国」付出了一切。在数十年的血战后,机甲与虫肢的残骸化为漫天碎片洒在格拉默星域的每一处,连缀成一条「死亡之河」。当残余的虫群再也无法构成威胁,议会的领袖敲响和平的钟声,告知万民他们驱散了遮蔽苍穹的天灾,而共和国将重新迎来黎明的曙光——但到来的却非白昼,而是另一场黑夜的伊始。\\n\\n那之后,名为格拉默的文明消逝了,人们渴盼许久的和平永远降临在了无主的星域。星尘与残骸汇成长河,一同在星间静静流淌。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的攻击力提高#1[i]%。当装备者的速度大于等于#2[i]/#3[i]时,使装备者造成的伤害提高#4[i]%/#5[i]%。", + "ParamList": [ + 0.12000000011175871, + 135, + 160, + 0.12000000011175871, + 0.18000000016763806 + ] + } + } + }, + "312": { + "Name": "梦想之地匹诺康尼", + "Icon": "SpriteOutput/ItemIcon/71027.png", + "Parts": { + "33125": { + "Name": "匹诺康尼的堂皇酒店", + "Desc": "位面封装的是匹诺康尼的主体——「白日梦」酒店。在此下榻的宾客将去往美梦的世界,在无所不可的大都会中,享受纸醉金迷的盛宴。", + "Story": "侍者们带着整齐划一的笑容鞠躬执礼,伴着音乐朗声迎宾:「欢迎光临盛会之星!美妙梦境欢迎您。」宾客们微笑前行,接过注满气泡的饮料一饮而尽。\\n\\n景色渐渐光怪陆离,感知也仿佛丝绸扬起。异乡的客人们超脱重力,信步于墙壁。奇异的玩具获得生命,在街上游荡欢庆。泉水漾作巨鲸,遨游于广厦堂厅。推开窗棂,遥望所见不再是深空的群星,而是城市川流变幻的光影,捧起巨钟和剧院不绝的回音。宾客此刻终于意识到自己从未苏醒,而是在梦中见证匹诺康尼的真容——时光永驻的梦想之地。\\n\\n人人皆知,在「家族」的治理下,匹诺康尼的大门向群星开启:为了超越现实的体验,为了灵感迸发的刺激,为了抚平烦扰与伤痕——上上之宾纷至沓来,交出痛苦,换得安宁,饮下佳酿,徜徉于梦的海洋。有人在此度过难忘的假日,满足离去;有人则为歌舞盛会沉沦,就此定居。繁星簇拥的酒店是织梦者的明珠,造梦者的国度,逐梦者的乐土。\\n\\n鲜有宾客知晓尘封的历史:编织梦境的纱线产自现实。今日匹诺康尼天鹅绒般轻薄的华贵,诞自咸涩的铁锈、沉重的镣铐,和被剥夺的自由。盛会之星曾是公司的监牢,数之不尽的囚犯被迁移至此,为忆庭打捞汹涌流溢的忆泡。人们重复天无宁日的苦劳,直至身躯似灌铅般沉重,灵魂却变得如泡沫般轻巧:不知何时开始,狭小的牢房将现实隔断,人们的意识却在梦中联缀。在午夜的钟声里,那共同的梦境如此真实,反倒显得现实如此虚伪。\\n\\n直至「毁灭」熔断公司的铁链,「开拓」将边陲与群星相连,「同谐」应邀而至,撒下和平的种子。自由终于破土发芽,并为最初的美梦添上新名——「匹诺康尼」。\\n\\n如今,破败的监牢已无迹可寻。梦境中,万千高楼拔地而起,荒漠戈壁被修葺一新,变作通都大邑——逐梦之人追寻财富机遇的新大陆,寻欢之人纵情声色犬马的乌托邦,「盛会之星」的往昔如同偶然间落进柜底的相片,切实存在,但已无人问津。\\n\\n如今梦想之地欢歌悦耳,过往杂音化作趣话闲谈,不声不息地遗落在某场喜剧的幕间、某部卡通的花絮,或某本杂志的边栏。" + }, + "33126": { + "Name": "匹诺康尼的逐梦轨道", + "Desc": "匹诺康尼的梦境都市里,复杂的轨道盘绕于楼宇之间,托起游客搭乘的球笼,将五色缤纷的梦连为一体。", + "Story": "造访过匹诺康尼的宾客一定会赞同,「建于美梦之上」并非浮夸譬喻,而是千真万确的陈述。富丽堂皇的酒店不过是盛会之星的冰山一角,「下榻入梦」才算是正式踏入匹诺康尼。自此,由十二片梦境构成的梦之国度在客人眼前缓缓铺开。\\n\\n初到的客人一时或为这狂欢的舞台无所适从。但不必惊慌,抬头看看,在重楼飞阁间交错的金属轨道,和轨道上飞快滚动的「球笼」,乃是这座梦境城市最为瞩目的交通方式,众宾客们游历城市各处的向导。\\n\\n自中央车站起始,错综复杂的球笼轨道如同大都会的血脉,无论是在「黎明的时刻」地底管道、在「热砂的时刻」辽阔原野,还是在「星辰的时刻」闪耀赛场,彩色的圆球翻滚不休,将人流准确高效、安稳舒适地送往各个站点,为匹诺康尼的梦境注入不眠的活力。\\n\\n梦为一切披上轻薄曼妙的质感,一颗颗坚果般的「球笼」被视作梦想之地的载具和玩具。却极少有人记得:「球笼」本是「囚笼」。通往美梦的车流,原是关押犯人的囚具。\\n\\n久远之前,公司将数量庞大的囚犯送往阿斯德纳星系,试图阻止一场灾难的蔓延。人们在此回收忆质,逐渐在现实与幻想间迷离。真空中的球形工作舱成了囚犯们难忘的「记忆」:坚硬的曲面内壁、难受的翻滚体验、每日无比煎熬的出勤——或许这些痛苦过于深刻,重获自由的人开垦荒芜梦境时,球笼亦随之降临。\\n\\n但今时不同往日,和平与自由诞下乐观的精神:与其一遍遍销毁挥之不去的噩梦,不如为其添上这里应有的色彩,将之吸纳、包容——于是过去的「囚笼」,变作今日的「球笼」。\\n\\n此刻,匹诺康尼的城市中遍布快速流动的彩色球笼,和其中传来的轻微震动…悄声隐藏在梦境都市的光怪陆离之中,与那些雄心壮志、欢声笑语融为一体,一如时光永驻的梦想之地。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的能量恢复效率提高#1[i]%。使队伍中与装备者属性相同的我方其他角色造成的伤害提高#2[i]%。", + "ParamList": [ + 0.05000000004656613, + 0.10000000009313226 + ] + } + } + }, + "313": { + "Name": "无主荒星茨冈尼亚", + "Icon": "SpriteOutput/ItemIcon/71030.png", + "Parts": { + "33135": { + "Name": "茨冈尼亚的母神卧榻", + "Desc": "位面封装的是茨冈尼亚-Ⅳ最宜居的地带——死寂荒漠「母神卧榻」。三重眼的地母神沉默而朴素,以其厚重的身躯无言地包罗茨冈尼亚的一切生者和死者。", + "Story": "谈及公司「市场开拓部」主管奥斯瓦尔多•施耐德,人们尤其喜欢讨论他上任时的三把火——年轻的狂信徒仅用短短两年就跨越了严寒、恶疾和死亡,解决了开拓部数个琥珀纪悬而未决的三大难题。名为茨冈尼亚-Ⅳ的荒星便是其中之一,那里死寂荒漠、氏族世仇…困境层出不穷。\\n\\n茨冈尼亚-Ⅳ位于临近三大星系的交界地带,长期处于多颗恒星的星风作用下,是银河远近闻名的「暴风眼」。星球表面的生存环境极端恶劣,诸多文明因此或迁徙其他星系、或毁灭于自然灾害,如今只剩下极少量的智慧种族留存,博识学会的学者将其统称为茨冈尼亚人。\\n\\n实际上茨冈尼亚人分化出诸多氏族,大多以游牧为生,其中少数还建立了颇具规模的集权政体。\\n\\n他们同享一种语言,通过联觉信标的转译,你会知道「卡提卡」代表剥皮刀,是茨冈尼亚人里最嗜血的蛮族;「埃维金」的意思是蜂蜜,一些迂腐固执的人则坚称他们是窃贼。他们同享跨越琥珀纪的世仇,于无尽的荒原中上演着弱肉强食的血腥循环。直到身着黑衣的天外来客从天而降:茨冈尼亚人在琥珀的光芒下暂归一统,无休止的自然循环终于暂告一段落。\\n\\n随后,在寰宇巨企的指导下,茨冈尼亚人依据《宪章》建立茨冈尼亚联合酋长国,向文明的宇宙迈出了第一步。\\n\\n可惜这份团结和发展不属于埃维金人和卡提卡人。茨冈尼亚人中部分不怀好意的投机分子对前者的机敏与狡猾心怀忌惮,又将后者贬为绝无可能开化的食人野兽。尽管他们对「存护」尚且只有一知半解,但他们明白总得有人为之付出牺牲。于是,腐败者们借助一种极为先进的议事规则,将两氏族的族人放逐于漫天黄沙中。\\n\\n为表歉意,他们特地在决议案中声明「埃维金人永远享有自治自决的权利」——这句话的意思是,今后两氏族人再度陷入纷争时,他们便可以合情合理合法地无动于衷了。" + }, + "33136": { + "Name": "茨冈尼亚的轮回纽结", + "Desc": "绿松陨石被埃维金人细细磋磨,又以金线翠缎穿之。他们说护身的纽结绝不应被黄沙埋没,而要璀璨得如同「卡卡瓦」之夜里自死亡中脱胎的神体。", + "Story": "埃维金,茨冈尼亚语中意为「蜂蜜」——这种约定俗成的称呼如今已彻底遗落于宇宙的历史长河之中。\\n\\n正所谓空穴来风:埃维金人天生拥有姣好面容和绚丽双眸,加之天生的高情商,非常擅长博取陌生人的好感。然而,这种天赋为他们招来了嫉妒和仇恨:那些眼红的势利小人开始了无休止的诽谤污蔑,而此种非议也在银河间不胫而走。众口铄金,本就是边星小民的埃维金人有苦难言,只得默默承受种种猜忌。\\n\\n埃维金人喜爱花纹繁复的织物,也偏爱宝玉——尤其是茨冈尼亚绿松陨石——打造的首饰。理由很简单,只有这种宝石才能与他们神话中的地母神自死亡中脱胎的神体媲美。\\n\\n他们的母神被称为「芬戈-比约斯」,执掌与生育、旅途与诡计有关的一切。在埃维金人的信仰中,她通常被描绘为生有三只眼睛的左掌。埃维金人通常仅以口头祈祷的方式向她表示敬意,他们相信母神如茨冈尼亚的群山一样沉默且朴素,造像和赞歌只会使自身远离她的庇护。\\n\\n埃维金人通过母神体认世界:大地、群山与其包罗的一切都属于母神神体的一部分,而这尊神体会在每一历年的最后一天迎来死亡。\\n\\n最后一天里,光辉的神性将升入夜空,化作灿烂的极光,并在次日重新诞生。因此,埃维金人在新历年的第一天举办名为「卡卡瓦」的祭典,编织名为「轮回纽结」的祭器,将其投入篝火,欢庆母神诞辰。\\n\\n市场开拓部在事故报告中表示,那场触目惊心的对抗就发生在「卡卡瓦」之夜:那夜风雨交加,云雾吞没了天上的极光,本应视之为噩兆的埃维金人却前所未有地振奋。他向一位氏族少女问起原因,随后得到了这样的回答——\\n\\n「雨水是母神的恩赐。这是她在召唤我们,要我们举起武器,为自己的未来而战。\\n「雨会长伴我们,雨会保佑我们。在雨中,我们要光荣地死去。」" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的暴击率提高#3[i]%。当敌方目标被消灭时,装备者暴击伤害提高#1[i]%,最多叠加#2[i]层。", + "ParamList": [ + 0.0400000000372529, + 10, + 0.0400000000372529 + ] + } + } + }, + "314": { + "Name": "出云显世与高天神国", + "Icon": "SpriteOutput/ItemIcon/71031.png", + "Parts": { + "33145": { + "Name": "出云的祸津众神", + "Desc": "位面封装的是被一刀斩开过去未来的出云。出云曾遍历不堪言状的生存战争,也曾有过饫甘餍肥的辉煌岁月…如今荒土业已无处可寻,唯余下埋葬往昔的剑冢。", + "Story": "两颗行星交织着彼此悲惨的宿命,围绕一轮漆黑的大日跳着永恒的轮舞。\\n\\n最初,其中一颗行星孕育出了人类,他们俯首,将脚下的土地唤作「出云」;又抬头,指天上的世界为「高天原」。于史无载的某日,「八百万神」自高天原垂迹。以神为名的恶兽使天穹倾覆、海川燃烧、大地崩毁——人们惊觉,那并非是为了统治、支配或掠夺的入侵,凶神仅为猎杀而来。\\n\\n存亡之际,出云踏上「神刈」的道路,穷举国之力斩落大祸「都牟刈神」,将其兽体锻造成最初的「诏刀」。以彼之道还施彼身,通过吟诵蕴含于刀身中的真言,持刀者便可将高天原的神业握在手中,以之对抗恶神,救天下苍生。由此,出云国开始了漫长的征伐,以不可胜数的牺牲换来一位又一位神明的陨落,尽折人间万千剑,终铸成「护世诏刀」十二柄。\\n\\n在残酷的生存战争中,仅用不足十个琥珀纪,出云国便借诏刀伟力,将未开化的黑暗世界点亮,建立起虹霓缭乱的城邦,那过去遥不可及的高天神国,也已近在咫尺、唾手可得——但历史在这一刻戛然而止,两颗行星的存在于旦夕间灰飞烟灭,消失得无影无踪。\\n\\n如今,边星「出云」的过去只能在宇宙的只言片语中寻得。针对它的消亡,学者们众说纷纭,任谁也无法解开谜团。出云的历史本应是条流淌的长河,可它却被一刀斩断,种种过往与将来皆消失在空无的彼岸。难道它不曾存在,只是一段被虚构的故事?难道它未曾发生,被搁浅在倒果为因的海滩?这是「原始博士」又一场惨绝人寰的实验,还是「贪饕」从银河尽头归来的预兆?\\n\\n只有那轮漆黑的大日知道答案。然而祂沉默,从不言说。\\n\\n因为所发生的一切必将归于终结,而已终结的一切必将再度发生,宇宙在祂的阴影下中永劫回归,出云不过是一个省略号的注脚。" + }, + "33146": { + "Name": "出云的终始一刀", + "Desc": "出云人借由刀穗将利刃系于腰间。他们行走世间,以刀狩神,又以神骸锻刀…如此循环往复,出云走向繁荣、走向幻灭、走向空无。", + "Story": "两颗行星交织着彼此悲惨的宿命,天岩户间散落着一段故去的歌谣。\\n\\n那歌谣无始无终、无声无息,来自无人之口,传往无人之耳。它如是写道:\\n\\n高天原万里迢迢一如出云,原乃是极乐净土天成地平。\\n天地变漆黑大日引动潮汐,似迁徙众神垂迹来势沄沄。\\n八百万祸神显世屠戮无情,怎料想无上权柄反遭窃行。\\n出云国折剑七万三十三柄,铸为尊护世诏刀一十二名。\\n\\n其一为「真」,斩「都牟刈神」所铸,可令凡人遍观法理,解构万象再造神迹;\\n其二为「天」,斩「天常立尊」所铸,可令高天变作墙垣,祸津众神穿行维艰;\\n其三为「鸣」,斩「建御雷神」所铸,可令雷光撕裂长空,星流霆击施罚天刑;\\n其四为「岚」,斩「志那都彦」所铸,可令裂风摧折大地,云奔雨啸狂飙不息;\\n其五为「霜」,斩「天之冬衣」所铸,可令时序霜结凝滞,冻土无垠刹那难逝;\\n其六为「命」,斩「石长比卖」所铸,可令荒冢遍开花丛,生生死死流转无踪;\\n其七为「烈」,斩「迦具土命」所铸,可令炽火燃烧尘寰,赫赫炎炎烛天燎原;\\n其八为「觉」,斩「八意思兼」所铸,可令水镜鉴往知来,不见虚实千秋万代;\\n其九为「础」,斩「大山津见」所铸,可令列岛高悬天边,山坼地裂崩碎阵前;\\n其十为「千」,斩「大己贵命」所铸,可令凡众连缀成络,形影无数潮起潮落;\\n十一为「束」,斩「久那止神」所铸,可令歧途尽入樊笼,邪祟诸恶咫尺皆空;\\n十二为「喰」,斩「八十枉津」所铸,可令常世剥蚀朽坏,神鬼难辨四魂两拆。\\n\\n而后幽世皆扫,鸣金罢鏖,尽断十二寒耀;\\n空余荒魂鼓噪,黑日昭昭,终铸负世二刀。\\n其一为「始」,其二为「终」;以人为始,以鬼为终。\\n寸断声止,落花枯荣,败者归无,胜者…成空。\\n\\n跛脚的僧侣唱着不成调的歌,持柄神力者,亦向着众神退行。\\n在大日的见证下,那曾经名为「出云」的土地上,人、神、鬼…皆已无处可寻。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的攻击力提高#1[i]%。进入战斗时,若至少存在一名与装备者命途相同的队友,装备者的暴击率提高#2[i]%。", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + } + } + }, + "315": { + "Name": "奔狼的都蓝王朝", + "Icon": "SpriteOutput/ItemIcon/71034.png", + "Parts": { + "33155": { + "Name": "都蓝的穹窿金帐", + "Desc": "位面封装的是青丘步离的穹窿金帐。与步离人留在银河中的蛮野名声不同,他们拥有非凡的生物技术。狼子们汇聚在伟大的巢父都蓝之侧,将天上众星视为牧畜,逐驰其间。", + "Story": "狐人与步离人远古歌谣的开篇,无不怀念咏诵着「青丘之星」的膏腴沃土与宜居气候。但若仔细辨读,有心人会发现这只是「战争」这一恒久主题的引子。\\n\\n凭借耕种经商的才能,有狐氏族傍着潺潺河川,兴建起繁华城邦;而犬戎之子则在极光浩荡的苍天下,逐猎放牧于草海之间,聚成星罗棋布的集落。商人嘲笑牧人蛮野,牧人唾弃商人狡诈。但他们都要面对自然循环严酷拷问——「狐夏」与「狼冬」。\\n\\n狐神恩赐的丰收之夏中,两族休兵罢战,各得满足;一旦狼神降下白霜,雪线自极地蔓延开来,饥馑将迫使双方攻伐不休。\\n\\n歌谣说到,漫无止尽的狼冬逗留不去,即便青丘的太阳周旋了三十三次。匮乏与饥馁灭顶而来,即便是图腾上崇拜的动物,人们也不得不食之果腹。预见到遍地白骨的结局后,一位救世主攀上了世间至高的山峰——在狐人神话里,人们称她为「涂山」;但在步离人歌谣里,人们称他为「都蓝」。无论那位救主所唤何名,他向长生主许愿赐予众生活下去的给养。于是山巅裂开,甘甜如醍醐的「赤泉」自缝隙中涌出。\\n\\n吞饮赤泉的人们从摄食的兽肉中取得了力量、灵敏与强韧。他们的血脉中也澎湃起了兽的狂野,兽的形貌越发明显——世界就此变改,不复从前。\\n\\n以赤泉为媒,新生的犬人们一切器物给养皆从中造出——田野中种植的不再是稻菽而是视肉;遮蔽身躯的不再是葛麻织物,而是胞衣;即便是令青丘文明恐惧不已的寒冷雪境,也变得不足为惧:犬人们在极地培育生物薄膜,塑成温暖的穹帐,自此将狼冬的困苦隔绝在外。\\n\\n后来,青丘剧变与所有短生种化为长生种时经历的并无不同——人口膨胀、生态崩溃、内部战乱…无论犬人们向长生主如何祈告,再也没有得到回音。于是他们明白了一个道理:长生主赐予的一切已悉数具足,想要活得更好,便要靠自己夺取。\\n\\n汇聚于伟大的巢父都蓝之侧,犬人们将目光探向长生主高踞的天空。群星熠熠,如同亟待奔逐的牧原。他们将为这些星星上的文明带去「狼冬」。\\n\\n很久以后,宿敌仙舟人称他们为「步离人」。步离,是青丘语中「狼」的意思。" + }, + "33156": { + "Name": "都蓝的器兽缰辔", + "Desc": "是缰绳、是锁镣,亦是皮鞭。高过战兽腿的步离青年被教会的第一个道理就是:永远要把缰绳握紧在手里,否则自己将成为被奴役的牲畜,甚至饲料。", + "Story": "在步离人的语言里,缰绳的别名唤作「亚萨•奇塔」,意即「活的书」。\\n\\n猎群巫者在双隆月相会之刻、夜空光辉最盛之时,将缰绳作为成年礼物赐予都蓝子嗣们。这条空白缰绳将是记录他们一生战斗历程的卷册。\\n\\n成年礼甫一结束,步离人必须走进武器牧场,从基因巫术筛选和育种的「器兽」中挑选、驯服自己第一匹战骑。以被征服者为饲料的器兽有着惊人的敏锐和凶残——与未来的主人比起来,器兽们不过是羔羊。月光唤起体内涌动的狂野之血,步离青年们与器兽互相追逐、角斗。有人死于兽吻,那是羸弱的下场;有人诛戮同胞,那是猛兽的分配法…步离青年使中意的坐骑绊倒在地,将带有神经刺鞭的缰绳勒在它的脖颈上——牲畜被未来主人的心灵感应震慑了,就像挨了几百次皮鞭般温驯。当它主动驮起主人时,一名合格的步离人「索牙」(武者、骑手)诞生了。\\n\\n从此步离缰绳便成为战斗经历的记叙者,缰绳上从此渐渐挂满了划痕、结扣与坠饰。\\n\\n饱经训练的索牙们在「昂达」(统军百夫长)的带领下穿上水母般的胞衣铠甲,登上能在星际间穿行跳跃的兽舰,开赴不同的世界,发誓将以都蓝与长生主的名义让繁星变作牧场。缰绳之上,浅浅的划痕代表着杀敌的数量,结扣代表其经历的大战,绳上的挂饰则是大掠时获得的战利品:人类的牙齿,智械的硅芯…它们是被征服者的怨怒与哀嚎,也是步离人彰显个体力量的勋章。\\n\\n当胯下的坐骑殁于战火时,亦或步离人想要施加惩戒时,缰绳也会被取下套在其他活物身上。\\n\\n这样的对象通常是狐人——那些经由血统选育计划被排斥族外的奴隶阶层,他们弱小、狡诈、只配劳作和运算。当狐人中偶尔出现善战的个体时,狼首的主人会优先将缰绳捆缚在他们身上,驱使他们作为战奴带头冲锋。\\n\\n若奴隶死伤殆尽,武器折损,缰绳末端系上尖刺也可充作鞭子。要是鞭索断裂,爪牙尽碎,葬身战场,那么这条缰绳将会成为步离人残存的碑铭与纪念……\\n\\n诚如古谚所云:「森林中,猎手与猎物的地位时常交换」。在宇宙这片黑暗森林中与仙舟人交战数千年后,狼族鞭索断裂已多到数之不尽。最终,这条连接众多猎群的纽带被「巡猎」的锋镝切断,步离人也陷入了内乱与衰败的渊薮,不复昔日的高傲。" + } + }, + "RequireNum": { + "2": { + "Desc": "我方角色施放追加攻击时,装备者获得一层【功勋】,最多叠加#1[i]层,每层【功勋】使装备者追加攻击造成的伤害提高#2[i]%,叠满#1[i]层时,额外使装备者的暴击伤害提高#3[i]%。", + "ParamList": [ + 5, + 0.05000000004656613, + 0.25000000023283064 + ] + } + } + }, + "316": { + "Name": "劫火莲灯铸炼宫", + "Icon": "SpriteOutput/ItemIcon/71035.png", + "Parts": { + "33165": { + "Name": "铸炼宫的莲华灯芯", + "Desc": "位面封装的是朱明仙舟的工造司所在地——焰轮铸炼宫,朱明仙舟围绕着岁阳之祖「燧皇」构建的天体级球形结构。天才匠人们自其中汲取能量,将奇思异想打造成型。", + "Story": "自古国启航开始,朱明仙舟星海浮泛八千余年,若以纵览时空的方式观测其船体造型变迁,其过程无比浪漫——巨船吞下了幽蓝色的恒星,逐层剥落陈旧躯壳,隆起花骨,最终绽放成莲。\\n\\n从太空中看去,整座朱明仙舟如金缕莲灯,巨大的发光「莲叶」围绕「灯柱」渐次伸展开来,沐浴在淡蓝色的光芒之中,可谓「是船不似船,似莲烛火明」。位于中心的「灯盏」部分,是天体级的球型壳状结构,它紧紧裹住苍蓝的太阳「灯芯」转动不休。这处巨构便是朱明仙舟的工造重所——「焰轮铸炼宫」所在之处。\\n\\n昔日,朱明大匠作阳翟曾受佚名的古国皇帝所赠武器铸模,作为启航信物。从此往后数千年,纵使长生巨变归航无期,大匠传统却从未断绝。在朱明仙舟,匠艺乃是至高无上的显学。其历任将军皆有工造司百冶的功名在身,出则指挥千军,入则钳锤奏功,倍受人们的敬重。举凡仙舟巡猎所需的兵仗,十之六七均由朱明工造司锻造而成。由是,焰轮铸炼宫成了银河间的技术圣地。\\n\\n锻冶,是文明的标尺,而火焰则是文明起点。大部分童年时代的文明最受困扰的便是能源,人们苦心寻找支撑文明行至更高处的能源。朱明仙舟跨越了这一藩篱——通过囚禁岁阳之祖「燧皇」,匠人们获得取之无尽、用之无竭的能量。焰轮铸炼宫如烟枝蔓延的轨道结构最大限度包围恒星,繁枝细叶之上遍布着接收与转换装置,引导太始焰「燧皇」为所有技术创造提供能量。\\n\\n无数匠人将这吞含「伪阳」的朱明工造司视为极上殿堂,志在冶制神器的学徒踏破门槛。金木受攻而物象曲成,焰轮铸炼宫为匠人们准备好了他们所需的一切——\\n\\n不同世界的学徒们共聚铸炼宫,拜为同门互相切磋技艺;为求宝器而来异邦人,也会以重金相托匠人锻造神兵利器——然而千百年来,众多学徒之中仅有少数人得到过「匠中之匠」怀炎将军的提挈,他言传身教,将匠艺与武艺传于后人。其门下学徒或成为宗匠,以「百冶」头衔留名青史;或成为名震联盟的云骑,个中以「焰轮八叶」最为知名。\\n\\n「冶炉炼千星,点铁赋英灵。斗光奋戎威,铦铓保宴宁。」朱明匠人自被授予匠具那日起,就必须谨记于心——他们日夜锤炼的并非只是一尺寒光,而是巡猎的锋镝。" + }, + "33166": { + "Name": "铸炼宫的焰轮天绸", + "Desc": "伟如恒星般的岁阳始祖沉陷在无边梦境之中。在它的酣眠之中,周身的原子与分子碰撞激发,不断从焰轮铸炼的外壳结构中逸散出来,最终呈现为色彩纷呈的天绸光带。", + "Story": "深空航行朱明仙舟始终伴随着异色光带,它既是极高温聚变反应的能量产物,也是「燧皇」依旧熊熊燃烧、不死不灭的证明。\\n\\n顺着「燧皇」吐息而逸散的极光粒子最外围,新生的岁阳在此减速、徘徊。朱明十王司的猎火判官会将未沾染任何心绪的懵懂岁阳捕获起来,借以温暖梦境驯服火焰未成熟的心性。随后,判官们将无害的岁阳交予工造司岁火监,后者将岁阳与各式巧具配适,使之成为朱明上灯檠、载具、随处可见各式风景…不过,在不明真相的化外民眼中,那些能言能走的奇物,似乎佐证着「洞天里处处存在精气,器物上了年纪后会便变成妖物」的谣传……\\n\\n沿着异色光带继续深入,越过铸炼宫,来到伪阳形成的超重力场。常人很难承受如此的恒星密度,那是种向内塌陷的紊乱,只有「梨菩」匠人能够如常行走于这片区域中。\\n\\n炽热的恒星爆发以及反常的天体现象,拒绝着好奇之人继续接近伪阳,宇宙中一切基本的物理现象在这个区域中变得更加强烈。只有粗矮强壮的星民梨菩,才能够在如此重力异常的空间中生存下来——梨菩天生是顶级匠人,他们穿行于铸炼宫与伪阳之间,时间感知已经异于常人,他们遵守承诺精进匠艺,铸造舰船巨炮,并监视伪阳沉眠。朱明仙舟将梨菩视为忠诚盟友,尊重他们的坚韧顽强、感谢他们的无私付出。\\n\\n没人能沿着异色光带穿过诡异扭曲的重力场,潜至伪阳深处。那里是有情之物的禁地,是「燧皇」无穷无尽的梦境——朱明仙舟警惕着任何一丝情绪的波动会唤起岁阳始祖的无垠伟力。\\n\\n常有人忽视警告远远注视着伪阳,悄然无意间陷入到精神重力场之中,稍不留神便会被潮水般层出不穷的幻象夺走神识。与柔和的假象截然相反,凝视那团「幽蓝太阳」只会感受到自太古压抑至今的勃然怒意——「岁阳将赐予英雄们熯天炽地的力量。而当一切使命完成之后,英雄们要还以岁阳千锤百炼的躯体……」古老的誓言究竟将如何实现,无人可知;而无边的梦境中「燧皇」究竟几时醒来,亦无人可知。\\n\\n莲华灯芯之中,酣眠至今的伪阳沉沉叹息。仙舟缓缓划过天际,仅余下一道异色的轨迹。朱明仙舟还将继续如此与火盟誓、伴火同行,与火分享共同的命运。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的速度提高#1[i]%。当装备者击中拥有火属性弱点的敌方目标时,击破特攻提高#2[i]%,持续#3[i]回合。", + "ParamList": [ + 0.060000000055879354, + 0.40000000037252903, + 1 + ] + } + } + }, + "317": { + "Name": "沉陆海域露莎卡", + "Icon": "SpriteOutput/ItemIcon/71036.png", + "Parts": { + "33175": { + "Name": "露莎卡的水朽苍都", + "Desc": "位面封装的是海洋世界露莎卡一处被淹没的城市。海平线不断上升直到城市也被淹没,只有巨大的「船邦」载着船员们在海上前进,找寻下次远航的方向。", + "Story": "在一众缺少液态水的行星间,露莎卡的纯蓝在普热斯米尔恒星系中尤为醒目。她的海水就像是海洋之母的摇篮,万物自此孕育生长,也被她固定、紧握、诱陷…直至无路可逃。\\n\\n晨曦时刻,「船邦」的大副轻轻敲开船长室的门。舱室里贴着旧时代三十七域的群岛生态,那是人们对陆地的怀念——来自天外的陨星似乎依循着某种偏执的愿望,正在将海洋铺遍整颗露莎卡行星。无尽的骇浪让一切故土深埋水下,仅留一片蔚蓝…大副唤醒酣眠的船长,海上已然碎金嶙峋,「船邦」新一日的航行又开始了。\\n\\n探索舰行至广场中央,它将锚箭射向水下一幢曾是商场的巨大建筑,船锚嵌进窗檐上扣紧,在潜水钟到来前,无数惊慌的鱼群从商城的货架上涌出。\\n\\n午后时刻,学者们自潜水钟里离开。他们游过书店,全然不做停留,毕竟墨迹早已面目模糊,无从识别。他们的目标向来是那些虫胶或塑料载体,简单清洁后便可从中收获旧日讯息。这样的深潜考古并不容易,清道夫立定张望,挥舞着钢戟,确保那些长着利齿的捕食者保持观望。人们偶尔也会迎面撞上深水中的水灵,但双方无暇顾及彼此,便投入到各自的搜刮中去——比起干瘪的罐头,清道夫更想找到种子、调味料、或者是酒品。\\n\\n随着氧气储量下降,密集的水下调查活动即将结束。回望水下,巨鲐已行至都市中。水灵骇然,立刻屏息贴墙,藏进密室之中,它们已经习惯了如何利用水下的钢铁森林。\\n\\n傍晚时刻,晴雨止息,各处的船邦鸣着响笛驱散四周的海盗渔鸟。他们将今日收获置于甲板上,供着船邦上下的人们各取所需。渊流涌动的夜晚,光塔晶莹明亮。露唯尔人围着焰杆起舞,把终将到来的明日遗忘,用船歌诉说着今日的荣耀,以海谣轻叹着往昔的美好。船长拿出航海罗盘,他沿着指针的方向望去,他知道那里是逐渐陌生的家乡,那里还有盼着家人归去的人们。\\n\\n夜半时刻,巨船熄灭了各处灯光,静静地在海上浮动着。他们是否真正得到了安宁?亦或只是以笑靥掩藏早已溶于海中的泪滴?\\n\\n过了今夜,这片深蓝都将一如既往。" + }, + "33176": { + "Name": "露莎卡的双生航道", + "Desc": "无垠的水平线内,即使只存浅痕,也足以打破这份沉寂。航线承载着船员的历史,水灵于水道追寻着希望。", + "Story": "对于水灵,水面上的世界本是陌生而危险的,不过那已然是悠久印象。毕竟那些曾在水面上的,也早已经淹没在这片深蓝之中了。\\n\\n露莎卡陆生种与水灵有着亲密却又陌生的关系。在深潜调查中,他们将遭遇水灵视为一种幸运,并将其描述为美丽又神秘的生灵。水灵拥有幽蓝的翼膜与晶黑的双眸,特殊的声带能发出天籁般的声音。根据深潜调查员耳口相传的故事,这些生灵常伴于海龙身旁,居住在深海的银白之城——身处真实与传说之间的水灵,尽显悠然与灵动。\\n\\n大海淹没的过去中,用于描述她们的词汇却是——「伊沓人,深海的凶兽」。\\n\\n曾经伊沓人与陆生种存在激烈的生存竞争,红海的鲜艳任谁也无法装作视而不见。起初,伊沓人的幼子被识认为鱼获;而后,陆生种被伊沓人的欢唱诱入水中溺亡。他们曾在宽阔的水域中互为猎人与猎物,随后便是利刃与船锚的碰撞,海兽与桅杆火炮的冲击,水上水下的战争旷日持久,直至礁岩在灼热中碎裂。许久以后,船邦的学者们才明白,万界之癌早已许诺了露莎卡的未来——只不过那些期许来自一位失乡的水灵,她向梦魇中的罪魁祸首咒下了无言之啸。\\n\\n那些尘封往事深埋于钢铁水泥的深海珊瑚礁群岛中,渺若烟云,无人知晓。\\n\\n自那以后,城市与陆地淹没在大海之中,争端与鲜血淹没在大海之中,历史与文明也被淹没在大海之中。为了回避深海压,水灵们不断向上方的水域迁徙,被迫住进了曾经陆生种的城市之中,窥探着那些笑容与眼泪的回忆…她们知道,海面上的声音残存无几,蔚蓝已然属于彼此,只是这片静寂太过压抑。\\n\\n船邦的歌者在航道间瞥见水色的薄翼,便会唱起那首美丽的海谣——\\n\\n「她们行于航迹,追逐着光塔与风暴,只为寻回那片纯蓝。」" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的能量恢复效率提高#1[i]%,如果装备者不是编队中的第一位角色,使编队中的第一位角色攻击力提高#2[i]%。", + "ParamList": [ + 0.05000000004656613, + 0.12000000011175871 + ] + } + } + }, + "318": { + "Name": "奇想蕉乐园", + "Icon": "SpriteOutput/ItemIcon/71037.png", + "Parts": { + "33185": { + "Name": "蕉乐园的蕉芯广场", + "Desc": "位面球封装的是某个科研团体下设实验室之一,因为模因污染,信息的真实与虚假已经彻底混合,难以分清,现已被认知重塑为「蕉乐园」。", + "Story": "「是谁住在密林的大乐园里?」\\n「香蕉宝宝!」\\n「长长黄黄活泼可爱!」\\n「香蕉宝宝!」\\n\\n「咚咚」声响了两回半,香蕉们从沉睡中苏醒,要从香蕉树上离开,开始新一天的蕉生活!有的香蕉醒来便精力满满,将榴莲做成烤派,在丛林里追逐嬉戏;有的香蕉则相对沉稳,用椰子涂涂抹抹,将自己打扮得椰香四溢。猴子满意地张望着生机勃勃的景象,不禁朝香蕉们发出甜蜜的呼唤——\\n\\n「准备好了吗?香蕉们?」\\n「是的,猿长!」\\n「太小声啰!」\\n「是的,猿长!」\\n\\n「咚咚」声响了三回半,又到了每日的「蕉流俱乐部」时间。香蕉们开始紧张起来,有的香蕉大喊大叫,有的香蕉暗自垂泪,有的香蕉则心如死灰…猴子们向健康的香蕉逐个提问,大蕉叶上的题目总是一成不变——「你还记得香蕉之外的时光吗?」\\n\\n简单的提问总是换来苦涩的回答,香蕉们不能理解悲伤的情绪究竟从何而来。它就像香蕉受到外界压力时,果肉会氧化发黑一般理所当然。\\n\\n「如果四处探险是你的愿望,」\\n「那就敲敲蕉树让猿长指路。」\\n\\n「咚咚」声响了七回半,「励志蕉友游戏」要开始了。在这片密林乐园中,每一根香蕉都曾被许诺,只要付出足够努力,香蕉们不会永远都是香蕉。它们每根蕉都心怀梦想,为了成为伟大的猴子而不断奋斗…丛林退向两侧,猿长从中间走出,他向香蕉们展现温柔而谦逊的鞠躬礼仪,香蕉们也以礼相待——猿长带来了全新的游戏,来「蕉换」全新的故事。\\n\\n「咚咚」声响了十一回半,香蕉们被猴子接回树上,摇摆着进入了理想乡。绿色的太阳一闪一闪,咕噜咕噜的声音弥漫在乐园之中。" + }, + "33186": { + "Name": "蕉乐园的模因线缆", + "Desc": "实验室中随处可见的光信号缆线,它被用于采集实验数据,以达成不可告人的秘密。对「香蕉们」而言,认知世界的方法就藏在其中。", + "Story": "芭-77研究所的废墟位于天汇座-ψ,藏在某个丛林世界的地下。激进的游侠曾将此处捣毁,如今残余的线缆仍然闪烁着意义不明的信号。\\n\\n「那该死的研究所就像树林里的叶子一样难找」——于层层叠叠的树皮下,树骨构成了入口的形状,穿过漫长的树洞后,游侠们才找到了目标。\\n\\n这研究所比起「实验室」,更像是某种「美术馆」。繁杂的线缆在空中交织成册,按照设计者的意图泄下异色光彩,观者无不扶额感到晕眩,随后,光怪陆离的幻觉在眼前逐一铺开——纯黄的阈限空间,逐渐消失的人像画列,藏于帘后的怪物身影……\\n\\n游侠们熟悉这些手段,若是继续停留在设施里,随后便会出现胡言乱语、手舞足蹈的症状…一声清脆的枪托撞击后,年轻的游侠借助阵痛与眩晕从思绪迷宫里走出。\\n\\n在清醒的视线中,游侠向着最深处前行。芭-77研究所满是坍塌的雕塑、毁坏的壁画、色彩饱和度极高的装饰…而遍地破碎的容器又让此地形如监牢。游侠在最深处找到了一份报告,想象着建筑轰然坍塌前,曾发生过无数次的「认知实验」…某个下意识的瞬间,众人猛然回首,惊觉自己已身处丛林乐园之中,树叶不断向他们招手,询问他们是否还记得树上的美好。\\n\\n「我不是个香蕉吗?话说我们来这里干嘛?」年轻的游侠试图回到树上,让自己不再「蕉绿」。\\n\\n而盲眼的游侠意识到了问题,在一切变得无可挽回前,将年轻人生拉硬拽着带离了那里。\\n\\n「蕉蕉——让那帮猴子蕉鬼去吧!」" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的暴击伤害提高#1[i]%,当存在装备者召唤的目标时,暴击伤害额外提高#2[i]%。", + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + } + } + }, + "319": { + "Name": "谧宁拾骨地", + "Icon": "SpriteOutput/ItemIcon/71042.png", + "Parts": { + "33195": { + "Name": "哀地里亚的殁名祭碑", + "Desc": "位面球中封存着翁法罗斯的哀地里亚,信仰{RUBY_B#死亡之泰坦}塞纳托斯{RUBY_E#}的民众们在雪原上修筑起巨碑,敬奉为他们带来死亡祝福的圣女。", + "Story": "哀地里亚——飘雪的死亡之邦,曾在风雪中矗立,也在风雪中缄默。\\n\\n亘长的黄金世中,几乎人人都在暖盎的大地上尽享长生之乐,极少数人厌恶了停滞的日夜交替,决心寻觅生命的归程。「生命缘何而生?又该归往何处?」苦行者之首埃琉希斯一边吟诵着生死诘问,一边与苦行者们向北前行,寻觅一场甘甜而冰冷的长梦。身披长袍的苦行者们在万籁俱寂的北境荒原上定居,建起一座肃穆的城邦——漫天飞雪终年不休,被人们称为「哀地里亚」。\\n\\n黄金世的终结书缺有间,翁法罗斯「最初的死者」被认为来自哀地里亚,那人从「{RUBY_B#死亡之泰坦}塞纳托斯{RUBY_E#}」处得到死亡的赐福,那既是悲悯垂怜,亦是无上荣誉。\\n\\n哀地里亚的住民们早已习惯了肃杀冷冽的气候。飞雪也早已沾染「{RUBY_B#死亡之泰坦}塞纳托斯{RUBY_E#}」谧静信仰,甫一接触地面便迫不及待地夺取生命的温度——在久远过去,远道而来的旅人们步入哀地里亚的疆域时,总会轻易发现无名僵躯长眠于路旁,回归「{RUBY_B#死亡之泰坦}灰黯之手{RUBY_E#}」拥抱中。朔风伴随着长啸,逝者化身路标,指引并警醒着风雪行者。趁生命的气息尚存,旅人们在哀地里亚总是行程匆匆。\\n\\n后来,哀地里亚人发现荒地竖起哀悼的石碑,有人曾为生命的流转与消逝献上祝福。\\n\\n石碑下沉眠着不知名的少女,她的周身环绕着影子般的死域,就连呼吸着死亡鼻息的披骨草都尽数枯萎溶蚀。哀地里亚人在她身上感知到「{RUBY_B#死亡之泰坦}塞纳托斯{RUBY_E#}」的仁慈抚触,将其迎回城中奉为圣女。敬爱死亡泰坦信者们效仿圣女所为,为漫长旅程的终结,为长久生命的归殁,于荒地竖起巨大的石碑——生与死皆是历程,此地只有记录行程的界石。\\n\\n石碑敬告着远道而来的旅人,没人停留在那里,没人在那里睡去…逝者亦是旅人,他们是朔风、飞雪,千丝万缕。" + }, + "33196": { + "Name": "哀地里亚的入溟骨链", + "Desc": "兽骨、箭镞与铁蒺藜,将哀地里亚人与那亡者的世界相连。荒原上的苦行者只愿自己的灵魂能够渡过寒溟,不因其贫瘠与软弱而彷徨失落于面见尊神的路上。", + "Story": "曾有好事的愚氓向哀地里亚的信者发难,质疑翁法罗斯竟有敬爱死亡的信仰——「你们这般热爱{RUBY_B#死亡之泰坦}塞纳托斯{RUBY_E#},何不直接用尖矛刺穿自己的胸膛?」\\n\\n哀地里亚人鄙夷地乜他一眼,「冥河从不往渡贫瘠的灵魂。」\\n\\n哀地里亚自城邦建起,便是翁法罗斯全域最珍视生命的圣地。{RUBY_B#死亡之泰坦}塞纳托斯{RUBY_E#}信徒坚信冥河之水冰冷灼骨,非常人可渡,唯有在世间行走磨砺足够长久,才能凭借坚韧的英魂横穿寒溟、面见{RUBY_B#死亡之泰坦}塞纳托斯{RUBY_E#}。追寻「死亡」的祝福,并非意味着轻视生命。\\n\\n正因如此,尽管视死如归的哀地里亚人不乏可怖的勇士,却始终未曾侵夺过南边的富饶之地——那并非是能磨砺英魂的土地,哀地里亚人不屑溺于舒适。\\n\\n苦行是哀地里亚人独有的文化。每年飞雪稍息、不蔽视线的那几个晴日被称为采骨节,哀地里亚的祭司们会结队出城,寻觅沉眠于荒原与沼泽的兽骨。死于数光历年前的史前巨兽骨骸自是最佳祭礼,敲击其骨,沉闷回声中似伴有{RUBY_B#死亡之泰坦}塞纳托斯{RUBY_E#}的轻喃。仿若浸满冥河寒意的兽骨被挨次运回城中——些微破损者会被加工为饰物流入居民手中、日夜佩戴;而品相优良者则会被祭司亲手打磨制成葬仪骨剑,作为节日献礼。\\n\\n某次采骨节礼时日,哀地里亚人在荒原中遭遇少女。随后,「其抚触能使人跨越冥河之阻、直面死亡」的流言不胫而走。\\n\\n信仰「死亡」人们争先恐后来到圣殿,只为与{RUBY_B#死亡之泰坦}塞纳托斯{RUBY_E#}的代行者相见。哀地里亚的祭司们敏锐察觉到少女对信仰的摧折,将少女奉为督战圣女,严禁平民与她接触。唯有饱经世间磨砺、敬爱生与死的苦行者才有资格在少女的怀抱中魂归冥土。少女穿上祭司准备的长袍,以双手行刑,以拥抱入殓。\\n\\n哀地里亚人将「冥河从不往渡贫瘠的灵魂」奉若真理。然而冥河从不追问灵魂的重量,它只是静静地流淌着,通向所有生者的终点,在彼处交汇。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的生命上限提高#1[i]%。当装备者的生命上限大于等于#2[i]点时,使装备者及其忆灵的暴击伤害提高#3[i]%。", + "ParamList": [ + 0.12000000011175871, + 5000, + 0.2800000002607703 + ] + } + } + }, + "320": { + "Name": "渊思寂虑的巨树", + "Icon": "SpriteOutput/ItemIcon/71043.png", + "Parts": { + "33205": { + "Name": "神悟树庭的沉思巨桹", + "Desc": "位面球封装的是翁法罗斯的神悟树庭,「裂分之枝」{RUBY_B#理性之泰坦}瑟希斯{RUBY_E#}的神躯在此沉思。「最初的学者」带领众人在林间建立起花园与庭院,分享学识,树庭由此初诞。", + "Story": "「最初的学者」塞勒苏斯,为了寻觅墨涅塔信仰中灵性意义,于成年之际,他自家乡滨海城邦米拉瓦塔起,开始巡历翁法罗斯大地。\\n\\n在朝圣旅途中,种种不寻常的经历,种种离奇的景象,使他对自然现象和世界起源产生了全新的思考。旅行结束之际,他觐见「裂分之枝」,并在巨树前完成自己体认世界的方法论。在那之后,塞勒苏斯在巨树下建立起庭院,并取名「神悟树庭」,以供世人醒神、求识、悟道。\\n\\n在{RUBY_B#理性之泰坦}瑟希斯{RUBY_E#}中,它的思绪或张扬载入纸卷,或悄声化作百草…树庭的喧闹便由此萌发。而在交流与争论的喧闹之中,目别汇分的学派便由此诞生。\\n\\n学派间研学方向虽各有区别,但并非没有交叉——就像巨树裂分的枝杈蔓延开去,总是避不了交叠…在聚讼纷纭的论辩中,在学识理论代际传承中,「最初的学者」留下的体悟传承至今,早已演变成以七贤人领衔,七大学派为主的众多思潮。\\n\\n「凡世间学识都应化为树庭的叶片,为浓翠蔽日,助巨木繁茂。」向树庭求取智慧的城邦,都要献上等价的知识。如此,无数思绪化作滋养,无数新芽嫩叶才能催生。\\n\\n百光历来,任何通过树庭隘口的商队,任何驶向树庭港口的商船…举凡被发现藏有记载知识的经卷,不论国籍,不分语言,统统会被归入树庭馆藏中。树庭的学者,亦或是「强盗」,通过重金收购、雇人抄写、甚至掠夺等方式,将树庭打造为「翁法罗斯最好的学校」。树庭学者们借探讨为祭器,以思辨为虔敬,对世间至臻的理性顶礼膜拜。\\n\\n始于植生,归于木灵,聚露植心收集着世间汇来的点滴知识。{RUBY_B#理性之泰坦}瑟希斯{RUBY_E#}聆听着日益喧嚷的学庭,始终沉思不语。" + }, + "33206": { + "Name": "神悟树庭的联识叶路", + "Desc": "金丝与藤蔓串联起树庭识网,成为学派间共享成果的生命线。信息由根系传入,沿脉络游览、析构。直至化作一滴露珠,溶入友爱之馆的池中。", + "Story": "神悟树庭的一缕思绪,巨树上的一束横枝。脉络牵出千百种论调,如繁枝细节般各自延展。虽相互独立,却又丛生交叠,最终,盘桓成令巨树繁茂蓬勃的树冠。\\n\\n其中一根枝杈将叶柄指向了自己,纠结盘绕。「莲食学派」的苦行者为树纹花叶本身的奥秘所倾倒,将植生,乃至万象,都描绘为触手可及的显见存在。他们所专注的苦行,是调和世间万物的实践方式——在他们看来,苦修并非是弃绝自我的做法,反倒认识自己的捷径。\\n\\n其中一根枝杈结育硕果,缀满枝头。「山羊学派」的学者们精于奇兽研究、繁殖和保护——奇美拉令人怜爱的百态,便是他们对万相生灵探求的小小实践。\\n\\n其中一根枝杈虬结成完美的比例,精确而优雅。「绳结学派」的学者们宣称「万物皆数」,即——一切实体皆可用数字映射。作为树庭最早凝聚的学派,他们坚守学院门槛,要求「不识几何学者不得入内」,更将数理奉为{RUBY_B#理性之泰坦}瑟希斯{RUBY_E#}统御世间的手段。\\n\\n其中一根枝杈生得浑厚圆实、韧性十足。「曳石学派」要求学者须在拜入前挥舞投石索,将圆石抛掷出指定范围外,以此证明其有意在锻炼、思辨及其竞技活动中「追求极致」。\\n\\n其中一根枝杈时而垂下,时而挺立,向知觉传达纯粹的美感。「赤陶学派」将艺术与感性的探讨视作对逻辑思维的本源,坚信感官直接提取的信息最为精炼,所抵世界更为达观。\\n\\n于繁茂的树冠之上,那虔诚敬拜的枝杈最适合祭礼,它形自巨木主干。「敬拜学派」精于泰坦仪式的理解及其神迹的运用,被称作「翁法罗斯政治家的摇篮」。他们不仅主导树庭信仰祭仪,其成果更是深入翁法罗斯的方方面面。偏偏有一根新生锐利的嫩枝,与它争锋相对——\\n\\n「智种学派」继承自「最初的学者」对灵魂学说,专精于生命与事物间转化及扬升的理论,创办最为晚近,论点却最为犀利,其主导的学说,意图指向所有生命和物体的源头。\\n\\n七大学派的七贤人各执治学领域,原则上不分先后——而理性的巨树身怀七贤人之首的虚衔,于无休止的辩论声中,将学识与理性开枝散叶,播撒世间。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的速度提高#1[i]%。当装备者的速度大于等于#2[i]/#3[i]时,使装备者及其忆灵的治疗量提高#4[i]%/#5[i]%。", + "ParamList": [ + 0.060000000055879354, + 135, + 180, + 0.12000000011175871, + 0.20000000018626451 + ] + } + } + }, + "321": { + "Name": "妖精织梦的乐园", + "Icon": "SpriteOutput/ItemIcon/71046.png", + "Parts": { + "33215": { + "Name": "迷路迷境的恬梦树屋", + "Desc": "位面球中封装着哀丽秘榭的「迷路迷境」,拨开金色的麦草,掉进一片深深、深深的树洞,咦?好多小妖精,「一二三四五六七?」,错啦!是「哆徕咪发嗦啦嘻!」", + "Story": "「呵呵,孩子们,迷路迷境又到了丰收的季节,我们该准备什么了?」村长抚摸着白胡子,笑呵呵地说道。\\n「佳酿庆典!」小妖精们欢呼起来。\\n\\n最开始,迷路迷境还是片荒芜的土地。哀丽秘榭的小男孩和小女孩带来了外面的种子,教给妖精们种下。种子的芽开出花朵后,妖精们也学着他们的样子,沿着葡萄架旁边金色绒毛腿蜜蜂的踪迹采摘花蜜。之后花朵落下果实长起,到了丰收的时节,妖精们聚在一起哼唱庆祝的歌,热闹的宴会一直举办到夜晚。夜晚再之后呢?就用瓶子装起今年的花蜜,深深埋在地下,等待它们来年发酵成治愈成长、治愈冬天的灵丹妙药。\\n\\n每一年的佳酿庆典,都是这样。\\n在今年的庆典上,「谁看到徕啦迷去哪里了?」村长抖了抖白胡子。\\n\\n妖精们找啊找,终于在树屋门口看到了「徕啦迷」,它睡得正香,嘴角吹起了一个呼噜泡,好像在做一个格外甜美的梦。好奇的「咪啦迷」凑近,听到它说着梦话——「小白、小涟,约定好了再来,一起喝去年埋下的刺刺果佳酿呀!」\\n\\n梦中的「徕啦迷」,梦到自己变成了一只「巨大型徕啦迷」——足够把通往迷路迷境的树洞堵得严严实实。还是很小的两个小孩子怎么也找不到进来的路,小白和小涟他们又是用蔺草挠「徕啦迷」的耳朵,又是爬到「徕啦迷」肚子上跳来跳去,大声地喊着它的名字。可「徕啦迷」睡得太沉了,怎么也听不到。\\n「糟糕,小白和小涟不来迷路迷境的原因,不会是我把路堵住了吧?」\\n梦里的「徕啦迷」心砰砰地跳了起来。\\n\\n「阿——阿嚏!」\\n「徕啦迷」打了一个喷嚏,终于醒了过来。还好还好,没有变成堵路的「巨大型徕啦迷」,但是围在自己身边的,都是妖精们?\\n「小白和小涟呢?他们来了吗?」\\n妖精们摇头,记不清已经是第几个小白和小涟没有回来的佳酿庆典了。\\n「徕啦迷」又失落了起来,早知道,让梦多持续一会儿了。\\n小小的「徕啦迷」还不知道怎么形容这份心情,一定要说的话,每年夏天的最后一天,放走玻璃罐子里扇动翅膀的萤火虫的时候,就是这样的心情吧。" + }, + "33216": { + "Name": "迷路迷境的祈愿笛哨", + "Desc": "陶土捏制的笛哨,代表着小妖精们和两个小孩子的约定。当小男孩和小女孩吹起笛哨的时候,「迷?」的一声,妖精们就会打开通往迷境的树洞,欢迎他们来做客!", + "Story": "「要记得我们的约定哦!每当你们吹起手里的祈愿笛哨,无论有多遥远,我们都会听到。」\\n\\n那时是哀丽秘榭的小男孩和小女孩第一次来到迷路迷境,和妖精们相遇。他们在院子里和伙伴们玩着捉迷藏,一不小心就掉进了乱草深处的树洞。树洞里好深好深,像不见底的滑滑梯,一直滑到最底端时,没有摔成预想中眼冒金星的样子,却冲进了妖精堆里……\\n「一二三四五六七,好多小狗,呃…小兔子?」\\n「不对不对,是哆徕咪发嗦啦嘻。我们分别叫哆啦迷、嗦啦迷、徕啦迷…啦!」\\n\\n孩子们和妖精们的友谊像一千颗流星一样来得又快又闪闪亮亮,他们一起度过了愉快的一天,但很快,分别的时候也要到了,再不回去,老爸老妈就要着急了。\\n「分别以后,我们还能再见吗?」小男孩有点忧伤地问。\\n分别…再见…妖精们不太懂,迷路迷境从来没有分别,也从来没有再见。但看孩子们的表情,那一定是让人难过的东西,紫色的「徕啦迷」想了想,「小白小涟,等等我,我有一样东西给你们!」\\n\\n小男孩和小女孩把「徕啦迷」的礼物捧在手心里。那是一只小妖精耳朵形状的笛哨,「徕啦迷」亲手做的,上面有七个孔,只要吹奏就会发出悦耳的声音,分别代表着:哆、徕、咪、发、嗦、啦、嘻。「徕啦迷」认真地说道,「如果你们下次想再来迷路迷境玩,只要吹起这个笛哨,无论我们是在睡觉,唱歌还是盖树叶房子,一定会听到,然后为你们打开通往迷境的树洞。」\\n\\n「是唤醒妖精们的迷之笛呀!」小女孩调皮地笑着,「拉钩约定好,我们会再回来的。」\\n从那以后,「徕啦迷」最开心的时候就是笛哨被吹起来的时候,它总会大声喊道——听到了,两只耳朵都听到了!\\n\\n一直到后来,离开哀丽秘榭的小白和小涟记得童年的所有东西。生锈的铁皮玩具,谷仓里缺胳膊少腿的小兵人,钩针编织的花朵毛毡,所有没能落下的雨、干涸已久的血和被焚烧到焦枯的麦田。\\n却忘记了掩埋在泥土里的笛哨,和一份不再兑现的约定。" + } + }, + "RequireNum": { + "2": { + "Desc": "队伍中当前在场的我方目标数量不等于4时,每多/少1名我方目标,使装备者及其忆灵造成的伤害提高#1[i]%/#2[i]%,最多叠加#3[i]/#4[i]层。", + "ParamList": [ + 0.09000000008381903, + 0.12000000011175871, + 4, + 3 + ] + } + } + }, + "322": { + "Name": "沉欢醉饮的海隅", + "Icon": "SpriteOutput/ItemIcon/71047.png", + "Parts": { + "33225": { + "Name": "酣歌海垠的礁屿灯塔", + "Desc": "位面球中封装着沉浸在永世欢乐中的斯缇科西亚。长明的灯塔矗立海滨,演奏着不息的乐曲。循着欢歌的航船越过迷雾而来,旋即触礁沉没,空留残骸被浪涛吞吃。", + "Story": "海浪,永不止歇的轮舞。厌倦了曾寻欢作乐的港口,水手们摊开航海图,为自己挑选旅程的终点。罗盘停下颤动的指针,指向「斯缇科西亚」,矗立海滨的永世欢乐之城,他们命中注定的销骨之地。并不以此为意,尚未知晓死亡的人们在欢醉里扬起风帆,欣然踏入法吉娜的舞池。\\n\\n水手们追随潮汐和月相的韵律,将骨叉刺进鲸鱼的脊背,用船首撞碎亘古的冰川,他们一路欢唱…直至堕入迷雾之中,直至灯塔近在咫尺,直至最终撞上礁石……\\n\\n触礁沉没的航船没入水底,不死不灭的人们从海浪中复生。水手在礁石上站起,身上布满海草和盐渍。灯塔中的宴饮者等候已久,躬身邀请他参加不息的盛会。他们循着乐声步过长堤,登上礁屿间的洁白灯塔。斯缇科西亚的灯塔以鲸油引火,跳动的冷焰笼罩在水晶雕琢成的透镜中。灯塔本身便是一座庞大的水漫琴,访客们拾阶而上时,能看见砖石孔隙中玻璃管虹吸海水,随浪潮升降。露台上,宴饮者手牵着手,伴着乐曲声围着灯火起舞,灯火便把他们的影子投向遥远的海平面。在那里,水手看见梦寐以求的终点,那座永世欢乐之城。\\n\\n那是腐败还未降临的岁月,苦痛、哀伤和死亡也仍在孕育之中,斯缇科西亚沉浸在法吉娜的宠溺中,用臂弯般的海湾将它环抱,为它哼唱童谣,温柔如梦乡。\\n\\n心急的水手嘴唇颤抖。他的身前,宴饮者邀请他踏足城邦,如手足兄弟般分享无上欢乐;而他的身后,灰色的大海一望无际。礁石间遍布航船残骸,溺水者在海浪中沉浮,皮肤上爬满海葵和珊瑚。他回想落水时分,潜流将他扯入深邃无望的海底——海妖冰冷的手抚过他的脸颊,模糊不清的柔声轻唱里,他清醒了过来,被推向浮着粼粼水光的水面。\\n\\n只不过一瞬的犹豫,只来得及留下匆匆一瞥,通往至福的大门就此掩上,宴饮者们微笑着婉拒了水手进入斯缇科西亚的请求,只因他从迷醉中醒来,还未懂得如何承受真正的欢乐。" + }, + "33226": { + "Name": "酣歌海垠的歌咏步道", + "Desc": "斯缇科西亚人深信海妖如传说中一样以血肉守护此处安乐,而她们终有一日将循着灯塔不竭的歌咏赴约而来,得到永不止息的宴会作为犒赏。", + "Story": "孤独的水手与此前的到访者一样,徘徊在在大海与城邦之间,驻足在尘世与欢乐的门槛上。他拭去搁浅的鲸鱼伤口中流溢的油脂,在夜幕时分点亮灯塔,然后在灯光前端坐,用水漫琴弹奏起那些尚未被奏响的歌曲。\\n\\n灯塔随着琴键奏鸣,整个斯缇科西亚沉浸在乐曲之中。那些或和缓或急促的曲调,激起了斯缇科西亚女王有关享乐的无穷遐想。水手从最后一个休止符开始倒着演奏,使曲调诙谐跳跃。于是白色的长船载着杂耍艺人,轻巧地穿过河道。盛装的男女拥挤在两岸,以金箔和羽毛装饰的假面遮住面庞,女王也混迹其间,徜徉在丁香和杏仁的香气里。\\n\\n水手整顿节奏,使音符急促而激昂。于是以整座城邦为舞台的戏剧中,扮演海盗的民众挥舞黑旗攻陷从未设防的城墙,劫掠美酒和金币,将贵族们送上摆满鲜花的绞刑架,然后用王冠给全城乞丐加冕。在谢幕时刻,人们将高塔付之一炬,再伴着琴声狂舞,烂醉如泥。\\n\\n翻涌的海浪打湿乐谱,洇开柔和舒缓的音符。女王在灯塔前的迷雾中迈入新的剧本,她一袭鱼尾蓝裙,出演法吉娜的眷从——海妖们的女王。\\n\\n在故事里,海妖们受命在海洋深处抵御尘世难以想象的苦痛,以血肉将漆黑的灾厄引入满溢之杯,换取斯缇科西亚永世的欢乐。到了那应允的时刻,海妖们终将循着灯塔的灯光和弦声,沿着堤道步入斯缇科西亚。斯缇科西亚人将执起她们的手,一同参加那永不歇止的宴会。\\n\\n斯缇科西亚女王步入水中,享受一次想象中的死亡。在那月相无法约束波涛的夜晚,大海深处,海妖们空心的泪水如泡沫般上升,她们期冀,她们等待,窥探此生未见的月光,然后血肉消融。可惜,此夜并没有月光,只有灯塔明灭如故——泪水代替海妖们升上波光粼粼的海面,漂泊的浮沫消散在浪潮之中。\\n\\n孤独的水手得偿所愿。宴饮者眼含幸福的泪水,祝贺他得以步入斯缇科西亚,当第一声欢歌响起,死亡凋敝的羽翼便已经覆盖在这座永世欢乐的城邦之上。" + } + }, + "RequireNum": { + "2": { + "Desc": "使装备者的攻击力提高#1[i]%。当装备者的攻击力大于等于#2[i]/#3[i]时,使造成的持续伤害额外提高#4[i]%/#5[i]%。", + "ParamList": [ + 0.12000000011175871, + 2400, + 3600, + 0.12000000011175871, + 0.24000000022351742 + ] + } + } + } +} \ No newline at end of file diff --git a/data/relics.en.json b/data/relics.en.json new file mode 100644 index 0000000..fc157e0 --- /dev/null +++ b/data/relics.en.json @@ -0,0 +1,1656 @@ +{ + "101": { + "Name": "Passerby of Wandering Cloud", + "Icon": "SpriteOutput/ItemIcon/71000.png", + "Parts": { + "31011": { + "Name": "Passerby's Rejuvenated Wooden Hairstick", + "Desc": "A withered twig that was used as a hairstick, with new flower buds sprouting on the end. Now, the past is long gone, and the stick inlaid with parcel-gilt flower buds commemorates the beginning of a new life.", + "Story": "A distant and yet familiar feeling of nervousness wrapped around him, sharp and distinct with phantom pain, as the unnamed woke from his long and deep slumber. His past was shattered into razor-edged shards, and he forgot even his own name.\\n\\nWandering aimlessly, he drank melted snow to quench his thirst, hunted wild beasts to fill his stomach, and chopped a withered branch to use as a wooden hair-stick to fasten his flowing hair.\\n\\nLike the incessantly flowing stream of a mountain spring, his long, black hair never ceased growing. His flesh twitched and throbbed beneath his skin, like river carps flipping and swarming... Fascinating powers ceaselessly reconstructed his body, bringing an everlasting pain of bones and tendons rupturing and healing. As countless phantom agonies and torments tore through his body, his shattered past was also beginning to come together... As he glanced at his own reflection in the water, the story of that tragedy gradually cleared in his mind.\\n\\nWhen the face in the reflection was no longer a stranger's, the unnamed suddenly realized the dead branch was sprouting flower buds.\\n\\nEpiphany struck him like lightning. The curse of immortality still raged on, and the grudge of past misgivings never died out. HE was now the newborn flower on this once-dead branch." + }, + "31012": { + "Name": "Passerby's Roaming Dragon Bracer", + "Desc": "Bracers made from flowing coral gold and the leather of unknown beasts. Only master artisans from the Vidyadhara dragon race can create this kind of superior armor.", + "Story": "It seems that pairs of objects have telepathic connections with each other. Though the unnamed only had one bracer in his possession, his fingertips could still faintly feel the temperature from the other.\\n\\nHe closed his eyes, trying his best to extract any information about the other bracer from the tenuous connection, be it its location or master.\\n\\nA slender yet strong hand once wore the other bracer. That owner, whose sharp spear glinted with a cold light and flourished like shooting stars, once sparred with the unnamed. That owner also once shared company and drinks with the unnamed, the two of them simply gazing at the moon with no words exchanged. However, in the end, it was also this person who stubbornly adhered to their plans with the unnamed, turned the beloved into a monstrosity, and pushed all into an abyss of eternal hatred and remorse.\\n\\nPairs of objects are destined for an eventual reunion. The long years of grudges and hatred between them should be savored, like ice-cold aged liquor, one slow sip after another until the bottle of resentment is finally empty.\\n\\nWould the wearer of the other bracer feel the same? The unnamed didn't want to know." + }, + "31013": { + "Name": "Passerby's Ragged Embroided Coat", + "Desc": "An old coat with a ragged hemline. The embroidery has been ruined by blade marks. Flesh heals quickly, but a coat does not, nor does a person's pain.", + "Story": "The unnamed roamed everywhere in his exile like a walking corpse, until a woman in sunglasses and a person wearing colossal armor stood in his way. Before they could extend their invitation, the unnamed had already unsheathed his sword in refusal. After an exchange of blows, the smiling woman offered a deal that the unnamed could not refuse.\\n\\nThe unnamed accepted the deal, obtained a new identity, and went back to the world of civilization and order.\\n\\nThe unnamed was brought into a tailor's shop, where his sizes were measured, and presentable clothes were custom-made... People even dressed his hair, groomed his face, and made him regain his old appearance. In a trance, he began to lose track of time. In hazy memories of the olden days, he finally made up his mind to gift his bosom friend with his hand-made jade flask, only to realize with a shock that the person he longed for was no longer there.\\n\\nHe realized that everything he relied on to walk this earth — this body, this life, this love and hatred, and even this set of clothes — were just loaned items.\\n\\nHe will repay all of them in full, then draw his last breath." + }, + "31014": { + "Name": "Passerby's Stygian Hiking Boots", + "Desc": "A durable pair of boots that have left shoe-prints on many worlds and have witnessed many lethal situations.", + "Story": "The unnamed followed the slave's orders and traveled to the other side of the sky with his new companions. He walked with bewilderment and hatred among countless worlds, often finding himself in grave crises of life and death.\\n\\nHe had long forgotten the joy of creation, lost in his hurries from one battlefield to the next.\\n\\nIn his past battles, he had sustained an innumerable number of sword slashes and cuts. In his past defeats, his body was splintered and smashed into pieces over and over again. His opponent would always end the battle with one finishing move right through his heart. And now, all those masterly sword moves that had induced his numerous scars were forever imprinted in his memory, and his martial prowess was refined in countless lethal encounters. The unnamed wielded his sword and slashed his way through obstacles for his allies. Wherever he fell, he rose right up, over and over again. He seemed to have let go of all his hatred in his dedication to the sword dance.\\n\\nThe slave promised to bring an eternal end and a final funeral to the unnamed's life and to everything he had ever hated. The unnamed nodded, put his sword back in its sheath, then raced to the next world.\\n\\nIf life could be deemed as a continuous journey, then the unnamed wishes to step over the pool of blood made of all whom he deeply resented before reaching his own end." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Outgoing Healing by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "At the start of the battle, immediately regenerates 1 Skill Point.", + "ParamList": [] + } + } + }, + "102": { + "Name": "Musketeer of Wild Wheat", + "Icon": "SpriteOutput/ItemIcon/71001.png", + "Parts": { + "31021": { + "Name": "Musketeer's Wild Wheat Felt Hat", + "Desc": "A cowboy hat decorated with wild wheat — a mark of the legendary Musketeer Oakley.", + "Story": "Oakley inherited this felt hat from her deceased father. Now that she tucked ears of wheat into the hat as ornaments, it looked much cuter than before. Bounty hunters, whether intentionally or not, always sought to craft emblems of their own, in the hope that these items could one day become the beginning of great legends.\\n\\nThe Interastral Peace Corporation offered bounties to enlist experts of the highest caliber to hunt down Interastral Pirates and Oakley, as one who always worked alone, forever sought out the most challenging regions of desolation among the farthest reaches of the world.\\n\\nDays under the scorching hot sun were coupled with bitterly cold nights. In her lonely odyssey, Oakley could fall asleep with her head pillowed on her felt hat whenever she was near a bonfire. All her dreams were intruded by a mysterious gunslinger, who claimed to be a bounty hunter from afar. His scrawny figure was in sharp contrast with his fiercely stern gaze. The gunslinger challenged Oakley's father to a duel to the death at high noon. Shots were fired, a felt-hat was dropped, and Oakley's father was falling backwards to the ground, followed by the sounds of weeping and wailing from Oakley's mother...\\n\\nLittle Oakley gawked at the gunslinger in stupor, whose aptitude with a gun was so superb that her father could never stand a chance.\\n\\nWaking up, there would be traces of damp tears on Oakley's felt hat. As a child, she learned how to shoot a gun only because she had wanted her father's handsome and stylish hat." + }, + "31022": { + "Name": "Musketeer's Coarse Leather Gloves", + "Desc": "A pair of leather gloves with partially cracked surfaces. The part where one holds a gun is particularly worn out.", + "Story": "Young Oakley practiced and practiced. She trained in the ranch from dawn to dusk. At times, her father felt surreptitiously surprised by and proud of little Oakley's talents, while other times he fretted over her future living the life of a musketeer.\\n\\nOakley's mother seemed to be the only one who actually cared and felt for young Oakley's tender little hands, often blaming Oakley's father for teaching her how to fire a gun.\\n\\nFrom the time of that fateful duel to the time when she scored her first ever bounty earning much of her later fame, Oakley had used the same pair of worn gloves for years. Her peers didn't understand her insistence on wearing the same pair of broken gloves — Only she knew the conflicting emotions within those gloves, for they were the parting gifts her mother gave her.\\n\\nWhat sort of emotional struggles must Oakley's mother have gone through, when she had been so stubbornly opposed to Oakley learning her way around guns?\\n\\nAfter that duel, her mother wept unceasingly in Oakley's arms. Oakley didn't say anything, but her mother had already read Oakley's thoughts." + }, + "31023": { + "Name": "Musketeer's Wind-Hunting Shawl", + "Desc": "A knitted cape in an ethnic style, lined with bulletproof fibers.", + "Story": "A musketeer should never show their opening first when dueling. Oakley could discreetly load bullets into the chamber and lock onto the mark without alarming her targets. For any onlookers, her loose-fitting cloak never moved one inch until the shot was fired. No one could figure out how she did it.\\n\\n\"Intricate moves should be done under the cover of the cloak. The duel must be over before the bullet had left the gun.\" Her father repeatedly emphasized.\\n\\nAfter accidentally encountering a group of armed bandits, Oakley calmly steadied herself and observed the situation. Before pulling out her gun, she had remained upright like a mountain rock that had not been moved in centuries. She finished all her preparations before the bandits could even move a finger. After a round of clear-sounding shots, Oakley intentionally let go of one bandit to send out a warning to the whole cohort.\\n\\nThoughtless, expressionless, often leaving her opponents with no hope of ever defeating her — that was how her fellow bounty hunters viewed Oakley.\\n\\nWhile dueling, Oakley was more like that one mysterious intruding gunslinger in her dreams, with her brisk and clean shots and not a single superfluous move. She couldn't help but resent her own self when she realized that she was becoming more and more like her nemesis." + }, + "31024": { + "Name": "Musketeer's Rivets Riding Boots", + "Desc": "These riding boots have a V-shaped cutout. Appearing casual and loose, they are also very comfortable to wear.", + "Story": "The journey was long and arduous, but Oakley was long used to such loneliness. She was always wearing her riding boots to march to the farthest reaches of the world, regardless of how meager a pay she would get.\\n\\nShe had a hunch — that mysterious gunslinger must also be a man of seclusion. Their encounter would inevitably occur at a place frequented by few.\\n\\nAfter coming by a harmonica, Oakley spent most of her alone time on intermittent practicing of songs. Her audience? No one but tarantulas, sandstorms, and tumbleweeds. Through her journey, Oakley was becoming better at coming up with techniques to kill time. It was said that wind had once stood and listened to Oakley's play on the harmonica, only leaving when the whole song came to an end. The IPC offered bounty hunters plenty of opportunities for interstellar traveling, and the destination was never a concern for this particular lone musketeer.\\n\\nSometimes Oakley did wonder if she was just chasing a phantom all this time, since that mysterious gunslinger was long gone without a trace. Sometimes it seemed that all Oakley ever did was to set out for one mission after another.\\n\\nOakley insisted, however, that as long as her fame as the Wild Wheat was far-reaching enough, the mysterious gunslinger would eventually show up at her door, just like how he once did at the ranch to duel her father." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases ATK by #1[i]%.", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "The wearer's SPD increases by #1[i]% and DMG dealt by Basic ATK increases by #2[i]%.", + "ParamList": [ + 0.060000000055879354, + 0.10000000009313226 + ] + } + } + }, + "103": { + "Name": "Knight of Purity Palace", + "Icon": "SpriteOutput/ItemIcon/71002.png", + "Parts": { + "31031": { + "Name": "Knight's Forgiving Casque", + "Desc": "A casque that resembles the religious stone statues of the Goddess of Forgiveness. It was used to hide the wearer's appearance.", + "Story": "The Solemn Knight had never taken off her hard and heavy casque before anybody. Safina's religious solemnity and silence projected an unbearable air of intimidation.\\n\\nHaughty devils and mad clergy all instinctively cowered in fear before her solemn presence.\\n\\nOnly few of the clergy knew that Safina's devilish origins were concealed behind that casque of religiosity. The church both feared and craved for the devils' powers, which was how the conflicted result came to be... The church captured a newborn devil, trained her to become a valiant Solemn Knight, yet forbid her to ever reveal her true appearance, molded her to always obey the pontiff's order, and eventually made her the Maiden's silent knight.\\n\\nMaiden Vanira was of a similar age to Safina, and she was the one who guided Safina to learn the scriptures. To this day, Maiden Vanira could still remember the devil's profile in candlelight.\\n\\n\"My dear Safina, I have seen your face. I will remember it, always.\" Maiden Vanira gradually lost her eyesight after reaching adulthood." + }, + "31032": { + "Name": "Knight's Silent Oath Ring", + "Desc": "A silver ring decorated with an ecclesiastical pattern, embedded with a rather cloudy gemstone.", + "Story": "Bit by bit, solemnity and decorum crumbled, and the Knights of the Church raised their swords against each other as the rings they swore to protect grew dim.\\n\\nThe power granted from the stellar seas gifted the Church the strength to punish devils, but also spread an insanity that ate away at human rationality.\\n\\nTormented by this madness, the Knights of the Church could no longer discern decorum and order, obsessed with expelling all devil-spawns for the salvation of the whole church. When these threats came for the Maiden, Safina had no time to hesitate. She cannot stay her hand even if her opponent was the Arch Knight of the Church of Purity Palace.\\n\\nThe Solemn Knight must always protect and defend the Maiden. Safina did not forget that creed.\\n\\n\"My dear Safina, there is no need to feel guilty. This is the consequence of coveting the power of the Aeons.\" All there were left in the church were the last Maiden and her guardian knight." + }, + "31033": { + "Name": "Knight's Solemn Breastplate", + "Desc": "A heavy breastplate decorated with the distinctive symbols of the Church of Purity Palace. Even the joints are airtight.", + "Story": "The armor of the Solemn Knight must be blessed by Maiden Vanira, a ceremony where one makes a vow to become the guardian knight.\\n\\nThe Church once constrained the young devil's hands and feet in metal chains. Now, Safina appealed that her armor should be forged with metals from the land of devils, so that one day she may rest in peace alongside something from her homeland.\\n\\nThe Maiden of the Church of Purity Palace carefully washed the sins from the armor, recited reverent prayers to god, and sealed an ancient miracle on a point on the breastplate right above the heart. The Church did not believe in the loyalty of devils, but they were convinced that their doctrines could purify everything. Safina gazed in silence while this ancient ritual assigned the responsibility to her.\\n\\nThe Maiden did not believe that the ceremony had any purpose, or that there are any make-belief sins to be washed away.\\n\\n\"My dear Safina, the knight must protect the Maiden well.\" Leaning against Safina's breastplate, Vanira could clearly hear the intense beating of Safina's heart." + }, + "31034": { + "Name": "Knight's Iron Boots of Order", + "Desc": "Standard boots distributed to the Knights of the Church of Purity Palace, with a simple word carved on their heels: Order.", + "Story": "After the collapse of the Church of Purity Palace, Safina took off the knight's iron boots and embarked with Maiden Vanira on a long journey to the land of devils.\\n\\nAt the request of the Maiden, Safina did not let any Knights of the Church carry the madness out of the Church. This secret was forever buried deep down in their hearts.\\n\\nNo one knew when this rumor started — a devil-spawn once banished by the Church had possessed the holy Solemn Knight, and an evil witch drove the Knight to break down the order of the pontiff... As time passed, rumors became truths. The devout followers of the Church blamed it all on the Solemn Knight, dumping all their desperation and madness onto her, deeming her as the source of all disasters.\\n\\nAfter losing their place of refuge, the Maiden suggested that they should set forth for their homeland.\\n\\n\"Henceforth, I will become a witch, and you will return to being a devil.\" Safina could not deny the validity of Vanira's statement." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases DEF by #1[i]%.", + "ParamList": [ + 0.1500000001396984 + ] + }, + "4": { + "Desc": "Increases the max DMG that can be absorbed by the Shield created by the wearer by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "104": { + "Name": "Hunter of Glacial Forest", + "Icon": "SpriteOutput/ItemIcon/71003.png", + "Parts": { + "31041": { + "Name": "Hunter's Artaius Hood", + "Desc": "A hood made from the head of a huge Snow Plains bear. The fur seems to be possessed by some ghost or deity, making it invulnerable to physical attacks.", + "Story": "The hunters' rule for surviving the Snow Plains of Snowland was simple enough — Never go to the south of the mountain during Artaius' hunting season, since that mountain-shaking white bear did not welcome anyone.\\n\\nAs the hunter sent by the association, Hugh went to the south of the mountain after receiving the rescue call. Never did he expect to walk right into an ambush long in the planning.\\n\\nAfter waking up from a long shock induced by gunshots, Hugh immediately realized he just barely escaped death. However, he also realized his plight was far from over, for Artaius was staring right at him. Despite the short range and fast pace, some of Artaius' messy attacks were bound to miss... Hugh calmly waited for an opening, then he whipped out his bone blade soaked in poison and jumped up for an extraordinary strike in the blink of an eye. Their positions as the predator and the prey were reverted.\\n\\nAfter removing Artaius' head and fur, he managed to survive the first night in snow despite his untreated gunshot wounds.\\n\\nDays later, the Hunters Association located Artaius' the headless corpse. It was then they realized the hunter who was supposed to die had survived, and an unforeseen avenger was born." + }, + "31042": { + "Name": "Hunter's Lizard Gloves", + "Desc": "A pair of tactical gloves, on which scaly claws of snowrock lizards are tightly sewn. It can be used to safely climb up and hang on to any wall.", + "Story": "Snowrock lizards lack agility and strength, but they can wait in ambush on a rock for two weeks for the precise moment when their prey lets down its guard, then finally striking a fatal blow.\\n\\nRegistered hunters, however, couldn't wait that long. They decided to march into the snowy mountains to hunt down Hugh and neutralize this approaching threat.\\n\\nThough there were many exceptionally powerful talents among the registered hunters of the association, they were never comrades who had each other's back. Hunters congregated only for the hefty prize of the bounty, and would betray one another without hesitation for the right price. After all, anything could happen on these desolate plains... As long as the old hunter Hugh was taken care of, everyone would earn more bounty. That was their consensus, for which they paid the price.\\n\\nHugh made more than enough preparations. Hunting the top hunters would be no easier a task than hunting monsters. Hugh must be more patient than ever, for patience was always the most valued trait in a hunter.\\n\\nBefore long, the number of registered hunters in the Hunters Association began to dwindle, for the horror known as Hugh the Undead was spreading." + }, + "31043": { + "Name": "Hunter's Ice Dragon Cloak", + "Desc": "A cloak made from the fine scales of the Ice Dragon, nearly invisible under the brilliant refraction of light.", + "Story": "The Lord of the Ice Lake, whose body was fully covered in unique scales that dazzlingly reflected the sunlight, could easily render itself invisible by diving underwater. Few hunters could handle a battle with such an invisible monstrosity.\\n\\nDays later, the registered hunters of the association stumbled upon the Ice Dragon's carcass with its scales already peeled off. At that moment, their horror surpassed their shock.\\n\\nThe beasts that Hugh had hunted down numbered in the thousands, each and every one of which was uniquely precious. Only by reaching a thorough understanding of the prey's traits and habits would a hunter truly achieve the full completion of a hunt... For Hugh, the Lord of the Ice Lake was the last piece in the puzzle that was the Snow Plains. Hence, he must finish the hunt, to bring his Hunter's Soul to completion.\\n\\nAnd now, the highest prized bounty was put on the head of Hugh the Hunter, instead of the Lord of the Ice Lake, marking the beginning of a hideous all-out hunt.\\n\\nAll hunters should be prepared to become the prey. It was so for Hugh, and even more so for those traitors." + }, + "31044": { + "Name": "Hunter's Soft Elkskin Boots", + "Desc": "A pair of enhanced power boots wrapped in soft elk fur. With these, the hunter will only leave shallow footprints behind in the Snow Plains.", + "Story": "Despite being deeply wounded and too weak to maintain a body temperature that can melt snow, a dying torch-antler elk was still a most dangerous beast.\\n\\nHugh pointed his hunting rifle straight at the dying elk. Looking at those awe-inducing eyes, he thought those reminded him of his own.\\n\\nEver since the ambush by the registered hunters, Hugh's life force had already become depleted like a dying candle in the wind. He was sharply aware that the only reason he managed to survive was due to his unyielding desire for revenge. Should it become satiated, his life would instantly come to an end, scattered like snowflakes... Despite his heavy footsteps, Hugh's large soft elk-skin boots did not leave any prints on the ground. He must stay sharp for the last hunt of his life.\\n\\nAmid panic and hysteria, the Hunters Association began to crumble. They began to purge traitors in haste, hoping it could grant them Hugh's mercy. Instead, it only led to their own self-destruction by mutual distrust.\\n\\nHugh fell down for good on the Snowy Plains before he could get a taste of the pleasure of completing his revenge." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Ice DMG by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "After the wearer uses their Ultimate, their CRIT DMG increases by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "105": { + "Name": "Champion of Streetwise Boxing", + "Icon": "SpriteOutput/ItemIcon/71004.png", + "Parts": { + "31051": { + "Name": "Champion's Headgear", + "Desc": "Boxing headgear that provides excellent protection. It perfectly fits the shape of the owner's face.", + "Story": "Having grown up on the streets, Lindsay had never thought of boxing in official matches for she never believed she could be defeated by anyone, let alone someone who already has a foot in the grave.\\n\\nThe old lady calling herself a boxing coach provided Lindsay with a full set of protective gear and challenged the young girl to a bout, demanding Lindsay to train under her if the old lady managed a win.\\n\\nLindsay was too proud to use the complicated protective gears and tossed them all aside. She thought she could rely on her quick reactions for an easy win, but the old lady got near her in three strides and landed a blow straight to her face. When Lindsay regained consciousness, she picked up the boxing headgear she had tossed aside. Through the narrow opening of the headgear, she saw a brand-new world.\\n\\n\"So, these are the fists of a true boxer, huh? Interesting. If you want teach me, then train me to be the strongest boxer that ever lived.\"\\n\\nThough a bit begrudgingly, Lindsay accepted that she had lost the bet. Now, wearing protective equipment for the first time, she officially stepped into the world of boxing." + }, + "31052": { + "Name": "Champion's Heavy Gloves", + "Desc": "A pair of boxing gloves kept in excellent condition. Some slight wear doesn't hinder their effectiveness.", + "Story": "When Lindsay first entered the boxing ring, her fighting style was utterly unbalanced, for she only knew how to attack but never how to defend. \\n\\nAll her years of street fighting were inadequate to prepare her for the fight in the ring. The match arranged by Icaterina put Lindsay into her place.\\n\\nA series of successive defeats in local fights shattered Lindsay's arrogance and deeply humbled her, forcing her to reflect on the balanced offensive and defensive rhythm that Icaterina was teaching her. As if kissed by the goddess of combat, this once-stubborn street fighter gradually came to understand the significance and joy of balancing offense with defense. The next thing she knew, her hand wraps were torn, and her gloves soaked with sweat and blood.\\n\\n\"Never let yourself fall into your opponent's traps. Remember your own rhythm.\"\\n\\nNow Lindsay finally came to appreciate Ica's words and her loving gaze. The usually stern Ica had long loved Lindsay like she would her own child." + }, + "31053": { + "Name": "Champion's Chest Guard", + "Desc": "A boxer's professional-level chest guard. The outer and inner padding is designed to provide protection while not hindering movement.", + "Story": "The scene in the training gym on the night before the championship fight was like the old days. The sounds of quick and heavy punches on the sandbag echoed throughout the gym.\\n\\nSweat soaked through her chest guard and the scorching steam detached Lindsay from reality, making her crave to escape it all.\\n\\nLindsay tried her best to control her emotions as her face glimmered with sweat and tears. Late into the night, she finally took off her chest guard and wrote the name \"Ica\" on the inside. She wants to swear she would achieve victory for this name. This was a key match in Lindsay's path to becoming the boxing champion, and her first fight without her coach by her side. Before Lindsay stepped into the ring, she held out her chest proudly to the camera.\\n\\n\"Lindsay.. I couldn't believe you share the same name with my daughter. I always thought I was done with the world for good when she passed, until I finally met you. Thank you, Lindsay.\"\\n\\n\"Protect me, Ica.\" The most important name was right by her heart." + }, + "31054": { + "Name": "Champion's Fleetfoot Boots", + "Desc": "Intricately crafted from leather and mesh, the combination of a thick insole and thin outsole ensures the wearer can be agile on their feet.", + "Story": "With a rather petite figure, Lindsay became famous for her fast punches and nimble footwork that allowed her to dance in the ring like a fluttering butterfly amidst flowers.\\n\\nRegardless of how fast her opponents could throw a punch, all their strikes could never hit Lindsay. Such was the power of what was known as Lindsay's Dance.\\n\\nTo train Lindsay's unique footwork, Icaterina took the street urchin to a high-society ball, where they danced hand in hand, spin after spin... Though clumsy at first, Lindsay eventually got the hang of the refined dance steps. She realized that there was more to this old boxing coach than met the eye. Among the flowing sea of dancers, a soft spot in Lindsay's heart was suddenly struck by a magical feeling.\\n\\n\"One more dance?\"\\n\\nLindsay's upbringing on the street did not at all prepare her for such experiences. Seeing the twinkle in Icaterina's eyes, how could Lindsay refuse?" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Physical DMG by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "After the wearer attacks or is hit, their ATK increases by #1[i]% for the rest of the battle. This effect can stack up to #2[i] time(s).", + "ParamList": [ + 0.05000000004656613, + 5 + ] + } + } + }, + "106": { + "Name": "Guard of Wuthering Snow", + "Icon": "SpriteOutput/ItemIcon/71005.png", + "Parts": { + "31061": { + "Name": "Guard's Cast Iron Helmet", + "Desc": "A standard-issue helmet that covers the head and face. It has lining inside to help keep its wearer warm.", + "Story": "It was no easy task staying prepared for battle in the Eternal Freeze, but Jarilo-VI's Silvermane Guards are used to it. The sharp cold wind howled through the gaps in the helmet, slashing skin as if it were icy razor-blades.\\n\\nThe monsters from beyond the sky renewed their formation, and soldiers armed to the teeth stood ready under the command of the Supreme Guardian.\\n\\nVanguards stationed forward often need to hunker down in the snow for days at a time as they look out for any monster activity. After being exposed to the elements for such a long time, the soldiers' skin, sweat, and the velvet lining of their helmet will freeze and stick together, such that hot water must be poured over their helmets for safe removal. The Architects' craftsmen then altered the curvature of the cast iron helmet's metal plates, minimizing the air resistance of the heavy helmet in the snow.\\n\\nSturdy, warm, majestic — these traits of the Silvermane Guard's helmet were passed down for generations.\\n\\n\"How can you even see with that thing on?\" Every patrolling guard has been asked this question." + }, + "31062": { + "Name": "Guard's Shining Gauntlets", + "Desc": "Metal gauntlets that give off a silvery sparkle. A complex mechanical structure is hidden within its design.", + "Story": "After the invaders carrying the marks of Destruction cut off the guard unit's retreat, Laszlo Landau ordered his troops to protect the Supreme Guardian and escape while he stayed behind to hold off the enemy.\\n\\nEven the most valiant captain among the Silvermane Guards could not retreat unscathed from the swarms of monsters.\\n\\nThe terrifying cries and ferocious assaults of the twisted monsters were unrelenting. Despite their incessant charges, none of these monstrosities managed to break the lone defense line set up by Landau. The unending fierce battles gradually exhausted Laszlo, but he managed to hold on until reinforcements finally showed up. It was only then that he collapsed into unconsciousness. The soldiers found out that Laszlo had lost both of his hands in the battle.\\n\\nThe Architects' best blacksmith forged a pair of exquisite gauntlets to bestow upon the hero, such that he may once again hold up the Silvermane Guards banner.\\n\\n\"The only regret,\" Laszlo lamented to himself as he marveled at the gauntlets, \"is that I will no longer be able to feel the vibration of the bow.\"" + }, + "31063": { + "Name": "Guard's Uniform of Old", + "Desc": "A neatly-ironed uniform of the Silvermane Guards from long ago. The sturdy buttons press creases in the fabric.", + "Story": "An old-fashioned Silvermane Guard uniform passed down for generations in the Goethe family. This uniform has long been buried at the bottom of a chest, and only a soldier's honor might be worthy of its return to the world.\\n\\nAs the soldiers of Destruction marched ever closer, the Silvermane Guards swore to defend the last barrier even when there was no possibility of a retreat.\\n\\nDuring the Defense of Vevalo, Horace Goethe led his squad in the months-long defense of a key mountain pass. When the trumpets of arriving reinforcements finally sounded in the valley, that valiant company of heroes was long gone, and even their remains were nowhere to be found. At the commendation ceremony, Supreme Guardian Alisa pinned a medal of honor on Horace Goethe's young son. The boy stood upright in this old-fashioned uniform, representing those who had made the ultimate sacrifice.\\n\\nThe young Goethe junior saw uniforms and medals on that day, but the Supreme Guardian saw so much more. She witnessed the greatest legacy left behind by heroes — the future of Belobog.\\n\\n\"Horace Goethe was a true warrior. You should be proud to bear the Goethe name.\" This was the young Goethe's only memory of the Supreme Guardian." + }, + "31064": { + "Name": "Guard's Silver Greaves", + "Desc": "A pair of hard, silver-white metal greaves. They provide protection while also being lightweight and warm.", + "Story": "The Silvermane Guard field battalions often found themselves forced to march for miles in deep snow due to tactical needs. Exhaustion induced by the long-range raids and awful frostbite on their feet were the bitter ordeals all soldiers had to endure.\\n\\nThe long march across the Snowy Plains, however, would occasionally bring back friends from the old days.\\n\\nSilvermane Guards tasked with patrolling the Snow Plains will often hear the howls of direwolves. These pitiful creatures were also driven from their homes by the invaders. Field Company Sergeant Jaeger, who came from a family of hunters, was skilled at making fur cloaks from direwolf manes. However, after the onset of the Eternal Freeze, he rarely saw these ferocious animals. Occasionally, on cold winter nights, a direwolf desperate for warmth would approach the guards' campfire and silently lie down right next to Jaeger, falling into warm, pleasant dreams. After dawn, however, the beast would never wake up again.\\n\\nSergeant Jaeger would often stuff the processed wolf mane into the soldiers' silver greaves to alleviate the pain during their long march on foot.\\n\\n\"The direwolves haven't completely lost their home, just like us,\" Sergeant Jaeger thus lamented the plight the direwolves." + } + }, + "RequireNum": { + "2": { + "Desc": "Reduces DMG taken by #1[i]%.", + "ParamList": [ + 0.0800000000745058 + ] + }, + "4": { + "Desc": "At the beginning of the turn, if the wearer's HP percentage is equal to or less than #1[i]%, restores HP equal to #2[i]% of their Max HP and regenerates #3[i] Energy.", + "ParamList": [ + 0.5000000004656613, + 0.0800000000745058, + 5 + ] + } + } + }, + "107": { + "Name": "Firesmith of Lava-Forging", + "Icon": "SpriteOutput/ItemIcon/71006.png", + "Parts": { + "31071": { + "Name": "Firesmith's Obsidian Goggles", + "Desc": "Protective goggles crafted from dark-black fire crystals. Through these lenses, even the flurry of intense sparks becomes a mosaic of dull shadows.", + "Story": "To the Firesmith clan, crafting unparalleled weapons is both their talent's calling and a lifelong curse.\\n\\nEver since the arrival of the liberated Firesmith Clan in the world of Warforge, their skills bloomed to the extremes while also becoming tainted with the aura of Destruction.\\n\\nThe dazzling light of the furnace, the sparks of metal clashing, and the long-lasting forging process can turn raw ore into a fine weapon, but can also gradually strip the firesmith of their eyesight. One day, at the bottom of a volcano, Foy found a deposit of rare obsidian flame crystal. From this, he carefully polished a pair of protective goggles, which transformed the fierce sparks of fire into pale-white silhouettes. However, the greedy smith was unable to fully escape his cursed fate either, burning everything he was into cinders in the ultimate fire.\\n\\nFoy deemed the Antimatter Legion in the Warforge as the raw materials for his creations, and himself as the rising flame.\\n\\n\"I wonder... is it possible to harness the power of a thermonuclear reaction in my furnace?\" Foy's pursuit of the ultimate fire came to an unfruitful end in an out-of-control thermonuclear fusion." + }, + "31072": { + "Name": "Firesmith's Ring of Flame-Mastery", + "Desc": "A ring with a symbol of flames. It is the highest symbol of honor among the Firesmith clan.", + "Story": "A 900-degree kiln can turn clay into ceramic, a 1000-degree furnace can melt tin and copper... As one pursues a purer creation, one must also pursue a more extreme temperature.\\n\\nCreatures of the Legion crave for separation from the material existence, longing for the fundamental mutations that can only be brought forth by the scorching heat waves of Destruction.\\n\\nA highly-skilled master Firesmith can raise the forge's temperature to unbelievable levels — the flame's black-body radiation would exhibit the blue spectrum like that of a dying star. Firesmiths are also geniuses at controlling flames, but only the best among them are bestowed with a ring of flame-mastery as a mark of their superb skill.\\n\\nThe Warforge had long ceased to differentiate between the smith and the smithed. All those Firesmith masters who had been smelting the Antimatter Creatures had also become parts of the Weapons of Destruction.\\n\\n\"The smelting depends on the temperature, and the temperature depends on the Firesmith.\" This is matter-of-fact knowledge to any Firesmith who can control the art of Destruction." + }, + "31073": { + "Name": "Firesmith's Fireproof Apron", + "Desc": "A blacksmith's apron without any superfluous adornment. The texture of the leather and the family emblem are clearly visible.", + "Story": "The Antimatter Legion gifted the dying Warforge to the Firesmiths, letting them forge to their hearts' desire in a fiery world.\\n\\nIn this scorching world of lava, as long as the smelting and hammering never ceased, creation and destruction were no longer polar opposites of each other.\\n\\nSurtur was especially good at using the molten magma that erupted from active volcanoes to infuse the Legion's creatures with a violent aura of destruction. Neither the bubbling of toxic gases nor the gurgling of magma could interrupt Surtur's concentration at the forge. Though burning waves of molten rock would splash on Surtur's fireproof apron of giant firelizard skin, the leather never lost its luster when the flames faded.\\n\\nA massive proportion of the Legion's fighting forces were repeatedly hammered and smelted in the forge until their flesh and weaponry were fused together under the hammers of the Firesmiths, becoming weapons of Destruction.\\n\\n\"This incomparable power of destruction...\" The Firesmiths who control the flames have never hidden the terrible aspirations they place in their weapons." + }, + "31074": { + "Name": "Firesmith's Alloy Leg", + "Desc": "A prosthetic produced from metallic alloy. Its surface is entwined with vivid fiery carvings.", + "Story": "In the old days, the prison masters feared losing the extraordinary arts of Firesmithing, so they would employ the most despicable tricks to incarcerate the Firesmith clan — all the chiefs of the Firesmiths would undoubtedly suffer deformities in the legs in those days of imprisonment.\\n\\nIt was the Master of Destruction that set free the imprisoned Firesmith clan and bestowed upon them the mark of Destruction which in turn granted the Firesmiths unlimited power.\\n\\nDespite the inability to move around like an able-bodied man, the chief of Firesmith obtained true freedom, for he was no longer imprisoned just for his extraordinary skills and talents in the art of Firesmithing. The chief poured in all his resentment and humiliation into the forge and would never be tired, not even by days of non-stop hammering. Upon one hammering after another, the once stubborn and proud antimatter creatures had to eventually change their form and give in to the remolding by the Destroyer.\\n\\nDespite being free from any tangible cages, the Firesmiths' obsession with forging had become another form of prison for them, had it not?\\n\\n\"Flesh and blood are a burden. Forging is also destruction.\" The chief looked at the ever-growing number of deformed Firesmiths and lamented." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Fire DMG by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "Increases DMG by the wearer's Skill by #1[i]%. After unleashing Ultimate, increases the wearer's Fire DMG by #2[i]% for the next attack.", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + } + } + }, + "108": { + "Name": "Genius of Brilliant Stars", + "Icon": "SpriteOutput/ItemIcon/71007.png", + "Parts": { + "31081": { + "Name": "Genius's Ultraremote Sensing Visor", + "Desc": "A pair of communication goggles embedded with ultraremote sensing technology that breaks through the shackles of limited transmission and remote distances.", + "Story": "It is a truth universally acknowledged, that among members of the Genius Society, there is an overabundance of eccentricity and a lack of communication.\\n\\nSocial interaction is indeed a burden for most people, even more so for geniuses traveling between worlds.\\n\\nElias Salas, member 56 and the second head of the Genius Society once tried to resolve this problem. He ardently prepared communication goggles equipped with ultraremote sensing capabilities for all members. Although he succeeded in establishing a bridge between the most distant of stars, few were willing to connect. Thus, the universe's greatest-ever communication device was never fully utilized.\\n\\n\"'Da numba you hab dialed is not in sewvice.' Can't you just show a bit more commitment when you pretend to be an AI...?\"\\n\\nElias Salas sighed and understood that this indeed was a huge ask. But he's got to give it a try, believing his technology would one day have its use one way or another." + }, + "31082": { + "Name": "Genius's Frequency Catcher", + "Desc": "A pair of gloves equipped with a precision frequency-capture device, which enables direct manipulation of otherwise-intangible sound and light vibrations.", + "Story": "\"How to slack off at work without being noticed\" was an ongoing problem for Stephen Lloyd, 84th member of the Genius Society, who was living in his foster father's fruit store.\\n\\nHe made a pair of gloves that could capture specific frequencies and the escaping sound and light, allowing himself the pleasure of researching the stringed instruments behind the frequency fence.\\n\\nThis technology could capture and confine all light and sounds within the designated area, and was simply inexplicable within the current confines of Aiden classic sciences. It was indeed an outstanding invention that could change the course of science to say the least, but Stephen had no interest in introducing this technology to the public. After all, to him, it was just a toy he made to loaf on the job.\\n\\n\"Stephen, I don't know exactly what you've done, but you're definitely slacking off, right?\"\\n\\nEven though Stephen Lloyd was celebrated as a genius among geniuses, to his foster father, Stephen was just a child that liked fantasizing and goofing around." + }, + "31083": { + "Name": "Genius's Metafield Suit", + "Desc": "Diving-suit-like attire that envelops the body when activated, sending neural signals from your whole body to the metafield in real time.", + "Story": "The metafield space created by Sserkal, member 29, transcended biological race and multiple dimensions. Any living creature could synchronize its neural signals into the consciousness network, simply with the help of a diving suit.\\n\\nFor these creatures that were unable to travel between worlds, this collective dream domain granted them a chance to connect with one another and seek peace and tranquility that were non-existent in the real world.\\n\\nWithin this metafield of virtual data, these creatures created countless cultural assets, and a new order was quietly established. Just when it looked like this virtual eden would finally replace reality, Sserkal the Net Weaver of all Creation cut off the connection to the consciousness network, as if it had been one big joke. The entire metafield suddenly sank into silence.\\n\\n\"All those investors who would yammer about metafield space all day have all gone mad. The industry has been empowered countless times, but now the metafield is gone.\"\\n\\nPeople are prone to any supposition when they lose something. The metafield might have been designed to be a petri dish for the soul. Inviting creatures of various kinds might just be a ruse for getting free soul samples." + }, + "31084": { + "Name": "Genius's Gravity Walker", + "Desc": "A wearable gravity-capture device. It is shaped like a pair of ice skates that reflects the stars' twinkling lights during quick gliding.", + "Story": "The notorious Dr. Primitive, member 64, had spent his life running away from interstellar pursuers for the great crimes he had committed.\\n\\nDr. Primitive seemed to enjoy the thrill of being pursued, always keeping a carefully managed distance from those who were hunting him, never too close to be caught nor too far to be untraceable.\\n\\nHe applied some kind of gravity-capture technology to his escape where he was able to use gravity to wander freely across space. Astrophysicists from the Intelligentsia Guild could not understand the principles of this technology, so they merely assumed that it was something to do with the gravitational potential difference between stars. His pursuers riding in vehicles of the gravity era struggled to catch up to his speed, swearing to bring him to justice.\\n\\n\"Watching someone spacewalking should've been a feast for the eyes,\" a Galaxy Ranger said. \"Too bad, that 'someone' is Dr. Primitive.\"\\n\\nThe Galaxy Ranger still refused to believe in Dr. Primitive's presumptive death and continued the hunt for him even after he had completely vanished." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Quantum DMG by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "When the wearer deals DMG to the target enemy, ignores #1[i]% DEF. If the target enemy has Quantum Weakness, the wearer additionally ignores #2[i]% DEF.", + "ParamList": [ + 0.10000000009313226, + 0.10000000009313226 + ] + } + } + }, + "109": { + "Name": "Band of Sizzling Thunder", + "Icon": "SpriteOutput/ItemIcon/71008.png", + "Parts": { + "31091": { + "Name": "Band's Polarized Sunglasses", + "Desc": "A pair of classic sunglasses worn by one of the lead singers, Janis, whose chrome lenses reflect a blue hue.", + "Story": "The star's lifespan was plunging. Residents of Emerald-III fled their home planet before the red giant exploded.\\n\\nFaced with a future of no escape, the elites took away hope, feigning ignorance to cries of desperation.\\n\\nJanis' parents paid a massive amount of credits to board the ship, helplessly praying for an interstellar salvation. The explosion of the red giant would destroy the planet, and it would collapse into a white dwarf... Before the arrival of the imminent doom, escape was the only option. Janis, the Doctor of Chaos, however, decided to try her best to face the annihilation of her home system head-on, attempting to prove that the existence of her home would never perish.\\n\\nAs the dying sun burnt brighter, Janis took her mother's sunglasses and returned to the home planet with like-minded youngsters.\\n\\n\"Only cowards flee while shouting the name of the redeemer.\" Cited from \"Cheap Salvation,\" the hit of Sizzling Thunder's first album, Janis reworded her angry words during a dispute with her parents into lyrics." + }, + "31092": { + "Name": "Band's Touring Bracelet", + "Desc": "Bassist Sid's bracelet, woven from silk wristbands from tours. Several lines of lyrics are written on it.", + "Story": "Sizzling Thunder from Emerald-III quickly emblazed the whole planet's enthusiasm with several hits.\\n\\nMarking the beginning of their concert tour were the dazzling sparkles of electrifying thunder when Daeve the rhythm guitarist fiercely struck chords, which coincidentally was also worshiped by hordes of their music fans as the only light in their lives.\\n\\nIn every concert tour the band had, there would be fans keeping order voluntarily and handing out wristbands to everyone upon entering the concert grounds. Most of these fans could not afford the costly fees for an escape, so accepting their fate and waiting for the electromagnetic burst to arrive was their only option. Ever since witnessing the return of these rebellious youths to the planet, they had felt it in their bones that their souls were ignited at this very moment. Onto these wristbands they wrote their lyrics, their showtime, as well as the band's unvoiced scream.\\n\\nSid the bassist collected the wristbands for every tour. His girlfriend wove them into a bracelet, which Sid then wore all the time.\\n\\n\"There's no meaning, no direction, nowhere else to go, and no future for us.\" From \"Our Way,\" a single from Sizzling Thunder's second album, and Sid's life credo." + }, + "31093": { + "Name": "Band's Leather Jacket With Studs", + "Desc": "David, one of the band's lead singers, drew a white star on the back of this leather jacket and made it the cover of the band's final album.", + "Story": "The rock 'n' roll of Sizzling Thunder resounded through the planetary system, attracting involuntarily displaced youngsters to return to the crumbling Emerald-III.\\n\\nLead guitarist Jimmy brought the band underground. There they sang about the tragedy of planetary destruction, which echoed throughout the entire universe.\\n\\nDavid printed the back of his leather jacket with a white star, or, more accurately, the white dwarf their star would become after the collapse. This would be their star's proof of existence. Those who left the planetary system and those who stayed behind all listened to that thunder-like rock 'n' roll and brandished the same striking symbol.\\n\\nDespite ceasing to exist, their presence had been remixed into the music and carved into eternity.\\n\\n\"We'll burn with our life, 'cause the white star needs a spark to ignite.\" From \"White Star,\" a single from Sizzling Thunder's final album of the same name. David wrote both the lyrics and the music." + }, + "31094": { + "Name": "Band's Ankle Boots With Rivets", + "Desc": "Drummer Bonham's ankle boots, the dark leather surface glued with rivets reflecting the stage lights.", + "Story": "Sizzling Thunder may have changed people's attitude toward finality, but they could not change their destiny.\\n\\nDesolation and despair were all that lay on the surface of the doomed planet. In the era of scarce resources, the band made all their albums out of discarded X-ray films.\\n\\nBefore the long night of Emerald-III, the temperature on the planet's surface had plunged. The once unbearable air cooled down quite a bit as people walked out of their underground shelter and set out for the place where the band was putting on a show. At the final concert of their \"Thunderclap\" tour, the restless air filled with the warning signs of electromagnetic storms, and lightning was conducted through the metal scaffolding to the stage. Sparks leaped under Bonham's boots. The entire band merged with thunder and lightning. After the encore, a huge ball of lightning engulfed the stage and announced the end of Sizzling Thunder's show.\\n\\nAfter the night of their twilight show, Sizzling Thunder came to a permanent end, just like in their lyrics.\\n\\n\"Thunderclaps drown out our voice, lightning runs through our veins. We'll perish with our music and our star.\" From \"Song of Sizzling Thunder,\" a single from Sizzling Thunder's final album, Bonham's masterpiece." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Lightning DMG by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "When the wearer uses their Skill, increases the wearer's ATK by #1[i]% for #2[i] turn(s).", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + } + }, + "110": { + "Name": "Eagle of Twilight Line", + "Icon": "SpriteOutput/ItemIcon/71009.png", + "Parts": { + "31101": { + "Name": "Eagle's Beaked Helmet", + "Desc": "An aerodynamic helmet used in high-speed flights. It is shaped like the beak of a skyfish eagle.", + "Story": "Every day at dawn, Salsotto's skyfishers would depart from the moving city's skyport, soaring in the air with their winged suits, hunting for phlogiston jellyfish that flew out of the sand.\\n\\nPhlogiston, an essential component of the Phase Flame, was the blood of the colossal moving city. Phlogiston must be sufficiently captured and gathered to ensure that the whole city could always stay ahead before the twilight zone that divided day and night.\\n\\nIf any skyfishers died from exhaustion or were attacked by giant birds, Salsottians would spare no effort in bringing back their remains and would bury their winged suits and eagle helmets with them in the dark land. According to the traditional Salsottian rituals, \"landing\" equals death and is a symbol of eternal rest.\\n\\nThe flight must never stop, just like how the city must never stop moving.\\n\\nThis eagle helmet has a short condolence message carved on its beak: \"Landing is not the eagles' shackle, wings are, because of which you have to fly.\"" + }, + "31102": { + "Name": "Eagle's Soaring Ring", + "Desc": "A ring worn by an outstanding skyfisher master, with a pair of skyfish eagle's wings holding tight the wearer's finger.", + "Story": "Only the most skilled, respected, and reliable skyfisher captains would receive a Soaring Ring. They blew their fishing whistles in the sky and seamlessly coordinated with one another, like they were the most sharp-eyed hunting eagles.\\n\\nFor the duration of each flight, each team member was lonely and vulnerable. All they could rely on were the 124 types of whistles that could be performed by their team captain.\\n\\nHence, there had long been a saying in Salsotto — \"Skyfishers entrusted one-third of their lives to the rigorously developed technology, one-third to their ingeniously refined equipment, and one-third to their reliable lead skyfisher captain.\"\\n\\nBeing asked by so many families to take care of their skyfisher children, the team captain constantly felt the burden of this little ring he wore.\\n\\nThis Soaring Ring's etching was mottled, with one word engraved on the inner side of the ring: \"Duty.\"" + }, + "31103": { + "Name": "Eagle's Winged Suit Harness", + "Desc": "A belt harness that connects the winged suit with metal supports embedded in thick linen. Soft and tight-fitting.", + "Story": "It was no easy feat for Salsotto's skyfishers to entrap and hunt phlogiston jellyfish that flew out of the sand. During turbulent flights, the seemingly tender and soft safety harness was the thread of life for a skyfisher.\\n\\nHunting phlogiston jellyfish was never easy. From trick moves to intense chasing, from precise blocking to the final capturing act, one wrong move in any one of these links in the chain could mean mortal danger.\\n\\nIt was customary for a young skyfisher to get one strand of hair from each parent and weave them into the harness with metal supports, while a married one should get one from their spouse. In this manner, the harness would be blessed by the power of \"home\" and ensure that the skyfisher always returned safely.\\n\\nIn this cruel world where all fought hard for survival, \"home\" was the only place that could offer comfort and support for a skyfisher.\\n\\nThe hair inside this harness was still intact, with a faint white at the root. It came from a female." + }, + "31104": { + "Name": "Eagle's Quilted Puttees", + "Desc": "Puttees to keep the legs warm during flights, decorated with a skyfish eagle's bristle feathers.", + "Story": "Hunting phlogiston jellyfish was a long survival game for skyfishers from Salsotto. Legs, being far from the heart, can only maintain their temperature when tightly strapped in fluffy feather puttees.\\n\\nOnly at the end of the long and highly stressful hunt would an exhausted skyfisher begin to feel pain and fatigue.\\n\\nFor those unprepared, it would be too late to discover their partial necrosis caused by severe frostbite. Therefore, skyfishers would check if they had tightened their puttees many times before taking off. After all, they wouldn't get another chance to do so in high-speed flight.\\n\\nThey knew what the wind would take away as they stepped into the sky.\\n\\nTraces of lime powder and aluminum powder were found in the metal shell embedded in the puttee, which seemed to be a means of emergency heating." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Wind DMG by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "After the wearer uses their Ultimate, their action is Advanced Forward by #1[i]%.", + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "111": { + "Name": "Thief of Shooting Meteor", + "Icon": "SpriteOutput/ItemIcon/71010.png", + "Parts": { + "31111": { + "Name": "Thief's Myriad-Faced Mask", + "Desc": "A mask used to change one's facial appearance. Coupled with evocative acting skills, it can help you deceive anyone.", + "Story": "Meteor Thief Leblanc saw heists as participating in a masquerade ball, and hiding his identity was part of the etiquette.\\n\\n\"How could a mask change a person's height and voice? Hahaha, it's a patented secret. Completely confidential.\"\\n\\nWearing a mask, Leblanc disguised himself as an ordinary staff member, sneaked into the IPC's security meeting, and offered advice on their \"thief prevention measures.\" It was not until half a month after the theft that the security team recalled that they didn't know that \"colleague\" at the meeting.\\n\\nThieves had to lead a double life, requiring various means of disguise. Such was the tradition of the world of thievery.\\n\\n\"Can your writers make the thief wear the mask throughout the film?\" The marketing team of the IPC's Radio, Film, and Television Department said to the producer. \"I am once again stressing the need for this mask as merchandise. Affordability and popularity are equally important.\"" + }, + "31112": { + "Name": "Thief's Gloves With Prints", + "Desc": "A pair of special gloves interlaced with nanomaterials. The prints on its surface can change in real time.", + "Story": "Meteor Thief Leblanc was never a neat freak. He didn't care about leaving traces. He would always leave misleading clues, serving the right amount of provocation.\\n\\n\"How could these people in the IPC have been fooled so many times? Perhaps the fault should lie with the IPC, not me.\"\\n\\nHis gloves could generate all sorts of prints, which always made a fool of the IPC's fingerprint detection devices, leaving them with a bunch of harmless so-called \"thief's flaws.\" The security team found hundreds of prints in their secret treasure storage room, including those of prehistoric pterosaurs, interstellar ladybugs, labradors... Needless to say, none of them belonged to the thief.\\n\\nVanishing without a trace was tedious and served only to group one alongside those timid little thieves who've got absolutely no style.\\n\\n\"Fiction should never outright contradict reality. Who still uses fingerprint systems these days?\" The IPC's security team complained. \"Do these writers have any common sense at all?\"" + }, + "31113": { + "Name": "Thief's Steel Grappling Hook", + "Desc": "A steel cable disguised as a woven belt, with hooks and pulleys hidden in its buckle.", + "Story": "A well-prepared thief can always escape safely from desperate situations with a life-saving grappling hook equipped under his belt at all times.\\n\\n\"How to throw the grappling hook at the right target... Could you explain how you made all those moves?\"\\n\\nThe secret treasure storage room was full of lethal mechanisms, but the thief danced around them using the grappling hook at his waist as if he were performing a waltz in midair. In a split second from when he reached for his belt, Leblanc threw the grappling hook to a wall tens of meters high, and the pulley then rolled and instantly sent the thief to the \"Star of Leo.\"\\n\\nTo come and go anywhere one so desires, with just the steel grappling hook equipped under one's belt, is the basic qualification required of a professional thief.\\n\\n\"You know, we could just let the stunt double play his part in the sequel. That'll save us a lot of money,\" the action choreographer quipped. \"The audience wouldn't know who was under the mask anyway.\"" + }, + "31114": { + "Name": "Thief's Meteor Boots", + "Desc": "A pair of boots that enhances any human's physical prowess. It helps the Meteor Thief stride between buildings.", + "Story": "Leblanc would deliberately leave a beam of dazzling light behind him when jumping from roof to roof, earning him the title of the \"Meteor Thief.\"\\n\\n\"How would one escape if there were no skyscrapers? Hahahaha, spare me these ignorant questions.\"\\n\\nHe had sneaked away from countless chases, and it made him a master of escape. No one could catch up with his Meteor Boots in the city unless someone knew where his base of operations was. To Leblanc's surprise, a detective with messy hair was sitting inside with his coffee cup, having waited for Leblanc for a long time.\\n\\nThe story of the thief is over. Now is the time for the legend of the detective.\\n\\n\"Many people don't believe we would write like this, which is exactly why we do so.\" An anonymous writer explained the controversial end of the Meteor Thief." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Break Effect by #1[i]%.", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "Increases the wearer's Break Effect by #1[i]%. After the wearer inflicts Weakness Break on an enemy, regenerates #2[i] Energy.", + "ParamList": [ + 0.1600000001490116, + 3 + ] + } + } + }, + "112": { + "Name": "Wastelander of Banditry Desert", + "Icon": "SpriteOutput/ItemIcon/71011.png", + "Parts": { + "31121": { + "Name": "Wastelander's Breathing Mask", + "Desc": "A breathing mask able to filter sand and radiation out from the air. It seems like it was made from a discarded respirator.", + "Story": "The Wastelanders of Talia must wear a mask at all times to protect themselves from the ever-present threats of residual radiation and sandstorms. Nobody knew if any scientific principles were even taken into account when such wild re-modifications of the ventilator mask were made. Perhaps it was all just a placebo effect.\\n\\n\"Haven't you heard? That old fool across the valley plugged water tubes into his mask! I definitely couldn't take that, if it were me.\"\\n\\nThe Wastelanders seldom complain about the extremely harsh climate in Talia. For one thing, ever since the nuclear blast filled the atmosphere with sand and dust, nothing could be done about it. Another reason, however, was that when red sand filled the air and blocked out the sun, it provided them with a prime opportunity to ambush the encampments of other bandit groups, as they could put on breathing masks and pop up out of nowhere among the sweeping sandstorms.\\n\\nA cohort of prepared bandits attacking another cohort of unprepared bandits — such is the law of survival in Talia.\\n\\nThis sandstorm mask looks like a hassle to put on and remove. It has a \"Nailscrap Town\" anti-fraud production mark on it." + }, + "31122": { + "Name": "Wastelander's Desert Terminal", + "Desc": "Multi-functional trash that can detect ionizing radiation in the air. It can also trash-talk.", + "Story": "Before Talia became the \"Kingdom of Banditry,\" it was notoriously reviled as the \"Junkyard of the Cosmos.\" Discarded junk of old technology from other planets became another man's treasure here.\\n\\n\"Don't ever ask me if I enjoy wearing a mobile device heavier than shackles. It came in handy and was more powerful than a hammer in the most decisive moments.\"\\n\\nAfter Nailscrap Town was established, the most unconventional of Talian wasteland engineers finally had a safe and secure location to exhibit their outrageous idea, creating Talia's unique \"Sensory Technology.\" By combining a cesium dust counter and a cheeky-AI mobile device, they gave birth to the Desert Terminal, a multi-functional invention from wasteland junk.\\n\\nThe core idea for the so-called \"Sensory Technology\" is — Don't ask how, don't ask why, nobody cares.\\n\\n\"You attached that piece of junk to me? You rump-fed, scurvy sewer rat...\" The AI terminal speaks with a tone of honesty and earnestness." + }, + "31123": { + "Name": "Wastelander's Friar Robe", + "Desc": "A baggy robe adapted from a missionary's attire.", + "Story": "Most of the gangsters in Talia have never expected salvation, nor do they know about friars. All they knew was that their robes looked useful enough as cleaning rags.\\n\\n\"'Ignorance is still king'? What a load of nonsense!\"\\n\\nWastelanders found a monastery that had long since lain desolate and discovered some ancient volumes from an old civilization. Their gut feeling was that the recordings were precious. After hypocritically feigning appreciation, they happily burned those books to ashes, only taking along the robes left by the friars. After all, the other things wouldn't be worth a penny in Nailscrap Town.\\n\\nMost Wastelanders were illiterate. No amount of records of civilization would be more useful to them than a hot meal. And they were not the ones to blame.\\n\\nAt least, the robes of friars remained, contributing to the continued existence of a long-forgotten civilization." + }, + "31124": { + "Name": "Wastelander's Powered Greaves", + "Desc": "The leg part of powered armor, an exoskeleton made from scrap metals and old wires.", + "Story": "Nailscrap Town's bandits needed some means to defend their hard-earned water sources and junks, which was how the subpar banditry technology came to be. The powered armor was needlessly flamboyant, with its leg parts being the only functional section\\n\\n\"I need a whole set of fully powered armor, and now you are telling me all the sections above were all blown up!? Ask yourself if you dared to wear this set of greaves yourself!\"\\n\\nThe defenses of Nailscrap Town that happened every now and then boosted the wartime development of Sensory Technology. Once, a random idea hit the engineers. With some materials of unknown source, they produced a set of powered armor. Unfortunately, only the leg part of the first generation of that cheap powered armor has survived. Even after being greatly simplified, the greaves still allow their wearer to take off like a rocket — a mechanism that confuses engineers nowadays.\\n\\nAccording to the engineers, the design was completed in the limbo between dreams and reality. It was a once-in-a-lifetime masterpiece of sheer ingenuity.\\n\\nA useful piece of junk is a good piece of junk, be it recyclable or hazardous." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Imaginary DMG by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "When dealing DMG to debuffed enemy targets, the wearer has their CRIT Rate increased by #1[i]%. And when they deal DMG to Imprisoned enemy targets, their CRIT DMG increases by #2[i]%.", + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451 + ] + } + } + }, + "113": { + "Name": "Longevous Disciple", + "Icon": "SpriteOutput/ItemIcon/71020.png", + "Parts": { + "31131": { + "Name": "Disciple's Prosthetic Eye", + "Desc": "An ingenium eye that once belonged to someone. After being expelled from its owner's body, it is now completely useless.", + "Story": "In the dim, chaotic dreamscape, she always dreamed of the brightness she had seen in those few days. Thousands of acres of eucalyptus trees swayed gently, and petals fluttered in the breeze. The indigo waves beat against the rocks and turned into scattering white jade. Flying birds spread their silver wings and disappeared into the green bamboo forest.\\n\\nShe was always searching for someone else in her dreams, the one who should have enjoyed the scenery with her.\\n\\nBut all she could see was a blurry figure. She remembered clearly the short, silky hair and the eyes like black jade stones, but her memories were faded into a maze constructed by her nervous system, and she always woke up with a start just before seeing the face clearly. In a daze, she touched her prosthetic eye that had caused her so much pain. With the help of the false eye, she no longer needed to piece together a blurry figure by sound, smell, and touch.\\n\\n\"It's no longer of use,\" said the Emanator of the Ruin Author. She heard the sound of the swaying hand fan and the flitting laughter of the Emanator. \"Soon, you'll be able to see everything you want to see — with your own eyes.\"\\n\\n\"This is my own eye,\" she chuckled, \"Besides, never will I have the chance to see the scenery it once witnessed again.\"" + }, + "31132": { + "Name": "Disciple's Ingenium Hand", + "Desc": "An ingenium prosthetic limb made specifically for long-life species. Requires no invasive procedure to use.", + "Story": "Applying protective gel to her underdeveloped arm stump, attaching the neural signal receivers tightly to her skin, and adjusting the tightness to firmly fix the ingenium wooden hand to her body — this has been her morning ablutions every morning for hundreds of years.\\n\\nThe wooden hand has brought her unwanted attention, but she neither wanted to invite trouble nor seek sympathy.\\n\\nDespite possessing unrivaled talents and holding the reins of an entire Commission in her hands, the alienating attitude other showed towards her as a broken person never changed. Cowardly bullies eventually scattered to the winds, only to be replaced by flattering hypocrites with pretended pity who gathered like flies around her and gave fake praises to \"the amazing blind and one-armed Incomplete One.\"\\n\\nShe has heard variations of this sentence thousands upon thousands of times in the past, and each time it made her wanting to puke. Now, as she faces these fawning faces begging for her mercy, she only feels disgust.\\n\\nShe unconsciously places her left hand onto the boiling cauldron. A sharp pain instantly shoots through her body. She quickly withdraws her hand, and see the blister in her palm healing rapidly.\\n\\n\"Sometimes, I feel the old wooden hand is more useful.\"" + }, + "31133": { + "Name": "Disciple's Dewy Feather Garb", + "Desc": "A feather garb made according to old scrolls. Its owner was either a demon reviled in the pages of history or a savior of humanity.", + "Story": "Searching for information in fragments of historical texts is particularly difficult for the blind. Her companions read the vast amount of ancient texts to her indiscriminately, and she compiled and excerpted the sentences in order to explore the mysteries within.\\n\\nWith her extraordinary intelligence, she can remember most of the passages after only listening to them once. However, she listened repeatedly to the The Witch in Robe of Feather ghost story unearthed from a scroll pile, never growing bored by it.\\n\\nAccording to the legend, a certain delvemaster saved her partner by placing their soul into a bird, granting them immortality. However, she eventually could not resist the call of the avian and also transformed into a bird, flying alongside them. Over time, the delvemaster became confused and lost her true form, becoming a half-feathered, half-human monster. When her subjects stormed the palace and pierced her with blazing spears and arrows, the two birds sang a final mournful song and turned to ashes together.\\n\\nShe loved this story so much that she took the essence and marrow of birds and transformed them in the alchemical furnace, then had someone weave these materials into a luxurious feather coat. She could not see just how beautiful the coat was, but nonetheless enjoyed walking around the house while wearing it — it was meant to be seen by a person who no longer existed.\\n\\nAs the garb fluttered, she always felt that a bird-like soul was flying and passing through her hands and shoulders, ever-present." + }, + "31134": { + "Name": "Disciple's Celestial Silk Sandals", + "Desc": "A pair of silk boots with soles as thin as cicada's wings. Its owner must not have walked on their feet for a long time.", + "Story": "Whenever she detaches herself from the grasp of gravity and levitates to display celestial traces to the faithful, she can't help but think of an ancient legend from the Primeval Imperium —\\n\\n\"There once was a practitioner of immortal arts who had some success in their pursuit. They walked on the earth, employing the essence of its leylines to perform a myriad of miraculous techniques. The practitioner then attempted to take to the skies to be among the stars, but found that they had long since drifted away from the earth's leylines, and eventually fell into the abyss of death.\"\\n\\nHowever, she believes the current situation is different. The Xianzhou had no roots. It was the Ambrosial Arbor that gave it a connection and a co-existence with the Aeon of Abundance, tying it tightly together with the immaculate pure land promised by Yaoshi. But now, the traitors have severed the connection to the way of immortality, making the Xianzhou once again a precarious island floating rootless in space.\\n\\nThe false earth on the Xianzhou cannot give her strength. The roots she seek are not under her feet, but in the bottomless chasm between stars. She will lead the disciples to give the Ambrosial Arbor a second life and embrace the supreme grace of Abundance.\\n\\nFloating above thousands of people, clad in boots light as silk, she declares in a resounding voice, \"When you look up at me, what you see is not me, but the celestial and elevated position that should have belonged to you.\"" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Max HP by #1[i]%.", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "When the wearer is hit or has their HP consumed by an ally or themselves, their CRIT Rate increases by #1[i]% for #2[i] turn(s) and up to #3[i] stacks.", + "ParamList": [ + 0.0800000000745058, + 2, + 2 + ] + } + } + }, + "114": { + "Name": "Messenger Traversing Hackerspace", + "Icon": "SpriteOutput/ItemIcon/71021.png", + "Parts": { + "31141": { + "Name": "Messenger's Holovisor", + "Desc": "The shape is exactly like a ski goggle. Not only does it have anti-glare properties, it can also be used to watch virtual live streams.", + "Story": "To avoid the private forces hired by the financial magnates, messengers in the Capital of Passion usually travel in the skies above the city, where security forces are scarce.\\n\\nThey like to turn on pulse-scanning and look over the entire cyber city while chewing cheap gum and donning heavily modified holovisors.\\n\\nThe holovisors project real-time information of the city directly onto the messenger's retina, turning impossible routes into an aerial path for the messengers: Building rooftops, air conditioning units, billboards, the arms of cranes... even unmanned logistics drones can become part of the path. Therefore, messengers must be skilled enough, as even one misstep would result in an unexpected and lethal fall.\\n\\n\"Some fool jammed all the holovisors indiscriminately while I was in the air! That crash was the worst I've ever had.\"\\n\\nThis Yellow Ducky holovisor is a discontinued old model that is said to be of considerable value among enthusiasts." + }, + "31142": { + "Name": "Messenger's Transformative Arm", + "Desc": "A cybernetic prosthetic arm that can be disassembled at will. Capable of firing knuckles like bullets.", + "Story": "Not all messengers have cybernetic prosthetic arms, but those who do often have a strong passion to modify it. After all, no one wants to have a cybernetic limb that looks identical to everyone else's.\\n\\nThe residents of the Capital of Passion are obsessed with cybernetic prosthetics, while the city's limited regulations can only advise against the frenzy of excessive body modification.\\n\\nThe registered standards for modifications in the Capital of Passion only contains three categories, with a total of eighteen types. This is clearly not enough for the rebellious messengers. They invest huge amounts of their salaries into imaginative designs. They create blueprints that enable their electronic conversion machinery to release lightning or transform their prosthetic hands into missiles, and the designs become increasingly outrageous as fees to engage messengers skyrocket.\\n\\n\"Are these messengers running to protect information, or are they running to earn exorbitant fees?\"\\n\\nThis Yellow Ducky prosthetic arm has undergone special modifications, with each finger joint able to rotate at high speeds and be launched like a bullet." + }, + "31143": { + "Name": "Messenger's Secret Satchel", + "Desc": "A trendy courier satchel. It's adorned with many cute accessories.", + "Story": "Financial magnates in the Capital of Passion monitor all information flow in the city. They are used to maintaining their dominance using information monopoly, and all who try to subvert this control will be punished by the Public Security Regulation.\\n\\nPeople once protested, which only made the financial magnates dish out some convenient compromises. Soon enough, people gave up on the idea of \"privacy.\"\\n\\nThe financial magnates greedily collect every piece of information whether it is important or trivial, or whether it arose from reality or virtual realms. As a result, the messengers' courier satchels have become the final bastion of privacy. The satchel is small, lightweight, and can only carry chips or documents. Despite these shortcomings, the final remains of \"informational independence\" in the Capital of Passion was solely ensured by these tiny blind spots.\\n\\n\"Why do people still transmit information outside of the internet in the prosperous Capital of Passion? The messengers also want to know the answer.\"\\n\\nThis limited edition Yellow Ducky courier satchel may be a bit old, but its various accessories make it still in fashion." + }, + "31144": { + "Name": "Messenger's Par-kool Sneakers", + "Desc": "A pair of sneakers that support parkour activities. It is comfortable, and that is all it needs.", + "Story": "The former Capital of Passion messengers all throw their sneakers into one spot, and leaves after a brief moment of silence. Most messengers wouldn't leave their name or even a trace in this city, making their behavior nothing but a self-indulgent coda.\\n\\nEven messengers can't pinpoint when the \"nature of being a messenger\" had changed to make them the people they hated the most.\\n\\nInsidiously, the \"informational independence\" that messengers protected became a monopoly. Insidiously, the risks that messengers faced became a bargaining chip. Insidiously, messengers became the accomplices of conspirators... The financial magnates did not destroy the messengers — It was their immature ideas that betrayed them. The messengers assemble before everything totally spirals out of control, and bid a last farewell to their hurried lives.\\n\\n\"Perhaps this should be the end for the messengers. Perhaps we should let everyone see the truth of this city, and let the true reformists take action.\"\\n\\nThese are a pair of Yellow Ducky sneakers abandoned on the side of the road. The messengers of the Capital of Passion have long become a legend of the past." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases SPD by #1[i]%.", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "When the wearer uses their Ultimate on an ally, SPD for all allies increases by #1[i]% for #2[i] turn(s). This effect cannot be stacked.", + "ParamList": [ + 0.12000000011175871, + 1 + ] + } + } + }, + "115": { + "Name": "The Ashblazing Grand Duke", + "Icon": "SpriteOutput/ItemIcon/71024.png", + "Parts": { + "31151": { + "Name": "Grand Duke's Crown of Netherflame", + "Desc": "A crown of unceasing flame, with its burning ambition serving as its inexhaustible fuel.", + "Story": "The elegant fire demon was born in the most fiery of all fires, and believes Destruction to be the supreme glory bestowed upon Fetora.\\n\\n\"I, born on the eve of destruction, am the sinful belief of Fetora. I am the furious flames of Nanook.\"\\n\\nNanook destroyed Fetora by THEIR own hands, and the White Star's flames coalesced with the power of Destruction to birth a plasmic lifeforms. The elegant fire demon saw its birth as a revelation. \"Today, the Lord of Destruction conquered Fetora. THEY honored it with blazing flames. The frivolous and meaningless glory evaporate with the solar flare, but concrete and heavy glory shall mark my coronation.\" Ifrit has been obsessed with destruction and slaughter since birth.\\n\\n\"The laurels of honor in this world are all woven of thorns. The only laurel that surpasses these thorns is my supreme crown of netherflame.\"\\n\\nThe embers left behind from the Aeon of Destruction's annihilation of a star were clasped in Ifrit's own hands, molded into the shape of Fetora's crown, and worn to this day." + }, + "31152": { + "Name": "Grand Duke's Gloves of Fieryfur", + "Desc": "Pure white gloves with flames as its fur, hiding its brutality under smooth silk.", + "Story": "Ifrit orchestrated countless crises bent on annihilating lives. The Grand Duke fancied themselves as a conductor, and must wear gloves to hold the conductor's baton covered in thorns.\\n\\n\"I come with Destruction's revelation. One hand giveth, and the other taketh away.\"\\n\\nFirmly believing that \"the preciousness of something can only be appreciated in its eradication,\" Duke Inferno torched the history and culture of the planet Lisalit, scorching the brilliant silks of the aristocracy, incinerating the long scrolls of the poets, razing the vivid murals of the painters to ash... \"Civilization is like a larva. It will only be reborn in a burning execution, when it turns into a black butterfly that flutters away in the wind.\" Like an undertaker who lowers their head to monitor the crematorium's furnace, Ifrit guides civilizations into their swansong.\\n\\n\"Through my efforts, imagination, and direction... the synchronization, number of performances, tone, and tempo of the different catastrophes... all fuse into a brilliant masterpiece of destructive performance.\"\\n\\nAfter the end of a satisfying destruction, Ifrit wipes the blood off their hands and dons pristine white gloves again, as if they were an aristocrat attending a banquet." + }, + "31153": { + "Name": "Grand Duke's Robe of Grace", + "Desc": "A gorgeous robe that emphasizes the dignity and elegance of its owner.", + "Story": "The elegant fire demon admires their image in the dressing mirror after an inhumane massacre. An audience with a monarch always requires appropriate finery.\\n\\n\"The purpose of clothing is not to adorn one's appearance, but to display one's true essence — just as the essence of flame is to destroy.\"\\n\\nThe ever-burning clan of fire demons regards Nanook as their emperor and savior, but the Aeon had never glimpsed at them. Ifrit's destruction is laced with flaunts, power, conquest, and motivation, and the rivalry between the Ever-Flame Mansion and the Jepella Brotherhood was even more sordid. \"Impure destruction stains the most magnificent garments more easily than dirt.\" Regarding purity, Ifrit has never been able to grasp its essence from the start.\\n\\n\"The value of destruction lies in the value of the thing destroyed. Our value lies in our practice of Destruction until our emperor takes notice.\"\\n\\nIfrit, with piety in their heart, wears brocaded garments woven with velvet-red flames, and waits for the summon of the Destruction." + }, + "31154": { + "Name": "Grand Duke's Ceremonial Boots", + "Desc": "A pair of classic and comfortable boots in pristine condition, with a sleek design and flattering style.", + "Story": "Wherever the elegant fire demon's trail wound, the smoldered civilizations silently wailed. Ifrit never paid them any attention —\\n\\n\"Those who have no roads left to walk on don't need boots. Why must these civilizations at their end whinge at me?\"\\n\\nDuke Inferno, with the crown of fire on their head, is considered by many civilizations as an otherworldly demon, yet receives an invitation from the planet of festivities. Ifrit is happy to attend in full ceremonial garb. \"I will prepare a courteous and thoughtful destruction, and not a single bone will be left behind.\" The elegant fire demon assembles a party of cosmic evil, and plans the grandiose scene of offering a mountain of corpses and a sea of blood for the banquet... Those destroyed civilizations are but mere stops on the pilgrimage to Destruction, and Penacony will just be another pit stop along the way.\\n\\n \"Your destruction is nothing personal. It is just for the purpose of earning THEIR gaze.\"\\n\\nAt the sound of the distant banquet calling, Ifrit cheerfully embarks on the long journey to the feast." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the DMG dealt by Follow-up ATK by #1[i]%.", + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "Desc": "When the wearer uses a Follow-up ATK, increases the wearer's ATK by #1[i]% for every time the Follow-up ATK deals DMG. This effect can stack up to #2[i] time(s) and lasts for #3[i] turn(s). This effect is removed the next time the wearer uses a Follow-up ATK.", + "ParamList": [ + 0.060000000055879354, + 8, + 3 + ] + } + } + }, + "116": { + "Name": "Prisoner in Deep Confinement", + "Icon": "SpriteOutput/ItemIcon/71025.png", + "Parts": { + "31161": { + "Name": "Prisoner's Sealed Muzzle", + "Desc": "A muzzle designed to tightly encage the captive's beastly visage, guarding against the feral fangs that yearn to inflict harm.", + "Story": "Smell was the sense that constructed the borisin Warheads' sense of the world. Rain, dust, campfire, blood, medicine... From the deepest part of the battlefield, they came shaking and wafting, with a torrent of odors that flooded every inch of his neurons.\\n\\nAll he could smell now is the heavy sturdiness of the torture devices, and the cowering fear of the jurors filling the air.\\n\\nHe knows that these weak-fleshed judges are afraid of the sharpness of his fangs — He had stood on the precipice of a steep cliff, bathed in the moonlight of madness, and felt the instinctive impulse in his veins. He had followed the labyrinth of smells, penetrating into the enemy's camp in the darkness of a lightless night, and crushed the skulls of his prey one by one... The borisin Warheads admire the concept of polished fangs, regarding them as blades and spears, symbols of the power and confidence to tear apart anything.\\n\\n\"The borisin Brood Lord gnashed and gnawed on flesh, devouring the blood of innocents. He is sentenced to a lifetime in a cage with his face covered in a closed-mouth muzzle, convicted of the Ten Unpardonable Sins.\"\\n\\nThe Warhead contemptuously looks around — the swordsmaster who engulfed everything like an icy sea of fury is not there... He has no interest in this tedious sentence." + }, + "31162": { + "Name": "Prisoner's Leadstone Shackles", + "Desc": "Heavy shackles that tightly bind the evildoer's hands with steel needles pinning into the wrists, preventing the vicious claws from doing harm again.", + "Story": "As the clouds parted, the moon's shadowy light poured over the Warhead's scarred body. The huge claw that was slashed off by the silver-haired swordsmaster was left aside, and the desperate Warhead's blood vessels pulsated furiously. Accompanied by a long, painful howl, he grew his sharp claw once more.\\n\\nCatalyzed by Moon Rage, the Warhead barely caught up with the moonlight-like sword strikes. He prayed silently to the power of Abundance, determined to finish the final fight as a trapped beast.\\n\\nHe had already forgotten how many times the borisin army had broken through, only remembering the countless times his soldiers had used their claws to tear open the gaps in their advance, only for it to tightly close again. The exhausted borisin relied on their nigh indestructible regeneration, struggling to tear down all obstacles before them — The Warhead's blood soaked his claws and he sank into a trance, only to suddenly realize that he had nowhere to run, and there are no more soldiers following him.\\n\\n\"Borisin Brood Lord, you have taken countless lives by your own hand. Your wrists shall be bound in lead and stone and put under strict control.\"\\n\\nThe Warhead finally collapsed, powerless, in front of the swordsmaster. For the first time, he felt that exhausting near-death experience. \"What an incomparable blade,\" he couldn't help but think, \"What an incomparable thrill!\"" + }, + "31163": { + "Name": "Prisoner's Repressive Straitjacket", + "Desc": "A prisoner's garment that restrains dangerous criminals. Its reversed-joint design confines the prisoner's body.", + "Story": "The borisin are warriors by nature. Their bone structure is broad and lean, with powerful jaws and neck muscles. They have well-developed canine teeth, beast-like ears on top of their heads, and sharp claws on their hands and feet. The borisin worship the concept of a strong body, seeing strong physique as a blessing from the gods.\\n\\nThe Warhead is both the spiritual leader and the strongest warrior of the tribe, commanding its tide-like army, and dominating life and death on the battlefield.\\n\\nThe fearsome beast ships setting off covered the very sky, and he looked down at the restless warriors on the battlefield — The borisin Warhead felt the call of Moon Rage. Sharp bone spikes pierced through his body, and his pitch-black blood disappeared in the wind like mist. He stretched out his arms like a martyr — the borisin's Lupitoxin, the fear-inducing pheromone, dispersed along with the blood mist and stimulated the borisin warriors' senses, making them seem possessed by the power of gods and demons.\\n\\n\"O' Brood Lord, grant us muscles of iron and bones of steel. O' Brood Lord, grant us the power of the gods.\"\\n\\nHe recalled the days when flesh and blood were not restrained. Children of the borisin, who carry Moon Rage in them, had broken through the limitations of flesh and blood. Their bodies erupted and deformed, yet no longer able to feel pain or fear. Guiding them was once a privilege and responsibility reserved only for the strong." + }, + "31164": { + "Name": "Prisoner's Restrictive Fetters", + "Desc": "Metal shackles that bind the feet of the beasts, imprisoning evils and preventing them from escaping and wrecking havoc.", + "Story": "The borisin roam the galaxy, despising the settled civilizations. They took away peace and tranquility and brought all-consuming war with them. Their harsh beliefs in survival compel them to fight incessantly, ever-devoting themselves to a life of bloodshed.\\n\\nThey have their own beliefs and ways — wherever the borisin set foot, it becomes their territory and nation.\\n\\nThe borisin Warhead takes pride from igniting one flame of war after another, crushing the dignity of protectors, drinking the tears of the displaced, and trampling on the trust of close ones. He allowed thorns to grow wild and fertile land to be destroyed, forced people into slavery and enjoyed an extravagant life... In order to surpass the past leaders, the new Warhead had to cast aside peace and lead his soldiers on an expedition to the outside world in order to make a name for himself and affirm his position in the tribe.\\n\\n\"Borisin Brood Lord, with you come war and a scourge upon all worlds. Your sentence is to be eternally detained and imprisoned, never to be reborn.\"\\n\\nThe Warhead is puzzled by the sentence. He looks around, confused at the trials of the weak. Those so-called crimes are nothing more than the laws of survival." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases ATK by #1[i]%.", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "For every DoT the enemy target is afflicted with, the wearer will ignore #1[i]% of its DEF when dealing DMG to it. This effect is valid for a max of #2[i] DoTs.", + "ParamList": [ + 0.060000000055879354, + 3 + ] + } + } + }, + "117": { + "Name": "Pioneer Diver of Dead Waters", + "Icon": "SpriteOutput/ItemIcon/71028.png", + "Parts": { + "31171": { + "Name": "Pioneer's Heatproof Shell", + "Desc": "A heavy diving helmet in a style common in Orkron. Through the small porthole, one can only see the unbearable and endless expanse of darkness.", + "Story": "Clouds accumulate over Orkron's night sky, and shimmering planetary rings are concealed within them. Scarlet snowflakes fall on the heavy helmet, quietly filling the grooves of rusted iron, covering the traces of erosion. The two girls sit in the cedarwood forest... taking a momentary break in their journey.\\n\\n\"Look! The air in Orkron smells like raspberries.\" Scarlet snowflakes fall on the soft, cloud-like sugar threads and quickly disappear. The little Nameless from Toyro laughs and then bends over, holding her stomach. She laughs at her own choice of words — how can one see a scent with one's eyes? After a moment of shared laughter, the silence cuts like a sharpened blade, and the air seems to frost over in an instant.\\n\\n\"Frebass, are you still going to the depths of IX?\" The question comes from her companion who is always carrying a long blade. She is a good companion, but no one knows where she comes from.\\n\\nThe little Nameless hides inside her bulky diving suit. A long pause later, she hands the companion a slightly burnt marshmallow, her eyes narrowed like the silhouette of a fully opened sail:\\n\\n\"Of course — because I will walk on a road deeper and further than Akivili's!\"" + }, + "31172": { + "Name": "Pioneer's Lacuna Compass", + "Desc": "A compass in the form of a wristwatch. The magnetic needle has been removed and can no longer point in any direction.", + "Story": "\"The undercurrent in the sea,\\nWhispering as it pecked at her bones, in one rise and fall of time,\\nShe experienced the stages of old age and youth,\\nAnd entered the vortex.\"\\n\\nThe girl has heard a story like this. In the story, the world people inhabit is depicted as a towering tree, composed of ownerless energy. \"This kind of energy is invisible, intangible, incomprehensible, and meaningless,\" she thought, \"just like how IX has no meaning.\"\\n\\nThe little Nameless is somewhat melancholic, worrying about how she would orient herself after stepping into the depths of \"Nihility.\" But soon, she had an inspiration — on her fourteenth birthday, her mother left her with one last gift... a small compass.\\n\\n\"If that's the case, as long as the compass senses not the magnetic field but 'energy,' wouldn't that solve the problem?\"\\n\\nThe little Nameless removed the magnetic needle from the compass, but when the girl descended into the darkness, she realized that the compass' only direction was down." + }, + "31173": { + "Name": "Pioneer's Sealed Lead Apron", + "Desc": "A heavy diving suit crafted from scrap iron, airtight and impenetrable. Even its wearer often jests that it resembles more of a deep-sea coffin.", + "Story": "\"Frebass, the Nameless from Toyro, died for fourteen days and nights.\\nShe forgot the cries of seagulls, the roar of the abyss,\\nThe gains, and the losses.\"\\n\\nThe little Nameless gazed at the planetary ring wider than the boulevards of Toyro. She decided to launch herself into the singularity in the black hole.\\n\\n\"Even Akivili didn't manage to go there.\" The girl could always hear the distant sound of waves echoing in her heart. \"I will walk on a road deeper and further than Akivili's.\" She prepared herself thoroughly — unidentified rusty metal plates, used oxygen tanks, discarded gyroscopic posture control devices, a self-circulating life support system, and a rectifying hood... She soldered all the materials together, ensuring that the entire suit was airtight. She believed it would protect her from the harm of Nihility.\\n\\nShe picked up the diving helmet her father left behind and wore a self-made \"Medallion of Honor.\" Before leaving, she and her companion once again went to the cedarwood forest, toasting marshmallows one last time.\\n\\nLater, when Frebass' spacecraft approached the edge of the black hole, this was all she could recall about Orkron." + }, + "31174": { + "Name": "Pioneer's Starfaring Anchor", + "Desc": "The heavy boots are formed like the anchor of a ship. Its owner is prepared to never return to the surface.", + "Story": "\"O, you who turn the wheel and watch the wind,\\nThink of Frebass,\\nAnd how she was once as beautiful and stood as tall as you.\"\\n\\nThe lead boots, like iron anchors, drag the girl down further and further. They are dutifully carrying out the task bestowed upon them from the beginning of their conception.\\n\\nThe girl never closes her eyes, fighting boldly against the cold and lonely darkness. She remembers the first time she heard stories about Akivili. She remembers the first day she set upon the journey and the \"Medallion of Honor\" she forged for herself. She remembers the 30 days she spent journeying with her companion. She remembers the forest glade they gathered in for the first and last time, and how the air there tasted like raspberries. She remembers whistles, guitars, and the flute, and the songs they sang together. She remembers scarlet snow falling on slightly burnt marshmallows and disappearing.\\n\\nThe vast void looms near the end of the vivid memories, yet she suddenly sees a dash of crimson blinking briefly into existence in the center of the pitch-black world.\\n\\nTherefore, the little Nameless remembers the smile she gave from the bottom of her heart when the girl with the sword took the marshmallows for the final time.\\n\\n\"I never thought I would meet anyone similar to me. You've walked so much further on this road than me.\\nTherefore, you will surely walk with me till then end, right?\"\\n\"Of course. Our end has already been determined... However, just like you said —\\nEven though I may turn into a shallow puddle of dead water in the end, there is still a lot I can do on my journey toward that moment. Therefore, no matter what, I have to go try it—\\n— Because I will walk on a road deeper and further than Akivili's!\"" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases DMG dealt to enemies with debuffs by #1[i]%.", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "Increases CRIT Rate by #1[i]%. The wearer deals #2[i]%/#3[i]% increased CRIT DMG to enemies with at least #4[i]/#5[i] debuffs. After the wearer inflicts a debuff on enemy targets, the aforementioned effects increase by 100%, lasting for #6[i] turn(s).", + "ParamList": [ + 0.0400000000372529, + 0.0800000000745058, + 0.12000000011175871, + 2, + 3, + 1 + ] + } + } + }, + "118": { + "Name": "Watchmaker, Master of Dream Machinations", + "Icon": "SpriteOutput/ItemIcon/71029.png", + "Parts": { + "31181": { + "Name": "Watchmaker's Telescoping Lens", + "Desc": "An eyepiece with gold carvings. The lens reflects the wonders from far away to help its owner peer through the illusory dreams.", + "Story": "In the stories about the Watchmaker in Penacony, he always possesses a unique insight that allows him to easily discern business opportunities beneath the dreamy bubbles, and create grandiose enterprises that none have thought of.\\n\\nThe frontier prison earned its freedom amidst the Cancer of All Worlds, and welcomed peace and prosperity under the radiance of The Family. It is said that was when the Watchmaker entered the fray. His eyepiece reflected the essence of this Dreamscape — People spend like wastrels in the Moment of Dusk only to \"seek the impossible in dreams.\" From then on, Penacony's dreams started to contain many incredulous objects: Teapots that can tell jokes, race cars that twirl as they drive, and mansions that switch their location every day... Most of them are utterly useless, however they are being sold at astronomical prices. And those who visit from afar are willing to toss mountains of cash for them.\\n\\nThis is a fantastical Dreamscape, so why not indulge in madness? The words \"Exclusive and only in the dream\" are enough to redefine the worth of luxuries in the Dreamscape.\\n\\nThe Alfalfa Family and old Dreamchasers from the commercial world often feel regret about this, lamenting that they did not spot these opportunities at earlier times. The Watchmaker simply saw a bit further than them — Just a bit further every time." + }, + "31182": { + "Name": "Watchmaker's Fortuitous Wristwatch", + "Desc": "A wristwatch of fine craftsmanship. It contains a unique watch face and clock hands. It is said to be the symbol of good luck in the Dreamscape.", + "Story": "Why the Watchmaker is called \"the Watchmaker\" is the biggest puzzle in this serialized story.\\n\\nSome say he was once a craftsman at a clocktower. Some say he was once a merchant who sold timepieces. There are even those who say his head is shaped like a watch face — Just like Clockie, which he created.\\n\\nAs rumors abound, the wristwatches in the dream soared in popularity with the Watchmaker's fame. The Dreamchasers know these watches have nothing to do with the esteemed man, yet still regard the watches as a way to show their respect for him and a symbol of good fortune. Due to the promotion of many commercial activities, the clock symbol became the most ubiquitous thing in Penacony — Clothes, accessories, food... From graffiti in the alleys to the giant timepieces in the hotel lobbies, the influence of this legendary mogul can be seen anywhere.\\n\\n\"Who wouldn't like clocks in Penacony?\"\\n\\nThe real Watchmaker seems to have assented to this and never expressed any opinions against that initial wristwatch design, till the clock symbol just became another fact of life in Penacony, till no one ever asked about the origin of the Watchmaker again." + }, + "31183": { + "Name": "Watchmaker's Illusory Formal Suit", + "Desc": "A splendid and luxurious formal suit with leather collars. It is magnificent and elegant, usually reserved for formal occasions such as feasts.", + "Story": "In the various legends in Penacony, the Watchmaker has very diverse identities and appearances.\\n\\nIn these rootless fables, he is sometimes a kind old gentleman, an elegant lady, and even a giant gentleman hundreds of feet tall... however, no matter the version of the story, he is always magnificently dressed.\\n\\nLegends say that the Watchmaker will share his secret with his dance partner at the Dreamscape where dusk and dawn intertwines. Hearing this, people eagerly join the dance floor and invite every single mysterious guest hidden in the lavishly-dressed crowd — More and more Dreamchasers meet each other in this way and the ball gradually becomes a place to socialize for friendships and love. The expensive tickets are always sold out upon release. Even if the master dressed to the nines from legends never appeared, it did not hinder the passion with which the guests sought an encounter with him.\\n\\n\"Your outfit... could you be the famous Watchmaker?\" This question went from what was initially a genuine query to an expression of flattery, finally becoming a code phrase for an invitation to a dance.\\n\\nThe Watchmaker gained a new business of hosting balls, and the Dreamscape had an extra dash of romance and passion added to it." + }, + "31184": { + "Name": "Watchmaker's Dream-Concealing Dress Shoes", + "Desc": "A pair of elegant leather shoes. The wearer had once stealthily walked upon dreams in an enigmatic form.", + "Story": "The Watchmaker has trodden over every inch of the Dreamscape and also across the annals of Penacony's history. His name has been talked about for centuries in this land of the dreams, and Dreamchasers of today can still hear of his whereabouts.\\n\\nPeople start to suspect whether the Watchmaker is one person, a group, or a lie woven by The Family.\\n\\nSome Dreamchasers swear to unveil the truth about the Watchmaker. They head to various Dreamscapes to seek traces of the mysterious mogul, only to gain nothing but mirages — A mysterious guest at a certain business negotiation, a masterless brand that soared into unexpected success, a huge investment with no traceable source... Every time they try to deduce that the Watchmaker does not exist, they are proving that the Watchmaker is everywhere in the dream.\\n\\nBooks about the Watchmaker fill the bookshelves in the Primal Waking Library. His name forever envelops Penacony.\\n\\nThe more people want to discover the truth, the more they will be blinded by lies... Amidst the thousands of legends and rumors, this superstar of the festivities will only leave his footprints, but never his face." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Break Effect by #1[i]%.", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "When the wearer uses their Ultimate on an ally, all allies' Break Effect increases by #1[i]% for #2[i] turn(s). This effect cannot be stacked.", + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + }, + "119": { + "Name": "Iron Cavalry Against the Scourge", + "Icon": "SpriteOutput/ItemIcon/71032.png", + "Parts": { + "31191": { + "Name": "Iron Cavalry's Homing Helm", + "Desc": "An iron helm that significantly enhances sensory signals, fusing the consciousness of the Glamoth Iron Cavalry together with their armor.", + "Story": "The Swarm that covers the sky turns to dust in a sea of fire. Silvery-white snowflakes drift in deep space, reflecting the pallid light of the star. In this brief moment, the endless sound of buzzing and the commands in the communication channel finally dials down to silence.\\n\\nThe Swarm attacking the \"empire\" has not been eradicated, and the next command to head to battle will ring out again after a brief pause, as it always did.\\n\\nThe Iron Cavalry of the \"empire\" feels the external sensations passed to her via the deep spinal cord signals. She remembers what she felt the last time she was removed from the cockpit. The hot wind had lightly tousled her hair and the humid air soaked the tissue on the back of her neck, with droplets of sweat stuck to her skin. She does not hate that feeling. It is tenfold more lively than the simulated signals. The armor deeply synchronizes its sensory organs with that of the pilot. Though this would worsen the pain of entropy loss, the Iron Cavalry has no other choice if they wish to defeat the Swarm.\\n\\n\"Rule 8 of the Glamoth Military Regulations. Any surviving Cavalry members should voluntarily return to their regiment...\"\\n\\nThe fighter only realizes that the external sensory signals have tricked her when she sees the decapitated silver armor — The next command to head to the battlefield will never sound again. What a cruel brief reprieve." + }, + "31192": { + "Name": "Iron Cavalry's Crushing Wristguard", + "Desc": "A powerful iron wristguard that can crush insectoids. It is sharp and light while being hard and sturdy.", + "Story": "Glamoth's Iron Cavalry clenches their wrists tight, causing the filthy carapaces of the Swarm to crack open, allowing the corrosive fluid from their abdomens to spray freely. When the insectoid fluid touches their silvery armor, it vaporises instantly, leaving only stains of filth and blood.\\n\\nThe wreckage of armor and insectoid limbs scatter as deep-space debris. Around Glamoth, the \"River of Death\" flowes silently under the pull of gravity, marking the end of the bloody battle.\\n\\nThe leaders of the council discuss the post-war situation, passing judgment on Titania, who had never wielded real power. It is because of her control over the Iron Cavalry, whose power rivaled that of the Swarm. She is the greatest threat to the Republic's continued survival... People ring the bells of peace, declaring to the populace that the Swarm had dispersed, and the azure sky would return to the hands of the Republic.\\n\\n\"If we do not restrain the 'Empress,' who else can control these weapons?\"\\n\\nThe Iron Cavalry ceaselessly hone their iron fists' strength in their brief lives. But they never imagined that those pale feeble hands in the council, lifting high, would possess the power to change Glamoth's fate." + }, + "31193": { + "Name": "Iron Cavalry's Silvery Armor", + "Desc": "The fiery propulsion armor gives Glamoth's Iron Cavalry a flame hot enough to ignite the battlefield.", + "Story": "Several arcs of intense fire streak across the night sky, surpassing the horizon where dawn rises, heading toward different star sectors of Glamoth — a routine that the residents of the Republic are most familiar with and also most terrified of.\\n\\nSilver-tinged armors soar through the skies, racing against time to reach the devastated battlefields, too preoccupied to gaze down at the views they tirelessly guard day and night.\\n\\nThe Empress' orders brook no argument. Identical-looking warriors are birthed from the incubators, swearing allegiance to the Empress and to reclaim Glamoth's skies. The Iron Cavalry traverse through the mountains of corpses and seas of flying insectoids' blood, burning the charred remnants of the vermin's shells, shattering their colossal jaws and toothy remnants... The fate of Glamoth's Iron Cavalry is to endure the slow disintegration of entropy, burning fiercely on the threshold between life and death.\\n\\nUntil the flames are completely extinguished, until the insectoids that blot out the sky turn into ashen black earth, until no one remains alive — such a daily routine would continue...\\n\\nWhat does it mean to be alive? As the acceleration of the propelled armor tightly clamps down on their chests and as the piercing pain of entropy-induced numbness briefly surfaces on their bodies, they would taste a brief hint of what it means to be alive." + }, + "31194": { + "Name": "Iron Cavalry's Skywalk Greaves", + "Desc": "Mechanical greaves that combine destructive capacities with speed. They allow Glamoth's Iron Cavalry to leap high and concentrate their strength into a kick directed at a single point on the enemy.", + "Story": "The Iron Cavalry's tracks spread across every corner of Glamoth's \"Empire\" like blazing meteors, yet they cannot escape the \"dream\" woven by Titania.\\n\\nThe people of the Republic worry about the legion born for war, questioning how much overlap there truly is between the \"Empire\" that never existed and the territories that the ordinary people are familiar with...\\n\\nThe Empress bestows honor and faith upon her knights, and the Iron Cavalry offers loyalty and commitment to the Empress... New humans are continuously birthed from incubators and given numbers and missions, while old humans hide beneath steel barriers, anxiously enjoying the long-awaited peace they yearned for. The deception of peace needs to be exposed by someone, and that particular method of war that shook the very foundation of humanity should not exist in the world. When the catastrophe fades, people with fear in their hearts then want to destroy the distorted products of war completely...\\n\\nThe Iron Cavalry's greaves break through the sky. As long as they are willing, they can reach any star.\\n\\nHowever, the \"Empire\" is nowhere to be found. Before the Iron Cavalry lies only a predetermined path — one end leading to death, the other to themselves." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Break Effect by #1[i]%.", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "If the wearer's Break Effect is #1[i]% or higher, the Break DMG dealt to the enemy target ignores #3[i]% of their DEF. If the wearer's Break Effect is #2[i]% or higher, the Super Break DMG dealt to the enemy target additionally ignores #4[i]% of their DEF.", + "ParamList": [ + 1.5000000004656613, + 2.5000000004656613, + 0.10000000009313226, + 0.1500000001396984 + ] + } + } + }, + "120": { + "Name": "The Wind-Soaring Valorous", + "Icon": "SpriteOutput/ItemIcon/71033.png", + "Parts": { + "31201": { + "Name": "Valorous Mask of Northern Skies", + "Desc": "A face mask modeled after the ferocious bird \"Dafeng.\" With its two pairs of auxiliary eyes, it has witnessed divine miracles.", + "Story": "Her eagle helmet had two pairs of auxiliary eyes, ensuring clear vision of her surroundings under any lighting conditions. However, these auxiliary eyes were now coated with dried, tainted blood, and everything within sight was tinged with rust.\\n\\nThe general awoke from unconsciousness, rising from a mountain of corpses. Behind her, the Cloudpeer Telescope stood tall like a towering spire reaching into the sky. At the pinnacle of the tower, a radiant light pulsed incessantly, repeating cryptic messages that only stargazers could decipher. Sustained by the collective will of trillions within the Alliance, it was praying to the god — right now, she and her lifeless comrades who had long since laid down their lives were fighting for this whispered plea to reach the heavens and bestow death.\\n\\n\"It's here...\" the general murmured softly, gazing upward. She couldn't see the form of the god or hear THEIR voice, but she could sense the evidence of THEIR arrival — waves of scorching air suddenly surged, like a branding iron skimming across her skin. Fiery sparks danced amidst the mist of blood, obscuring the sky like a curtain, which, in the ensuing moment, was torn open by an unbearable light...\\n\\nIt came. The miracle exchanged through the lives of countless soldiers finally came. She had witnessed the ruins of celestial bodies condemned by the god to become realms of the dead and had once pursued this light's trail in battle. She thought the light was extremely fast, too fast to even entertain any stray thoughts. But she was wrong. That moment was long enough for her to think of her beloved disciple again:\\n\\n\"Make a wish, then. Wish for her path to be clear...\"\\n\\nThe earth surged like angry waves, roaring with the sea of light, and she had no more worldly thoughts, transforming into dust within the light." + }, + "31202": { + "Name": "Valorous Bracelet of Grappling Hooks", + "Desc": "A bionic gauntlet integrated with the body. To hunt fearsome beasts, one must possess claws sharper than those of the beasts themselves.", + "Story": "The Verdant Knights under her command were as valiant as the Borisin Wolftroopers. Even if their swords broke and their bows snapped, without an inch of iron left in their hands, they could still fight to the death relying solely on the sharp claws on their gauntlets.\\n\\nIt is rumored that the foxian warriors of the Verdantia Fleet often rescued worlds ruled by the borisin. These foxians born in \"fallen territories\" have mixed bloodlines, occasionally producing individuals exhibiting atavistic mutations. These foxian individuals are conscripted as war slaves, driven by their wolf-headed masters to serve as vanguards before battles and as cannon fodder to delay attacks by Xianzhou ships.\\n\\n\"Join the Verdant Knights, and we will give you the chance to seek revenge against your wolf-headed masters!\" During recruitment and training, the general remembered saying this to the young foxian girl. But she felt guilty for the latter half of the sentence that she couldn't bring herself to say: \"Like me, you were born for war and will die for war.\"\\n\\nAlthough the war slaves possessed strength and speed comparable to their wolf-headed masters, their mutations also depleted their life and sanity. When their will was burnt to embers by rage, they would descend into bloodthirsty monsters.\\n\\nWhen pure bestial fury rules their bodies and after completing the final hunt and chase of this life, these gauntlets will become shackles that bind their hands, never to be separated from flesh and blood again." + }, + "31203": { + "Name": "Valorous Plate of Soaring Flight", + "Desc": "Like the cold wind, soaring above a pack of wolves with their heads held high. The hunter and the hunted will eventually switch places.", + "Story": "She still remembered the ancient ballad of the fox clans, singing a tune that never quite became a melody, only a mournful lament for their lost homeland. \"Sauntering fox on the distant shore. Traveling slowly, thirsty and hungry. My heart is filled with sorrow, yet no one knows my grief.\"...\\n\\nThousands of years ago, they became livestock, servants, and currency under the tyranny of the wolves' claws. Thousands of years later, they still fight tirelessly for the liberation of their kin. Despite lacking their natural enemies' constant mutating and transforming bodies, they possess keen adaptability and wit.\\n\\nTheir wolf-headed masters commanded them to craft tools for use, yet repeatedly dug out their eyes to prevent learning and forbade them from possessing metals to avoid copying any tools. None of this could erase the fox clans' inner desire: One day, they would teach the hunters the fear of being hunted. One day, they would swap places with the hunters and pursue those without rest.\\n\\nIn the end, the fox races forged porcelain into armor. The Verdantia Knights' porcelain armor was as light as the wind and strong as steel. Their wolf-headed masters' claws and weapons of flesh could not harm them in the slightest.\\n\\nThe general donned this porcelain armor, rising with the Verdantia Fleet warriors with the wind, becoming a nightmare soaring above the borisin. They advanced and retreated in formation, like a flock of hunting birds, echoing each other. But no matter how sturdy this armor was, she always believed in this: A body tempered by pain is the best weapon, and comrades who share hardship are the best armor.\\n\\n\"Birds spread wings. Beasts bare fangs. Who said we have naught to garner? Our comrades are our armor.\"" + }, + "31204": { + "Name": "Valorous Greaves of Pursuing Hunt", + "Desc": "Combat boots fashioned after talons. They allow the wearer to swiftly dash onto the battlefield like the wind, effortlessly traversing through thorns and rugged terrain.", + "Story": "She watched the girl's figure dart swift and sure in the soft moonlight. She followed the girl's footsteps and scent like a hunter tracking their prey. Finally, she waited for the girl at the end of the road.\\nOr perhaps, it was the girl waiting for her to arrive.\\n\\nIn the moonlight, the general saw that face clearly.\\n\"Do you want to join the Cloud Knights that much?\"\\n\"I don't want to give my life to a wolf-headed master.\"\\nThe girl's borisin speech was difficult and broken. The expression on that face — the general had seen it countless times while rescuing trapped kin from the fallen territories.\\nThough these people shared the same blood as her, yet they spoke different languages and harbored different thoughts.\\nThey never considered themselves descendants of the foxes, but then, who were they?\\nThe general trembled slightly, stepping aside and vacating the path.\\n\"Go. From tonight, they won't chase you anymore...\"\\n\"But I want them dead.\"\\n\\nThe general looked at her in disbelief, as amazed as if she had seen a shooting star streak across the sky, and the girl's animal-like figure suddenly vanished into the darkness.\\nThe general closed her eyes as if the moonlight burned them. After a moment, she looked down and saw the girl's bare, thorn-scarred feet covered in mud.\\n\\n\"Why aren't you wearing shoes?\"\\n\"I forgot. I didn't notice.\"\\nThe general took off her own boots, compared sizes, and helped the girl put them on.\\n\"They fit pretty well... Let's go then.\"\\n\"What about you?\"\\n\"I'm used to walking on thorns.\"\\n\\nShe quickened her pace, barefoot and agile, with the girl closely chasing after her.\\nOr perhaps, they were both chasing after each other." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases ATK by #1[i]%.", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. After the wearer uses a Follow-up ATK, increases DMG dealt by Ultimate by #2[i]%, lasting for #3[i] turn(s).", + "ParamList": [ + 0.060000000055879354, + 0.3600000003352761, + 1 + ] + } + } + }, + "121": { + "Name": "Sacerdos' Relived Ordeal", + "Icon": "SpriteOutput/ItemIcon/71038.png", + "Parts": { + "31211": { + "Name": "Sacerdos' Melodic Earrings", + "Desc": "He often sits in the confessional booth listening to the stories. The earrings serve as a constant reminder that even the faintest whispers have their weight.", + "Story": "\"As you command. I committed sins. I falsely claimed that various lineages were divided and exchanged this hearsay misinformation for payment...\"\\n\\nThrough the partition, the family head catches the journalist's evasive gaze as the penitent nervously awaits his response — a ritual of confession he had done countless times when his consolations ring out like bells to let the faithful repent for their sins. However, this time he subconsciously turns his head, trying to say something but stopping himself, letting his metal earrings emit a crisp noise next to his ears.\\n\\n\"I'm fully aware that this claim is completely groundless. Thanks to the grace of the Great One, all Family members stand united as one. This is the collective desire of all lineage members, and their reason for devoutly embracing the Great One.\"\\n\\nThe penitent confesses his sins, resolves to amend his mistakes, and seeks absolution from their evil via the harmonic tunes. The family head closes his eyes gently and utters the sacred benediction.\\n\\n\"Very well. Show your sincerity to the other Family members and dispel those rumors. In this way, you shall be reinstated with harmony. Now, please leave in peace.\"\\n\\nWhat sin is there in speaking truth? His dictates are crystal clear but are burdened like a yoke. He sighs and shakes his head.\\n\\n\"...Next, please step forward.\"" + }, + "31212": { + "Name": "Sacerdos' Welcoming Gloves", + "Desc": "He often stands in the mansion to greet visitors, countless times making the gesture of invitation. The pristine gloves remind him of observances of humility and courtesy.", + "Story": "\"These visitors claimed to have urgent matters to report, esteemed head, but some of their identities remain questionable, and they used shady means to enter the Dreamscape...\"\\n\\nThe uninvited guests trespassing the Dreamscape are lined up. If all goes according to plan, malefactors who inflicted harm will face banishment, and impostors with fraudulent identities will be apprehended. He says nothing, yet all arrangements have been made. The innocents witness his wrath, and expectations and uneasy spark in their eyes — Then, he smiles, extending his hand in an inviting gesture to the people remaining before him. It is a symbol of acknowledgment and a display of authority.\\n\\n\"You are all esteemed guests of the Oak Family, and therefore you shall be welcomed with courtesy. Perhaps you wonder how you are judged fairly. Allow me to give a short explanation — It is because the 'road' you walk on has crossed with mine.\"\\n\\nThe attendants, the artists, and the jobless ones dispelled their doubts as they recognized the truth behind his invitation.\\n\\n\"Let transgressors face deserved punishment, and let guests receive deserved courtesy. Such should be the law of harmony.\"\\n\\nThe family head's combined sternness and generosity are enough to earn him the trust of his guests. Surveying the assembly, he bows slowly...\\n\\n\"Welcome to the Oak family.\"" + }, + "31213": { + "Name": "Sacerdos' Ceremonial Garb", + "Desc": "He often stands before the dressing mirror, ensuring his attire is impeccable and his features perfect. Before he leaves the house, he will ensure that everything is meticulously arranged, and no deviations will occur.", + "Story": "\"...Birds are born with no shackles, then what fetters my fate♬?\"\\n\\nOn rehearsal day, the young family head hides in a corner of the audience seats, refraining from distracting the singer on the stage and maintaining the right distance, just as he had wished. He sits upright in his ceremonial garb as the solitary listener for that moment. Amidst the familiar melodies, his thoughts drift back to his childhood, recalling occasions when she sang on stage, and he was her only audience —\\n\\n\"It's been so long since you sang with joy... I've built a stage for you, though it's... a bit rudimentary.\"\\n\\nDuring the concert for the two of them, he vowed to fulfill her dream of gracing a grander, brighter stage someday.\\n\\n\"Let my heart bravely spread the wings. Soaring past the night. To trace the bright moonlight...♬\"\\n\\nHe snaps out of his trance, then faces the root of his reluctance to draw nearer to the stage — His ceremonial garb is not just for enjoying the performance, but for the chance to withdraw at any moment he pleased.\\n\\n\"Congratulations, sister. We have both achieved our aspirations,\" he softly utters." + }, + "31214": { + "Name": "Sacerdos' Arduous Boots", + "Desc": "He often chose boots that snugly embrace his feet before embarking on his journeys. Despite numerous falls, he rose each time.", + "Story": "\"Go now. You are free — O chosen one, who dared to exceed his bounds. Sever your wings, descend to the mortal realm, and walk their lands. See what this world is truly like.\"\\n\\nSince then, the IPC executive's words often echo in his mind. He traverses bustling streets and quiet shores, always in motion yet rooted in place... He never doubts that he has the determination to remain unwavering or that he has the capacity to execute the plan with devotion, but before rising again, he intended to pause and savor the hard touch of ideals crashed to the ground...\\n\\n\"The fragmented stones, steeped in beast blood and human sweat, forever cold, rough, and unyielding...\"\\n\\nAs the head of the Oak Family, he had shepherded numerous lost souls onto the right path. Yet, when it concerns himself, those gentle reassurances seem to lose their charm — He does not need rebuke, guidance, or sympathy.\\n\\n\"Only from the mire arise those who trudge and toil. I shall press forward, learning more from my stumbles than my triumphs.\"\\n\\nBefore truly embarking on his new journey, he has enough time to slow down, reflect and rearrange his thoughts, then continue to wander at the same spot.\\n\\n\"Walking has no intricate philosophy. If one path proves impassable, simply veer onto another.\"" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases SPD by #1[i]%.", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "When using Skill or Ultimate on one ally target, increases the ability target's CRIT DMG by #1[i]%, lasting for #2[i] turn(s). This effect can stack up to #3[i] time(s).", + "ParamList": [ + 0.18000000016763806, + 2, + 2 + ] + } + } + }, + "122": { + "Name": "Scholar Lost in Erudition", + "Icon": "SpriteOutput/ItemIcon/71039.png", + "Parts": { + "31221": { + "Name": "Scholar's Silver-Rimmed Monocle", + "Desc": "A crystal monocle reflecting a grand building, demonstrating its owner's sophistication and erudition along with the cane, bracelet, and brooch.", + "Story": "[ID] EVD-W019EI06-003\\n\\n[Name] Crystal monocle\\n\\n[Key Feature] Displays evident fractures\\n\\n[Location] Bohdan laboratory in the Energy Research Lab, Ohioti Central Academy of Sciences\\n\\n[Individual Involved] Bohdan, the Chief Scientist in the energy analysis field and member No. #7 of the Genius Society.\\n\\n[Site Analysis]\\nThe traces on the site indicate that the subject inadvertently triggered a reaction while operating the observation device, leading to Phlogiston leakage from the vessel and severe injury to the subject's left hand. During the incident, the monocle fell from a height and was fractured.\\n\\n[Supplementary Testimony]\\nBohdan mentioned abnormal visual light emissions in the monocle during experimentation, resulting in a series of coincidences that eventually led to the Phlogiston leak.\\n\\nThe testimony was deemed inadmissible due to an excessive number of coincidences mentioned by the witness.\\n\\n[Additional Information]\\nSuspected as a premeditated criminal act. However, the cascading coincidences creating the Butterfly Effect did not constitute a reproducible criminal method, therefore this event was ultimately classified as an accident.\\n\\n[Recording]\\n\"...This accident is actually a blessing in disguise, because it sent Lambda back to me again. Actually, this is our fourth remarriage... and it's a bit embarrassing to say, but this is MY first proposal for a remarriage.\" Sourced from Bohdan." + }, + "31222": { + "Name": "Scholar's Auxiliary Knuckle", + "Desc": "An exoskeleton crafted from an alloy that aids finger movements, tailored to the user's hand and of significant value.", + "Story": "[ID] EVD-X024DE18-002\\n\\n[Name] Finger exoskeleton infused with Grayseal Gold alloy\\n\\n[Key Feature] Displays signs of external damage. Confirmed to have been damaged before the explosion\\n\\n[Location] Central control room, polar energy excavation site\\n\\n[Individual Involved] Lambda (deceased), the best scientist in bio-wave detection science and member No. #8 of the Genius Society.\\n\\n[Site Analysis]\\nSurveillance footage indicates the subject's improper operation led to a volatile explosion in the central control room, which immediately killed the subject.\\n\\n[Supplementary Testimony]\\n\"God knows what secrets she's been hiding, but if anything happens to her, Klein definitely has something in it!\"\\n\\nTwo weeks prior to the explosion, Bohdan filed a report, stating that a thug had harmed his wife's disabled right hand. However, Lambda, the actual victim, declined further investigation and withdrew the case.\\n\\n[Additional Information]\\nAfter the explosion, the subject's husband requested to retrieve the exoskeleton along with the subject's finger bones once the investigation was over.\\nGiven the string of incredible coincidences in this incident, this case is recommended for high priority.\\n\\n[Recording]\\n\"Come to me, Klein! We've got to settle this score! Both you and I know well there are no such things as 'coincidences' in this world, let alone this unbelievable string of them.\"Sourced from the security system in Klein's house." + }, + "31223": { + "Name": "Scholar's Tweed Jacket", + "Desc": "Tweed jackets paired with knitwear are a commonplace attire at the academy. For visiting scholars, its durable fabric is an ideal choice.", + "Story": "[ID] EVD-X043FE21-001\\n\\n[Name] Tweed jacket, coarse spun wool vest, and white shirt\\n\\n[Key Feature] Displays an 8-centimeter Phlogiston burn mark on the left chest\\n\\n[Location] Bohdan laboratory in the Energy Research Lab, Ohioti Central Academy of Sciences\\n\\n[Individual Involved] Bohdan (Deceased), the best scientist in the energy analysis field and member No. #7 of the Genius Society.\\n\\n[Site Analysis]\\nThe traces on the site indicate that the Grayseal Gold pellets carried by the subject absorbed a substantial amount of Phlogiston, resulting in a temperature spike of nearly 1,000 degrees Celsius near the subject's heart, leaving burn marks on the jacket, vest, and shirt.\\n\\nHalf of an unburnt finger bone was found in the burnt area, identified as originating from Lambda or related to the high-purity Grayseal Gold pellets.\\n\\n[Supplementary Testimony]\\n\"...We should have been more caring about him, especially considering he never truly let go of his wife's death...\"\\n\\nAccording to other scholars at the lab, Bohdan, who devised the safety manual specifications, should not have made such a \"simple mistake.\"\\n\\n[Additional Information]\\nGrayseal Gold is a rare alloy developed by Klein, member No. #9 of the Genius Society, known for its ability to absorb and store Phlogiston.\\n\\nWhen a series of coincidences pile up, does that still count as a coincidence?\\n\\n[Relevant Document]\\n\"It is strictly forbidden to bring high-purity Grayseal Gold alloy products into laboratories with Phlogiston observation areas.\" Excerpted from the Energy Research Laboratory Safety Manual." + }, + "31224": { + "Name": "Scholar's Felt Snowboots", + "Desc": "These cozy and stylish women's boots have accompanied their owner on polar expeditions for years, being perfectly in-fashion when paired with calf-length pants.", + "Story": "[ID] EVD-X031JA12-004\\n\\n[Name] Women's snow boots for polar expeditions\\n\\n[Key Feature] Displays evident signs of wear and repair, with a hidden disk in the sole. Possibilities of espionage have been preliminarily ruled out\\n\\n[Location] Basement of Klein's House\\n\\n[Individual Involved] Klein (deceased), the best scientist in alloy material science and member No. #9 of the Genius Society.\\n\\n[Site Analysis]\\n\\nA huge number of items belonging to the late scientist Lambda were found in Klein's home, including the these boots.\\n\\n[Supplementary Testimony]\\n\"Maybe I was wrong about him... I mean, Klein. As for my late wife, Lambda... She's been away from me for a long while, and I just feel... unfamiliar about her.\"\\n\\nBohdan was unaware of his wife's belongings in Klein's home but displayed no visible surprise upon discovery.\\n\\n[Additional Information]\\nKlein's residence is located in a remote area with no visitors around the time of death as determined by the coroner. The preliminary diagnosis is accidental death.\\n\\nBohdan, Lambda, and Klein shared a unique relationship and the series of \"coincidences\" they experienced border on supernatural phenomena.\\n\\n[Recording]\\n\"*Sigh* I know you doubt me, Bohdan, and I know I can't prove my innocence to you. I'm very sorry for what happened to Lambda. I feel guilty, but I'm the last one who would ever deliberately harm her... In fact, I have some leads about the murderer's identity. Have you ever heard of the Lord of Silence?... *noise*\" Sourced from the disk hidden in the boots." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases CRIT Rate by #1[i]%.", + "ParamList": [ + 0.0800000000745058 + ] + }, + "4": { + "Desc": "Increases DMG dealt by Skill and Ultimate by #1[i]%. After using Ultimate, additionally increases the DMG dealt by the next Skill by #2[i]%.", + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064 + ] + } + } + }, + "123": { + "Name": "Hero of Triumphant Song", + "Icon": "SpriteOutput/ItemIcon/71040.png", + "Parts": { + "31231": { + "Name": "Hero's Wreath of Championship", + "Desc": "Wreath awarded to the coliseum champion. Every gold leaf shimmers with courage and glory.", + "Story": "Time appears to slow with Oronyx's sighs. He can hear his own weighted breathing, his ribs throbbing with pain in his chest, as if trying to suck in all the air in the arena... Sweat and blood mix together, the earth beneath his feet seducing him into surrender, to enjoy that soft, soothing rest — He is absolutely spent.\\n\\n\"Where will the next blow come from? Left, or right? A feint? Or...\"\\n\\nThe speartip is already lunging towards him, leaving him no time to think. Might as well entrust his fate to the Strife Titan — all he needs to do is thrust his spear forth.\\n\\nThe dust gradually settles, slanted rays of sunlight shining over the coliseum's side, bathing the flank of his face. He sees the spectators starting to stand up from their seats, raucous applause and cheers riding through the air like a surging tide. At this moment, to his surprise, he discovers that the coliseum is extremely spacious, and the feeling of being unable to escape seems to have never existed. The center of the vast coliseum contains only blood streaks, the fallen opponent, and a solitary, shining victor.\\n\\nThe lord of the city raises his hand high, declaring him the champion. The booming of drums follows and he dons the wreath, becoming a legend of the coliseum.\\n\\n\"You have been chosen as the barrier troops commander attending to the lord of the city. Your name will be synonymous with victory, to be written in heroic epics!\"\\n\\nSoon after, his name is cheered by all across the city. Nikador's glory shrouds him as if the entire world exists only for him." + }, + "31232": { + "Name": "Hero's Gilded Bracers", + "Desc": "A pair of elite bracers for the barrier troops commander. They tightly wrap around the warrior's wrists, steadfastly supporting the trumpet of victory.", + "Story": "Be it a triumphant victory or total defeat, the coliseum champion is always able to return from the battlefield. The lord of the city attributes his fortuitous luck as a \"symbol of victory,\" thus robbing the lance and shield in his hands in exchange for trumpets and banners, ordering him to bequeath his good fortune unto the whole army. The soldiers firmly believe that Nikador's glory walks with him, and as long as he spearheads the front, the path to victory is all but assured.\\n\\n\"Henceforth, you are no longer needed as a warrior, but should become a symbol.\"\\n\\nThe body honed sturdy as rock over days and nights of strenuous training, now exists only to be admired like a temple statue.\\n\\nHe has been barred from the training grounds, for the soldiers mortally fear the slightest accident befalling this \"symbol of victory.\" He has been invited to the lord of the city's feast, where guests insist he regale them with the legendary tale of those sixteen fights to the death. Now, he has been stationed at the borders of the battlefield, holding a trumpet, his scintillating gold braces reflecting a profile growing ever more unfamiliar, and a sudden tightness grips his heart — he only has to blow on this trumpet, never needing to charge into the fray again... So, this is the \"A hero who wins without fighting\" of which people speak.\\n\\n\"...If this can bring victory to the army, I will voluntarily forsake my glory on the battlefield.\"\\n\\nNikador never chooses a path to victory for a \"symbol,\" so he dares not slack off — the final battle of his life may be upon him..." + }, + "31233": { + "Name": "Hero's Gallant Golden Armor", + "Desc": "Armor akin to a god's, perfectly fitting the bodily contours of a powerful physique.", + "Story": "When confronting the god, whose mind has long been steeped in madness, it is destined that no mortal will leave the battle a victor. Spears break and shields fly where Nikador's lance sweeps past, wreaking destruction across every inch of the frontline... Disorder spreads throughout the ranks, soldiers descending into unprecedented chaos and fear. Drowned out by screams, wails, and the clanging clash of steel weapons, the trumpet calls of the coliseum hero have long since been unable to turn the tides of this defeat.\\n\\n\"Nikador wishes to take back the victory they promised, and I must repay it with my lance and blood.\"\\n\\nIn the roiling smoke and dust, a tattered banner advances in Nikador's direction. The soldiers notice that the hero of fortuitous fortune has chosen not to return home.\\n\\nIn the beginning, only four or five soldiers followed the hero. Then it turned into dozens, then hundreds... They walk behind the broad figure toward a battlefield of inevitable death to initiate their final charge — their fallen comrades seemingly turned into heroic spirits, whispering into their ears, spurring the survivors into finishing this final gambit. Even if Nikador has already descended into madness, they must have instinctively felt the resolute determination and undaunted will of this band of warriors.\\n\\n\"Look! The hero of the coliseum is still pushing forward! We must follow with haste!\"\\n\\nHis gilded armor still glints in the hues of sunset's glow, as he leads the army towards a dignified and noble death." + }, + "31234": { + "Name": "Hero's Firechasing Shinguard", + "Desc": "Tight-fitting shinguards around a warrior's legs, its contours elegant and durable, imbued with the spirit to never retreat.", + "Story": "The soldiers mutely walk into the ruins and start to sweep the battlefield. Some drag the corpses apart with difficulty, separating friend from foe, while others kneel by their dead comrades and gently close the eyes of the deceased... The battlefield's roars have long dissipated, leaving only a suffocating silence — The hero of the coliseum also sleeps forever among these fallen, only leaving behind a pair of upright gilded shinguards among the blood and dust.\\n\\n\"Remember, warriors on the battlefield never truly disappear. Their heroic souls will forever stay in the memories of future generations.\"\\n\\nLater, the silence is shattered by wailing elegies. Priests shuffle into the battlefield to organize funerals for the dead.\\n\\nFires light up the dark night, and the dirges endure for a time unceasing... Suddenly, the distant sky is pierced by a splendid ray of light, as if the Lance of Fury has been thrust into the earth — it is Nikador's summon to the heroic souls of this place. With that, the attending soldiers and commonfolk all kneel, raising both their hands above their heads, their hearts brimming with respect and gratitude — That ray of light turns into a warm aura of embrace, gently lifting each warrior's soul while whispering of the Titan's graces and magnanimity, proclaiming the heroes' everlasting immortality.\\n\\n\"Look, the hero of the coliseum leads the soldiers on a homeward triumph even in death.\"\\n\\nThe hero nods faintly — in the ballads of old, his noble soul will once again be reforged." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases ATK by #1[i]%.", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "While the wearer's memosprite is on the field, increases the wearer's SPD by #1[i]%. When the wearer's memosprite attacks, increases the wearer's and memosprite's CRIT DMG by #2[i]%, lasting for #3[i] turn(s).", + "ParamList": [ + 0.060000000055879354, + 0.3000000002793968, + 2 + ] + } + } + }, + "124": { + "Name": "Poet of Mourning Collapse", + "Icon": "SpriteOutput/ItemIcon/71041.png", + "Parts": { + "31241": { + "Name": "Poet's Dill Wreath", + "Desc": "Before the Temple of Dusk in spring, the most outstanding of bards will receive a dill wreath bequeathed by Mnestia.", + "Story": "\"Mnestia, we pray to you. For if the world had no song, there shall be no song-filled spring, and no forest will sprout blooms...\"\\n\\nAfter cleansing both hands by the stream, then scooping out chilled wine as an offering to the god, the bards gather before the temple, bickering over who would receive Mnestia's blessed wreath. The three sisters of Parthia, renowned for their poems of love, demonstrate their song first. They are followed by an old man, Lupes, the poet with myriad mesmerizing metaphors. Lyrics of honeyed elegance do not move the goddess, the wine cup before them unmoving.\\n\\nUntil a wandering poet plucks the seven-stringed lyre in her hands, playing a tale written on ancient papyrus. Sand and winds from a millennia ago sweep across, and the story starts thus — In an age when many cities still existed in the world, a city was attacked by an evil dragon.\\n\\n\"Lament for my homeland...\\nA monster dwells in its palatial hall, noble heirs becoming vile scoundrels,\\nAll because of that giant dragon that breached the high tower,\\nCorrupting my ruler, devouring my kingdom's princess...\"\\n\\nThe wine is imbibed fully by the goddess, and the wandering poet becomes the owner of their wreath." + }, + "31242": { + "Name": "Poet's Gilded Bracelet", + "Desc": "A bracelet crafted from favored metal. The evil dragon in the story was once fettered in shackles made from this metal.", + "Story": "\"People dug up gold from Georios' body, the first fearsome metal of its kind. And thus deceit and war were born.\"\\n\\nThe origin of warfare has long since faded from time, and much of history has turned into legend. Yet, even as a legend, it is clear that arrogance, deceit, and avarice are the reasons for endless conflict among people, though gold takes the wrongful blame as its source. Just like those resplendent years untouched by strife, white iron and bronze were originally ritual offerings to gods. It was only later that they were cast off from altars and melted into armaments, becoming even more fearsome metals than gold.\\n\\nThe dragon in the story has been subjugated, right...? The wars among the cities are also near waning. The wandering poet's travels bring her to the holy city, where she plays the tale of the aftermath — After the evil dragon occupies the city, people rally dragon-hunting braves to rescue the princess.\\n\\n\"Lament for my homeland...\\nThe courageous centurion, with shackles forged in heavy gold, finally subjugates the evil dragon.\\nThe old ruler's cries can be heard from the tower-top...\\nFrom the dragon's belly, only scant parts of the devoured princess are found, where only bones remain.\"\\n\\nThe metal bracelet's tassels run across the lyre, emitting a crisp sigh." + }, + "31243": { + "Name": "Poet's Star-Studded Skirt", + "Desc": "Dawn is the gentlest time of the day, her skirt is coincidentally also the colors of the last string of stars before dawn.", + "Story": "\"When Aquila opens their eyes, all the stars are asleep. Only one squinting night star remains, being the most curious.\"\\n\\nThe narrative poem continues till the second cycle of day and night. More listeners gather around the poet, among them Kremnoans with quivers clinking with arrows, and those from Janusopolis who cast divining rods for godly advice. Since the black tide's encroachment across cities, countless historical records have been scattered, and the Grove's scholars have had little time to collect all the documents — many lesser cities did not even get the chance to leave their names behind.\\n\\nOnly the wandering poet knows that the old city occupied by the evil dragon once possessed the esoteric method of alchemy: With flesh as the foundation, everything could be created, and miracles could be performed. The alchemists spoke as such to the king, heartbroken from the tragic loss of his beloved daughter.\\n\\n\"Lament for my homeland...\\nThe silver-tongued alchemist was confident he could resurrect the princess from the dragon's flesh.\\nWhat is dead, yet undead. Another ten days pass.\\nThe ritual is finally complete, alas...\"\\n\\nThe final nighttime star reluctantly closes its eyes, hankering to listen to the incomplete story of the children of humankind." + }, + "31244": { + "Name": "Poet's Silver-Studded Shoes", + "Desc": "Woven shoes inlaid with silver studs, pressing worded patterns across the sand she treads. On her mission to gather all the poems of the past, she has never once ceased her footsteps.", + "Story": "\"The people know not where to seek Thanatos' trail, and there are legends that say no living can cross the River of Souls. Where, then, does the river flow?\"\\n\\n\"We have never heard of such a dragon, nor come across the existence of resurrection rituals in ancient tomes\" — Some doubtful among the listeners voice out. The poet replies — She is not an offspring of the old cities, therefore not certain whether there was truly an evil dragon. This is merely what she heard from earlier bards, a poetic song imparted along generations only through words.\\n\\nIf no one passed down the songs, the history of the old cities would be truly buried in dust, and all would fade with time — The flourishing city-state of the past, deluged and devoured by the River of Souls, becoming a place disdained by even wild hounds and circling vultures. This is the curse left behind by the souls eaten by the evil dragon.\\n\\n\"Lament for my homeland...\\nO Princess! Who would have imagined she was alchemied into the evil dragon's visage.\\nShe devoured them all... the alchemist, the brave centurion, and the foolish king.\\nA feast fueled by bloodlust invited the shadows of death, the old city therefore annihilated...\"\\n\\nRemember the name of the decimated city! This is a story about Styxia, played by the poet wearing silver-studded soles. She collects stories for the stories themselves, just like the words left behind by the silver studs on her woven shoes — \"Remember the story. Forget me.\"" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases Quantum DMG by #1[i]%.", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "Decreases the wearer's SPD by #6[i]%. Before entering battle, if the wearer's SPD is lower than #2[i]/#3[i], increases the wearer's CRIT Rate by #4[i]%/#5[i]%. This effect applies to the wearer's memosprite at the same time.", + "ParamList": [ + -0.07999999984167516, + 110, + 95, + 0.20000000018626451, + 0.3200000002980232, + 0.0800000000745058 + ] + } + } + }, + "125": { + "Name": "Warrior Goddess of Sun and Thunder", + "Icon": "SpriteOutput/ItemIcon/71044.png", + "Parts": { + "31251": { + "Name": "Warrior Goddess's Winged Helm", + "Desc": "This winged helm once bore witness to the Daythunder Knight toppling the sky god, and it also witnessed the sky closing its eyes.", + "Story": "Scorching golden magma surged endlessly beneath the warrior goddess's feet. She hid her expression beneath her iron helm, like winter mist veiling the starlight.\\n\\nThe last Skyfolk had already sunk, and she, too, would journey alone toward a distant fate in the opposite direction.\\n\\n\"Seliose, who have you remembered?\" The winged beast, her constant companion, sensed the faint stir of her thoughts. The warrior goddess remained silent for a moment. The old days when people prayed to the sky were long gone, never to return. \"Who have I remembered? I can no longer recall anyone in particular. I once loved humanity so fiercely, and I loathed the weakness buried within their nature just as deeply. But now... I remember no one at all.\"\\n\\nThe winged beasts lowered their heads in silence. They had seen the warrior goddess once follow unwavering convictions, and just as easily fall into the illusions of self-deception.\\n\\nWhat expression did she now wear beneath that iron helm concealing her face? And what kind of vision did she now behold?" + }, + "31252": { + "Name": "Warrior Goddess's Cavalry Gauntlets", + "Desc": "These gauntlets have accompanied the knight to victory in every battle. They grant the strength to grip the deadliest weapons, and endure the most agonizing betrayals.", + "Story": "The silverscale rock hisses in the forge. The old Mountain Dweller poured their wishes into these casted gauntlets before giving them to the warrior goddess beside them as a gift.\\n\\n\"Soft, wounded. Knights are hardy. Softer than marble. May your bones be.\"\\n\\nShe took the delicately crafted gauntlets and gently wiped down the silverscale frost armor... Her thoughts drifted to the lance, forged from cleaving thunder, and the shield, born from blooming flames. She would charge toward the battlefield in the sky, to save everyone, because strength was merely a prerequisite for salvation. The Mountain Dweller carefully engraved the maxims of truth onto each knuckle, reminding the warrior goddess to always remember the softness within the gauntlets.\\n\\n\"Use the palm to soothe the river of stars. Use the sword to cleave the frost.\"\\n\\nYet, the almost obsessive sense of duty and justice she had ended up burning the craftsman's blessing into a never-healing scar." + }, + "31253": { + "Name": "Warrior Goddess's Dawn Cape", + "Desc": "This cloak shielded the Daythunder Knight from rain and dust, accompanying her through every adventure, leaving behind the most striking silhouette in the sky.", + "Story": "The girl, not yet a knight, received exceptional combat training in the secluded mountain cave of her mentor.\\n\\n\"Well done. Soon, there will be nothing more I can teach you. What do you intend to do with this power?\"\\n\\nThe girl's thoughts were no longer on her training after hearing the divine oracle. Her gentle mentor noticed her troubled mind and quietly applied resin to the blade of her trusted short sword. \"Teacher, I want to live in truth. Have you heard... about the Holy Maiden of Janusapolis and the prophecy she delivered?\" The girl feared her mentor would try to dissuade her, yet her resolve had already been set.\\n\\n\"But what is truth?\" The gentle mentor asked in return. \"...You will need a lifetime to discern it, and that will not be easy.\"\\n\\nAt midnight, she quietly rose, hoping to leave in haste before dawn arrived, only to find that her travel pack already contained a neatly folded cloak." + }, + "31254": { + "Name": "Warrior Goddess's Honor Spurs", + "Desc": "These spurs were a gift from the Daythunder Knight's two winged beast companions. This was the necessary pain to walk a path in pursuit of truth.", + "Story": "The hero, Seliose, was accompanied by two winged beast companions — Solabis and Lunabis, who were both her steed and comrade in battle.\\n\\n\"We follow you, Seliose. Let us witness the prologue of your journey to slay gods and take their flames.\" They placed their trust in the fierce and resolute warrior goddess.\\n\\nThe two winged beasts entrusted a master craftsman to forge a pair of spurs as part of the \"Daythunder Knight's\" knighting ceremony. \"Thank you for your kindness, but I have no need for them,\" she said, knowing that spurs were meant to aid a knight in precisely controlling their steed. \"Your will and mine are one. We do not need such stimulus to move in perfect harmony.\"\\n\\n\"Take them, Seliose. You walk the path in pursuit of truth, so you should understand that 'pain' keeps us awake.\" Lunabis's gaze burned with unwavering determination, while Solabis guided her hand to accept the spurs.\\n\\nThe Daythunder Knight accepted the ceremonial gift, a symbol of their friendship. If pain could help one correct their course in time, then it was pain worth bearing." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases SPD by #1[i]%.", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "When the wearer and their memosprite provide healing to ally targets aside from themselves, the wearer gains \"Gentle Rain,\" which can be triggered up to 1 time per turn, lasting for #3[i] turn(s). While the wearer has \"Gentle Rain,\" increases their SPD by #1[i]% and all allies' CRIT DMG by #2[i]%. This effect cannot be stacked.", + "ParamList": [ + 0.060000000055879354, + 0.1500000001396984, + 2 + ] + } + } + }, + "126": { + "Name": "Wavestrider Captain", + "Icon": "SpriteOutput/ItemIcon/71045.png", + "Parts": { + "31261": { + "Name": "Captain's Navigator Hat", + "Desc": "A wide-brimmed sun hat with a pearlescent sheen. Sailors racing across the seas use it to shield themselves from Aquila's scorching sun.", + "Story": "Among the coastal reefs, the wreckage of a trireme lay stranded like a beached whale — It was once a warship campaigning against the sea sirens. The waves returned the ship to shore, but left its demised crew behind in the depths of the sea.\\n\\n\"O warrior of Phagousa, whoever you are, I beg you to stand and defend Skiana!\" The king's desperate plea met only silence, for to stand against the sea sirens only meant becoming another lifeless body adrift on the waves.\\n\\n\"Give me an unbreakable ship and a crew of fifty, and I will slay the wicked sea siren!\" A young captain, wearing a wide-brimmed sun hat, stepped forward from the crowded masses. The pearlescent sheen of his hat cast a shimmering rainbow over the pale, fearful faces around him. His arrival was like the dawn over the sea, and in an instant, the horizon had already begun to lighten.\\n\\n\"I will build you the finest ship in the world!\" The craftsmen, drawn in by the young captain's radiance, pledged their skills. The great ship's timber was impervious to decay, ensuring it would never rot upon the sea. At its bow, a plank hewn from Cerces's giant tree was affixed, imbued with the power of prophecy.\\n\\n\"Go forth, disciple of the Sages, chosen hero of the gods, tame the madness of Phagousa.\" Three days later, the fully crewed warship set sail from Skiana." + }, + "31262": { + "Name": "Captain's Lightcatcher Astrolabe", + "Desc": "A nautical compass that captures the guidance of starlight. Even when adrift in the boundless darkness of the sea, the stars will always point the way forward.", + "Story": "Dark clouds, heavy like lead and iron, pressed down upon the mast. Amid the raging storm, the ship was like a drifting water lily, and even the deck crafted from the sacred tree trembled violently against the towering waves.\\n\\n\"Even the once-tranquil seas, where the waves were calm and the winds gentle all year round, have now been tainted by the siren's wild and violent nature.\" The young captain stood atop the forecastle tower, his brows tightly furrowed as he gazed at the dense, dark storm clouds ahead... yet the astrolabe on his wrist remained unresponsive.\\n\\nA bolt of lightning struck down, snapping the main sail's rigging with a resounding crack. The crew fell into chaos, shouting and scrambling. The young captain bellowed, restoring order. He commanded the rowers to pull in unison, their strength guided by precise orders. The helmsman responded swiftly, steering the ship away from the towering waves that loomed like mountains. They fought against Phagousa's fury, enduring until Aquila's guiding starlight would pierce the storm. Suddenly, the captain raised his arm high, his voice cutting through the storm. The nautical compass on his wrist shimmered with scattered fragments of starlight—\\n\\n\"Follow that light, everyone! We're about to break out of the storm!\"\\n\\nThe sailors rallied their spirits, singing a sea shanty in unison. The ship, like a sharpened blade, cleaved through the waves, charging toward the dawn.\\n\\n\"Soon, we will set her free from shackles. Look ahead, prepare! Set sail!\"" + }, + "31263": { + "Name": "Captain's Wind Mantle", + "Desc": "The sailing cloak billowed like a great sail. If the strong winds will not aid me, then I shall become the wind itself.", + "Story": "A bronze ballista bolt, as tall as a man, tore through the sea mist wrapped in flames, only to shatter into dust the moment it neared the siren's scaled armor. The pale blue tentacles coiled tightly around sailors' waists, and even when severed, they writhed across the deck, gnawing at the terrified crew.\\n\\n\"The crewmate's limbs thrashed in the air, crying out my name. That was the most terrifying sight of my seafaring career.\" The captain's voice trembled between his lips and teeth. He was not lying.\\n\\nThe colossal sea siren surfaced, its gnarled tentacles coiling tightly around the ship. Its back loomed like a drifting island. The first mate drove a searing iron spear into its gaping maw, lined with a thousand razor-sharp teeth. A spray of foul black blood splattered across the deck, darkening the planks. The crew narrowly escaped a fatal attack, but as the captain turned back, he saw the stern tower crushed beneath a massive tentacle, shattered as easily as Nikador's Lance of Fury cracking open a walnut shell. This was a once-in-a-lifetime opportunity. Charge forward or retreat? All eyes turned to the captain—\\n\\n\"Hard to port! Rowers, full speed! Unfurl all sails, prepare the ram for impact!\"\\n\\nThe captain's cloak billowed in the roaring wind, and the crew steeled themselves, ready to face death. Steel clashed against scales, the keel shattered, and the sea siren let out a wailing cry. Its once-mighty form, now drained of its former power, slowly sank into the depths of the sea." + }, + "31264": { + "Name": "Captain's Tidal Boots", + "Desc": "Shattered waves bloomed beneath the captain's boots. Even if he never returned, the tides would carry back his blessing.", + "Story": "On an unknown sandy shore, the young captain lay on his back, gazing at the sky. The setting sun cast a golden glow over the shattered coastline... Within this radiant haze, the distant land of Skiana seemed almost within reach, but he knew this was the final moment of his life.\\n\\n\"...We have tamed the madness of Phagousa.\" The sea siren had long retreated into the deeper waters, unlikely to threaten the coast again for a hundred years.\\n\\nThe plank, hewn from Cerces's giant tree, asked the captain for his final words. It would ride the waves back to the distant land of Skiana, carrying the tale of the hero's journey and inspiring more young souls to set sail beyond the shore. The captain gazed at his severed lower half... those were the boots his wise mentor had given him, the ones that had carried him across countless city-states. But now, his long voyage would end here.\\n\\n\"Tell them... I still have a Sea of Souls left to conquer. My homeland, do not grieve for me.\"\\n\\nYear after year, the sea breeze brushed against the walls of Skiana. The tale of the sea siren became a whispered lullaby from mothers to their children... And those sailors who had narrowly escaped the cursed sea still waited for their captain to ride the waves home." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases CRIT DMG by #1[i]%.", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "When the wearer becomes the target of another ally target's ability, gains 1 stack of \"Help,\" stacking up to #1[i] time(s). If there are #1[i] stack(s) of \"Help\" when the wearer uses their Ultimate, consumes all \"Help\" to increase the wearer's ATK by #2[i]% for #3[i] turn(s).", + "ParamList": [ + 2, + 0.48000000044703484, + 1 + ] + } + } + }, + "301": { + "Name": "Space Sealing Station", + "Icon": "SpriteOutput/ItemIcon/71012.png", + "Parts": { + "33015": { + "Name": "Herta's Space Station", + "Desc": "Encapsulated in the plane is the Herta Space Station. Parked above The Blue, it slowly drifts along its predetermined orbit, with the silent cosmos looking like a book waiting to be read.", + "Story": "Madam Herta was once very troubled by the huge collection of items spread across the Cosmos. Countless in quantity, they were difficult to store, and she couldn't be bothered to manage them herself.\\n\\nThe generous and charitable Interastral Peace Corporation then proposed a solution and that was how the Herta Space Station, where wisdom and secrets are stored, was born. Comprehensive containment measures were made throughout the space station, all in the pursuit of organizing everything in the collection with order and clarity. Phenomena were stored in specialized containers while Curios were regulated in indices. Innumerable items were categorized and classified, then stored deep within the station for research.\\n\\nThe IPC then proposed a collaboration in exploring the secrets of the stars together, which brought curious and adventurous scholars into the station to conduct research.\\n\\nMost of them admired Madam Herta, vowing to never abandon their ethereal aspirations and explore the secrets whispered among the stars. They investigated the star systems and realms of living beings, debated true justice in discourses on ethics and philosophies, outlined valleys and peaks within galaxies, deciphered secrets behind religious rituals and ceremonies, held on to the way of seeking truth from practice... They were the true believers of passing knowledge to posterity, and practiced unrestrained and divergent research.\\n\\nHowever, once the space station moved into orbit, it started to operate on its own and Madam Herta rarely showed herself. It was then that the IPC realized the whole station was filled with the mundane daily activities of the researchers, yet the genius was nowhere to be seen.\\n\\nLight from different zones rendered people unaware of the passage of time, the traces of which could only be detected in the burnt out lifestyle in the station. Often a smattering of researchers would argue non-stop about a particular piece of collection, even going so far as to start a fight. Occasionally a security officer would be absent from their daily patrol and nap instead on their military-styled bunker. Sometimes senior researchers would share with their younger peers tales of past romances, while some big shots would disguise themselves as temporary workers to bid their time for the next big turn of luck... Besides research, there was also life. They just had to look outside the hull — for the stars were journeying with them.\\n\\nDespite all the limitations, the researchers still talked about the everyday life in the space station in their own romantic way — The cosmos was a profound epic poem, and Herta Space Station was slowly cracking open the poetry collection." + }, + "33016": { + "Name": "Herta's Wandering Trek", + "Desc": "Madam Herta lost all interest in the space station the moment it was complete. The station maintains a steady orbital velocity as it circles The Blue, leaving a track of its circular motion on the planet below.", + "Story": "The space station endured and survived many a crisis due to being owned by Madam Herta.\\n\\nLaden with the rarest items in the entire universe like a feast set before ravenous guests, the space station was never free from threats or unwanted attention. Relying on the security personnel hired by the IPC and a somewhat advanced defensive system proved insufficient to handle the hostility from the stars... Madam Herta once made prescient judgment and steered the station away in an elegant curve, ending a conspiratorial attempt to assault the station before it even initiated.\\n\\nAs for her mastery in gathering intel to solve crises, she simply described it as \"I spend time brewing coffee while others are reading books.\"\\n\\nRather than thieves who intend to steal its collection or mysterious factions with unknown objectives, the main threat faced by the space station remains its owner. The station could immediately fall into disaster if she ever had a wild idea. Curios that simulate a stellar collapse, a distorted gravitational field caused by the collision of dark galaxies... Madam Herta collected them all when she was in the mood, but would often lose interest once she got her hands on them.\\n\\nHence, though the space station appears to be floating peacefully in space, its treasure hoard of multi-shaped crises hung above it like a sword waiting to fall.\\n\\nSenior researchers had long been aware of the dangers they faced, and understood that \"secrets lie deep within danger.\" They strictly adhere to confidentiality agreements and faithfully carry out regulated containment procedures, thus burying danger within an outward silence... In the cafeteria, they were friends who could joke around. Yet, deep in the bowels of the space station's storage zones, they were highly skilled experts. In this place, secrets would always remain secrets.\\n\\nThe space station is operating as usual in low orbit around The Blue. Just like a pebble pushed out onto the smooth surface of a frozen lake, the station will continue to glide evenly and steadily in complete silence." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's ATK by #1[i]%. When the wearer's SPD reaches #2[i] or higher, the wearer's ATK increases by an extra #3[i]%.", + "ParamList": [ + 0.12000000011175871, + 120, + 0.12000000011175871 + ] + } + } + }, + "302": { + "Name": "Fleet of the Ageless", + "Icon": "SpriteOutput/ItemIcon/71013.png", + "Parts": { + "33025": { + "Name": "The Xianzhou Luofu's Celestial Ark", + "Desc": "The Xianzhou Luofu floating above the seas of stars was enclosed within the sphere. Skiffs went to and fro through the Jade Gate just like the celestial movements of stars and moons. Countless people had come here to seek the secrets of immortality, only to return in disappointment.", + "Story": "Thousands of years ago, the Xianzhou Luofu set sail from an ancient nation, crossing deep space to seek an audience with a god in pursuit of the elixir of immortality.\\n\\nThe colossal ship enclosing entire biospheres lumbered into the starry sky like a lucid moon silently falling into the night, embarking on an endless and aimless journey. In this lonely voyage, people slumbered, woke up, and slumbered again in incessant alternation... Star-chasing whales fell from the dome of heaven, and crystalline entities made of subgrain lattice managed to span light-years without a single crack. The Elixir Seekers witnessed the majesty of various supernatural powers. In covert delight, they further hardened their resolve to obtain immortality.\\n\\nAfter voyaging for thousands of years, the Xianzhou Luofu gradually came to a halt, whereupon it encountered the master of Abundance in the limbo between the reality and the imaginary. Yaoshi bestowed a divine miracle upon the ship, and it immediately manifested as the Ambrosial Arbor. Its shade was as large as clouds, blocking out the sky and sun. Its roots were thick and dense, enveloping the entire Xianzhou ship — the Luofu seemed to be brought to life.\\n\\nThose who coveted immortality swallowed the fruit of the Ambrosial Arbor, and finally obtained the Endless Lifespan they had dreamed so much about. The Xianzhou residents began to claim they were celestial beings worthy of endless lifespans in abundance, and they also learned to use the Ambrosial Arbor to create various inhuman marvels via the blessings of immortality.\\n\\nYet, just like the shifting of the sun and moon, what once prospered was fated to decline and what once brought elation must eventually induce agony. It was not until the arrival of the Three Sufferings, when people were tormented to near extinction, that the Xianzhou people finally came to understand the true nature of this so-called miracle, which was nothing but harrowing calamity.\\n\\nIn the midst of disaster, a hero rose with the Reignbow and split the Ambrosial Arbor in half. The Xianzhou people regained their dignity as humans, and vowed to return to mortality and purge all deathless doom in this universe. In the ensuing years, Xianzhou went on a hunt across the stellar seas, taking it upon themselves to purge all deathless abominations. The foxians regained their freedom and took back control of the sky, while the Vidyadhara sealed off the contamination and any residual catastrophes. The three races were then brought together in a covenant and coalition. Thus was born the Xianzhou Alliance.\\n\\nProsperity and calamity came and went in cycles during the voyage. Heroes and legends rose to fame and glory one after another as history marched on. Now, the Xianzhou Luofu is healing and reconstructing in a period of hard-won peace. Free trade and open minds truly brought it back to life.\\n\\nImmortality had permanently molded the Xianzhou Luofu. With its ups and downs through history, the Xianzhou Luofu accumulated its own unique aura that combined both antiquity and modernity. It would only take any traveling merchant mere seconds to feel the marks left by the passage of time on this ark." + }, + "33026": { + "Name": "The Xianzhou Luofu's Ambrosial Arbor Vines", + "Desc": "Once, the Luofu reigned supreme over other ships in the Xianzhou fleet due to the grace of the Ambrosial Arbor. Later, when people consumed the cursed fruit of immortality, calamity was brought upon the Luofu by the Ambrosial Arbor, whose vines had already entrapped the Luofu in its firm and inseparable grip.", + "Story": "The master of Abundance buried the seed of karma in the center of the Xianzhou Luofu and gifted the Elixir Seekers with something named \"Ambrosial Arbor,\" which was considered a miracle as people were able to immediately understand its implications.\\n\\nThe Ambrosial Arbor grew fruits of divinity that brimmed with life and vitality, containing the Endless Lifespan sought by the Elixir Seekers. From that moment, the ancient taboos and laws were rendered useless, and nature's dictum and ethics regarding aging and death became irrelevant history. People followed the way of immortality to exploit the Ambrosial Arbor with increasing intensity, making Fallow Earth that never exhausted itself, molding their own bodies to shapeshift, and giving the gift of thinking and talking to animals... Innumerable unimaginable technologies were brought into existence under the branches of the Ambrosial Arbor.\\n\\nHowever, the Ambrosial Arbor took off its disguise as time went by, revealing its hideous visage as the agony of immortality crept upon the immortals.\\n\\nThe celestials ceaselessly reproduced, yet tasted no death. The ship groaned from overpopulation, as hunger and starvation tormented many. Xianzhou's young can never realize their life's ambitions while their elders clang to power, and society teetered at the edge of structural collapse... Rebellions of the aurumatons and external invasions marked a ruinous millennium, after which the darkness hidden in immortal bloodlines also showed its face. The so-called \"Body of Celestials\" was simply a technology that surpassed human intellect. The propensity to be stricken with mara was a warning to all Xianzhou natives, a reminder that they were a mere step away from becoming abominations themselves.\\n\\nIn desperation, a hero tore through the sky with a powerful shot from their bow, splitting the Ambrosial Arbor in half... Yet even if all there was left of the Ambrosial Arbor was a burnt stump, the fate of Xianzhou could never be separated from it.\\n\\nIt attracted external forces to invade Xianzhou. The Abominations of Abundance launched multitudes of assaults, where flesh was distorted and blood was spilled, for the sole purpose of devouring Xianzhou whole. The Arbor also tempted the Xianzhou residents. The Disciples of Sanctus Medicus broke the taboos and ventured deep into the secret of Abundance within the Ambrosial Arbor, hoping to reforge the once mighty immortal empire... In the long days of foreign and domestic troubles, the remaining corpus of the Ambrosial Arbor lurked like unending vines propagating in the shadows, waiting for an opportunity to wreak havoc again.\\n\\nFortunately, the Xianzhou Luofu never lowered its guard against the withered tree. The people had vowed to cast this source of all distortions into the end of all things." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's Max HP by #1[i]%. When the wearer's SPD reaches #2[i] or higher, all allies' ATK increases by #3[i]%.", + "ParamList": [ + 0.12000000011175871, + 120, + 0.0800000000745058 + ] + } + } + }, + "303": { + "Name": "Pan-Cosmic Commercial Enterprise", + "Icon": "SpriteOutput/ItemIcon/71014.png", + "Parts": { + "33035": { + "Name": "The IPC's Mega HQ", + "Desc": "The IPC's headquarters at Pier Point is sealed within a Planar Sphere. No planet can hide from the grand business plan of the Interastral Peace Corporation. They ventured into deep space to harvest the power of the entire universe.", + "Story": "The impact within the subspace shook the universe as the silent and lonely colossus committed to building the great barrier across the Cosmos. Those who claimed to have received the oracle of the god began to act, wishing to help the Aeon Qlipoth to build the wall.\\n\\nThe universe is in imminent peril, and the building of the wall cannot wait. The puny humans had no intention of imitating the feats of the god, instead gathering into a self-proclaimed \"support team\" for the Aeon, willing to devote everything to the Amber Lord. With the power of Preservation, the support team piloted their fleet to different stellar systems to purchase building materials such as stone, wood, gold, and supernium, then tirelessly transported these to the subspace barrier, piling the items on the planetary wasteland.\\n\\nAfter the end of the short development period, the support team took a firm foothold in Pier Point and established the Interastral Peace Corporation. In order to fully carry out their devotion, they turned their sights to deep space.\\n\\nLouis Fleming raised a call for action, and the long-distance trade fleet left the star systems adjacent to Aeon Qlipoth. Their commodities were no longer limited to building materials... They plan to connect the whole Cosmos and trade everything. Soon after, Dongfang Qixing implemented Cosmos-wide trade regulations and built a \"credit\" system to set a price for everything across the universe. Trillions of assets gathered under their megastructure on Pier Point. Like a silent black hole, the building destroyed people's notions about the limits of wealth.\\n\\nToday, the ships of the Interastral Peace Corporation are all over the Cosmos. Despite being criticized as a corporate dictatorship, the IPC has not stopped expanding. They don't care what other people think and have never forgotten their founding mission.\\n\\nThe IPC's recruit training methods change with each passing day, but after nearly eight hundred Amber Eras, there is only one historical practice that never changed. Once upon a time, Louis Fleming, the founder of the IPC, stood in front of the support team and made a passionate speech. He put forward the aspiration of uniting the universe and supporting the Aeon's wishes to protect the universe. As soon as the speech ended, the distant and huge sound of a cosmic impact sounded, injecting a lofty calling into this solemn and sublime moment. From that moment on, they knew this would become their unswerving belief.\\n\\n\"All for the Amber Lord.\"" + }, + "33036": { + "Name": "The IPC's Trade Route", + "Desc": "With the convenient help of the credit system, interstellar commerce was established. The Interastral Peace Corporation connected the stars with economic activity and expanded the borders of trade.", + "Story": "The support team hurried around the star system close to the Aeon Qlipoth, with the old ships' trajectories forming the first routes.\\n\\nBelieving in the meaningfulness of the Aeon's actions, the support team took the first step in exchanging goods for other goods with a neighboring star system. The support team prepared an adequate fleet, rare and precious goods, and offers that were hard to refuse, thus creating countless trades across star systems. Then, the support team controlled trade route and business information, held exclusive bargaining rights, and spearheaded the formulation of the cosmos's trade regulations.\\n\\nFleets full of wood, stone, rebar, and supernium passed by Aeon Qlipoth like a swarm of circling flies. The Amber Lord kept silent, never once casting THEIR gaze upon the humans.\\n\\nEventually, times changed and trade with neighboring star systems was no longer sufficient for the bustling support team. The two wise ones were determined to delve deeper into the cosmos, and thus the Interastral Peace Corporation was born. The IPC offered anything a planet could ever want, at fair prices pegged to their \"credits.\" Since then, the cosmos's trade route was founded, and all planets that join the IPC's business network can share the same currency, buy the same goods, and enjoy the same services.\\n\\nMerchant ships under the credit system travel between the stars, and the trade routes merge and separate to weave a pan-cosmic network. The ships full of treasures from distant stars passed the Aeon Qlipoth countless times like fireflies, and yet the Aeon remained as silent as before.\\n\\nThe building materials accumulated since the time of the support team piled up on every planet around the Aeon Qlipoth, and the amount will only increase. The Aeon Qlipoth has no intention of accepting these eager gifts, instead always solely focused on the crisis that will befall the unsuspecting mortals, having to cast the gargantuan barriers measured in light-years. The small organization that used to purchase materials has long since become a tremendous influence in the cosmos. They gaze upon the headless colossus, never once feeling that their efforts were in vain.\\n\\n\"All the toil and growth of our capital is for Qlipoth, and to execute the Aeon's will when the time comes.\"" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's Effect Hit Rate by #1[i]%. Meanwhile, the wearer's ATK increases by an amount that is equal to #2[i]% of the current Effect Hit Rate, up to a maximum of #3[i]%.", + "ParamList": [ + 0.10000000009313226, + 0.25000000023283064, + 0.25000000023283064 + ] + } + } + }, + "304": { + "Name": "Belobog of the Architects", + "Icon": "SpriteOutput/ItemIcon/71015.png", + "Parts": { + "33045": { + "Name": "Belobog's Fortress of Preservation", + "Desc": "Encapsulated in the plane is Everwinter Monument, the most iconic landmark in Belobog's Administrative District. Those passing by this monument can all feel a distant and warm gaze protecting them.", + "Story": "Thousands of years ago, Jarilo-VI's climate was balmy year-round, and ocean vistas that were the envy of all.\\n\\nSweet fruits dangled upon boughs in the forests and humid warmth was brought by the tides, while ambrosial wine overflowed like springwater for all to partake in. The locals were full of vigor and ambition, constructing roads, cities, seaside villas, and palaces of grandeur. Their rich and satisfactory life always started with a cup of hot coffee in the morning, and ended with a jug of malt brew at dusk.\\n\\nSoon, the star rail connected with Jarilo-VI's world, bringing in interstellar trade and extra-celestial technology.\\n\\nIn the beginning, otherworldly visitors came in pursuit of Geomarrow. This crystal clear mineral contained energy that served as the lifeblood of industrialization, and their amber-colored reflections sparked with Preservation's light. Later, visitors came here to settle and live a peaceful life. Jarilo-VI's picturesque bays, palm trees, and joyous melodies made it a perfect destination for any tired traveler. People believed that, given time, this humid planet would shine as bright as any other planet of renown throughout the cosmos.\\n\\nAbout a thousand years ago, a Stellaron fell through the atmosphere and landed on this world.\\n\\nImmediately thereafter, the planet was plunged into chaos, like something out of an utterly absurd farce. Destruction's catastrophic Legion descended from the sky, and the flames of war surged across the lands. The Architects built defensive walls and fortifications, and hundred-meter constructs contended with draconian monstrosities... Then, an unending cold front suddenly appeared, and a chilling blizzard swallowed friend and foe alike. The whole planet was shrouded in utter silence, with an invisible spatial barrier covered a single fortress city, like the flame of a candle being protected in a person's embrace during a cold night. That was how civilization survived.\\n\\nLater, this city was to be named Belobog." + }, + "33046": { + "Name": "Belobog's Iron Defense", + "Desc": "The Silvermane Guards of Belobog stood firmly in the icy winter storm, forming a line as they wait for the incoming assault from invaders beyond the sky. The will of the Silvermane Guards was indestructible, and their line of defense would never falter.", + "Story": "The Architects had great hopes for Jarilo-VI before the calamity.\\n\\nMimicking Qlipoth's power, the Architects created machinery that could terraform planets. Hundreds of fire-breathing Engines of Creation roared across the land, like giant gardeners cultivating abandoned flower beds. Mere decades later, valleys and hills were remade into plains and forests, and cities were thickly dotted along the coast.\\n\\nAfter the arrival of Destruction's omen, the Architects sent all their machines into war, making them the first guards of the \"Iron Defense.\"\\n\\nFollowing the arrival of the Stellaron, soldiers of destruction landed like moths to flame, leaving tracks of desolation on the planet's surface. The machines once used for creation were now forced to become weapons of war, throwing their iron fists on battlefields where they didn't belong. Eventually, the giant gardeners fell to the ground in exhaustion like tombstones of a civilization, marking the gradual collapse of the defense line.\\n\\nOn the day when there was no more room for retreat, Silvermane Guards held tightly onto their weapons, for their homeland was mere steps behind.\\n\\nThe arrival of the Eternal Freeze came as a surprise to everyone. The monsters from beyond the sky and the soldiers on the front lines were trading lethal blows when snow and ice filled up the whole battlefield. In utter chaos, Belobog became the only light in the whole world. The two sides fell into endless slaughter to either sniff out or protect this light. Roaring the name of Alisa Rand, the Guards re-entered into the snow storms and never returned.\\n\\nThe residents of Belobog only dared to climb up the city walls to look out when the blizzard halted.\\n\\nAnd they beheld the final guards of the \"Iron Defense.\"" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's DEF by #1[i]%. When the wearer's Effect Hit Rate is #2[i]% or higher, the wearer gains an extra #3[i]% DEF.", + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "305": { + "Name": "Celestial Differentiator", + "Icon": "SpriteOutput/ItemIcon/71016.png", + "Parts": { + "33055": { + "Name": "Planet Screwllum's Mechanical Sun", + "Desc": "Encapsulated in the plane is the core of Planet Screwllum, imprisoned in a cage composed of countless levers, pistons, and gears. The inhabitants of Planet Screwllum euphemistically refer to it as the \"Steel Sun.\"", + "Story": "Regarding the origin of mechanical life, the carbon-based scholars of the Intelligentsia Guild have a unique speculation: A cluster of electrons born by chance.\\n\\nElectric currents flow throughout the atmosphere and ground. It separated into secondary forms of different magnitudes under the countless acts of gravity and repulsive forces. According to the scholars' hypothesis, this action is tantamount to cell division in carbon-based life. Thereafter, currents randomly output different potentials via the transistor structure naturally formed on the planetary surface, creating the most primitive program. The proud scholars argued that in this way, machines have \"thoughts\" that are comparable to carbon-based life.\\n\\nA mechanic objected to this: How can carbon-based life, which has not even been able to understand the origin of their own beings, have the gall to spout such fallacies? As soon as the words came out, the academic world of the universe was shaken to the core. Mechanical life began to re-examine the arrogant \"carbon-based centrism\" and examine its own origin.\\n\\nHowever, the Screwllumites on the Planet Screwllum had no choice but to pause their march — their planet's energy was being exhausted faster than their inspiration circuits. They needed to first find a way for their population to survive.\\n\\nIn the end, they decided to carry out an extreme plan that transcended several Amber Eras: They used the dying planet as fuel to power the Celestial Differentiator. The awe-inspiring, gigantic gear tirelessly processed the punched tape, methodically repeating calculations. With its planetary energy supply, the huge machine simulated a bona fide and stable superecosystem. They would then build their new home around this parent star.\\n\\nWith their planetary crisis lifted, the Screwllumites could rest. Always rational, optimistic, and elegant, they are determined to explore the answer to their origins in a purely rational manner.\\n\\nThe massive system is filled with the sound of bearings grinding against each other, and the dense teeth of cogs drive the punched tape to churn out data. One branch flows into multiple branches, and countless branches guide trillions of gears to roar... Then, these branches collapse again and again, falling into the furnace and returning to silence in the bubbling core. Over a long period of time, the programmed super-ecosystem gradually became a wonderful and relatively stable one. Eventually, speculations about the origins of machines began to cause Screwllumites' imaginations to wander.\\n\\nThe steel construct that drives the dying star once again activated their intelligent thought circuits. They will continue to ponder and explore their origins until the ever-present mechanical sun completely burns out." + }, + "33056": { + "Name": "Planet Screwllum's Ring System", + "Desc": "The planetary ring supports all of Planet Screwllum. Just how many are aware that the dense porous rectangular array reflects the truth about the planetary system?", + "Story": "The vast majority of Screwllumites were unaware that Planet Screwllum was a great attempt by inorganic life to investigate their origin.\\n\\nScrewllum felt a little empty. The event of understanding the operation logic of Planet Screwllum did not even cause any exceptional fluctuations in his Intelligent Pulse Waveform.\\n\\nHe stood on the wide terrace of his mansion, looking up at the unstoppable planetary engine. The ring system with dense square holes pierced up from the back of the planet. Everything the planet supports was situated on the strip, revolving quietly with the engine as its axis, day after day. He had seen the despairingly absurd nature of this planetary system: An elegant string of state transient equations, a giant, icy cylinder — that's all Planet Screwllum is, nothing more.\\n\\nAccording to his interpretation of the equations, at the birth of the Celestial Differentiator, its lead creator tried to explain the origin of the universe as a cellular automaton and its recursion, and Planet Screwllum itself was a result of the game of life.\\n\\nScrewllumites and other inorganic life on the planet acted as the \"cells\" in this automaton, while also being smaller-scale cellular automatons. Automatons were always made up of many smaller automatons, going back to the smallest components that form the building blocks of the universe. What was the smallest component? No one knows. Neither Screwllum nor the scholar who first proposed building the Celestial Differentiator do.\\n\\nThat was why Screwllum felt empty.\\n\\nDid that scholar's attempt fail? But the Celestial Differentiator had worked tirelessly for many Amber Eras. Did that not mean that the origin of the Screwllumites, their parent star, and even the entire universe can be attributed to that elegant string of equations? Not really. Until the super-ecosystem collapsed entirely, the equations remained unfalsifiable.\\n\\nHe swirled the fine glass of machine oil, never taking his eyes off the ring that recorded the truth of the planet. The giant screen-like perforated belt was tireless, and the rectangular array filtered the late-night moonlight. Screwllum couldn't stop thinking. Do ends to recursions really exist? He thought. What is the nature of inorganic life — or yet, what is the origin of the universe?\\n\\nAm I really willing to be only a witness to the ideas of my predecessors?\\n\\n\"No,\" Screwllum concluded. He decided to seek answers." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. When the wearer's current CRIT DMG reaches #2[i]% or higher, after entering battle, the wearer's CRIT Rate increases by #3[i]% until the end of their first attack.", + "ParamList": [ + 0.1600000001490116, + 1.2000000001862645, + 0.6000000005587935 + ] + } + } + }, + "306": { + "Name": "Inert Salsotto", + "Icon": "SpriteOutput/ItemIcon/71017.png", + "Parts": { + "33065": { + "Name": "Salsotto's Moving City", + "Desc": "Encapsulated in the plane is one of Salsotto's last remaining moving cities — Tumbleweed. This city never stopped and barely escaped from a fate of being swallowed up either by the dark night or the midnight sun.", + "Story": "If viewed from a cosmic perspective, Planet Salsotto as a whole, due to its vast seas of sand, shined in the most dazzling shade of gold, with its giant meteorite craters clearly visible.\\n\\nAt a certain fateful moment, waves upon waves of strange meteorites ceaselessly fell onto Planet Salsotto. The long-lasting impact caused by the Meteoric Starfall relentlessly hitting the planet at such a particular angle caused the planet's rotation to gradually come to a halt. It was like pushing a world-deactivate button. Salsotto's days and nights became longer and longer, until every sunrise and sunset would last for a seeming eternity, until nobody could take it any longer, until the whole planet's rotation was finally brought to a standstill...\\n\\nIt had become a fact of life that sizzling summers under the scorching sun and dark nights of bitter coldness would last for half a year. What was left of the whole Salsotto were the last two remaining cities that were moving non-stop, always running right after the terminator line.\\n\\nThe colossal fortress was floating in the air like a gargantuan raincloud, slowly hovering across the sky above the golden desert with thundering noise. Wherever it went, overwhelming storms of sand were cascading down and over. In the giant moving city, the Salsottians in winged suits were flying up and down among the city's buildings. These flying folks who had survived the calamity by sheer luck now belonged to the sky and were bound to it at the same time.\\n\\nIn the morning, skyfishers departed from the port and dove right for the sand, where they would hunt the phlogiston jellyfish. They would only return to the city after dusk. By the power of mysterious creatures, the city barely managed to voyage ahead.\\n\\nEven though their entire survival relied squarely on those two fragile wings, the Salsottians were optimistic by nature and would never let the heavy burden of fate lower their spirit or bend their spine. They would find time to spend with their family playing glass musical instruments, with such an attitude that it was almost as if they could carve the musical notes right into the glass. They also enjoyed making pen pals and would often place their written messages in the Dandelion Letterbox, meant for the moving city on the other end of the terminator line.\\n\\nGradually, the planet's magnetic field weakened and the atmosphere thinned. In the face of a fated doom, the sparkles of life were not yet snuffed out, and the eagles would never cease to fly." + }, + "33066": { + "Name": "Salsotto's Terminator Line", + "Desc": "Planet Salsotto's own rotation stopped, and thus each cycle of its day and night seemed to last forever. People can only gain the bare minimum space for survival when they ceaselessly migrated and closely chased the ever-moving terminator line.", + "Story": "Ever since the stagnation caused by the Meteoric Starfall, the terminator line had become the lifeline of the Salsottians.\\n\\nWhen it all started, people still took the shifting of day and night for granted. The line of dawn and dusk swept across the earth, climbed over mountains and ravines, brought dawn to those still awake, and sent sunset to those who would soon sleep... But when the rhythm of light and darkness slowed down, day and night were no longer familiar, and the seemingly eternal heat and coldness were like the quagmire of hell, slowly burying all lives entrapped within. This was why the Salsottian people, barely surviving at the time, boarded the floating mobile city and began their chase with dawn and dusk.\\n\\nClimbing atop the observation deck of the mobile city of Tumbleweed and looking in the direction that they were moving, daylight lies ahead and dark night behind.\\n\\nThe pursuit of \"Tumbleweed\" is not only for survival but also for a dignified life. When it moved faster than the terminator line, then the early morning light would march into the afternoon; when slower than the terminator line, then the dusk light would fade into the late night. In this way, the naturally optimistic Salsottian managed to restore every day to its original state. The romance in their bloodline blessed them with the easygoing spirit to sing leisurely in peaceful afternoons and sleep soundly on starry nights.\\n\\nHowever, this voyage of tenacity and perseverance would, at last, come to its final downfall, and the ruins of the once mobile city were eventually left far behind by the ever-shifting terminator line.\\n\\nYears later, the two moving cities that had never met each other would finally stand against each other, with their respective turrets among the wreckage still aimed in opposition. One of the two cities must have crossed half of the planet to the other one and started the initial incursion. Traces of brutal warfare between the two cities were still occasionally discernible under the sand dunes, which merged with unnameable hatred and morphed together into the same ruins.\\n\\nPlanet Salsotto kept its silence. And ever since a certain unknown time, the duration of each of its rotation cycles had somehow gradually decreased, ushering in its own self-healing in an unpopulated future." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. When the wearer's current CRIT Rate reaches #2[i]% or higher, the DMG dealt by the wearer's Ultimate and Follow-up ATK increases by #3[i]%.", + "ParamList": [ + 0.0800000000745058, + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "307": { + "Name": "Talia: Kingdom of Banditry", + "Icon": "SpriteOutput/ItemIcon/71018.png", + "Parts": { + "33075": { + "Name": "Talia's Nailscrap Town", + "Desc": "Encapsulated in the plane is Talia's miserable desolate small town called Nailscrap. For a short-lived peace, bandits chose this place for its water supplies and built this small town out of rags, rebars, and planks.", + "Story": "It was by pure accident that the interstellar thieves came to Talia in their hasty escape from the pursuit of the Galaxy Ranger.\\n\\nAt first, Talia was just a desolate place known by many as the Starry Junkyard. The planet-destroying wars of the past brought mountains upon mountains of ruins and wreckage onto the surface of Talia, resulting in imperishable radiation and taking away the last remaining hope to sustain life. The thieves had nowhere else to go and fell into a cave beneath the surface of the planet, which turned out to be a tunnel left by the rodent race... The thieves managed a narrow escape, and their dream of establishing a Kingdom of Banditry was thus discreetly born in this lost realm of seclusion.\\n\\nInnumerable caverns were interconnected in a massive labyrinth. More groups of thieves and bandits were lured in by this supposed dreamland meant for them and came to accumulate wealth and exchange technology, subsequently laying the foundation for the kingdom.\\n\\nAs more and more thieves and bandits settled down here, the once desolate planet became extraordinarily bustling with life. Thieves of great renown spoke of their ideal of a Kingdom of Banditry, promising to use the treasury to build a nation of equity and fairness. But as the amount of accumulated wealth grew larger and larger, the same thieves tore up their flimsy promises right away and attempted to monopolize all the wealth. Mercenaries, riots, double crossings, and betrayals... Chaos ensued one after another. Perhaps the initiators never even once believed in their ideal of so-called equity for all.\\n\\nHenceforth, thieves who resented lofty ideals found themselves in a chaotic age where ignorance was glorified. They seized water sources to build towns of their own and mocked the very idea of fairness and justice.\\n\\nEveryone in Nailscrap Town was a bandit. They drove violently destructive off-road vehicles and fought for resources with other hordes of bandits in the desert. They created mechanical armor and weapons out of scrap iron and old wires... The more barren the wasteland was, the more freedom they got out of it, like one final frenzy before doomsday. Those sweet dreams were like wisps of nonsense in the radiating heat waves and had long ceased to leave any trace behind.\\n\\nIn a half-awake trance, the thieves came to the realization that the Kingdom of Banditry was never about creation but about destruction." + }, + "33076": { + "Name": "Talia's Exposed Electric Wire", + "Desc": "This is a stretch of wire scavenged from the junkyard. Despite bits of its insulation falling off, there is still some use left in it. No such thing as useless trash exists in Talia's small bandit towns.", + "Story": "This exposed wire was old. It had once been neatly lined up on a starship until one hasty escape attempt of the starship led to a huge shock wave, which subsequently exposed the wire to the moisture in the air.\\n\\nThe entire starship was dragged into a labyrinth of underground passages. On the thieves' starship, shields made of steel plates were removed layer by layer, and the power lines were crudely stripped apart, all of which were then used to build the first-ever alliance market. The thieves there began to accumulate wealth and at the same time started to talk about their ideals. Soon after, the protracted infighting began, where suspicion and betrayal were expressed by and against one another. The flames of the war fought between the dictator and their detractors eventually spread from the underground tunnel to the surface-level desert grounds...\\n\\nThis exposed wire was even older. It was dug out of a pothole by the bandits and then connected to a revamped overland vehicle with air leaking in from all directions, which was driven to a distant water source.\\n\\nThe top priority for all survivors of the war of betrayal was to locate Talia's water sources. They drove thousands of miles a day on deserts littered with glass shards in extremely shabby and poorly made vehicles. The caravans of the bandits sometimes chased each other, raising dust and heavy smoke, and other times they just wantonly threw people on or off the car... The sheer pressure of survival forced them to give up all other thoughts. Only by forging ahead could they be saved from confusion.\\n\\nThis naked wire was always old. It was further removed from the overland vehicle and placed into the town's lightbox by the bandits. The aging wire caused the lights to flicker frequently.\\n\\nIt was an old gangster who claimed to be the \"police officer\" who founded the original Nailscrap Town. With his strongarm tactics and charisma, he managed to keep the junkyard in good order. The town became livelier than ever. Eccentric engineers accidentally made machinery out of waste, and desperate wastelanders also enjoyed fighting back and forth in the underground arena... Late at night in a bar, they filled their glasses with grape juice that smelled like gasoline and cheered together, celebrating the fact that they had managed yet another day of survival.\\n\\nThere was nothing new in Talia, just old things repurposed differently in changing times." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's Break Effect by #1[i]%. When the wearer's SPD reaches #2[i] or higher, the wearer's Break Effect increases by an extra #3[i]%.", + "ParamList": [ + 0.1600000001490116, + 145, + 0.20000000018626451 + ] + } + } + }, + "308": { + "Name": "Sprightly Vonwacq", + "Icon": "SpriteOutput/ItemIcon/71019.png", + "Parts": { + "33085": { + "Name": "Vonwacq's Island of Birth", + "Desc": "Encapsulated in the plane is Wacq Island, the most well-known island on Planet Vonwacq. Teeming with plant life, the island houses a gigantic tree called Thestang, bearing fruits that would give birth to the various kinds of the island's wildlife.", + "Story": "Vonwacq is a small and crowded planet, almost entirely covered by rainforests and islands, with its exuberant wildlife being its most recognizable feature.\\n\\nVonwacq's effervescent vitality made the rainforests near its equator grow so large and tall that their shades would cover the sky above and even block out the sun. The lack of sunlight in the undergrowth of the rainforest throughout the year creates a perfect space for fungi and other low-light plants to grow. Intelligent creatures inhabited regions near the tropics. Plants, irrespective of height, would grow naturally here. Fresh fruits and vegetables could be picked at any time and anywhere, which was what the locals mostly fed on.\\n\\nHowever, be it the new immigrants or the indigenous Wacqwacq beings, they have always maintained a quasi-religious reverence for the animal fruits growing on the Thestang tree.\\n\\nThe great Thestang tree never stopped bearing fruit, not even for a moment. With time, all those yellowish and translucent oval-shaped fruits grew larger and heavier, hanging down from the branches until the stems could no longer bear their weight. When the time came, fruits would fall to the ground with a loud and crisp sound, cracking their thin skin and releasing whatever was held within. The fauna of Vonwacq was all born this way, be it fish, birds, or polar bears. On Planet Vonwacq, creatures of all kinds shared one common birth mother.\\n\\nThe fiend known as the \"Demon King\" was also born from one such fruit of the Thestang tree. From the moment of its birth, it instinctively knew how to swing its giant ax-like pincers toward others, waging war upon the entire biosphere of Vonwacq.\\n\\nEvery sixty natural years, the Thestang tree would give birth to a new demon king, and the cycle went on and on. The people of Vonwacq had long been used to and prepared for such cyclical fates of doom. Whenever a demon king's awakening approached, they would temporarily set aside their disputes and work together, assembling their strongest warriors to set sail for Wacq Island... One sixty years after another sixty years, these seemingly pointless crusades had been launched over and over again for hundreds of years in such narrow landscapes on this small planet. The demon kings were the permanent disaster of Vonwacq, and the caches of civilization were periodically wiped out.\\n\\nThus, it could be said that Planet Vonwacq was more like a stagnating pool of dead water, even though it was teeming with lively creatures that were ceaselessly fighting with each other, seemingly full of possibilities for change." + }, + "33086": { + "Name": "Vonwacq's Islandic Coast", + "Desc": "On the coastline of Wacq Island, tidal waves rose and fell... This landscape remained the same for millennia and witnessed the rise and fall of civilizations just like those changing tides.", + "Story": "The fruits of the Thestang tree matured and fell to the ground, giving birth to creatures of all kinds. Then these creatures awakened, cried, and subsequently left Wacq Island to seek a habitat of their own on Planet Vonwacq.\\n\\nAt first, the outsiders from the stars were seen as reckless thieves who, upon receiving a \"friendly\" tribal welcome, began to understand the civilizational dilemma of Vonwacq. Soon after, the outsiders boarded the locals' boats and sailed to Wacq Island, curious about how a demon king would be born from the fruit. The tribal warriors lay low on the shoals in trepidation, closely clenching their Stone Age weapons. To fight for sixty years of peace, they seemed determined, ready to make the ultimate sacrifice, one where they may never return home.\\n\\nAs the war went on, the outsiders discovered the truth about the \"Demon King\" — It was a species of interstellar worm that had once been considered extinct. It was simply unexpected that these creatures would appear in such a form in this corner of the universe.\\n\\nWhen the brutal expedition was finally over, the surviving few natives left the coastline with news of their victory, while the curious outsiders quietly stayed behind. They pushed aside the drooping branches of the giant tree and sank into the quagmire, almost half-submerged. In the sunken lands of the rainforest, the outsiders found a control cabin. It was then that the secret of Vonwacq was finally revealed — the Thestang tree turned out to be the eco genesis system from a much higher civilization, which could decode and then release innumerable life forms to restore the planet's biosphere.\\n\\nThe demon king that cyclically rampaged the planet turned out to be just one single piece of data in the vast biologic database. The outsiders deleted the data of the demon king and then left Vonwacq, not seeking any credit or gratitude from the locals.\\n\\nThe sound of tidal waves battering against the seaside land was the only audible sound on the coastline of Wacq Island. The indigenous coalition forces of Vonwacq were all lined up and were convinced that the demon king would never come again. Then they cheered, toasted, sang, and talked all night about a future without demon kings. However, almost immediately after the two allied tribes bid farewell and returned to their respective homelands, the two tribes began plotting wars for their takeover of the whole of Vonwacq... Without a common threat such as the demon king, their alliance was but a non-binding piece of paper. The small planet was never designed to withstand a conflict between the two tribes. And the short-lived, fragile peace had since shattered out of existence.\\n\\nThe coastline of Wacq Island remained in its enigmatic calm as if nothing had ever transpired on these shores. With humans and Wacqwacq gone from its center stage, Vonwacq had finally reclaimed peace and completed its ecological restoration." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's Energy Regeneration Rate by #1[i]%. When the wearer's SPD reaches #2[i] or higher, the wearer's action is Advanced Forward by #3[i]% immediately upon entering battle.", + "ParamList": [ + 0.05000000004656613, + 120, + 0.40000000037252903 + ] + } + } + }, + "309": { + "Name": "Rutilant Arena", + "Icon": "SpriteOutput/ItemIcon/71022.png", + "Parts": { + "33095": { + "Name": "Taikiyan Laser Stadium", + "Desc": "Encapsulated in the plane is the most advanced arena on Planet Taikiyan — the Taikiyan Stadium. The atmosphere is lively both inside and outside the dome as flags wave in the air. With all eyes on the arena, an exciting game of Roboball is about to kick off.", + "Story": "Planet Taikiyan was once an IPC scuttle site for spaceships, where value assessors were dispatched to clean up old ship wreckage for any remaining value.\\n\\nAssessors regarded an assignment to station in Planet Taikiyan as an exile with no return. On this tiny planet, mountains of carbon fiber and stainless steel traced the pre-decommissioned outlines of giant ships, casting a shadow of emptiness over the steel ruins. Out here, the exiles' desire to be recalled intensified to a boiling point. Assessors wearing propulsion equipment fought for high-quality parts below-deck for many years, their lightning-fast figures mutually fleeing from and in pursuit of each other in the corridors of sunken ships. They had formed their own underground rules in the shadows... And yet none of these trapped beasts had their wishes fulfilled. No one was ever able to return.\\n\\nThe rules established by these abandoned humans, reduced to caged animals, did not escape the IPC's surveillance. Footage from their wearable cameras were transmitted back to the IPC and passed as after-dinner laughingstock by the high and powerful. The investor of the Traditional Project Department, however, scented out the faint possibility for \"entertainment\" after some consideration.\\n\\nWith this new plan, the first competition in the cosmos featuring the Taikiyan Roboball would have its glorious debut on planet Taikiyan. Several planet terraforming machines descended to the surface and yanked out the decommissioned spaceships in their entirety, not leaving a single inch of their former shadows behind. The obscure little planet had been transformed by the sport of Roboball, becoming a dazzling athletic hub in the blink of an eye. \"No one will care about its ludicrous beginnings by that time. There will only be pure sportsmanship and high-value commercial agreements.\"\\n\\nThe competition had athletes wearing propulsion equipment and armor, ever-changing three-dimensional race tracks, and physical clashes that sent sparks flying... The attention of the entire cosmos was thoroughly captured the moment the Roboball Competition was announced. From that moment forth, the planet once shrouded in darkness has never again seen a moment of night.\\n\\nBoth the home and visitor teams are evenly matched in the massive stadium, and the vociferous audience fills up the dome in countless multitudes. They roar the names of the team and the players, giving birth to a thunderous cacophony that does not end. Outside the dome, the planet is also bustling with activity as broadcast licenses, exclusive sponsorship, and advertising contracts are fought over in the trading market, while underground betting is rife as excitement and disappointment share the spotlight in equal measure... The inky shade of the night has long been transformed into a silent radium backdrop to the overflowing lights of the stadium.\\n\\nThe Taikiyan Stadium has been bright as day from the moment of its inauguration, and no one even remembers where the begone shadows are now hidden." + }, + "33096": { + "Name": "Taikiyan's Arclight Race Track", + "Desc": "The Taikiyan Stadium's standard race track is usually made with a metal structure covered with smooth concrete and natural wooden floors. A large amount of transparent polycarbonate material was used in the construction of the stadium to give the audience an unobstructed view of the games.", + "Story": "The Traditional Project Department invited sport experts from Interastral Peace Entertainment and requested that they remove all savage elements of Taikiyan's underground rules and transform it into a lucrative competition.\\n\\nMaterial experts designed a Roboball to satisfy the request — a high-tech iron ball with a diameter of 35 centimeters, weighing 30 kilograms, and of carbon fiber and stainless steel. It constantly chases alterations of the Phase Flame, increasing the unpredictability of the game through its irregular movements. Sports equipment experts followed that by developing a standard-issue propulsion protective armor for Roboball games, allowing top sport equipment and medical organizations to better demonstrate their quality and ensuring the sustainability of a stable income and safe competition.\\n\\nAnd thus, the Taikiyan Roboball Association was formally established, and the initial version of the Taikiyan Roboball Game Rules was formulated. The game system comprising two teams with seven players each was also established from then on.\\n\\nThe track architects of the Intelligentsia Guild had turned the concept of \"racing\" into a three-dimensional circular track — the standard length of which is 2.91 kilometers. The flat central area of the track is 5 meters wide, and the curved areas on both sides range from 2 to 14 meters in width. The Roboball players will fly unidirectionally for several laps on the spacious and bright track, accompanied by the sound of whistling and collision, completing the entire game. According to actual testing, during high-speed travel on the track, disconnected point light sources will connect into lines with the athletes' visual persistence, and several dimly visible lumens will form an exclusive arclight track. Interastral Peace Entertainment invited the wealthy to participate in the league, promising them the exposure their favorite sport deserved. Subsequently, the league clubs were established, and the most talented players were assembled and ready to go.\\n\\nInterastral Peace Media had exclusive broadcasting rights for the event and, with the help of ultraremote sensing technology, they broadcasted the live competition far and wide. The sensory experience of top athletes was also recorded throughout the event, allowing homebound viewers to also experience the speed, collisions, whistles, and arclights of the competition from the comfort of their own homes. The old scuttling site was filled with sightseeing cruises and bustling crowds gathered in the streets, illuminated by lights and advertisements, slowly streaming into the stadium. They confirmed their seats, looked around, and were greeted with banners, flags, and airborne malt foam. The bright track stood silently under the spotlights.\\n\\nAmid the roar of the crowd, the first game began." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's CRIT Rate by #1[i]%. When the wearer's current CRIT Rate reaches #2[i]% or higher, DMG dealt by Basic ATK and Skill increases by #3[i]%.", + "ParamList": [ + 0.0800000000745058, + 0.7000000006519258, + 0.20000000018626451 + ] + } + } + }, + "310": { + "Name": "Broken Keel", + "Icon": "SpriteOutput/ItemIcon/71023.png", + "Parts": { + "33105": { + "Name": "Insumousu's Whalefall Ship", + "Desc": "Encapsulated in the plane is the Insumousu Autonomous Region of Thalassa. The Xianzhou Daiyu had crashed here, inspiring the civilization of Insumousu.", + "Story": "\"Once upon a time, the palace of the gods fell from the heavens.\"\\n\\nFirstly, there was a shadow beyond the atmosphere, then a fiery glow as it entered the layers of air. At the end, its full form was revealed — It was a grand palace, a heavenly wonder beyond even the combined skill of all of Insumousu's greatest artisans. It descended slowly, as if it had condensed from the heavens themselves. Insumousu's ocean was vast, but could it truly contain this celestial palace fallen from the skies? No one knew for certain.\\n\\n\"Amidst the chaos, some dispersed and fled in all directions. Others remained in the villages on land and under the sea, anticipating the descent of the Divine Fall.\"\\n\\nThe fallen Xianzhou Daiyu crashed onto the surface of Thalassa, leaving a deep watery crater in the heart of the Insumousu sea. For seven planetary days, the world trembled, while the magnificent ruins stood silently on the sea bed like the tragic and magnificent remains of a god. The survivors of Insumousu, living in their abodes in the sea bed, witnessed how their beloved homes were shattered by the celestial palace from beyond. Yet, with joy and elation, they soon found a new home in the remnants of the Daiyu after the Divine Fall.\\n\\nAs living conditions improved, the people of Insumousu had more time and energy to think. They finally had the opportunity to ask the most important questions as they gazed upon the magnificent ruins that descended from the heavens: Who were \"they\"? And from whence did \"they\" come?\\n\\nIn the days of old, the people of Insumousu knew not the art of metallurgy, nor had they yet invented written language. Thus, they turned to imagination to supplement their knowledge, and sought to understand all through the telling of stories. \"Legends\" were born as stories passed through the generations, turning into \"myths\" over time. \"Myths\" then shaped cognition as they themselves endure the flow of time — until \"civilization\" was born. As centuries passed and stars shifted in the sky, Thalassa became a trade partner of the Xianzhou Alliance. It was then that the aquatic people of Insumousu set foot inside the \"celestial palace\" for the first time. There, they beheld the complete grandeur of the Xianzhou, and at last learned the truth behind the Divine Fall.\\n\\nThe well-educated Insumousu gentry always regarded themselves as a continuation of the Daiyu. \"What the Daiyu once followed, we should follow. What the Daiyu once fought against, we should also fight.\" When they tell stories from the past, they would still begin with these words:\\n\\n\"Once upon a time, the palace of the gods fell from the heavens.\"" + }, + "33106": { + "Name": "Insumousu's Frayed Hawser", + "Desc": "The fallen Xianzhou Daiyu is forever anchored in a foreign land. Perhaps it is time to untie its mooring ropes and let it return home.", + "Story": "As the people of Insumousu became enlightened by civilization, they longer see the broken ship's deceased crew as fallen gods. However, their reverence remains unchanged. Insumousu's poets thus sing: \"The ocean may swallow mortals, yet their spirits live on forevermore.\"\\n\\nIn accordance with the calendar of Insumousu, the second day of rest in the Month of Tides is Divine Fall Day — when the water dwellers recite scriptures, consume herbs, and perform bizarre dances along the current in honor of the fallen \"gods\" who brought a blessing to Insumousu. In modern times, Divine Fall Day gradually lost its original religious meaning — songs replace scriptures, delicacies replace herbs, and only the peculiar dances remain to this day as a cultural heritage.\\n\\nIn the past few hundred Star Calendar years, Insumousu has been generous in sharing its unique culture with the outside world, and the form of Divine Fall Day has quietly undergone more changes.\\n\\nInsumousu's land cities are usually full of young people, prone to staying up all night singing and dancing during Divine Fall Day. Foreign visitors, especially Xianzhou tourists, often choose to join in the festivities. Foreigners frequently fall in love with the vibrant atmosphere of the cities, these places filled with fiery passion as unstoppable as tsunamis. As the water dwellers grow out of their adolescent years, their lungs would gradually shrink, their necks metamorphose into gills, and their hands, feet, and eyes become more suited for underwater life. The poets always say, \"The people of Insumousu give their noisy and boisterous youth to the land, and their quiet and solemn old age to the ocean.\"\\n\\nWith the support of Xianzhou's Celestial Guild, a new ritual was added to the Divine Fall Day celebration — People would dive into the wreckage of the Xianzhou Daiyu to search for the remains of Xianzhou humans, then inter them into starskiffs and launch the skiffs into the star of the Thalassa system.\\n\\nThrough their discovery of the history of the Daiyu, the people of Insumousu also learned of the tragedy behind its fall. When the Xianzhou Daiyu was irreparably damaged and breaking apart, Qingzhu, leader of the Daiyu, made the courageous decision to sacrifice herself and the entire ship to end the curse of the immortality plague. The Xianzhou Alliance hopes that the fallen heroes will receive a dignified soul-soothing ceremony and the people of Insumousu, who were spared from the disaster, have given their response.\\n\\nAt some point during the night of Divine Fall Day, the revelry would come to an abrupt halt. Adolescents, children, and Xianzhou residents would sit by the shore as adults emerge from the water and solemnly gaze at the oceanic horizon. Then, several starskiffs break through the water and fly from the bottom of the sea toward the star.\\n\\nThe starskiffs are each inscribed with a row of beautiful Insumousu calligraphy that reads, \"You should undo the ropes for drowned sailors. Don't cry. You can sail safely after my demise.\"" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's Effect RES by #1[i]%. When the wearer's Effect RES is at #2[i]% or higher, all allies' CRIT DMG increases by #3[i]%.", + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 0.10000000009313226 + ] + } + } + }, + "311": { + "Name": "Firmament Frontline: Glamoth", + "Icon": "SpriteOutput/ItemIcon/71026.png", + "Parts": { + "33115": { + "Name": "Glamoth's Iron Cavalry Regiment", + "Desc": "Encapsulated in the Planar Sphere is the renowned shapeshifting oothecae of the Glamoth Empire's Iron Cavalry. Countless silver mechas were loaded into warships and sailed to the outer edges of the galaxy to fend off the vicious Swarm from deep space.", + "Story": "The Welkin Empire of Glamoth enjoyed a vast territory spanning tens of thousands of light-years, ambitiously setting its sight on the cosmos. At the height of the empire's power, Her Majesty Empress Titania built a magnificent fleet, vowing to bring the fruits of civilization to all the barbaric borders, allowing them a taste of the empire's benevolence in hopes of uniting them under one rule.\\n\\nHowever, the expedition was eventually halted by endless waves of raging insectoids coming from beyond the sky. Glamoth's armies fought and failed, again and again... Colonies were scattered, and the proud iron fleet fell one after another. Besieged by the monsters with compound eyes and sheathed wings, the cries of the people of Glamoth were drowned out by despair, and the Welkin Empire was shattered from then on.\\n\\nUntil one day knights clad in mechanical armor descended from the sky and wiped out the sun-swallowing Swarm. Since then, the silver-white iron knights have traveled to and from the various star systems in the empire, crossing the devastated territories and fighting back against the calamity that wiped out the galaxy. They were like warriors born to fight the Swarm. No one knew the faces lying beneath the masks of the Iron Cavalry, but their arrival was like a gift from the gods, bringing the light of day back to the human world. Under the Empress' command, Glamoth's Iron Cavalry charged across the skies, finally stemming the tide of enemies and bringing a moment of respite to the empire.\\n\\nBut in the never-ending battle against their archenemy, the empire started becoming more and more like its adversary — more and more Iron Cavalry flew high into the sky, blotting out the heavens just as the Swarm did on that fateful day. The look people cast on the Empress and the cavalry turned to one of fear, a fear akin to what they felt toward the Swarm. Perhaps one day the empire would attain the victory it so desired. But on that day, will Glamoth still be a paradise for humanity to rest in?\\n\\nThe Iron Cavalry Regiment formed the last line of defense at the border of Glamoth, where the battle raged on endlessly. Upon their warships, the silent knights bore a mission, carrying the hopes of the entire empire, and faced the tides of enemies drowning out the stars." + }, + "33116": { + "Name": "Glamoth's Silent Tombstone", + "Desc": "The flourishing Empire of Glamoth turned into dust. There was no evidence of its former glory. Only the debris of stardust, mechas, warships, and the corpses of the Swarm were left drifting in the vacuum to form a river of residua — preserving the original battle scene of the bloody warfronts and serving as a monument to its downfall.", + "Story": "Historians of the Intelligentsia Guild believe that the Republic of Glamoth was destroyed by the scourge of the Swarm. Another view claims that the Republic of Glamoth was destroyed by how it completely overshot its powerful enemy.\\n\\nIn order to turn the tide in the horrific invasion of the Swarm, the ruling council threw down the gauntlet and resolved to alter the essence of humanity in an effort to adapt to the war — they will create a weapon \"born to fight.\"\\n\\nThe result of all this was \"Titania.\" The Empress, who holds no power, telepathically commands and controls the knights connected to her. In the dreams that these warriors are woven into, the sole meaning of their existence is to guard Titania and her \"empire.\" In their short lives, they studied, fought, received the Empress' commands, faced the enemy fearlessly, and died with honor.\\n\\nNo one knew when this falsehood was revealed. Was it from the day when the old humans in Glamoth's territories fell below a certain percentage? Was it the day when scientists realized that the Empress was beginning to revolt against her captivity? Or... maybe the day when the Swarm's onslaught dissipated into thin air?\\n\\nAll the people knew was that the Iron Cavalry gave their all for the non-existent \"empire.\" After decades of bloody battles, the remains of mechas and insect limbs turned into dense debris strewn throughout Glamoth's segmentum, connecting with each other to form a \"River of Death.\" When the remnants of the Swarm no longer posed a threat and the leaders of the council rang the bell of peace, informing the citizens that they had dispelled the apocalypse that clouded the heavens and the republic would be ushered back into the light of day — What arrived was not daylight, but the beginning of another sunless night.\\n\\nAfter that, the civilization known as Glamoth faded away, and the long-awaited peace came to the empty stars. The long river of stardust and debris flows silently along the void." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's ATK by #1[i]%. When the wearer's SPD is equal to or higher than #2[i]/#3[i], the wearer deals #4[i]%/#5[i]% more DMG.", + "ParamList": [ + 0.12000000011175871, + 135, + 160, + 0.12000000011175871, + 0.18000000016763806 + ] + } + } + }, + "312": { + "Name": "Penacony, Land of the Dreams", + "Icon": "SpriteOutput/ItemIcon/71027.png", + "Parts": { + "33125": { + "Name": "Penacony's Grand Hotel", + "Desc": "Encapsulated in the plane is Penacony's main structure — the Reverie hotel. Guests staying here will travel to a world of sweet dreams and enjoy a feast of luxury and extravagance in a seemingly omnipotent metropolis.", + "Story": "The attendants bow and salute with uniform smiles, and greet the guests with music: \"Welcome to the Planet of Festivities! Beautiful dreams await you.\" The guests smile as they move forward, accepting their drinks infused full of bubbles and gulping them down.\\n\\nThe scenery gradually becomes more and more incredulous, and the senses feel as if one has been lifted by silk. Guests from other lands defy gravity and walk on walls. Strange toys come to life and roam the streets in celebration. The water from the spring turn into a giant whale and swim through the halls. Opening a window no longer show a view of the stars in the deep sky, but of the city's shifting streams of light and shadows, holding up the constant echoes of giant clocks and theaters. The guests finally realize that they were never awake, but are instead witnessing Penacony's true nature in a dream — a place where time stops in a neverending dreamscape.\\n\\nEveryone knows that, under the rule of \"The Family,\" the doors of Penacony are open to everyone amidst the stars. For a transcendent experience, for an inspirational excitement, for the soothing of worries and wounds — guests of the highest caliber come to surrender their pain in exchange for peace and tranquility, to drink the best of the best, and to wander in the sea of dreams. Some spend unforgettable holidays here and leave content, while others become obsessed with the festivities and settle down here. The star-studded hotel is the jewel of dream weavers, the kingdom of dream makers, and the playground of dream seekers.\\n\\nFew guests are aware of the dusty history of the past — the thread that weaves the dreams comes from reality. The velvety splendor of today's Penacony was born of salty rust, heavy shackles, and deprived freedom. The Planet of Festivities was once an IPC prison, where countless inmates were relocated to salvage the overflowing Memory Bubbles for the Garden of Recollection. People repeated their endless toils until their bodies were as heavy as lead, but their souls became as light as bubbles. At some unknown point in time, the small cells cut off access to reality, but people's consciousnesses became linked in dreams. In the midnight bell, that shared dream seemed so real, reflecting the sheer hypocrisy of reality.\\n\\nIt lasted until the Destruction melted the chains of the IPC, the Trailblaze connected this frontier to the other stars, and the Harmony arrived upon invitation to sow the seeds of peace. Freedom finally broke ground and added a new name to the original dream — Penacony.\\n\\nToday, there is no trace of the crumbling prison. In the dream world, a myriad of skyscrapers has been erected and the desert has been rebuilt and transformed into a metropolis — a new world for dreamers in search of wealth and opportunities, and a utopia for those in search of indulgence and pleasure. The past of the Planet of Festivities is like a photo that fell to the bottom of a cupboard — it exists, but is seen by no one.\\n\\nNowadays, the land of dreams is filled with songs of joy, and the noise of the past have been relegated to gossip, silently lost in the interlude of a comedy, in the behind-the-scenes of some cartoon, or in the side column of some magazine." + }, + "33126": { + "Name": "Penacony's Dream-Seeking Tracks", + "Desc": "In Penacony's dreamscape city, intricate tracks meander between buildings, supporting the Spheroids that visitors ride in, and connecting rich and diverse dreams together.", + "Story": "Those who have visited Penacony will agree that \"built on dreams\" is not just some saying, but is a very real statement. The opulent hotel is just the tip of the iceberg of the Planet of Festivities, and it is only when you \"stay and dream\" that you are considered to have officially arrived at Penacony. From then on, the land of dreams, consisting of twelve dreamscapes, slowly expands before the guests' eyes.\\n\\nGuests who are new to the place may be overwhelmed by this carnival stage, but do not be alarmed. Look up and see the metal tracks crisscrossing the skyscrapers and the Spheroids rapidly rolling along them. They are the most visible means of transportation in this dreamscape metropolis and guide guests to each and every place around the city.\\n\\nStarting from the central station, the complicated Spheroid tracks are like the blood vessels of the metropolis. Whether it is the underground tunnels of the Moment of Daybreak, the vast fields of the Moment of Scorchsand, or the glittering stadium of the Moment of Stars, the colorful Spheroids roll on and on, delivering people to each station accurately, efficiently, safely, and comfortably, pouring a sleepless energy into the dream world of Penacony.\\n\\nDreams give a light and delicate texture to everything, and the nut-like Spheroids are regarded as both vehicles and as toys in the land of dreams. However, few remember that the Spheroids are actually imprisonment cages — the vehicle towards dreams are tools originally used for locking up prisoners.\\n\\nA long time ago, the IPC sent a huge number of prisoners to the Asdana star system in an attempt to stop a catastrophe from spreading. There, people reclaimed memoria, gradually becoming lost between fantasy and reality. The spherical work chambers in vacuum became an unforgettable \"memory\" for the prisoners — the hard curved interior walls, the awful experience of tumbling around, the unbearable daily attendance — perhaps these pains ran too deep. When those who regained their freedom pioneered the barren dreamscape, the spherical cages came along with them.\\n\\nBut now, unlike in the past, peace and freedom have given birth to optimism. Instead of trying to destroy the inescapable nightmares over and over, it is better to add to them the color this place should have, to take them in, and embrace them. So, the spherical imprisonment cages of the past have become today's Spheroids.\\n\\nIn the present, the fast-moving colorful Spheroids moving all over Penacony and the slight reverberations coming from within them... are all quietly hidden in the light of the dream city, blending in with the ambitions and laughter, like a land of dreams where time forever stands still." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases wearer's Energy Regeneration Rate by #1[i]%. Increases DMG by #2[i]% for all other allies that are of the same Type as the wearer.", + "ParamList": [ + 0.05000000004656613, + 0.10000000009313226 + ] + } + } + }, + "313": { + "Name": "Sigonia, the Unclaimed Desolation", + "Icon": "SpriteOutput/ItemIcon/71030.png", + "Parts": { + "33135": { + "Name": "Sigonia's Gaiathra Berth", + "Desc": "Encapsulated in the plane is the most habitable zone in Sigonia-IV — the desolate barren desert known as the Gaiathra Berth. The silent and unassuming Gaiathra Triclops, with her immense and weighty torso, quietly encompasses all the living and deceased in Sigonia.", + "Story": "When discussing Oswaldo Schneider, the head of the IPC's Marketing Development Department, people often focus on the decisive operations he undertook upon assuming the position. Within just two years, this young fanatic conquered the bitter cold, pestilence, and death, and managed to address three major longstanding issues that had plagued the Department for several Amber Eras. One of these challenges is the desolate planet known as Sigonia-IV, which is covered in barren deserts and scarred by clan vendettas... a place of harsh conditions and strife.\\n\\nSituated near the convergence of three major star clusters, Sigonia-IV has long been subjected to stellar winds from multiple stars, earning its reputation as the \"eye of the storm\" throughout the Cosmos. The planet's surface environment is extremely harsh, leading many civilizations to either migrate to other celestial bodies or succumb to natural disasters. Now, only a small number of intelligent races remain there, referred to as Sigonians by scholars from the Intelligentsia Guild.\\n\\nIn reality, Sigonians have fragmented into numerous clans, with most adopting nomadic lifestyles, while a few have established centralized systems of governance of reasonable size.\\n\\nThey share a common language. Through the translation provided by the Synesthesia Beacon, you will learn that \"Katica\" means \"shellslasher,\" who have a reputation of being the most ferocious clan among Sigonians. And \"Avgin\" means \"honey,\" who are often accused of pilfering by those willfully ignorant. These clans share a vendetta that lasted through Amber Eras, engaged in a cycle of bloody vengeance in the boundless wilderness where only the fittest survive — until mysterious figures clad in black descended from the sky. From there, Sigonians were briefly united under the radiance of Amber, and the natural cycles that were finally reached a temporary conclusion.\\n\\nAfterward, under the IPC's guidance, the Sigonians established the Sigonian Sovereignty according to the Interstellar Peace Charter and took their first steps toward the wider Cosmos.\\n\\nUnfortunately, this unity and progress did not extend to the Avgins and Katicans. Some malicious opportunists among the Sigonians viewed the former's resourcefulness with suspicion, while slandering the latter as nothing more than predators with no hope of enlightenment. Although they possessed only limited knowledge about Preservation, they understood that some of them had to be sacrificed for it. Utilizing a highly advanced set of parliamentary rules, these devious and corrupt individuals banished both clans to the endless desert.\\n\\nAs a token of apology, they even went out of their way to declare that \"the Avgins shall forever retain the right to autonomy\" — In other words, should any future conflicts occur between the two clans, they could justifiably and lawfully sit back and do nothing." + }, + "33136": { + "Name": "Sigonia's Knot of Cyclicality", + "Desc": "Turquoise meteorites are meticulously polished and shaped, then strung together with gold threads and viridescent silk by the Avgins. They believe that these protective knots must not be buried in the sand, but radiate like the Mother Goddess' divine body reborn from death on the night of Kakava.", + "Story": "\"Avgin\" means \"honey\" in the Sigonian language. It's a conventional term irretrievably lost in the long arc of cosmic history.\\n\\nThe Avgins are blessed with attractive facial features, beautiful eyes, and an innate wealth of emotional intelligence, all of which effortlessly endear themselves to any strangers. However, these inborn talents are the exact reason they draw jealousy and ire from others. And the envious and snobbish soon begin their ceaseless slander, and the baseless defamation of the Avgins thus spreads like wildfire throughout the cosmos. As mere rumors can suffice to tarnish the sanctity of truth, the Avgins, a people of a peripheral world, found themselves assailed without recourse, subject to all manners of suspicion and prejudice.\\n\\nThe Avgins have an appreciation for intricately patterned fabrics, as well as a penchant for jewelry crafted from precious gemstones. They're particularly fond of turquoise meteorites, the only kind of gemstones capable of rivaling the resplendence of Gaiathra Triclops' divine body, which in their mythology is believed to have been reborn from death.\\n\\nKnown as Fenge Biyos, their Mother Goddess reigns over all matters related to fertility, travels, and trickery. Depictions of the Mother Goddess in the Avgins' religion often portray her as a left palm adorned with three eyes. The Avgins primarily express reverence for her through spoken prayers alone, believing that the Mother Goddess is as silent and unassuming as the mountains of Sigonia, and that crafting statues or composing hymns for her would only distance themselves from her protective embrace.\\n\\nThe Avgins view the world through the body of the Mother Goddess — the earth, the mountains, and all that exists on the land are a part of the Mother Goddess' divine body. And at the end of each calendar year, her divine body will perish.\\n\\nOn that significant day, her divine essence ascends as a resplendent aurora in the night sky and is reborn in the following day. Hence, Avgins celebrate the first day of the new year through their grand festival called \"Kakava.\" During this festival, they weave sacrificial vessels known as \"Knots of Cyclicality\" and toss them into bonfires to commemorate the Great Goddess' birth.\\n\\nAccording to the incident report by the Marketing Development Department, that shocking conflict took place on a night of Kakava. It was a stormy night when the clouds and fog engulfed the northern lights, which should have been seen as an ill omen. However, the Avgin people were unexpectedly excited. When questioned about this, a maiden from the clan provided the following response.\\n\\n\"Rain is a gift from the Mother Goddess. She is calling to us, urging us to take up arms and fight for our future.\"\\n\"This rain accompanies us. This rain protects us. It is in this rain that we shall meet our honorable demise.\"" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's CRIT Rate by #3[i]%. When an enemy target gets defeated, the wearer's CRIT DMG increases by #1[i]%, stacking up to #2[i] time(s).", + "ParamList": [ + 0.0400000000372529, + 10, + 0.0400000000372529 + ] + } + } + }, + "314": { + "Name": "Izumo Gensei and Takama Divine Realm", + "Icon": "SpriteOutput/ItemIcon/71031.png", + "Parts": { + "33145": { + "Name": "Izumo's Magatsu no Morokami", + "Desc": "Encapsulated in the plane is Izumo, with its past and future severed with a slash. Izumo was once covered in indescribable wars of survival, as well as once being blessed with glorious days of bountiful luxury... Now, the barren land is nowhere to be found, leaving behind only a graveyard of swords where the past lies buried.", + "Story": "The dual planets were intertwined in each other's tragic destiny, dancing an eternal rondo around a pitch-black great sun.\\n\\nIn the beginning, one of the planets gave rise to humans. Those who looked down named the land below \"Izumo.\" Those who looked up named the world above \"Takamagahara.\" One day uninscribed in the annals, the Yaoyorozu no Kami descended from Takamagahara. These demonic beasts named Kami overturned the skies, burned the rivers and oceans, and shattered the land — People realized in horror that it was not an invasion for rulership, dominance, or plunder. The evil Kami came only to kill.\\n\\nAs the planet stood on the brink of death, Izumo embarked on a Kami-slaying journey, exhausting the might of the entire country to slay the calamity named \"Sovereign of Revelation\" and forging the very first Edict Edge using its bestial body. Giving the Kami a taste of their own medicine, the wielder of these swords can recite the mantra contained within the blade to master the divine power of Takamagahara, and use it to combat the evil Kami and save the masses. From then on, Izumo started its long and arduous crusade, exchanging inordinate lives lost for the fall of one Kami after another, shattering countless mortal blades to forge the twelve Sentinels.\\n\\nIn the merciless fight for survival, Izumo used the might of the Edict Edges to light up their uncivilized world of darkness in less than ten Amber Eras, building cities of dazzling neon lights. That distant Takama Divine Realm, once so far away, became so close within their reach — Yet history suddenly stopped there. The existence of the two planets instantly evaporated, disappearing into nothingness.\\n\\nNowadays, the past of the border planet Izumo can only be gleaned from the scattered whispers in the universe. Academics hold various views regarding its disappearance, but none can solve the mystery. Izumo's history should have been a long flowing river, but it was severed in one cut, and all its past and future voided on emptiness' other shore. Did it never exist, and was it no more than a fabricated story? Did its histories never occur, and it ran aground on the beach of reverse causation? Was it yet another appalling experiment by Dr. Primitive, or was it a sign of the Voracity returning from the end of the Cosmos?\\n\\nOnly that pitch-black great sun knows the answer, yet THEY remain silent, never speaking.\\n\\nBecause everything that had happened will one day regress to the end, and everything that had ended is guaranteed to happen again. The universe undergoes an eternal recurrence under THEIR shadow, and Izumo is nothing more than the footnote for an ellipsis." + }, + "33146": { + "Name": "Izumo's Blades of Origin and End", + "Desc": "The people of Izumo use tassels to bind the sharp blades to their belts. They walk the world to hunt down Kami with their blades, then used the divine carcasses to forge new blades... In this never-ending cycle, Izumo marches toward prosperity, towards disillusion, and towards the void.", + "Story": "The dual planets were intertwined in each other's tragic destiny, and a dead song was scattered amongst the Cave Where Light Hid.\\n\\nThe song had no beginning and no end, had no sound and no echo, came from no singer, and was heard by none. It thus uttered:\\n\\nTakamagahara endless like Izumo, for it was a paradise perfect in its place.\\nYet the sky turned dark and the great sun pulled the tides, and the Kami left numerous trails as if migrating.\\nThe Yaoyorozu no Magakami manifested and slaughtered without mercy, yet little did they expect their peerless authority to be stolen and taken.\\nIzumo broke seventy-thousand-and-thirty-three warrior's blades, forging the majestic Sentinels twelve in number.\\n\\nThe first was \"Truth,\" forged with the slain Sovereign of Revelation. It allowed mortals to comprehend all laws and order, to dissect all things and to recreate miracles.\\nThe second was \"Sky,\" forged with the slain Eternal Zenith. It could turn the sky into walls and fortresses and pose obstacles for the Magatsu no Morokami's steps.\\nThe third was \"Howl,\" forged with the slain Almighty Thunder. It could summon lightning to tear the sky, and the soaring meteors and thunder to serve divine justice.\\nThe fourth was \"Mist,\" forged with the slain Everbreath. It could make winds break and shear the land, for gales to rage forever unceasing.\\nThe fifth was \"Frost,\" forged with the slain Heaven's Winter Cloak. It could freeze and still the very order of time, to create boundless frozen wastes and stretch one moment into eternity.\\nThe sixth was \"Fate,\" forged with the slain Spurned Sister of Mortality. It could make flowers bloom and cover barren graves, for life and death to dance in a cycle and dissipate.\\nThe seventh was \"Flare,\" forged with the slain Flamebringer. It could summon fires to burn down the very world, to torch the skies and to char the earth.\\nThe eighth was \"Thought,\" forged with the slain Wisdom Supreme. It could discern the past and future with the water mirror, to tell truth from lies over years beyond reckoning.\\nThe ninth was \"Root,\" forged with the slain Father of Lands. It could command islands to float into the heavens, for mountains and valleys to burst before armies.\\nThe tenth was \"Form,\" forged with the slain Nether Lord. It could make the masses join in unity, for endless forms to ebb and flow as one.\\nThe eleventh was \"Bind,\" forged with the slain Omen Ward. It drove misfortune into a binding cage, for evil and demons to instantly vanish.\\nThe twelfth was \"Maw,\" forged with the slain Woes Eighty. It could corrode and age the very mortal world and make equal Kami and Oni, leaving an entity's four souls to be sundered in twain.\\n\\nThen the underworld was cleared out, the wars called to a halt, and the twelve blades broken and locked.\\nIn the emptiness the dead souls grew restless, and under the black sun two blades were forged as Bearers of the world's destiny.\\nOne was named \"Origin\" and the other named \"End,\" for all begun with humanity and shall end with Oni-kind.\\nThe sounds of lamentation ceased, and the dead flowers rose and fell. The losers returned to the void, and the winners... became null.\\n\\nThe hobbling monk sang the song without a tune, for those who hold the power of Kami are walking backwards, towards divinity.\\nWitnessed by the great sun, the land once named Izumo became completely devoid... of humans, Oni, and Kami." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's ATK by #1[i]%. When entering battle, if at least one teammate follows the same Path as the wearer, then the wearer's CRIT Rate increases by #2[i]%.", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + } + } + }, + "315": { + "Name": "Duran, Dynasty of Running Wolves", + "Icon": "SpriteOutput/ItemIcon/71034.png", + "Parts": { + "33155": { + "Name": "Duran's Tent of Golden Sky", + "Desc": "Encapsulated in the plane is the Golden Sky Tent belonging to the borisins of Verdantia. Different to the savage name that borisin left in the cosmos, the borisins of Verdantia possess outstanding biotechnology. The children of the wolves gather next to the great Brood Lord Duran, and regard the celestial objects in the sky as their herd as they gallop between the stars.", + "Story": "The beginning of ancient foxian and borisin ballads all nostalgically sing of the \"Planet of Verdantia\" and its fertile soil and pleasant climate. However, upon closer inspection, the perceptive ones will realize such words are mere preludes to the eternal theme of \"war.\"\\n\\nWith their talents for agriculture and commerce, some fox clans built prosperous towns next to flowing rivers. Meanwhile, the children of wolves roamed with their herd under the aurora-covered sky within the lush grasslands, forming settlements that dotted the landscape. The merchants laughed at the herders for the latter's savagery, while the herders despised the merchants for their deception. However, they both must confront the cruel torments of nature — the \"Vulpesummer\" and \"Lupuswinter.\"\\n\\nIn the summer of rich harvests blessed by the fox deity, the two clans put down their arms and ceased warfare in mutual satisfaction. But once the wolf deity lets fall the white frost, the snowlines would spread from the poles and hunger shall drive the two clans to unceasing conflict.\\n\\nThe ballads mention that the Lupuswinter once stayed far beyond its due, even after the sun of Verdantia had circled the planet thirty-three times. Poverty and hunger crashed the people, and they resorted to even eating animals they once worshipped as totems. After foreseeing the end where the entire world shall be covered in bleak death, a savior climbed to the peak of the tallest mountain in that world — The foxian legends called her \"Tushan,\" but the borisin sagas called him \"Duran.\" No matter what this savior was called, they made a wish to the Master of Immortality, hoping for sustenance enough to keep the world's people alive. Then, the mountains split, and sweet divine nectar of Redspring poured out from the hilly ravines.\\n\\nThose who drank from the Redspring obtained power, dexterity, and strength from the beast meat they devoured. Their blood, too, stirred with the ferocity of animals, and their bodily forms became increasingly bestial — Thus was this world changed, never to return to its former days.\\n\\nWith the Redspring as the medium, everything that the reborn canine races needed was made from this miraculous source — The fields no longer grew grain but viscorpi instead, and the garments that covered people's bodies were no longer of linen but of embryonic flesh. Even the chilly snowlands that once terrified the Verdantia civilizations were no longer a concern, for the canine races cultivated biological membranes in the polar regions to craft into warm dome-shaped tents, blocking the impoverished Lupuswinter beyond this barrier.\\n\\nThen, things changed in the Planet of Verdantia, just like how things changed for every short-life species that became long-life — There was population explosion, ecological collapse, internal warfare... And no matter how hard the canine races prayed to the Master of Immortality, they never heard another reply. Then, the people understood the truth: Everything that the Master of Immortality could give had been given, and if the people wished to have better lives, they must take more by themselves.\\n\\nGathered around Duran the great Brood Lord, the canine races cast their sight into the sky where the Master of Immortality dwelled. The stars sparkled like a grassland waiting to be conquered with fast steads, and they will bring the \"Lupuswinter\" to the civilizations on those planets.\\n\\nMuch later, their sworn enemies dubbed them \"borisin,\" for it signified \"wolf\" in the vernacular of Verdantia." + }, + "33156": { + "Name": "Duran's Mechabeast Bridle", + "Desc": "These were the reins, shackles, and whips. The first thing taught to borisin youths who had grown taller than war beasts' legs was to always grasp the reins tight in their hands, or else the youths themselves would become enslaved livestock — or worse, become feed.", + "Story": "In the borisin language, the bridle was also called assa-chita, meaning \"the living book.\"\\n\\nWhen the dual rising moons meet, and the night sky is at its brightest, the voodoo masters of the hunting tribe gift bridles to the children of Duran to symbolize them entering adulthood. This blank bridle would become a book that records the history of their battles throughout their lives.\\n\\nAs soon as the adulthood ceremony ends, the borisin youths must walk into the weapon farm, then pick and tame their first battle mount among the \"mechabeasts\" that have been filtered and bred via gene witchcraft. Mechabeasts that consume the conquered as their feed have astounding agility, perception, and ferocity — Yet they are considered mere sheep when facing against their future masters. As the moonlight stirs the violent blood in their veins, the borisin youths chase and duel against the mechabeasts. Some will die from the beast's kiss — That is the result of cowardice. Some will kill their peers — That is the law of how valiant beasts shall be distributed... The borisin youths trip the desired mount to the ground and tie the bridle, which is inlaid with neural spike whips, onto the animal's neck — The beast will be stunned through telepathy with its future master and become as tame as if they already received hundreds of whiplashes. When the beast willingly carries the master on its back, a fitting borisin sorya (warrior, rider) will have been born.\\n\\nThen, the borisin bridle will become the recorder of wars, and the reins will gradually become full of scratches, knots, and accessories.\\n\\nThe well-trained sorya dons jellyfish-like membranous armor under the leadership of a yonda (leader, centurion). They then board the beast ships that can warp between stars, explore different worlds, and swear in the name of Duran and the Master of Immortality to make the stars into their herding ground. On the bridle, light scratches indicate how many enemies the owner had slain, knots record how many major campaigns they were involved in, and the accessories dangling from the reins are loot such as human teeth and Intellitron cores obtained from pillaging frenzies... They are the vengeful wails of the conquered, as well as medals for borisin individuals to demonstrate their strength.\\n\\nWhen the mounts beneath the warrior perish in warfare, or when borisin wish to mete out punishment, the bridle can also be fastened around the bodies of other living beings.\\n\\nTheir targets are usually foxians — The slave race excluded from the clan due to genetic selection plans. They are weak, devious, and are only fit for lowly labor and calculations. Whenever rare war-like individuals emerge among the foxians, the master of the wolf-head would prioritize binding these foxians with the bridles, driving them as war slaves to serve as vanguards on the battlefield.\\n\\nIf all slaves are dead, and the weapons are bent, then the bridle can still act as a whip if one attaches a spike to the end. If the bridle is snapped and the warrior perishes in war with their fangs and claws shattered, then the bridle will become the sole remaining epitaph and memories for borisin...\\n\\nJust as the old tales said that \"the position between the predator and prey often changes in the forest,\" countless wolf-kind bridles have been broken and snapped after fighting for millennia against the Xianzhou in this dark forest called the universe. In the end, this link that connects various clans is severed by the sharp arrow of The Hunt, and the borisin also fall into the shadow of internal strife and general decay, becoming ever more removed from their former pride." + } + }, + "RequireNum": { + "2": { + "Desc": "When an ally uses a Follow-up ATK, the wearer gains 1 stack of Merit, stacking up to #1[i] time(s). Each stack of Merit increases the DMG dealt by the wearer's Follow-up ATKs by #2[i]%. When there are #1[i] stacks, additionally increases the wearer's CRIT DMG by #3[i]%.", + "ParamList": [ + 5, + 0.05000000004656613, + 0.25000000023283064 + ] + } + } + }, + "316": { + "Name": "Forge of the Kalpagni Lantern", + "Icon": "SpriteOutput/ItemIcon/71035.png", + "Parts": { + "33165": { + "Name": "Forge's Lotus Lantern Wick", + "Desc": "Encapsulated in the plane is the Flamewheel Forge, the location of the Xianzhou Zhuming's Artisanship Commission. A sphere the size of a celestial body, constructed around the progenitor of all heliobi, the Flint Emperor. Ingenious artisans draw energy from it and mold wondrous thoughts and inspirations into form.", + "Story": "The Xianzhou Zhuming had floated in the starry seas for over eight millennia after setting sail from the Primeval Imperium. If one were able to view a chronological snapshot of how the starship's form had changed, it would be a very romantic experience — The colossal ship swallowed a deep-blue star, peeled off the worn hull layer by layer, swelled as a brimming bud, and finally bloomed into a lotus.\\n\\nFrom space, the entire Xianzhou Zhuming appears as a lotus lantern of filigree gold. The giant glowing \"lotus leaves\" gradually spread out around the \"light poles\" and are bathed in a soft blue glow, being indeed worthy of poems that declare it \"A ship whose hull deceives the eyes, a lotus whose petals like candles glow.\" The \"lampstand\" section at the center of the ship is a spherical cage, its size on the magnitude of a celestial object. It tightly wraps around the azure sun, the \"lantern wick,\" and eternally spins. This mega structure is the most important location for the Xianzhou Zhuming's manufacturing industry — the Flamewheel Forge.\\n\\nIn the past, the Zhuming Grand Artisan Yang Di had received a weapon mold from the anonymous sovereign of the Primeval Imperium as a gift when the fleet set off on their voyage. Thousands of years later, though the fleet has now changed beyond recognition with their immortality and the return voyage will never occur, the tradition of the Grand Artisan never died. In the Xianzhou Zhuming, artisanship is the supreme school of learning. All its generals also held the title of the Artisanship Commission's Furnace Master. When they leave the ship, they command thousands of troops. When they return to the ship, they would swing their hammer and forge wondrous items, and receive the people's supreme respect. More than half of the weapons used in the Xianzhou's hunts throughout the fleet's history were forged in the Xianzhou Zhuming. Therefore, the Flamewheel Forge came to be regarded as the holy pilgrimage site for such technologies in the entire Cosmos.\\n\\nMetalsmithing is a measure of the advance of civilizations, while flames mark the beginning of civilizations. Many civilizations, while in their infancy, are most troubled with the problem of energy sources. The people would spare no effort in discovering energy sources that can support their civilization to new heights. The Xianzhou Zhuming have stepped over this limitation — By imprisoning the progenitor of heliobi, the Flint Emperor, the artisans have obtained a literally inexhaustible power source. The Flamewheel Forge has intricate branch-like track systems that cover the star as much as possible, and the delicate boughs and leaves are choked with receptors and transmitters that guide the Primordial Flame \"Flint Emperor\" to provide energy for all technological developments.\\n\\nCountless artisans regard the Zhuming Artisanship Commission, which had swallowed up a Pseudo Sun, as the hallowed hall of the craft, with apprentices who aspire to forge divine tools swarming the institution. With enough force, anything can be crafted, and the Flamewheel Forge has prepared everything the artisans could possibly need —\\n\\nApprentices from different worlds come together before the Forge and become fellow students, then compete and share their skills. Outworlders who come in search of marvelous tools would also pay a hefty sum to commission artisans to craft otherworldly items — However, the countless apprentices over the millennia have rarely been favored by General Huaiyan, the \"Artisan of Artisans.\" Whenever he tutors students himself and personally passes on his skills both as a craftsman and a soldier, these students would either become grandmasters who leave a mark in the annals as Furnace Masters or become Cloud Knights with names that thunder through the Alliance such as the Flamewheel Octet.\\n\\n\"Forges wrought a million stars bright, irons craft heroes' soaring flight. Miniscule lights into martial might made, only with sharp blades are peace and plenty saved.\" From the day a Zhuming artisan receives their tools, they must always remember — What they will spend their days and nights making are no simple weapons, but the arrows carrying the creed of The Hunt." + }, + "33166": { + "Name": "Forge's Heavenly Flamewheel Silk", + "Desc": "The heliobus progenitor, as grand in scope and size as a star, drowns in an endless dream. As it slumbers, the atoms and molecules around its body clash and spark, endlessly permeating outward from the external shell crafted from the Flamewheel, ultimately appearing as iridescent light bands resembling strands of celestial silk.", + "Story": "The Xianzhou Zhuming has always been accompanied by multicolored light bands while voyaging in deep space. These bands are both energy outputs from super-high-temperature fusion reactions, as well as evidence that the Flint Emperor still burns and shall never die.\\n\\nOn the outermost skirts of the aurora-inducing particles dispersed with the Flint Emperor's breaths, newborn heliobi slow down and wander into being. The Flamehunt Judges of the Zhuming Ten-Lords Commission then capture these naive heliobi that have not had any contact with emotions, using kind and gentle dreams to tame the immature temperaments of such flames. Then, the judges pass these harmless heliobi to the Artisanship Commission's Temperaflame Office, which matches the heliobi with various artifacts to make them into lamps, vehicles, and various spectacles in Zhuming... However, in the eyes of confused outworlders, these talking and walking items are proof of the rumor that \"divine essence exists everywhere in the delves, and items would become demons once they are old enough\"...\\n\\nFollowing the alien-colored light band, one can walk deeper past the Forge and arrive at the hypergravity field created by the Pseudo Sun. Mortals struggle to endure a stellar density of this degree. It is an inwardly collapsing disorder that only Ribhus artisans can traverse with ease.\\n\\nThe scorching stellar surges and abnormal celestial phenomena prevent the curious from continuing to approach the Pseudo Sun. All fundamental physical laws of the universe have been amplified in this space. Only one stout and powerful stellar race, the Ribhus, can survive in spaces with such gravitational abnormalities — The Ribhus are natural-born elite artisans. They pass between the Forge and the Pseudo Sun, and their perception of time has long strayed from that of normal beings. They keep their promise and continue to improve their artisanship, forging the ship's enormous cannons and keeping watch over the Pseudo Sun's slumber. The Xianzhou Zhuming regards Ribhus as loyal allies, respecting their tenacity and strength, while being grateful for their selfless sacrifice.\\n\\nAnd yet, no being can follow the light bands further across the outlandish and twisted gravity field to dive deep into the Pseudo Sun. That is a place forbidden to all beings capable of emotion, a room where the endless dream of the Flint Emperor floats — The Xianzhou Zhuming is always on watch, for even the smallest sliver of emotional disturbances can awaken the boundless might of the heliobi progenitor.\\n\\nThere are frequently individuals who ignore the warning and cast their gaze upon the Pseudo Sun from afar. They would unknowingly slip into the psychological gravitational field, and their smallest carelessness would result in their sentience being taken away by the torrential mirages that pour out like a tide. Different from interacting with the gentle illusions, staring upon that \"azure sun\" would only make one feel the boundless rage that has been suppressed since the beginning of time — \"The heliobi shall give the heroes enough power to scorch the very heavens, but when all duties have been fulfilled, the heroes must give to the heliobi supreme bodies forged into perfection...\" No one knows how this ancient oath could be fulfilled. Similarly, none knows when the Flint Emperor would awaken from its bottomless dream.\\n\\nDeep within the lotus lantern's wick, the Pseudo Sun heaves a profound sigh in its unending sleep. The Xianzhou ship slowly sails across the sky, leaving behind only an iridescent trail. In this way, the Xianzhou Zhuming will continue to ally with fire, journey with fire, and share its destiny with that of the fire." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's SPD by #1[i]%. When the wearer hits an enemy target that has Fire Weakness, the wearer's Break Effect increases by #2[i]%, lasting for #3[i] turn(s).", + "ParamList": [ + 0.060000000055879354, + 0.40000000037252903, + 1 + ] + } + } + }, + "317": { + "Name": "Lushaka, the Sunken Seas", + "Icon": "SpriteOutput/ItemIcon/71036.png", + "Parts": { + "33175": { + "Name": "Lushaka's Waterscape", + "Desc": "Encapsulated in the plane is a submerged city in the marine world Lushaka. The sea level rose to the point where even the city was drowned. Only gigantic \"stateships\" carrying their sailors chug along across the sea, in search of the direction for their next distant voyage.", + "Story": "Among the multitude of planets with a dearth of liquid water, the pure blue of Lushaka shines prominently among the Przesmir star system. Her seawater resembles the cradle of the mother of oceans. The water nurtures and sustains all life... yet also entraps them, controls them, and ensnares them until there is no more escape.\\n\\nAt the break of dawn, the first mate of the \"stateship\" gently knocks on the Captain's quarters door, and pushes it open. The island ecologies of the Old Era's thirty-seven domains are stuck on the walls all over the cabin. That is how people miss land — meteors from beyond the skies are in the process of covering the entirety of Lushaka with water as if following some single-minded wish. Unending tides bury all ancestral lands in abyssal waters, leaving only an expanse of blue... The first mate rouses the sleeping Captain, for the sea is already glinting specks of gold — the \"stateship\" has begun another day's voyage.\\n\\nThe scouting ship arrives at the center of the plaza. It fires its anchor arrow towards a massive underwater structure that was once a shopping mall. The anchor firmly lodges itself on a window frame — before the diving bell comes, countless startled schools of fish surge forth from the shopping mall's shelves.\\n\\nAfter midday, the scholars leave from the diving bell. They swim past the bookstore, not stopping even for a second — after all, the ink would have long been blurred beyond recognition. Their goal has always been those mediums of shellac or plastic, from which information of past days can be easily obtained after easy cleanup. Deepsea archaeology like this is always arduous. The cleaners stand their ground and watch the vicinity alertly, steel halberds swinging, ensuring that toothy predators are kept at bay. The humans will occasionally collide with deepwater aqua sprites, but both parties are too engrossed in their respective scavenging to pay each other any heed. Instead of shriveled cans, the cleaners are more invested in finding seeds, spices, or liquor.\\n\\nThe intensive underwater investigation is nearing its end as the oxygen reserves decline. Looking back underwater, the giant mackerels have already reached the city. The anxious aqua sprites immediately hold their breath, hug the wall, or hide in secret chambers. They have grown used to utilizing the underwater steel forest.\\n\\nThe drizzle lets up as the sun starts to sink, and the various stateships sound their horns to scatter the plundering seabirds around them. They place the day's harvest on the deck for the stateship's citizens to take what they need. Currents surge at night as the light tower shines crystalline bright. The Luvians dance around the flaming mast, forgetting the tomorrow that will inevitably come, recounting the glories of today with sea shanties, and sighing softly to the halcyon past with medleys. The Captain takes out his compass, gazing toward the direction it points — he knows in that direction lies their home that is growing ever more unfamiliar, where there are still people longing for the return of their kin.\\n\\nAt midnight, the colossal ship extinguishes all its lights, silently adrift upon the sea. Have they truly found peace? Or are their smiles masking the tears that have long dissolved into the sea?\\n\\nAfter tonight, this deep blue will remain unchanged, as it always has." + }, + "33176": { + "Name": "Lushaka's Twinlanes", + "Desc": "On the boundless horizon, even the faintest mark can shatter this silence. The navigational lanes bear the history of the crew while the aqua sprites pursue hope along the water currents.", + "Story": "To the aqua sprites, the world above the water was originally unfamiliar and perilous, but that is now no more than a distant memory. After all, things that were once above the water have long been submerged in this deep blue.\\n\\nThe land-dwellers of Lushaka have an intimate yet unfamiliar relationship with the aqua sprites. In deepsea investigations, the land-dwellers view encounters with the aqua sprites as lucky omens, describing the spirits as beautiful and mysterious creatures. Aqua sprites possess navy blue wing membranes and onyx eyes, as well as unique vocal cords capable of producing ethereal sounds. According to stories passed down by mouth among the deepsea investigators, these creatures often accompany sea dragons and reside in a silvery city deep underwater — they exist between reality and legend, embodying serenity and liveliness.\\n\\nHowever, the language used to describe them in the ocean-drowned past was — Edars, monsters of the deep sea.\\n\\nLong ago, the Edars and the land-dwellers fiercely vied for survival. No one could ignore the vivid red the oceans were dyed into. Initially, juvenile Edars were regarded as mere fishing catches. Then, the land-dwellers were lured into the ocean to drown by the songs of the Edars. Both races were hunters and prey for the other in the vast waters. Then came clashes between blades and anchors, as well as battles between sea beasts and cannons. The relentless war, both above and below the water's surface, persisted until the reefs shattered under scorching magma. It was only after a long time that stateship scholars understood that the Cancer of All Worlds has long promised Lushaka's future — only that the promises came from an aqua sprite who lost her home, who cursed the culprit in the nightmare with a silent scream.\\n\\nThe long-forgotten past lies entombed within the steel and concrete coral reefs of the deep sea, as ephemeral as smoke and clouds, known to none.\\n\\nSince then, cities and lands have been swallowed by the sea, disputes and blood have been consumed by the ocean, and history and civilization engulfed by the waves. To escape rising deep-water pressure, the aqua sprites constantly migrate upward, compelled to dwell in cities once home to land-dwellers, prying into memories filled with smiles and tears... They know that few sounds remain on the surface, and the azure now belongs to them alone. Yet, the silence is too overwhelming.\\n\\nWhen the stateship's songsters glimpse azurean silken wings along their nautical course, they will start to sing that beautiful medley...\\n\\n\"They journey along the course, in pursuit of the light tower and storm, seeking only to reclaim that pure blue.\"" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's Energy Regeneration Rate by #1[i]%. If the wearer is not the first character in the team lineup, then increases the ATK of the first character in the team lineup by #2[i]%.", + "ParamList": [ + 0.05000000004656613, + 0.12000000011175871 + ] + } + } + }, + "318": { + "Name": "The Wondrous BananAmusement Park", + "Icon": "SpriteOutput/ItemIcon/71037.png", + "Parts": { + "33185": { + "Name": "BananAmusement Park's BananAxis Plaza", + "Desc": "Encapsulated in the plane is a scientific organization's laboratory. Due to memetic corruption, true and false information has been completely mixed together, becoming impossible to separate. As such, this place has been cognitively reshaped into \"BananAmusement Park.\"", + "Story": "\"Who lives in a paradise deep in the woods?\"\\n\"Bananabud Longpants!\"\\n\"Long, yellow, energetic, and cute!\"\\n\"Bananabud Longpants!\"\\n\\n\"Thud. Thud.\" The noise reverberates twice and a half. Bananas wake from a deep slumber as they prepare to leave the banana tree and begin a new day in their banana lives! Some bananas wake invigorated, baking durians into pies, and frolic merrily in the woods. Some bananas are more solemn, rubbing coconuts on themselves to add some fragrance. The monkey looks upon this lively scene with satisfaction, unable to resist happily calling out to the bananas —\\n\\n\"Are you ready, bananas?\"\\n\"Aye, Principal Monkey!\"\\n\"I can't hear you!\"\\n\"AYE! PRINCIPAL MONKEY!\"\\n\\n\"Thud. Thud. Thud.\" The sound reverberates three times and a half. It's time for the daily \"Peel Club.\" The bananas begin to grow anxious. Some shout, some weep in silence, and some of them feel dead inside... The monkey asks the healthy bananas one by one. The topic on the large banana leaf never changes: \"Do you remember a time beyond the banana?\"\\n\\nThis simple question always results in bitter answers. The bananas do not know from where their sadness comes. It's just as natural as how the pulp of a banana turns black from oxidization when exposed to pressure from the outside world.\\n\\n\"If exploring the world is your dream,\"\\n\"Then tap the banana tree, and let Principal Monkey show the way.\"\\n\\n\"Thud. Thud. Thud...\" The noise reverberates 7 times and a half. The \"Motivanana Game\" is about to begin. In this hidden forest paradise, every banana is promised that should they try hard enough, they will never remain a banana forever. Every banana holds a dream within them, striving to become a glorious monkey... As the forest recedes to two sides, Principal Monkey emerges from the middle, offering tender and modest gestures of bowing to the bananas. The bananas return the gesture — Principal Monkey has brought a brand-new game and wishes to \"exchange\" it for new stories.\\n\\n\"Thud. Thud. Thud...\" The noise reverberated 11 times and a half. The bananas are carried by the monkey back up the tree. As they rock and sway, they return to utopia. The green sun flickers and the sound of gurgle rumbling echoes throughout paradise." + }, + "33186": { + "Name": "BananAmusement Park's Memetic Cables", + "Desc": "Optical cables that can be seen everywhere within the lab. They are used to collect experimental information to reach secretive goals that must not see the light of day. For the \"Bananas,\" the way to perceive the world lurks within.", + "Story": "The ruins of the Ba-77 research institute lay at Convergence-ψ, hidden underground beneath a jungle world. This place was once destroyed by extremist Rangers, and the remaining cables still flicker with unclear signals.\\n\\n\"That cursed research institute is as hard to find as a single leaf in a forest.\" Beneath layers of tree bark, the bones of plants form the shape of an entrance. After passing through a long tree hollow, the Rangers finally find their target.\\n\\nThis research institute is closer to an \"art gallery\" than a \"laboratory.\" Cables run interwoven in the air above, leaking strange and colorful lights per the designer's intentions. The viewers all press their hands to their heads and feel a daze come over them. Then, grotesque illusions spread before their eyes — a pure-yellow liminal space, gradually row of fading human portraits, shapes of monsters hidden behind curtains...\\n\\nThe Rangers are familiar with these methods. If they linger in this installation, they will begin speaking nonsense and find their limbs compelled to flail... With a crisp sound from impact against the stock of a gun, the young Ranger uses pain and dizziness to emerge from the cognitive labyrinth.\\n\\nTheir vision now revitalized, the Rangers continue to proceed to the depths. The Ba-77 research institute is filled with collapsed statues, destroyed murals, super-saturated colorful decorations... And yet, the shattered containers littering the ground make this place seem like a prison instead. The Rangers discover a report in the lowest depths, then imagine the countless \"cognitive experiments\" that were conducted in this place before the building fell... In an instant, everyone turns around, compelled by their subconsciousness, and is surprised to find themselves in a woodland paradise. The leaves wave to them ceaselessly, inquiring whether they recall the wonder of being upon the trees.\\n\\n\"Aren't I a banana? By the way, what are we doing here?\" The young Ranger tries to get back to the tree to stop himself from \"banaxiety.\"\\n\\nBut the blind Ranger senses the problem. Before everything reaches the point of no return, he forcibly drags the youth away from that place.\\n\\n\"Banana... Those monkeys need to go banana themselves!\"" + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's CRIT DMG by #1[i]%. When a target summoned by the wearer is on the field, CRIT DMG additionally increases by #2[i]%.", + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + } + } + }, + "319": { + "Name": "Bone Collection's Serene Demesne", + "Icon": "SpriteOutput/ItemIcon/71042.png", + "Parts": { + "33195": { + "Name": "Aidonia's Deceased Gravestones", + "Desc": "Encapsulated in the Planar Sphere is Aidonia of Amphoreus. Believers of {RUBY_B#Death Titan}Thanatos{RUBY_E#} have raised colossal monuments on the snow plains, offering tribute to the Holy Maiden who brings them the blessing of death.", + "Story": "Aidonia — the snow-dusted kingdom of death — once stood tall amidst the blizzards, and now remains silent beneath them.\\n\\nAlmost all humankind enjoyed the pleasures of eternal life in the spring-filled lands in the endless Era Chrysea, yet a few souls grew weary of the countless cycles of day and night and decided to seek the end of life. \"Why does life exist? And where should it go?\" Eleusis, the leader of the Ascetics, advanced north with his followers as he muttered this eternal question, seeking a sweet and frozen long dream. The robed ascetics settled in the desolate northern wasteland, building a solemn city-state where snow fell relentlessly all year round — A place later known as \"Aidonia.\"\\n\\nHow the Era Chrysea ended had long been lost to the annals of history, but the \"First of the Dead\" in Amphoreus was said to have come from Aidonia. That person received the gift of death from {RUBY_B#Death Titan}Thanatos{RUBY_E#} — both a merciful blessing and the highest of honors.\\n\\nThe people of Aidonia were long accustomed to the harsh and lethal cold. The snow itself, long steeped in the silent faith of {RUBY_B#Death Titan}Thanatos{RUBY_E#}, also greedily absorbed the warmth of life as it soon touched the earth. Long ago, travelers entering Aidonia's demesne would often find anonymous frozen bodies lying dead by the roadside, unfortunates who had returned to the embrace of the {RUBY_B#Death Titan}Hand of Shadow{RUBY_E#}. The north wind howled, and the dead became markers on the road, guiding and warning those who journeyed through the snow. Travelers always hurried through Aidonia while the breath of life remained within them.\\n\\nIn time, the Aidonians came upon gravestones of mourning standing tall in the barren land, realizing that someone was offering their blessings to the cycle of death and the passing of life.\\n\\nBeneath the gravestone slumbers an unknown girl. A zone of death surrounds her like a shadowy shroud, and even the Skeletarasses that inhaled the breath of death withered away around her form. The Aidonians sensed the merciful touch of {RUBY_B#Death Titan}Thanatos{RUBY_E#} on her and welcomed her back to the city as their Holy Maiden. The faithful followers of the Death Titan, in reverence, emulated her, erecting towering gravestones in the wastelands to mark the end of long journeys and life's return to death — For life and death are both journeys, and this land only maintains boundary stones that recorded the paths taken.\\n\\nThe gravestones were warning distant travelers that no one stayed there and no one rested there... The dead, too, are travelers. They are the north wind, the falling snow, and the countless threads that connect them." + }, + "33196": { + "Name": "Aidonia's Deathward Bone Chains", + "Desc": "Animal bones, arrowheads, and caltrops bind the world of the Aidonians with that of the dead. The ascetics of the wastelands only hoped that their souls, unyielding, could pass through the frozen depths, and would not become lost from poverty or weakness on the way to seeing their god.", + "Story": "Once, an aggressive fool questioned the believers in Aidonia, unbelieving as to how there could be a religion in Amphoreus that reveres death. \"If you love {RUBY_B#Death Titan}Thanatos{RUBY_E#} so much, why not just pierce your own chest with a spear?\"\\n\\nThe Aidonians regarded the man with disdain, saying, \"The River of Souls never ferries souls that are barren.\"\\n\\nSince its founding, Aidonia has been a holy site that valued life the most out of all Amphoreus. The followers of {RUBY_B#Death Titan}Thanatos{RUBY_E#} believe that the River of Souls' waters are cold enough to chill the bones — only those who have walked the earth long enough and have endured countless hardships can cross its icy abyss and face {RUBY_B#Death Titan}Thanatos{RUBY_E#}. To seek the blessing of Death is not to disregard life.\\n\\nFor this reason, though the Aidonians considered death as a homecoming and gave birth to many fearsome warriors, they have never sought to conquer the fertile lands to the south — For those lands do not forge strong souls, and the Aidonians disdain the softness of comfort.\\n\\nAsceticism is a unique cultural hallmark of the Aidonians. Every year, when the snow subsides and the rare days of clear skies appear, they celebrate the Bone Collection Festival. Priests of Aidonia leave the city in search of animal bones buried in the wastelands and swamps. The most sacred offerings come from the remains of prehistoric beasts, long dead since many Light Calendar years ago. When their bones are struck, a deep echo seems to carry the faint whisper of {RUBY_B#Death Titan}Thanatos{RUBY_E#}. The animal bones, cold as if soaked in the freezing ice of the River of Souls, are transported back to the city one by one. The slightly broken ones get processed and become ornaments, to be worn by the people day and night. The best-preserved bones, on the other hand, are carefully polished by the priests into ceremonial bone swords for burials, offered as gifts during the festival.\\n\\nOne year, during the Bone Collection Festival, the Aidonians encountered that girl in the wasteland. Soon, rumors spread that \"her touch could allow one to cross the barrier of the River of Souls and directly face death.\"\\n\\nDevotees of Death flocked to the temple to meet the emissary of {RUBY_B#Death Titan}Thanatos{RUBY_E#}. The Aidonian priests, sensing that the girl threatened their faith, consecrated her as the Maiden of War, forbidding commoners from approaching her. Only those ascetics who had endured the trials of the world and revered both life and death were allowed to be embraced by her, and through her hand return their souls to the afterlife. The girl donned the long robes prepared by the priests, executed her ritual with her bare hands, and buried humankind with her embrace.\\n\\nThe Aidonians genuinely believe that \"The River of Souls never ferries souls that are barren.\" Yet, the River of Souls does not question the weight of the soul. It simply flows, leading all life to its inevitable end, where all souls converge." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's Max HP by #1[i]%. When the wearer's Max HP is #2[i] or higher, increases the wearer's and their memosprite's CRIT DMG by #3[i]%.", + "ParamList": [ + 0.12000000011175871, + 5000, + 0.2800000002607703 + ] + } + } + }, + "320": { + "Name": "Giant Tree of Rapt Brooding", + "Icon": "SpriteOutput/ItemIcon/71043.png", + "Parts": { + "33205": { + "Name": "Grove of Epiphany's Pondering Colossus", + "Desc": "Encapsulated in the Planar Sphere is Amphoreus' Grove of Epiphany, where the divine corpus of the Bough of Rift, {RUBY_B#Reason Titan}Cerces{RUBY_E#}, ponders. \"The First Scholar\" led others to establish gardens and courtyards within the woods and shared knowledge, and the Grove was born.", + "Story": "Thalesus, the First Scholar, embarked on his journey around Amphoreus from his coastal home city, Mileutus, at his age of majority, seeking spiritual meaning within the Mnestia faith.\\n\\nAlong the way, his strange experiences and new visions reshaped his thoughts on nature and the origin of the world. At the journey's end, he met the Bough of Rift and completed his philosophical methods to experience the world before the great tree. Under the giant tree, Thalesus established a courtyard and named it the Grove of Epiphany, a place for people to awaken their spirits, seek wisdom, and grasp the way.\\n\\nThe thoughts of {RUBY_B#Reason Titan}Cerces{RUBY_E#} became so enhanced that they became written scrolls or quietly turned into the whispering flora of the grove... The noise of the Grove was born from there. From these debates and intellectual exchanges, new schools of thought emerged.\\n\\nAlthough differentiated from one another, the schools were interwoven — much like the overlaying branches of the giant tree... Through centuries of argument and scholarly heritage, the First Scholar's insights have evolved into the Seven Sages and seven primary schools of thought, as well as many different viewpoints.\\n\\n\"All knowledge of the world should become the leaves of the Grove, to shield the sun and help the giant tree flourish.\" Every city-state seeking wisdom from the Grove must offer equal knowledge in return. Thus, countless ideas are nourished, and countless new leaves sprout.\\n\\nFor centuries, should any scrolls containing knowledge be found on trade caravans passing through the Grove's narrow passage or ships arriving at the port, they would become a part of the Grove's library regardless of the scroll's nationality or language. The scholars, or rather, \"bandits,\" transformed the Grove into Amphoreus' best school by ways of spending incomprehensible amounts of wealth on knowledge, hiring copywriters to steal knowledge, or even outright robbery of knowledge. The scholars of the Grove used questions as sacrificial vassals and thoughts as reverence, and bowed their heads at the supreme reason in this world.\\n\\nBeginning with the planting of life, returning to the spirit of the wood, the Dewy Heartwood collects all knowledge that flows to it from the world. {RUBY_B#Reason Titan}Cerces{RUBY_E#} listened to the growing noise of the Grove, and never spoke." + }, + "33206": { + "Name": "Grove of Epiphany's Interwoven Veins", + "Desc": "The golden threads and vines weave a network in the Grove, becoming a lifeline through which schools share their findings. Information enters from the roots, unraveled and deconstructed through the leaves' veins, until it becomes a drop of dew merging into the Library of Philia's pool.", + "Story": "Each thought of the Grove of Epiphany is like a branch on the giant tree. The veins form hundreds of viewpoints, expanding like an intricate web of young boughs. Though independent, they intertwine, ultimately forming the thriving canopy of the great tree.\\n\\nOne branch pointed its leaf stalk toward itself, twisting in intricate coils. The Ascetics of Lotophagism were captivated by the very patterns of the tree's leaves and flowers, believing that all life and even the cosmos were visible, tangible realities. Their practice was not merely asceticism for its own sake, but a method of harmonizing all things — seeing asceticism not as the denial of self, but as a direct path to understanding it.\\n\\nAnother branch bore heavy fruit, filling the boughs. Scholars of Caprism specialized in the study, breeding, and preservation of animals. The many forms of the chimeras, both pitiful and beautiful, were their small but meaningful experiment to understanding the vast diversity of life.\\n\\nOne branch twisted into a perfect proportion, precise and elegant. The scholars of Nodism asserted that \"all things are numbers,\" believing everything could be mapped mathematically. As one of the earliest schools to form in the Grove, they imposed strict standards, proclaiming \"No scholar who is ignorant of geometry may enter\" and regarded mathematics as the very means by which {RUBY_B#Reason Titan}Cerces{RUBY_E#} governs the world.\\n\\nAnother branch grew thick and resilient, sturdy and enduring. Helkolithism required the scholars to prove their discipline by swinging a sling before admission, casting stones beyond a specific range. This was a test to demonstrate their commitment to \"perfectionism\" in thought, physical rigor, and competitive spirit.\\n\\nOne branch alternated between drooping and standing tall, transmitting an exquisite beauty to the senses. The Erythrokeramists view art and sensibility as the core of logical thinking, believing that the rawest and most refined knowledge comes from direct sensory experience, leading to a more enlightened and profound understanding of the world.\\n\\nHigh above, in the lush treetop, one branch devoted and worshipful stood closest to the heart of the giant tree. This branch was the most suited for ritual. The Venerationists excelled in the understanding of Titan ceremonies and the deployment of divine miracles, earning the nickname \"The Cradle of Amphoreus' Politicians.\" They not only governed the Grove's sacred rites but also influenced the very fabric of Amphoreus' politics. However, there was a new and sharp young shoot, rising in opposition...\\n\\nThe Nousporist inherited the First Scholar's teachings on the soul, and specialized in the transformation and ascension of life and matter. It was the youngest school, yet with the most cutting-edge arguments, focused on tracing the origins of all life and material existence.\\n\\nThe Seven Sages of the Seven Schools each presided over their respective fields of study, with no hierarchy among them. The towering giant tree of reason, the symbolic head of the Seven Sages, spread knowledge and reason like branches, scattering them across the world amid endless debates and intellectual discourse." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's SPD by #1[i]%. When the wearer's SPD is #2[i]/#3[i] or higher, the wearer and their memosprite's Outgoing Healing increases by #4[i]%/#5[i]%.", + "ParamList": [ + 0.060000000055879354, + 135, + 180, + 0.12000000011175871, + 0.20000000018626451 + ] + } + } + }, + "321": { + "Name": "Arcadia of Woven Dreams", + "Icon": "SpriteOutput/ItemIcon/71046.png", + "Parts": { + "33215": { + "Name": "Membrance Maze's Serene Treehouse", + "Desc": "Encapsulated in the Planar Sphere is the Membrance Maze of Aedes Elysiae. Brush aside the golden wheat, and down, down, down you tumble into a deep tree hollow. Huh? There are so many little fairies! \"One two three four five six seven?\" Wrong! It's \"Do re mi fa sol la ti!\"", + "Story": "\"Hehe, children, the Membrance Maze's harvest season is upon us once again. So... what must we prepare?\" The chief stroked his white beard with a jolly smile.\\n\"The Brew Festival!\" The fairies cheered in unison.\\n\\nAt the beginning, the Membrance Maze was but a barren land. A small boy and girl from Aedes Elysiae brought seeds from the outside world and taught the fairies to plant them. When the seeds bloomed into flowers, the fairies followed their lead, collecting nectar along the grape trellises, where golden fuzzy-legged bees buzzed about. Then came the fruits, ripe and plump — the season of harvest. The fairies would gather to sing celebratory songs and hold feasts lasting deep into the night. And after the night? They'd bottle up that year's nectar, bury it deep in the earth, and wait for it to ferment into a potion that'd heal both winter's cold and the aches of growing up.\\n\\nThat's how every Brew Festival goes.\\nBut this year, the chief asked as he tugged his white beard, \"Has anyone seen Relimem?\"\\n\\nThe fairies searched high and low — until they found Relimem fast asleep at the treehouse door. A bubble puffed from the corner of its mouth, clearly immersed in an exceptionally wonderful dream. The curious Milimem crept closer and heard it murmuring in its sleep — \"Snowy, Reney... you promised to return. Together, we'll drink the Quillorb Fruit Brew we buried last year!\"\\n\\nIn the dream, Relimem had turned into a giant — so humongous, it completely blocked the tree hole to Membrance Maze. The two tiny children couldn't find a way in. Snowy and Reney tried tickling Relimem's ears with bulrush, bouncing on its belly, calling its name over and over. But Relimem slept on, far too deeply to hear them.\\n\"Oh no... what if Snowy and Reney never came back because I blocked the way?\"\\nRelimem's heart began to pound in its dream.\\n\\n\"A... Achoo!\"\\nWith a loud sneeze, Relimem woke up. Phew! Good thing it hadn't turned into a giant treehole-blocking Relimem after all. But... there were fairies gathered all around.\\n\"Snowy and Reney... did they come?\"\\nThe fairies shook their heads. No one could remember how many Brew Festivals it had been since the last time they showed up.\\nRelimem drooped again. Maybe it should've stayed in that dream just a little longer.\\nLittle Relimem didn't quite know how to describe this emotion. But if it had to try — it felt just like the last day of summer, when you let those flickering fireflies in the glass jar flutter away." + }, + "33216": { + "Name": "Membrance Maze's Wishing Whistle", + "Desc": "A flute whistle, shaped from clay. It symbolizes the promise between the little fairies and the two children. Whenever the boy and girl blew into it — \"Mem?\" — the tree hole leading to the maze would open, and the fairies would welcome them back with joy.", + "Story": "\"Don't forget our promise! Whenever you blow your Wishing Whistle, no matter how far away you are, we'll hear you.\"\\n\\nThat was the first time the small boy and girl from Aedes Elysiae had stumbled into the Membrance Maze and met the fairies. They'd been playing hide-and-seek in the yard with their friends when they accidentally fell into a tree hole hidden in the tall weeds. It was deep — so, so deep — like a bottomless slide. But instead of crashing in a daze at the bottom, they tumbled right into a crowd of fairies...\\n\"One two three four five six seven! So many puppies — wait, no, rabbits?\"\\n\"No no no! We're Do re mi fa sol la ti! I'm Dorimem, that's Solimem, and that one's Relimem!\"\\n\\nTheir friendship with the fairies was like a thousand shooting stars — sudden, sparkling, and unforgettable. They spent a day full of laughter together. But soon, it was time to go. If they didn't head back, Mom and Dad would start to worry.\\n\"Will we get to see each other again?\" the boy asked, a little sad.\\nFarewell... See you again... The fairies didn't quite understand those words. In the Membrance Maze, no one ever left, so there was no need to say goodbye. But judging from the look on the children's faces, they realized it must be something upsetting. The purple Relimem thought for a moment. \"Wait, Snowy, Reney! I have something for you!\"\\n\\nThe boy and girl held Relimem's gift in their palms. It was a tiny whistle shaped like a fairy's ear, handmade by Relimem itself. It had seven holes, and when blown, each note rang clear and sweet — Do, Re, Mi, Fa, Sol, La, Ti. Relimem said earnestly, \"If you ever want to come back and play in the Membrance Maze again, just blow this whistle. No matter if we're sleeping, singing, or building leaf houses... we'll hear you. And we'll open the tree hole to the maze for you.\"\\n\\n\"A mystery flute that wakes up fairies!\" the girl giggled. \"Pinky promise — we'll come back again.\"\\nFrom then on, Relimem's happiest moments were when the whistle sounded. It would always shout with joy — \"I hear it! I hear it with both ears!\"\\n\\nAs time passed, Snowy and Reney, who had left Aedes Elysiae behind, remembered everything about their childhood: The rusted tin toys, the armless toy soldiers in the barn, the crocheted felt flowers, the rains that never came, the dried-up blood, the wheat fields burned down to brittle husks...\\nBut they forgot the little whistle buried in the dirt... And a promise they could no longer keep." + } + }, + "RequireNum": { + "2": { + "Desc": "When there are currently more or less than 4 ally targets in battle, each additional/missing ally target increases the wearer and their memosprite's DMG by #1[i]%/#2[i]%, up to a maximum of #3[i]/#4[i] stacks.", + "ParamList": [ + 0.09000000008381903, + 0.12000000011175871, + 4, + 3 + ] + } + } + }, + "322": { + "Name": "Revelry by the Sea", + "Icon": "SpriteOutput/ItemIcon/71047.png", + "Parts": { + "33225": { + "Name": "Warbling Shores' Blazing Beacon", + "Desc": "Encapsulated in the Planar Sphere is Styxia, the city drowned in eternal revelry. A lighthouse remains endlessly lit upon the shore, playing ceaseless melodies. Ships, lured by merry tunes, sail through the mists only to run aground and sink, their shattered wreckage devoured by the tide.", + "Story": "The sea wave is an endless rondo. Weary of pleasure-seeking harbors, the sailors unfurled their charts and chose their journey's end. Their compass stilled, its trembling needle pointing toward Styxia, the city of everlasting joy along the coast — their fated tomb of bliss. They took no heed. Unaware of death, they raised their sails in drunken glee and stepped eagerly into Phagousa's ballroom.\\n\\nFollowing the rhythm of tides and the moon, the sailors sang as they harpooned the spines of whales, as they rammed their prows into ancient glaciers, as they sailed, ever laughing... until they were lost in the mist, until the lighthouse loomed close — until at last, they crashed upon the reef.\\n\\nThe wrecked ships sank beneath the waves. From the sea wave, the undying rose again. The sailor climbed ashore, seaweed and salt crusting his body. The revelers of the lighthouse had waited long. They bowed, inviting him to join the eternal celebration. Following the music, they crossed the long causeway and stepped onto the white lighthouse between the reefs. Fueled by whale oil, the flame of Styxia's beacon danced cold and blue, encased in lenses carved from crystals. The tower itself stood as a massive water lyre. With every step upward, guests could see seawater siphoning through glass pipes embedded in the masonry, pulsing with the rhythm of the sea. On the terrace, the revelers danced hand in hand, circling the light as music filled the air. Their shadows stretched long across the distant sea. And there — at the edge of the horizon — the sailor saw it: the city of eternal joy he had dreamed of.\\n\\nThat was an age before decay, when pain, sorrow, and death were still unborn. Styxia basked in Phagousa's favor, embraced by a crescent bay like a cradle, lulled by lullabies tender as sleep.\\n\\nThe sailor's lips trembled with anxiety. Before him, the revelers opened their arms — welcoming him as kin, to share in boundless ecstasy. Yet, behind him stretched the endless gray sea. Wreckage littered the reefs, drowned souls drifting in the waves, sea anemones and coral creeping across their skin. He remembered the moment he fell — how the undercurrents dragged him into the dark and hopeless deep. The sea siren's cold hand had caressed his cheek. Through her blurred, gentle singing, he awoke and was pushed back toward the shimmering surface.\\n\\nYet that one moment of hesitation — just one glance back — was enough. The gates to bliss shut. Smiling, the revelers turned the sailor away from entering Styxia — for a soul still shaking off the remnants of trance could never withstand true rapture." + }, + "33226": { + "Name": "Warbling Shores' Cantillation Trail", + "Desc": "The people of Styxia firmly believe that the sea sirens, just as the legends say, guard their paradise with flesh and blood. And that one day, drawn by the lighthouse's endless cantillation, they will arrive at last, rewarded with an eternal feast.", + "Story": "Like those who came before him, the lonely sailor lingers between sea and city, poised on the threshold between the mortal world and revelry. He wipes the oil seeping from the wound of a stranded whale. At nightfall, he lights the beacon. Then, seated before the light, he begins to play the water lyre — melodies yet unplayed echo through the strings.\\n\\nThe lighthouse hums with each note, and all of Styxia is swept into song. The melodies, sometimes gentle, sometimes fevered, stir boundless fantasies of delight in the Styxia Queen's heart. When the sailor begins to play in reverse from the final semibreve rest, the tune becomes whimsical and sprightly. White longboats carry tumblers and jesters, gliding through the canals. Men and women in splendid attire line the shores, their faces masked in gold leaf and feathers. The Queen slips among them, drifting through the scent of lilac and almonds.\\n\\nThen, the sailor sharpens the rhythm, the notes ringing wild and triumphant. A city-wide play unfolds upon Styxia's very stage. Townsfolk dressed as pirates wave black flags, storming the undefended walls. They plunder wine and gold, hang nobles upon flower-strewn gallows, and crown the beggars. At the finale, the tower is set ablaze, and the crowd dances madly to the rising music, drunk beyond reason.\\n\\nThe crashing tide dampens the sheet music, blurring notes meant to soothe and slow. In the mist before the lighthouse, the Queen steps into a new script. Dressed in a sea-blue fishtail dress, she becomes the attendant of Phagousa — the Queen of the sea sirens.\\n\\nIn this tale, the sirens are tasked to guard in the ocean's deepest, where anguish beyond mortals festers. They bear the burden in flesh and blood, drawing the pitch-dark calamity into the Chalice of Plenty, so that Styxia may revel in eternal joy. And when the appointed time comes, the sirens will follow the lighthouse's light and song, walk along the causeway, and enter Styxia. The people will take their hands, and together, they shall join the never-ending celebration.\\n\\nThe Queen of Styxia wades into the water, embracing an imagined demise. On a night when the tides break free from the moon's restraints, deep beneath the waves, the hollow tears of the sea sirens rise like foam. They hope. They wait. They gaze upon moonlight they've never known — until their flesh dissolves. But there is no moonlight tonight. Only the lighthouse flickers, as always. And so their tears ascend alone, surfacing in a shimmer before dissolving into the waves.\\n\\nAt last, the lonely sailor is granted his wish. The revelers, eyes glistening with blissful tears, welcome him into Styxia. And with the first note of the eternal chorus, the withered wings of death unfurl above this city of everlasting joy." + } + }, + "RequireNum": { + "2": { + "Desc": "Increases the wearer's ATK by #1[i]%. When the wearer's ATK is higher than or equal to #2[i]/#3[i], increases the DoT DMG dealt by #4[i]%/#5[i]%.", + "ParamList": [ + 0.12000000011175871, + 2400, + 3600, + 0.12000000011175871, + 0.24000000022351742 + ] + } + } + } +} \ No newline at end of file diff --git a/data/relics.jp.json b/data/relics.jp.json new file mode 100644 index 0000000..d801da5 --- /dev/null +++ b/data/relics.jp.json @@ -0,0 +1,1656 @@ +{ + "101": { + "Name": "流雲無痕の過客", + "Icon": "SpriteOutput/ItemIcon/71000.png", + "Parts": { + "31011": { + "Name": "過客の迎春かんざし", + "Desc": "かんざしとして使われていた枯れ木、知らぬ間に枝先につぼみが綻び始めている。過ぎ去りし往事、已んぬる哉。鍍金のつぼみはかんざしに嵌め込まれ、新しい命の記念となった。", + "Story": "無名の者は長い眠りから目覚めた。遠くに感じるも馴染みのある緊張感は拭えず、幻痛は鋭利に神経を刺す。過去は鋭い破片となり、自分の名前さえも忘れた。\\n\\n目的のない流浪の中、彼は雪水を啜って渇きを癒し、野獣を殺して空腹を満たし、枯れ枝を切り落として長い髪を纏めるかんざしにした。\\n\\n黒い髪は湧き水のように伸び、皮膚の下の筋肉は川の鯉のように引きつり、不思議な力が体の形を絶えず変え、筋骨の断裂と復元の痛みだけがずっと伝わって来る。数えきれないほどの痛みの繰り返しに伴い、支離滅裂だった過去がまとまっていく…水面に映る自分の姿を覗き込むと、惨劇の始末を少しずつ思い出す。\\n\\n水面に映る顔に慣れてきた時、無名の者は枯れ枝に花芽が付くのを見た。\\n\\n彼は突然我に返った。不老不死の呪いは根強く、過去の恩讐はまだ死んでいない。彼こそが、この枯れ枝に咲いた新生の花だ。" + }, + "31012": { + "Name": "過客の游龍腕甲", + "Desc": "水のようなサンゴ金と未知の獣の革で作った腕甲。龍脈一族の巨匠のみがこのような非凡な工芸を作りだせる。", + "Story": "対をなす物は互いに感応するという。無名の者は片方の腕甲しか持っていないが、その指先はもう片方の温度を感じ取れる。\\n\\n彼は眼を閉じ、もう片方の腕甲との微かな繋がりを捉えようとした。その位置、その持ち主を。\\n\\nすらりとした力強い手はかつてもう片方の腕甲をつけ、長槍を持ち自分と武を競いあった。槍先の光は流星のように天から落ちる。腕甲の持ち主はかつて自分と無言で酒を飲み交わし、月を眺めた。そして一意孤行の末、愛する者を化け物にし、すべての人を果てしない後悔の深淵に突き落としたのも、自分と彼だ。\\n\\n対を成す物はいずれ、再度巡り合う。その長く響く憎しみは陳酒のように、さぞ冷たく強烈であろう。恩讐がすべて消え去るまで、ゆっくりと飲み干そう。\\n\\nもう片方の腕甲の持ち主もそう思っているだろうか?彼は知りたくない。" + }, + "31013": { + "Name": "過客の刺繍の解れた外套", + "Desc": "裾がボロボロになった古い外套。刺繍には太刀筋が残っている。傷はすぐに治るが、外套は直らない。まるで人の苦痛のようだ。", + "Story": "無名の者は生ける屍のように、長い流浪の旅をしていた。屍の行く手を阻むのは、サングラスの女と大きな鎧だった。2人の誘いが届く前に、拒絶の刃は既に繰り出された。戦いの後、女は笑顔で彼が断りきれない取引を持ちかけてきた。\\n\\nこうして無名の者は、再び文明と秩序の中に戻った。\\n\\n無名の者は仕立屋に連れていかれ、採寸、製版、裁断、縫製を経て体面的な衣服を用意してもらった…伸び放題の髪と身だしなみを整え、彼は昔の姿を取り戻した。ぼうっとしている間、現在と過去が溶け合い混ざる感覚を覚えた。曖昧な古き時間の中で、手製の玉壺を友人に贈ろうとしたが、決心がついたら、その人はもういないことに気付く。\\n\\n彼は悟る。この身体、命、愛憎…今身に着けている服……すべてがこの世を歩む為の借り物に過ぎないと。\\n\\n彼はやがてすべてを返済して、最後の息を吐きだすのだ。" + }, + "31014": { + "Name": "過客の冥途遊歴", + "Desc": "丈夫な靴。様々な世界を渡り、生死の危機を繰り返した。", + "Story": "無名の者は奴隷の命令に従いながら、知り合ったばかりの仲間とはるか遠くまで旅した。その足は戸惑いと憎しみを引きずり、無数の世界を歩み、生死の間を繰り返し彷徨った。\\n\\n彼はとっくに物を作る喜びを忘れ、一つの戦場からもう一つの戦場へと足を運ぶだけ。\\n\\nかつて、彼はその身で無数の極致に至った剣光を味わい、幾度となく繰り返される敗北の中で引き裂かれた。相手はいつも心臓を貫く正確無比な一撃で彼の結末を描く。そして今、様々な傷によって身に刻まれた剣技は彼の道標となり、生死の交錯によって鍛え上げられる。彼は剣を振るい、仲間のために障害を切り裂き、幾度地に伏せても再び立ち上がった。息をも殺す専心な剣舞の中、彼は一度憎しみを忘れた。\\n\\n奴隷は、彼と彼が憎んだすべてに永遠の終わり、永眠の葬儀を与えると約束した。無名の者は頷き、剣を鞘に納め、次の世界に向かった。\\n\\n人生が歩みで繋がる道ならば、彼は「終点」にたどりつく前に、憎き人の血だまりを跨げる事を祈る。" + } + }, + "RequireNum": { + "2": { + "Desc": "治癒量+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "戦闘開始時、SPを1回復する。", + "ParamList": [] + } + } + }, + "102": { + "Name": "草の穂ガンマン", + "Icon": "SpriteOutput/ItemIcon/71001.png", + "Parts": { + "31021": { + "Name": "ガンマンの草の穂フェルト帽", + "Desc": "草の穂をつけたフェルト帽、伝説のガンマン、オークリーのトレードマーク。", + "Story": "オークリーのフェルト帽は亡き父から受け継いだもの、彼女は草の穂を帽子に付けて、少し可愛く見せた。賞金稼ぎたちは故意にか、いつも自分だけのマークを作ろうとする、そうすれば人々はいつか、それを始まりに自分の伝説を語るだろうから。\\n\\nスターピースカンパニーは懸賞金を出し、様々な人を募集して宇宙盗賊団を指名手配する。そして一匹狼のオークリーは、いつも耐え難い辺境の地に赴き賞金首を追跡する。\\n\\n何日も続く苛烈な太陽、何日も続く寒い夜。孤独な旅の途中で、オークリーはフェルト帽を枕にして、篝火の隣で夢に入る。彼女の夢はいつも謎のガンマンに侵入される。そのやせ細っていても鋭利な眼光を放つガンマンは、遠いところから来た賞金稼ぎと自称する。ガンマンはオークリーの父に正午の決闘を申しだす、銃の音が鳴り、フェルト帽が落ち、父は仰向けに倒れた、そして母の号泣が聞こえてくる……\\n\\n幼いオークリーは呆然と謎のガンマンを見る、その人に無駄な動きはなかった、父には勝算がなかった。\\n\\n夢から覚めると、フェルト帽にはいつも涙の痕が残っていた。子供の頃のオークリーは、父のかっこいいフェルト帽が欲しかったから銃の使い方を学び始めたのだ。" + }, + "31022": { + "Name": "ガンマンの荒い革手袋", + "Desc": "表面がひび割れている革手袋。銃を握る部分が特に摩耗している。", + "Story": "子供の頃のオークリーは、ひたすら練習に励んでいた、朝から晩まで牧場で射撃の練習をした。父は、ある時は彼女の才能に喜び、ある時はガンマンの運命に心配した。\\n\\n母だけがその白い小さな手を不憫に思い、父が娘に銃を教えたことに不満を抱いた。\\n\\nあの決闘から、初めての懸賞任務を完了し、それから名を広めるまで、オークリーは何年もそのボロボロな手袋をつけていた。他の賞金稼ぎたちは彼女のこだわりを理解できない、そこに秘められた矛盾な感情を感じられるのは、彼女自身だけ。それは、母からの餞別の贈り物。\\n\\nいつも銃の練習に反対していた母は、どんな気持ちで、どんな決意で自分を送り出したのだろう?\\n\\nあの決闘の後、母親はオークリーの腕の中で泣いた。オークリーは何も言わなかった、母は彼女の決心を知った。" + }, + "31023": { + "Name": "ガンマンの風狩りポンチョ", + "Desc": "エスニックな雰囲気の織物マント。裏地の一部が防弾仕様になっている。", + "Story": "ガンマンは決闘の時、最初にボロを出してはならない、オークリーは察知されずに銃弾を装填し、ターゲットを狙う事ができる。他の人から見れば、銃声がするまで彼女のポンチョには一切の動きがなかった。オークリーはどうやってこのような技を繰り出したのかは誰にもわからない。\\n\\n「動きは最低限に、ポンチョの下に隠して行え、決闘は銃弾が撃たれる前に完了させるんだ」父は昔よくこう言っていた。\\n\\n偶然に銃を持った強盗たちと出くわした時、オークリーは何世紀も動かなかった岩のように、賊が行動を起こす前に全ての準備を済ませていた。数発の銃声の後、オークリーはワザと強盗を一人逃した、強盗団に丁度いい警告を送ろうと彼女は考えていた。\\n\\n無表情で、無情で、相対する者は彼女を見ただけで勝算がないと思ってしまう。これが賞金稼ぎの間で伝わっているオークリーへの評価だ。\\n\\n決闘の時のオークリーは、夢に侵入する謎のガンマンみたいで、無駄な動きが一切ない。自分が仇敵に似ていると気付いたオークリーは、自分が嫌いになった。" + }, + "31024": { + "Name": "ガンマンのリベットブーツ", + "Desc": "開口部をV字にカットしたブーツは、カジュアルで抜け感のあるデザインで、履き心地も抜群。", + "Story": "長い旅は耐え難いもの、でも常に一人で行動するオークリーはとっくに慣れていた。オークリーはいつも鞍に跨ぎ、誰も行こうとしない辺境の地へ向かい、少ない賞金で過ごしてきた。\\n\\n彼女の直感が告げている。あの謎のガンマンも彼女みたいなアウトサイダー、彼女たちがいずれ相まみえる場所は絶対に賑やかなところではない。\\n\\nハーモニカを手に入れてからは、断続的な練習が彼女の孤独な時間の大半を占め、通りすがりの聴衆はタランチュラと砂とタンブルウィードだけだった。オークリーのハーモニカの腕前は旅の間にどんどん上達し、曲のために風が止んだこともあった。カンパニーは賞金稼ぎに星間旅行のサービスを提供している、孤独のガンマンはどこに行こうと構わない。\\n\\n謎のガンマンが鳴りを潜めて久しく、オークリーは自分は幻影を追っているのではないかと疑った時もある。でも彼女は一度、もう一度と出発するだけ。\\n\\nオークリーは信じている、「草の穂」の名が広まれば、あの時、父を探して牧場に侵入したように、謎のガンマンは自分を探しに来ると。" + } + }, + "RequireNum": { + "2": { + "Desc": "攻撃力+#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "装備キャラの速度+#1[i]%、通常攻撃によるダメージ+#2[i]%。", + "ParamList": [ + 0.060000000055879354, + 0.10000000009313226 + ] + } + } + }, + "103": { + "Name": "純庭教会の聖騎士", + "Icon": "SpriteOutput/ItemIcon/71002.png", + "Parts": { + "31031": { + "Name": "聖騎士の赦しのヘルム", + "Desc": "宗教彫刻の、赦しの女神を模ったヘルム、自分の顔を隠すためにある。", + "Story": "沈黙騎士は人前で硬く重いヘルムを外したことがない。その荘厳で宗教的なヘルムと、サフィナの沈黙が相まって、息苦しいほどの威圧感を醸し出している。\\n\\n傲慢な悪魔も、狂気に囚われた聖職者も、荘厳な圧力のもとに本能的な恐怖をさらけ出すことしかできなくなる。\\n\\n教皇庁でも少数の聖職者しか知らない、サフィナのその宗教的なヘルムの下に隠されているのは、悪魔としての出自。教皇庁は悪魔を恐れながらも、その力を欲していた、それが矛盾な結果を生んだ…幼年の悪魔を捕らえ、彼女を勇敢な沈黙騎士に鍛え上げた。だが彼女が人前で素顔をさらけ出すのは禁じられ、教皇の命に従い、聖女の沈黙騎士として従事する事だけが許された。\\n\\n年の近い聖女バニラは自らサフィナに聖書の勉学を指導していた、彼女は今でも燭光に照らされる悪魔の横顔を覚えている。\\n\\n「親愛なるサフィナ、私はあなたの顔を見たことがある。ずっと覚えているわ」聖女バニラは、大人になってから徐々に視力を失っていった。" + }, + "31032": { + "Name": "聖騎士の沈黙の誓いの指輪", + "Desc": "教会のシンボルを模った銀の指輪、少し濁った宝石がはめられている。", + "Story": "教皇庁の騎士達は仲間に剣を振るいかざした、純庭教会の厳粛さと典礼は次第に崩壊し、守護を誓った指輪は濁り、穢れていった。\\n\\n星の海から降り注ぐ力は、教会に悪魔を罰する力を与えたが、一方で人間性を奪う疾病を蔓延させた。\\n\\n疾病に苛まれる騎士達は既に典礼と秩序を認識できなくなり、悪魔の血を持つ者を一人残らず駆逐すると喚きたて、教会に救いをもたらすと叫ぶ。聖女に迫る脅威を前に、サフィナに躊躇している時間はない、たとえ相手が純庭教会の騎士長であっても、彼女は手加減できない。\\n\\nサフィナは忘れていない、沈黙騎士は聖女を守るためにあると。\\n\\n「親愛なるサフィナ、あなたが罪悪感を感じる必要はありません。これは星神の力を貪ろうとした、当然の結果よ」教会に残ったのは、最後の聖女と守護騎士のみである。" + }, + "31033": { + "Name": "聖騎士の厳かな鎧", + "Desc": "重厚な鎧には、純庭教会の特徴的なシンボルがあしらわれ、接合部は密封性が高い。", + "Story": "沈黙騎士の鎧は、バニラの祝福を受ける必要があり、それを以て守護騎士の誓いの儀式を完成させる。\\n\\n純庭教会はかつて金属の鎖で幼き悪魔の手足を縛り拘束した。今、サフィナは悪魔の国からの金属で鎧を鋳造し、死ぬ時に故郷が傍に居れるよう懇願した。\\n\\n純庭教会の聖女は鎧に付いた罪を丁寧に洗い流し、敬虔に神に祈りを捧げ、古の奇跡をプレートアーマーの心臓の位置に封印した。教会は悪魔の忠誠を信用しなかったが、教義は全てを浄化する力を持つと堅信していた。サフィナは静かに、古の儀式が己に責任を与える過程を注視した。\\n\\n聖女は儀式そのものの目的を信じていない、在りもしない罪など洗いようがない。\\n\\n「親愛なるサフィナ、騎士は聖女を守るのよ」バニラはサフィナの胸甲に寄りかかると、激しい鼓動が聞こえた。" + }, + "31034": { + "Name": "聖騎士の秩序の鉄靴", + "Desc": "純庭教会騎士団の制式騎士用靴。かかとには「秩序」という短い単語が刻まれている。", + "Story": "純庭教会は崩壊した、サフィナは騎士の鉄靴を脱ぎ棄て、聖女バニラと共に悪魔の国への長い旅に出た。\\n\\n聖女の懇願の下、サフィナは全ての騎士と疾病を教会に残した、この秘密は彼女たちが永遠に守っていく事にした。\\n\\n何時からか、人々はとある噂を聞いた。教会に駆逐された悪魔の血族は清潔なる沈黙騎士に憑依し、邪悪な魔女は騎士を操り教皇の秩序を破壊した…噂はやがて「真相」となり、敬虔な信徒たちは沈黙騎士を災いの元凶とし、絶望と狂気を彼女にぶつけた。\\n\\n居場所をなくした後、聖女は里帰りを彼女に提案した。\\n\\n「今から、私は魔女になり、あなたは悪魔に戻るの」サフィナはバニラの言葉を否定できなかった。" + } + }, + "RequireNum": { + "2": { + "Desc": "防御力+#1[i]%。", + "ParamList": [ + 0.1500000001396984 + ] + }, + "4": { + "Desc": "装備キャラが付与するバリアの耐久値+#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "104": { + "Name": "雪の密林の狩人", + "Icon": "SpriteOutput/ItemIcon/71003.png", + "Parts": { + "31041": { + "Name": "狩人の荒ぶる神のフード", + "Desc": "巨大な雪原熊の頭部の毛皮で作ったフード。毛皮に魂があるかのように、刀も銃の弾も通さない。", + "Story": "スノーランドの雪原で活動する狩人の間には一つの鉄則が存在している。それは、「荒神」の捕食期間でけして山の南側に行ってはいけないこと。あの山でさえ震わせる白き巨熊は誰も歓迎しないからだ。\\n\\n協会が指定した狩人として、シューガは救援信号を受信し、山の南側へ駆けつけたが、そこで待ち伏せされた。\\n\\n銃撃のショックから目を覚ましたシューガは助かったと思ったが、次の瞬間、危機はまだ過ぎていないと理解した。「荒神」が彼の前に立っていた。「荒神」の攻撃は力強く素早いが、乱暴に回すだけではそう簡単に当たらないはず…シューガは冷静にチャンスを待つ。彼は劇毒を塗った骨ナイフは抜き出し、常人を超える動きで飛び上がり、一瞬で勝負を逆転した。\\n\\n彼は「荒神」の頭と皮をはぎ取り、銃傷が癒えぬ状況で一日目の夜を過ごした。\\n\\n数日後、狩人協会は頭のない「荒神」の死体を見つけた。そして彼らは知る、死ぬべき狩人は死なず、予想外の復讐者が誕生してしまった。" + }, + "31042": { + "Name": "狩人のオオトカゲグローブ", + "Desc": "雪岩オオトカゲのうろこ状の爪は、グローブにしっかりと縫い付けられており、どんな壁も自由に登ったりぶら下がったりできるようになっている。", + "Story": "雪岩オオトカゲには敏捷性も圧倒的な強さもない。彼らは獲物が油断し、必殺の一撃を食らわせるチャンスが訪れるまで、半月ほど岩肌に潜むこともある。\\n\\nけど公認狩人はもう待てない、彼らは迫る脅威を取り除くため、雪山で全面的な捜索を展開し、シューガを狩ろうとした。\\n\\n協会の公認狩人は一人一人が精強だが、命を託せあえる仲ではない。狩人はただ、高額の賞金目当てに群がっているだけ、それに賞金が原因で裏切る事もしばしば——何せ、荒野では何が起きてもおかしくないのだから…ベテランのシューガを消せば、他の人の取り分が多くなれる。彼らの意見はまとまった、そして相応の代価を支払った。\\n\\nシューガは十分な準備をした、高レベルの狩人を狩るのは怪物を殺すより骨が折れる、ここからは一層辛抱強く行動しなければいけない。辛抱こそが、狩人にとって最も重要な素質。\\n\\n猟友会の公認狩人は減り続け、「不死身のシューガ」という恐怖が彼らの間で蔓延する。" + }, + "31043": { + "Name": "狩人の氷竜マント", + "Desc": "氷竜の細かい鱗で作られたマントで、奇妙な光の屈折でほとんど見えない。", + "Story": "「氷湖の主」には独特な鱗が生えている、昼間はまぶしく光を反射し、水に浸かるとその姿を隠せる。見えない巨大生物との戦い方を知る狩人は非常に少ない。\\n\\n数日後、狩人協会の公認狩人たちは鱗を剥ぎ取られた氷竜の死体を発見した、その瞬間、恐怖は驚愕に勝った。\\n\\nシューガは雪原の獣を何百何千も狩ってきた、全ての対決は唯一無二の体験で、意義がある。狩人にとって、獲物の個性と習性を観察、知り尽くす事でようやく、一つの狩りは完成したと言える…シューガにとって、「氷湖の主」は雪原のパズルを完成させる最後の1ピース、彼は狩りを完成しなければならない、彼の狩人の魂を完成させなければならない。\\n\\n賞金リストの最上位は「氷湖の主」から「狩人シューガ」に変更され、醜い狩りが始まった。\\n\\n全ての狩人は獲物になる覚悟をしなければならない、シューガも、裏切り者も。" + }, + "31044": { + "Name": "狩人の鹿革のブーツ", + "Desc": "シフゾウの柔らかな毛は、ブーツを包み込み、雪原で狩人は靴の浅い跡しか残さない。", + "Story": "たとえ重傷を負っても、体温が雪を解かせない程低下しても、死に際のシフゾウは依然致命的な脅威となり得る。\\n\\nシューガが猟銃を死に際のシフゾウに向けた時、彼は思う、その憤怒に満ちた両目は自分と同じだと。\\n\\n公認狩人に待ち伏せされてから、シューガの命の火は風前の灯火のように、いつ消えてもおかしくない状態だった。シューガは理解している、自分がまだ生きていられるのは、復讐の怒りが体を動かしているから、彼の欲念が満たされたその時、その命は飛び交じる雪と共に去るのだろう…シューガは一歩踏み出す度に体が重くなるのを感じるが、幅の広い鹿革のブーツは足跡を残さない。彼は気を引き締めて生涯最後の狩りに挑む。\\n\\n狩人協会は恐怖の中で瓦解し、シューガの許しを得るため、裏切り者を粛清し始めた、だがその行動がもたらしたのは更なる猜疑と自滅だけだった。\\n\\nシューガは復讐成功の快感を味わう前に、雪原で倒れた。" + } + }, + "RequireNum": { + "2": { + "Desc": "氷属性ダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "装備キャラが必殺技を発動した時、会心ダメージ+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "105": { + "Name": "成り上がりチャンピオン", + "Icon": "SpriteOutput/ItemIcon/71004.png", + "Parts": { + "31051": { + "Name": "チャンピオンの王冠ヘッドギア", + "Desc": "防衛効果絶大なヘッドギア、持ち主の頭に完璧にフィットする。", + "Story": "路上で暮らしていたリンジーは、公式試合のオファーが来るだなんて考えもしていなかった。自分に勝てる相手がいるとは思わなかった、ましてやそれが50歳を超えた老人だなんて。\\n\\nボクシングコーチを名乗る老人は、勝ったら弟子になれと言い、リンジーに挑んできた。\\n\\nリンジーは、動きづらい衣服を嫌がり、老人から渡された防具も捨てた。反射神経で圧倒するつもりだったが、三歩も動かないうちに老人に接近され、正面から拳を食らった。しばらく気絶した後、リンジーはヘッドギアを拾い上げ頭に付けた。さっきまでは無用の長物と思っていたヘッドギアだが、その狭い視野からは新たな景色が見えていた。\\n\\n「これがボクサーの拳か?面白い、教えてくれるってんなら、アタシを最強にしろ」\\n\\n文句を言いながらも、リンジーは負けを認めた。彼女は防具を身につけ、正式にボクシングの世界に足を踏み入れた。" + }, + "31052": { + "Name": "チャンピオンの重砲グローブ", + "Desc": "よく手入れされたボクシンググローブ、細かな摩耗は試合に影響はしない。", + "Story": "リングに上がったばかりのリンジーのスタイルは尖っていて、攻撃するしか知らず、防御はほとんどしなかった。\\n\\n縄で囲まれたリングの上では、路上喧嘩の経験は活かせない、イカトリーナがマッチした試合はリンジーの高慢を砕いた。\\n\\n地元大会での挫折をきっかけに、それまでの傲慢と自信が崩れ、リンジーはイカトリーナから教わった攻防のリズムを真剣に考えるようになる。パンチの打ち方しか知らなかったリンジーは、戦いの女神の接吻を受けたかのように、攻防の切り替えの面白さを次第に理解していった。気づいた時には、ゲルの指サポーターは折れ、手袋は血と汗で汚れていた。\\n\\n「相手の罠に嵌まらないように、自分のリズムを掴みなさい」\\n\\nその瞬間、リンジーはイカトリーナのこの言葉を理解した、自分を見る優しい眼差しは、我が子を見守るようだった。" + }, + "31053": { + "Name": "チャンピオンのチェストガード", + "Desc": "ボクサーのチェストガード、ガードとインナーを組み合わせることで、技の性能を損なうことなく安全性を保証している。", + "Story": "タイトルマッチ前夜のジム、いつもと同じように素早く、重いパンチがサンドバッグにぶつけられていた。\\n\\n汗がチェストガードに浸透する、灼熱の空気はリンジーと現実を隔てた、彼女は逃げ出したい。\\n\\n汗と涙が混じった顔にキラキラと光を反射させながら、リンジーは必死に感情を抑えた。深夜、彼女はチェストガードを外し、内側に「イカ」との名前を書き、この名の下に勝利を誓った。これはチャンピオンへの道のりで重要な1戦であり、リンジーにとっては初めてのコーチ不在の試合となる。リングに上がる前、リンジーはカメラに向かって堂々と胸を張った。\\n\\n「リンジー…あなたは私の娘と同じ名前を持っている。娘が離れてしまった時は、世界が壊れたとさえ思っていたわ、でも私はあなたに出会った。ありがとうね、リンジー」 \\n\\n「私を守って、イカ」大切な名前は、胸にある。" + }, + "31054": { + "Name": "チャンピオンの弧歩シューズ", + "Desc": "レザーとネットを巧みに組み合わせ、厚みのあるインソールと薄いソールで柔軟なステップを可能にする。", + "Story": "小柄なリンジーは、花に移る蝶のように軽やかなステップで、素早く俊敏にパンチを繰り出すスタイルで定評を得た。\\n\\n相手の拳は雨のように止まらず襲い掛かるが、リンジーにはかすりさえしない、これこそ彼女が誇る「リンジーステップ」である。\\n\\nリンジーの独特なステップを鍛えるため、イカトリーナはかつて路上で暮らしていた少女を上流階級の舞踏会に連れていった。手を繋いで、回る回る……リンジーは、つまずきながらも徐々についていけるようになり、ボクシングコーチを名乗るこの老人が、単なるコーチ以上の存在であることに気づいた。恍惚としたダンスフロアの中で、リンジーの心のどこかにある柔い場所に突然、奇妙な感覚が訪れる。\\n\\n「もう1曲踊りたいの?」\\n\\n路上で暮らしていたリンジーはこのような体験をできるだなんて想像したこともない、イカトリーナの澄んだ瞳を見た彼女は、拒むことができなかった。" + } + }, + "RequireNum": { + "2": { + "Desc": "物理属性ダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "装備キャラが攻撃を行う、または攻撃を受けた後、今回の戦闘中の攻撃力+#1[i]%、最大で#2[i]層累積できる。", + "ParamList": [ + 0.05000000004656613, + 5 + ] + } + } + }, + "106": { + "Name": "吹雪と対峙する兵士", + "Icon": "SpriteOutput/ItemIcon/71005.png", + "Parts": { + "31061": { + "Name": "兵士の鉄製ヘルム", + "Desc": "統一改造を経たフルフェイス・ヘルム、内部パッドで頭部を保温できる。", + "Story": "寒波の中で侵略に対する万全な準備を行うのは決して簡単なことではないが、ヤリーロ-VIのシルバーメインは慣れている。身を切るような寒風はナイフのように、ヘルムの隙間から吹き通る。\\n\\n天外から来た敵は再び軍勢を整え、完全武装した兵士たちは大守護者の命でそれを待ち構える。\\n\\n前哨部隊の兵士たちは、モンスターの動きを探るため、何日も雪の中に身を潜めていなければならないこともある。凍てつくような寒さは、兵士の皮膚、汗、ヘルムに詰まった綿を一緒に凍らせてしまう。ヘルムを安全に取り外すために熱湯が必要な場合も多い。建創者の鍛冶屋たちは、重たいヘルムが吹雪の抗力を軽減できるように、板金の湾曲度を調整した。\\n\\n堅く、暖かく、威風堂堂なシルバーメインの制式ヘルムはこのように継承されてきた。\\n\\n「そのヘルムをつけて、前が見えるのか?」当直の兵士は皆、同じ質問をされたことがある。" + }, + "31062": { + "Name": "兵士の銀鱗ガントレット", + "Desc": "銀色の光を放つ金属のガントレット、複合的な機械構造が深く刻み込まれている。", + "Story": "壊滅の印を持つ侵入者たちは近衛隊の退路を阻んだ、ラースロー・ランドゥーは守護者の保護と避難を隊員に命じ、自分一人でしんがりを務めた。\\n\\nたとえシルバーメインで最も勇猛な戍衛官であっても、モンスターの奔流の中では長く持たない。\\n\\n獰猛で野蛮、怪異な生き物は咆哮する、嵐のような激しい攻撃が止まず押し寄せるが、ランドゥーの戦線を突破する事はできなかった。激烈な攻防は長く続く、ラースローは次第に疲弊していったが、それでも立ち続けた。そして援軍の到達を確認して、ラースローはようやく、安心して気絶した。\\n\\nラースローは戦いの中で両手を失った。建創者の中で最も優れた職人は英雄のため精巧な手甲を作った、そのおかげで彼は軍に復帰し、もう一度その手で軍旗を掲げられた。\\n\\n「これには一つの欠点がある」ラースローは手甲を見ながら呟いた。「この手はもう、琴の弦の震えを感じることはできない」" + }, + "31063": { + "Name": "兵士の旧制軍服", + "Desc": "きちんとアイロンがかけられた旧制シルバーメインの軍服、丈夫なボタンで生地にしわができている。", + "Story": "ゲーテ家の先祖から伝わる古い軍服は、長い間箱の底にしまわれており、軍人の名誉だけがそれをこの世に蘇らせる。\\n\\n壊滅の兵卒は野蛮に侵攻を進める。既に退路がないシルバーメインは、天険を守り抜くと誓う。\\n\\nヴィバロ防衛戦で、ホルス・ゲーテは決死隊を率いて何ヶ月も要害を死守した。援軍のラッパが谷間に響いて初めて、皆は英雄たちは骨すら残っていないことを知った。大守護者アリサは、表彰式で勇敢なホルス・ゲーテの子孫に自ら勲章を授与し、若きゲーテは戦死した英雄を代表して古い軍服で堂々と立った。\\n\\n若きゲーテの目に映るのは軍服と勲章だけだが、大守護者は英雄たちが残した遺産が見えた——ベロブルグの未来が。\\n\\n「ホルス・ゲーテこそ真の勇者だ、お前はゲーテの名を誇りに思え」若き日のゲーテが、大守護者について唯一覚えている事がこの言葉である。" + }, + "31064": { + "Name": "兵士の白銀グリーブ", + "Desc": "固い白銀色の金属でできたグリーブ、保護性がありながら、軽量で十分な保温性もある。", + "Story": "シルバーメインは、戦術上の理由から、腰まである雪の中を1日に非常に長い距離も移動しなければならないことがよくある。長距離行軍の疲労と重度の凍傷は、兵士の足に試練を課す。\\n\\n雪原へ遠征する途中、たまに久しぶりの旧友に会う事もある。\\n\\n雪原遊撃を担当するシルバーメインは、時折野営地で氷原オオカミの長い遠吠えを耳にすることがある。このかわいそうな生き物も、侵略者の鉄蹄の下で居場所をなくしてしまった。野戦中隊のイェーガー士官は、狩人の家の生まれ、彼は狼の毛皮のマントにする名人だった。しかし、終わりなき寒波が到来してからは、この猛獣を見ることはほとんどなくなった。寒い夜、数匹の氷原オオカミが警戒を解き、軍の焚き火に近づき、何も言わずにイェーガーのそばに丸まった。夜が明けると、獣たちは温かな夢の中で永遠の眠りにつく。\\n\\n寒さを少しでも緩和できるよう、イェーガー士官は処理した狼の毛皮を兵士のグリーブに入れた。\\n\\n「私たちと同じように、氷原オオカミもまだ住処を完全に失くしたわけではない」イェーガー士官はそう言って、氷原オオカミを憐れんだ。" + } + }, + "RequireNum": { + "2": { + "Desc": "受けるダメージ-#1[i]%。", + "ParamList": [ + 0.0800000000745058 + ] + }, + "4": { + "Desc": "ターンが回ってきた時、装備キャラの残りHPが#1[i]%以下の場合、HPを最大HP#2[i]%分回復し、EPを#3[i]回復する。", + "ParamList": [ + 0.5000000004656613, + 0.0800000000745058, + 5 + ] + } + } + }, + "107": { + "Name": "溶岩で鍛造する火匠", + "Icon": "SpriteOutput/ItemIcon/71006.png", + "Parts": { + "31071": { + "Name": "火匠の黒曜レンズ", + "Desc": "漆黒の結晶で創られたゴーグルのレンズ。このレンズを通せば、激しく弾ける火も、微かな残影になる。", + "Story": "神兵の武器を鍛える、それは火匠一族にとって天賦の使命であり、一生の呪いでもあった。\\n\\n解放された火匠一族は戦争洪炉の世界に移住し、その才能の極致を発揮すると同時に、壊滅の息吹に染まり始めた。\\n\\n炉の光と火花は目を焼く程に輝く。鍛造の過程で、素材は神器となり、匠は視力を失う。フーイは、火山の麓で珍しい黒曜炎晶を見つけ、丁寧に磨いてゴーグルのレンズを作った。それから、強烈な火花は、青白いシルエットだけになった。しかし、強欲な匠は呪いから逃れることはできず、全てを究極の炎の中で燃やした。\\n\\nフーイは戦争洪炉の中の反物質レギオンを鍛えられる素材と見なし、自分自身を燃え盛る烈火とした。\\n\\n「例えば、熱核反応を私の炉にできる可能性はないのでしょうか?」フーイは、限界まで高められる炎を探し求め、暴走した核融合反応の中で滅んでしまった。" + }, + "31072": { + "Name": "火匠の操炎の指輪", + "Desc": "炎のシンボルが彫られた指輪、火匠一族の最高の名誉の証。", + "Story": "九百度の炎は粘土を陶器にし、数千度の炉火は銅や錫を溶かす…原始的な鍛造ほど、極限の温度を求める。\\n\\nレギオンの生物は物質の拘束からの解放を渇望し、壊滅の熱波がもたらす昇変を追い求める。\\n\\n熟練した匠は、信じられない程の高温の炎を生成できる。烈炎の黒体放射は青い光を放つ、それはもうすぐ死ぬ恒星のようであった。火匠は皆、烈炎を操る天才だが、その中でも特に優れた者だけが、達人の証である御火の指輪を与えられる。\\n\\n戦争洪炉はもはや匠と素材を区別しない、反物質の生物を鍛える火匠たちも壊滅の武器の一部となった。\\n\\n「鍛造品は炉の温度が決める、炉の温度は火匠が決める」壊滅の技能を掌握する火匠にとって、これは当たり前のことである。" + }, + "31073": { + "Name": "火匠の防炎エプロン", + "Desc": "鍛冶職人のエプロンには無駄な装飾がなく、革のシボと家紋だけがはっきりと見える。", + "Story": "反物質レギオンは朽ち果てた「戦争洪炉」を火匠に贈り、彼らが火の世界で自由に鍛造できるように計らった。\\n\\n両目を焦がす溶岩の世界でハンマーを振り続ければ、新生と壊滅は二律背反ではなくなる。\\n\\nソルトは、活火山から噴出する溶岩を利用して、レギオンの武器に激しい壊滅の息吹を付与するのを得意としていた。沸騰する猛毒のガスも、躍動する溶岩も、ソルトの焼入れを妨げることはできない。熱を受け止めるソルトのエプロンは炎オオトカゲの皮でできた防火仕様である。溶岩が引いた後でも、エプロンは新品同様だった。\\n\\nレギオンの戦力は熔炉の中で、肉体と武器が火匠のづちの下融合するまで何度も鍛えられ、壊滅の兵器と成る。\\n\\n「唯一絶対の壊滅の力を……」炎を操る匠たちは、その武器に込めた恐ろしい欲望を決して隠さなかった。" + }, + "31074": { + "Name": "火匠の合金義肢", + "Desc": "金属素材の義肢。表面には立体的な炎の紋様が絡みついている。", + "Story": "古の時代、牢獄世界の主は無二の鍛造技術を失うことを憂い、卑怯な手段で火匠一族を縛った——禁錮されていた時期、火匠の族長は皆脚部に障害があった。\\n\\n壊滅の主は囚われの火匠一族を解放し、壊滅の印は火匠たちに尽きる事のない力を与えた。\\n\\n牢獄を離れた後でも、火匠の族長は常人のように行動できなかった、だが彼は真の自由を手に入れた——卓越した技術のせいで囚われる事のない自由を。族長は怨恨と屈辱を鍛造に傾注し、連日ハンマーを振っても全く疲れを感じなかった。頑固で高慢な反物質の生物でさえ、何度も叩かれるうちに形を変え、壊滅者の改造に屈するしかなかった。\\n\\n形ある牢獄は消えたが、鍛造への狂気的な打ち込みも一種の牢獄ではないのか?\\n\\n「生身の身体は妨げ、鍛造もまた壊滅」族長は欠けていく匠が増えるのを見て、感慨深く語る。" + } + }, + "RequireNum": { + "2": { + "Desc": "炎属性ダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "装備キャラの戦闘スキルによるダメージ+#1[i]%。必殺技を発動した後、次の攻撃の炎属性ダメージ+#2[i]%。", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + } + } + }, + "108": { + "Name": "星の如く輝く天才", + "Icon": "SpriteOutput/ItemIcon/71007.png", + "Parts": { + "31081": { + "Name": "天才の超距離センシング", + "Desc": "超距離センシング技術によって作られた通信ゴーグル、伝送媒体や距離の束縛を打ち破った。", + "Story": "天才クラブのメンバーはほとんどが変わり者。公知の事実として、変わり者同士はあまり交流をしない。\\n\\n異なる世界に住む天才たちにとって、人付き合いはかなり余計な負担となる。凡人だってそうだろう?\\n\\nしかし、会員#56、天才クラブ第2代会長のイリアスサラスはこの問題を解決しようとした。彼は当時のメンバーに、超距離センシング付きの通信ゴーグルを用意したのだ。残念ながら、星の間に橋を架けたにも関わらず、それを渡ろうとする者はほとんどいなかった——銀河系史上最高の通信デバイスは、その誕生以来、真の効果を発揮したことはほぼない。\\n\\n「『おかきになった相手は、オフライヌ状態です』AIを装って僕の通信を切る時くらいは真剣にやってくれ……」\\n\\n無理は承知の上で推し進めていたが、イリアスサラスはため息をつく。でも積極的にやってみないと、どうせこの技術はいつか普及するのだから。" + }, + "31082": { + "Name": "天才の周波数変動キャッチャー", + "Desc": "高度な周波数変動センサーを装着した手袋は、客観的な音響振動や光学振動を視覚的に操作することが可能。", + "Story": "養父が経営する果物屋で雑用をこなしながら、いかにバレずにサボるかが会員#84のスティーブン・ロイドの小さな課題であった。\\n\\n彼は特定の周波数帯を捉える手袋を作った、散逸する音や光をキャッチして、自身は周波のフェンスに隠れて楽器の練習を楽しむ。\\n\\n特定空間内の音と光をその場に留める技術は科学界を覆す大発明だ、少なくとも、現在のリルタ古典力学体系ではそれを解釈できない…でも本人はその技術を世に出すつもりはなかった、何せ、サボるためのおもちゃに過ぎないのだから。\\n\\n「スティーブン、何をやったか知らんが、お前、サボっているだろ?」\\n\\nスティーブン・ロイドは「天才の中の天才」だと呼ばれるが、養父にとっては、ただの夢を見るのとサボるのが好きな子供でしかない。" + }, + "31083": { + "Name": "天才のメタバース深潜", + "Desc": "起動すると全身潜水服のようになり、全身からの神経信号をリアルタイムでメタバースに伝達する。", + "Story": "会員#29、セセルカルが創造したメタバース空間は生物種や次元の相違を超越した世界、どんな生物でも深潜装置を使うだけで神経信号を意識ネットワークに同調させることが可能だ。\\n\\n世界を超えられない生物も、共通の夢を通して、現実では存在しない安らぎと平穏を求められる。\\n\\n仮想データが織りなすメタバース空間で、宇宙生命は無数の文化財を創造した。そこに新たな秩序が静かに確立されつつある。しかし、新たな楽園が現実に取って代わることが予測された矢先、「創世の織り手」セセルカルは冗談のように意識ネットワークの接続を切断し、メタバース全体は冬の日のような静寂に包まれた。\\n\\n「毎日メタバースを口にしている投資者たちはみんな狂っちゃったよ、関連産業はこれから発展していくはずなのに、肝心のメタバースが消えちゃった」\\n\\n人々はよく、メタバースを失った後に憶測する。メタバースは元々魂のシャーレであって、様々な生物を招き入れるのは、無料の魂サンプルを手に入れるためだったのではないか、と。" + }, + "31084": { + "Name": "天才の引力漫歩", + "Desc": "引力キャッチが実装された装置で、スケート靴に似ていて、高速で滑走する際に、星々の光を映し出す。", + "Story": "クラブ会員#64、悪名高い「原始博士」は、自分が犯した大罪により、果てしない銀河のところどころから迫る追っ手から逃げ回る人生を送っている。\\n\\n「原始博士」は楽しんでいるように見える。レンジャーに捕まらない程度の距離を取るも、彼を追跡できる手がかりは残している。\\n\\n彼は脱出する際、ある種の引力捕獲技術を応用し、引力だけで宇宙空間を自由に歩き回ることを可能にした。博識学会の宇宙物理学者は、その原理を理解することができず、惑星間の引力の違いが重要だと推測するしかなかった。「原始博士」を追う者たちは、重力に縛られる乗り物で辛うじて後を追い、大罪の犯人を捕まえると決意した。\\n\\n「宇宙漫歩はロマンティックだ」巡海レンジャーは言う、「残念なのは、それをやってる人が原始博士であることだ」\\n\\n「原始博士」が完全に消息を絶った後でも、巡海レンジャーは「死亡推定」を信じず、追跡を続けた。" + } + }, + "RequireNum": { + "2": { + "Desc": "量子属性ダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "装備キャラが敵にダメージを与えた時、敵の防御力を#1[i]%無視する。敵に量子属性の弱点がある場合、さらに防御力を#2[i]%無視する。", + "ParamList": [ + 0.10000000009313226, + 0.10000000009313226 + ] + } + } + }, + "109": { + "Name": "雷鳴轟くバンド", + "Icon": "SpriteOutput/ItemIcon/71008.png", + "Parts": { + "31091": { + "Name": "バンドの偏光サングラス", + "Desc": "メインボーカルの1人であるジャニスのサングラス、クロームメッキのレンズは、青い光を反射する。", + "Story": "恒星の寿命が急速に消えゆく。赤色巨星が爆発する前に、エメラルド-IIIの住人は故郷の星から逃げ出した。\\n\\n逃げ場のない未来と直面する時、エリートたちは絶望の慟哭から目を背け、希望だけを持ち去った。\\n\\nジャニスの両親は他星系の救援を期待して、巨額の信用ポイントを支払って船に乗り込んだ。惑星は赤色巨星の爆発で破壊され、恒星は白色矮星になる…目に見える終末が降臨する前に逃げ出すのが唯一の答えだろう。だが混沌医師のジャニスは銀河の滅亡に真正面から立ち向かい、存在の痕跡が無に帰することはないと証明しようとした。\\n\\n死にゆく太陽はさらに明るさを増す。ジャニスは母のサングラスを持ち、同じ志を持つ若者たちと共に故郷の星に帰った。\\n\\n「臆病者は外に向かって逃げるだけなのに、口では救済を叫ぶ」『廉価な救済』、激雷バンドのファースト・アルバムからのシングルで、ジャニスが両親との喧嘩の際に発した怒りの言葉を歌詞にしたもの。" + }, + "31092": { + "Name": "バンドのツアーブレスレット", + "Desc": "ベース担当シドのブレスレット、ツアーで使用したリボンブレスレットで編んだ。歌詞が書かれている。", + "Story": "エメラルド-IIIの激雷バンドは、僅かな先行曲で、あっという間に星全体を沸かせた。\\n\\nリズムギタリストのデヴィが激しくスウィープする時に弾ける火花は開幕の合図だが、ファンたちはそれを余生最後の光としている。\\n\\nバンドのライブツアーではファンが自発的に秩序を守り、入場時に身分を識別するシルクの腕輪を観客に渡す。ほとんどのファンは高額な避難費用を払えなく、ガンマ線バーストを迎える運命を受け入れた。でも反逆的な若者たちが惑星に戻ったのを目撃し、彼らの中にもインスピレーションの炎が点けられた。彼らは腕輪に歌詞を書き下ろし、上演日を記録し、己が発する魂の叫びを刻んだ。\\n\\nベースのシドはツアーの度に腕輪を集め、ガールフレンドのナンシーにブレスレットにしてもらい、いつも身に着けている。\\n\\n「俺たちには、意味も、方向性も、行くところも、未来もない」『僕たちの路』、激雷バンドのセカンドアルバム。シドの人生の信条。" + }, + "31093": { + "Name": "バンドのスパイク付き革ジャン", + "Desc": "メインボーカルの1人であるダビデは、革ジャンの背中に白い星を描いた。それは、バンドの最後のアルバムのジャケットとなった。", + "Story": "激雷バンドのロックが銀河中に鳴り響き、逃げることをよしとしなかった若者たちが、滅びゆくエメラルド-IIIに戻ってきた。\\n\\nリードギターのジミーはバンドを地下に移した。彼らはここで歌う、彼らはここで惑星崩壊の悲鳴を宇宙に伝える。\\n\\n上演する前、ダビデはスパイクのついたレザージャケットの背中に白い星を描いた。それは星が崩壊した後の白色矮星、その星が存在していた証明。星を去った者も、滅亡を前にして残った者も、共に轟くロックに耳を傾け、印象的なシンボルを振り回した。\\n\\nバンドは消えたが、彼らの存在は曲に刻まれ、永遠となった。\\n\\n「我らは命を燃やし、孤独な白星を照らす」『白星』、激雷バンドの最後のアルバム、作詞はダビデが担当した。" + }, + "31094": { + "Name": "バンドのリベットブーツ", + "Desc": "ドラマー、ボーナムのブーツ。ステージのライトを反射する塗装面にはリベットが接着されている。", + "Story": "激雷バンドは人々の終末に対する態度を変えたが、その結末は変えられなかった。\\n\\n荒廃した惑星の地表は退廃と悲しみに満ちていた、物資が乏しい時代、バンドは廃棄されたX線フィルムに全アルバムを焼いた。\\n\\nエメラルド-IIIに長き夜が訪れた時、地表の温度は急速に低下し、外は涼しくなった。人々は地下シェルターから湧き出て、バンドの後を追った。ファイナルツアー「雷鳴」の会場、不安定な空気には電磁嵐の予兆が漂い、雷は金属のセットを通ってステージに伝わる。雷光はボーナムの足元で躍動し、バンドは完全に雷電と一体となった。アンコール曲が終わると、巨大な球電がステージを包み込んだ。\\n\\nカーテンコールの夜が過ぎ、激雷バンドの上演は絶唱となった、彼らの歌詞のように。\\n\\n「雷が俺たちの声を覆い、稲妻が血に沿って奔る。音楽と共に、星と滅びよ」『激雷の歌』、激雷バンドの最後のアルバム、ボーナムの代表作。" + } + }, + "RequireNum": { + "2": { + "Desc": "雷属性ダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "装備キャラが戦闘スキルを発動した時、装備キャラの攻撃力+#1[i]%#2[i]ターン継続。", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + } + }, + "110": { + "Name": "昼夜の狭間を翔ける鷹", + "Icon": "SpriteOutput/ItemIcon/71009.png", + "Parts": { + "31101": { + "Name": "空飛ぶ鷹の長嘴ヘルメット", + "Desc": "高速飛行に使われるヘルメット。鷹の嘴に似ている。", + "Story": "サルソットの空漁人は、毎日夜明けに移動都市の「エアーポート」から出発し、滑空スーツを着て空を飛び、砂から飛び出す燃素クラゲを狩る。\\n\\n「位相霊火」で構成された燃素クラゲは巨大な移動都市を駆動する血液、十分な量を捕獲しなければ、都市は明暗境界線に追いつかれてしまう。\\n\\nもし誰かが力尽きたり、巨大な鳥に襲われ命を落とした場合、サルソット人はあらゆる手段を講じてその遺骸を持ち帰り、滑空スーツとヘルメットを亡骸と共に暗黒の大地に埋葬する。サルソットの伝統儀式の中で、「地に落ちる」とは死であり、永遠の休息である。\\n\\n飛翔を止めてはいけない、都市も止めてはいけない。\\n\\n鷹の嘴型のヘルメットの先の部分には、辞世の句が刻まれている。「大地は鷹を縛る鎖ではない、翼こそが鎖なのだ。翼があるから、お前は飛び続ける」" + }, + "31102": { + "Name": "空飛ぶ鷹の双翼指輪", + "Desc": "卓越したベテラン空漁人が付けている指輪、空漁鷹の翼を模っている。", + "Story": "技術が最も卓越していて、最も尊敬され、頼りにされる空漁隊長だけが「双翼指輪」を授与される。彼らは最も鋭い鷹、空中で笛を鳴らし、隙のない連携を組む。\\n\\n孤独で脆い飛行の中、隊長から伝わる124種の「音色」だけが、隊員たちの頼りになる。\\n\\nそのため、サルソットではとある諺がある:「空漁人はその命の3分の1を熟練の技に、3分の1を巧みな道具に託している。そして最後の3分の1を信頼できるリーダーに託している」\\n\\n多くの家庭から子を託された隊長は、その小さな指輪の重さを切実に感じる。\\n\\nこの指輪のエッチングは既に劣化している、内側には「責任」という単語が刻まれている。" + }, + "31103": { + "Name": "空飛ぶ鷹の翼装ベルト", + "Desc": "滑空スーツの翼を繋ぐベルト、金属支柱は厚手の麻束の中に隠されており、柔らかく体にフィットする。", + "Story": "サルソットの空漁人にとって、砂の中から飛んでくる燃素クラゲを捕らえるのは容易ではない。乱気流の中で、一見柔らかくか細いベルトは、都市の外の空域を吹き抜ける強風の中では空漁人の命綱となるのだ。\\n\\n砂から飛び出る燃素クラゲを捕まえるのは非常に難しい。フェイント、追い込み、獲物の確保、どの作業も常に命の危険が伴う。\\n\\n未成年の空漁人は、両親の髪をそれぞれ1本ずつ支柱に編み込むが、結婚している場合は配偶者が用意することになっている。そのようにして出来たベルトは、「家」の祝福の下、空漁人が無事に家に帰れるように守ってくれる。\\n\\n残酷な世界で空漁人を優しく支えてくれるのは、「家」だけだ。\\n\\nこのベルトに編み込まれた髪は女性のもののようである、根本は少し白い。" + }, + "31104": { + "Name": "空飛ぶ鷹の羽毛バンド", + "Desc": "飛行中に足の温度を維持するバンド、空漁鷹の羽があしらわれている。", + "Story": "サルソットの空漁人が燃素クラゲを狩る過程は生存をかけた長い戦いである。心臓から離れた両脚は、羽毛バンドで包み温度を保つ必要がある。\\n\\n限界を迎えた肉体に痛みや疲れが現れ始めるのは、いつも長時間の激しい狩りの後。\\n\\n対策が不十分だった空漁人は、その時やっと重度の凍傷による局所的な壊死に気付く。そのため、空漁人は出発する前に何度もバンドの状態を確認する、高速飛行の間に二次調整のチャンスはないからだ。\\n\\n彼らは天空に足を踏み入れたその時から分かっている、疾風が何を持っていくかを。\\n\\nこのバンドに内蔵された金属製のケースには、石灰やアルミの粉末が使われていた痕跡がわずかに残っており、非常用の加熱手段として使われていたようだ。" + } + }, + "RequireNum": { + "2": { + "Desc": "風属性ダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "装備キャラが必殺技を発動した後、行動順が#1[i]%早まる。", + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "111": { + "Name": "流星の跡を追う怪盗", + "Icon": "SpriteOutput/ItemIcon/71010.png", + "Parts": { + "31111": { + "Name": "怪盗の千人仮面", + "Desc": "変装用の仮面、卓越した演技力と相まって、本物と見紛うばかりの出来栄えである。", + "Story": "流星怪盗ルブランは、盗みと仮面舞踏会への参加を同じものだと考えている、身分を隠すことはマナーの1つ。\\n\\n「何故仮面は身長や声まで変えられるのか?ハハハハ、それは私の特許技術、秘密だ」\\n\\n怪盗は仮面を使い、社員に変装してカンパニーのセキュリティ会議に潜入し、「怪盗対策」をアドバイスする。この「同僚」に会ったことがないことをセキュリティ部門が思い出したのは、盗難から半月後のことだった。\\n\\n盗賊は二重生活を送っているため、人の目を欺ける手段は必須、これは怪盗界の伝統だ。\\n\\n「ライターに何とかしてもらって、怪盗にずっと仮面を着けてもらえないか?」同社の映画・テレビ部門のマーケティング担当者は、プロデューサーにこう言った、「もう一度この仮面のニーズを強調しよう、廉価で大人気だ」" + }, + "31112": { + "Name": "怪盗の紋様手袋", + "Desc": "ナノ素材を編み込んだ特殊な手袋、どんな指紋でも瞬時に再現する。", + "Story": "流星怪盗ルブランは、痕跡を残さないような潔癖は持ち合わせていない。彼はいつもミスリードする手がかりや、度をわきまえた挑発を残す。\\n\\n「なんでカンパニーの人たちは偽の指紋に何度も弄ばれるのか?そうだな、この問題は、私ではなくカンパニーに聞くべきだ」\\n\\n彼の手袋はあらゆる指紋を生成できる、その機能はカンパニーの指紋検出技術を役立たずにしただけでなく、大した手がかりにならない「盗賊の綻び」を大量に残した。セキュリティ部門は、お宝が保管されていた密室で、先史時代の翼竜、星間テントウ虫、ラブラドールなど、何百種もの指紋を発見した……もちろん彼の指紋は1つもなかった。\\n\\n完全に身を潜めるのは実につまらない、それでは警察ごときに怯えるコソ泥と大差ないではないか。\\n\\n「冗談だとしても、今時指紋認証システムなんて使ってる奴なんていないぞ」カンパニーのセキュリティ部門からクレームが入った、「脚本を書いた奴ら、生活の常識もないのか?」" + }, + "31113": { + "Name": "怪盗のワイヤーかぎ爪", + "Desc": "ベルト風のワイヤー、バックルにフックと滑車が隠されている。", + "Story": "準備周到な怪盗は救命のワイヤーを常備し、いつも絶望的な状況から無事に脱出できる。\\n\\n「腰部のワイヤーはどうやって照準しているのか…君は自分がどうやって歩くのかを説明するのか?」\\n\\nお宝を保管する密室には危険な仕掛けが沢山あるが、怪盗は見事なワイヤーさばきでワルツを踊るように宙を舞う。かぎ爪は発射後1/3秒で数十メートルある壁に取り付き、滑車が回転し始める、すると怪盗は瞬く間に「獅子座の星」の前に出現した。\\n\\n腰部のワイヤーで飛び回る、それは怪盗の基本である。\\n\\n「続編でスタントマンを主演にしたら、予算を節約できるな」アクション監督は皮肉を言った、「どうせ仮面をつけてるんだ、誰も分からないさ」" + }, + "31114": { + "Name": "怪盗の流星ブーツ", + "Desc": "人体機能を補強する靴。怪盗がビルの間をすたすた歩くのを可能にしている。", + "Story": "怪盗は、わざと眩しい軌道を残しながら街の上を高速で飛び去る。それが「流星」の由来である。\\n\\n「高層ビルがなかったらどうやって逃げる?ハハハハ、そんなつまらない問題はもうよしてくれよ」\\n\\n怪盗は、繰り返される間一髪の脱走には慣れていた。彼の拠点を知っている者がいない限り、怪盗の流星ブーツに追いつける人はいない。意外な事に、ボサボサ頭の探偵はコーヒーカップを持ち、ルブランの椅子に座って彼を待っていた。\\n\\n怪盗の物語はここで終わり、これからは探偵の物語だ。\\n\\n「誰も私がそう書くとは思わないから、こう書いてやったのさ!」賛否両論の結末を、脚本家(匿名)が解説した。" + } + }, + "RequireNum": { + "2": { + "Desc": "撃破特効+#1[i]%。", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "装備キャラの撃破特効+#1[i]%。装備キャラが敵を弱点撃破した後、EPを#2[i]回復する。", + "ParamList": [ + 0.1600000001490116, + 3 + ] + } + } + }, + "112": { + "Name": "荒地で盗みを働く廃土客", + "Icon": "SpriteOutput/ItemIcon/71011.png", + "Parts": { + "31121": { + "Name": "廃土客の呼吸マスク", + "Desc": "ホコリと放射能をカットできるマスク。廃棄された人工呼吸器を改造したように見える。", + "Story": "残留放射能と砂嵐はここの日常だ、タリアの廃土客たちは、常にマスクを用意しておかなければならない。原理も分からずに弄ってできたマスクは使えるのか?いや、むなしい慰めにしかならない。\\n\\n「聞いたか?マスクにパイプを挿してる奴がいるんだぜ、俺だったらあんなの我慢できねぇよ」\\n\\n廃土客たちはタリアの極端気象に対して不満をたらす事は少ない。第一に、彼らでは現状を変えられない、核爆発以来、ここは砂と埃に覆われている。第二に、彼らは楽観的だから、赤い砂が空を覆った時、彼らは手製の防塵マスクをして、風埃と共に他の賊の巣窟に突入し、黄泉の国の幽霊のように姿を現す。\\n\\n準備をした賊が準備をしていない賊から奪う、それがタリアの生存法則だ。\\n\\n着脱が難しそうな防塵マスク。「ネイルシェル」の偽造防止マークがある。" + }, + "31122": { + "Name": "廃土客の荒涼端末", + "Desc": "電離放射性ガスを検知し、トラッシュトークも喋られる汎用性の高いガラクタ。", + "Story": "タリアが盗賊公国になる前は、「星々のゴミ捨て場」として広く知られており、様々な世界の技術廃棄物はここで2度目の春を迎える。\\n\\n「手鎖より重い腕部端末を付けるのが好きなわけじゃねぇ!こいつぁ肝心な時じゃハンマーよりすげぇんだよ」\\n\\nネイルシェルタウンができてから、タリアで最も常識外れな廃棄物工学専門家たちはついに安全な場所を見つけ、そこでタリア独自の「勘科学」を創造した。セシウム測定器と、暴言を吐くスマート端末を組み合わせば、廃土特有の多機能なゴミ「荒廃端末」が完成する。\\n\\nいわゆる「勘科学」の指導思想とは:原理を聞くな、目的を聞くな、誰もそんなもん気にしてない。\\n\\n「よくもゴミと一つにしやがったな、てめえらは肥溜めに住むドブネズミだ」スマート端末の声は、親切で切実だった。" + }, + "31123": { + "Name": "廃土客の修道服", + "Desc": "ゆったりとしたローブ、伝道師スタイルを改造している。", + "Story": "タリアのならず者たちは救済など期待してないし、それが何なのかも知らない、修道士がどんな存在だなんて尚更だ。彼らの目には、掃除に使えそうなローブの実用性しか映らなかった。\\n\\n「『無知が統治する時代はまだ終わってない』?んだこのくそみたいな文章は?」\\n\\n廃土客たちは長い間放置されていた修道院を発見し、さらに旧文明の正典まで見つけた。彼らは、文明の記録の貴重さをほとんど直感的に感じ取り、上辺の感傷に浸った後、それらを愉快に焼却した。廃土客たちが持ち去ったのは修道士のローブだけ、それ以外のガラクタはネイルシェルでは無価値だ。\\n\\nほぼ全ての廃土客は教養がない、文明に関する資料がいくらあっても腹を満たすメシには比べられない、これもしょうがない事だ、彼らを責めるべきではない。\\n\\n少なくとも修道士のローブは残された、これもまた、文明が存在する形式の一つである。" + }, + "31124": { + "Name": "廃土客の動力腿甲", + "Desc": "動力甲冑の足の部分。廃鉄と古い電線で外骨格が作られている。", + "Story": "ネイルシェルタウンの盗賊たちは貴重な水源と苦労して集めたゴミを守る手段が必要だ。ないよりマシの盗賊技術はこのようにして誕生した。見かけ倒しのパワーアーマーは脚部だけ正常に作動できる。\\n\\n「俺が必要なのは完全なパワーアーマーなんだよ、そんで上の部分は爆発したって?逆に聞くぞ、てめぇにこの脚部アーマーを使う度胸はあんのか?」\\n\\nしょっちゅう勃発するネイルシェルの防衛戦は、「印象科学」の発展を促進させ、出所不明の材料と即席の技術で、盗賊たちはパワーアーマーまで作れるようになった。残念ながら、初代の鉄くずパワーアーマーは脚部しか残っておらず、大幅に簡略化しても操縦者をロケットのように発射してしまう。理由はエンジニアにもよくわからない。\\n\\nデザイナーが言うには、それは半分寝ぼけた状態で設計されたもので、一生に一度だけの閃きだった。\\n\\n資源ゴミでも有害ゴミでも、使えるならそれはいいゴミだ。" + } + }, + "RequireNum": { + "2": { + "Desc": "虚数属性ダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "デバフ状態の敵にダメージを与える時、装備キャラの会心率+#1[i]%。禁錮状態の敵にダメージを与える時、会心ダメージ+#2[i]%。", + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451 + ] + } + } + }, + "113": { + "Name": "宝命長存の蒔者", + "Icon": "SpriteOutput/ItemIcon/71020.png", + "Parts": { + "31131": { + "Name": "蒔者の光をもたらす義眼", + "Desc": "とある人の機巧義眼。今や義眼は主人の身体から追い出され、無用となっていた。", + "Story": "暗く混沌とした夢の中で、彼女はよく再び光が戻った数日のことを見た。広大な土地に楹樹が揺れ、花弁が舞う。藍色の波が岩にぶつかり、白く散る。鳥は翼を広げ、濃緑の竹林の中に消える。\\n\\n夢の中で彼女はいつも、彼女と共に美しき景色を楽しむべきもう1人の誰かを探している。\\n\\nしかし、彼女に見えるのはぼやけた人影のみ。その人の絹のような短髪と黒い玉のような双眸をはっきりと覚えているのに、記憶は神経が構築した迷宮に迷い込んでしまったようであった。彼女はいつもその顔をはっきりと見る前に目を覚ましてしまう。寝ぼけまなこに、彼女は自分に様々な痛みをもたらした義眼をさすった。虚偽の目の力を借りることで、彼女はもう声、匂い、指先の感覚を頼ってぼやけた影を組み立てる必要はなくなった。\\n\\n「それは既に無用の物である」燼滅禍祖の使令は言った。彼女は扇子が風を揺らす音と、使令の微かな笑い声を聞いた。「もうすぐ、お主は見たいすべてを見ることになろう——お主の目でな」\\n\\n「今のこれが私の目でございます」彼女は軽く笑った。「それに、かつて見た美しい景色は、もう私には無縁のものです」" + }, + "31132": { + "Name": "蒔者の機巧義手", + "Desc": "長命種専用に造られた機巧義肢。使用時、肉体的な侵襲はない。", + "Story": "発育不全の腕の先に保護用の軟膏を塗り、神経信号受信器を皮膚の上にピタリと貼り付け、最後に締め付けを調整し、機巧義手をしっかり固定させることが彼女の数百年来の朝の日課である。\\n\\n義手は彼女に余計な注目を集めた。彼女は面倒事を招きたくないし、同情されるのも絶対に嫌だった。\\n\\n彼女のように何か欠けている人は、世にも稀有な才能を持ち、司部の決定権を握っていても、他人の態度から感じる疎外感を変えることはできなかった。弱きを虐げて強きを恐れる小物はいつか散り散りになっていなくなる。一方で自分が慈悲の心を持っていると勘違いしている偽善者は、ハエのように周りを飛び回り、「素晴らしく優秀な盲目片腕の天欠者だ」と言って彼女を賞賛するのであった。\\n\\n過去に何万回も聞いた言葉だが、そのたびに彼女は内心むかついた。そして、今彼女はその目で憐れみを乞うような眼差しを見たことで、更にイラついた。\\n\\n彼女は無意識のうちに熱い鼎炉に左手をついた。その刹那、鋭い痛みが伝わってきた——急いで手を引っ込めると、火傷は素早く治癒した。\\n\\n「時々、以前の義手の方が使いやすいと思うことがあります」" + }, + "31133": { + "Name": "蒔者の露払いの羽衣", + "Desc": "古書の記載を基に織られた羽衣。万古の妖の物であり、万人の救いの主の物でもある。", + "Story": "逸史の残篇の中から情報を探すことは盲目の人にとっては至難の業である。仲間は膨大な量の古書を漏らすことなく彼女に読み聞かせ、彼女はその中の文言を編纂し書き留め、秘密を探る。\\n\\n元来より聡明な彼女は、ほとんどの書籍を一度聞いただけで覚えることができた。しかし、古い文献の中から「被羽妖婦」の奇譚を見つけることだけは、何回聞いても満足できなかった。\\n\\nある洞天の主は伴侶を救うために、その身体を鳥雀の姿にし、生きながらえさせたという。しかし、彼女は鳥の呼び声に耐えきれず、同じように身体を変え、伴侶と翼を並べ飛んだ。長い歳月が経ち、洞天の主は自身の本性を見失い、半人半鳥の異形となってしまった。彼女の臣民が宮殿に攻め込み、燃える矛槍で彼女を刺し貫いた時、2羽の鳥は最後の哀歌を歌い、混ざり合う灰となり散った。\\n\\n彼女はこの物語をとても気に入っていた。だから鳥雀の精髄を採取し、丹鼎の間で形を錬化し、奢麗な羽衣を織るように命じた。彼女は羽衣の美しさを知ることはできないが、それを着て部屋の中を歩き回るのを好んだ——それは、もう存在しない人に見せるためであった。\\n\\n衣が風に揺れた瞬間、彼女はいつも魂が鳥のように指の間、肩の上を飛び、ずっとそこにいるように感じた。" + }, + "31134": { + "Name": "蒔者の天人絲鞋", + "Desc": "底が蝉の羽のように薄い絲鞋。靴の主は長い間、自分の脚で歩いていないのだろう。", + "Story": "彼女が人々に仙跡を披露するために、大地の支えを脱し、空中に浮く時、いつも無意識にある古い国の神話を思い出す——\\n\\n「かつて修道し成功を収めた者は、地上を歩き、地脈の気を読み仙道を展開した。それは千変万化で、当たらぬ預言はなかった。その修道者は風を御し空中を歩き、星々と同列に成ろうとしたが、自分がとっくに地脈を離れたことに気がつき、最終的には失脚して死の淵に堕ちた」という話である。\\n\\nしかし、今の状況は神話とは違うと彼女は唱える。仙舟にはもとより根はなく、「建木」がその根を与えることで、豊穣の主と一体化して共存し、薬師が承諾した果てしない浄土とも密接につながっている。そして今、裏切り者たちは仙道との繋がりを断ち切り、仙舟を再び漂う孤島にした。\\n\\n仙舟の偽りの大地は彼女に力を与えてはくれない。彼女が探し求めた根は足元ではなく、天空と深淵の間にあるのだ。彼女は蒔者を引き連れ「建木」を再生させ、豊穣のこの上ない恩恵を抱擁するのだ。\\n\\n彼女は薄い絲鞋を履き人々の頭上に浮かぶと、よく通る声で宣言した。「皆さんが見上げる時、見るべきなのは私ではなく、空高くにある本来皆さんに属す場所なのです」" + } + }, + "RequireNum": { + "2": { + "Desc": "最大HP+#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "装備キャラが攻撃を受ける、または味方によってHPを消費させられた後、会心率+#1[i]%#2[i]ターン継続。この効果は最大で#3[i]層累積できる。", + "ParamList": [ + 0.0800000000745058, + 2, + 2 + ] + } + } + }, + "114": { + "Name": "仮想空間を漫遊するメッセンジャー", + "Icon": "SpriteOutput/ItemIcon/71021.png", + "Parts": { + "31141": { + "Name": "メッセンジャーのホログラフィーゴーグル", + "Desc": "外見はスキーゴーグルに酷似している。眩しい光を防ぐだけではなく、バーチャル配信者の配信も視聴できる。", + "Story": "熱帯夜の都のメッセンジャーたちは財閥の自警部隊を避けるために、普段は比較的警備が少ない都の上空を移動する。\\n\\nメッセンジャーたちは安いガムを噛み、高度改造されたホログラフィーアイピースを装着し、パルスを起動しサイバー都市を丸ごとスキャンするのが好きである。\\n\\nアイピースは都市のリアルタイム情報を網膜に投影し、不可能なルートをメッセンジャーの空中回廊へと変化させた。建物の屋上、空調の室外機、広告板、タワークレーンのアーム…さらには物流ドローンまでもが空中回廊の一部となるのだ。そのため、メッセンジャーたちは十分なテクニックを身に付けなければならない。なぜなら一歩間違えてしまえば、墜落死してしまうからである。\\n\\n「ある馬鹿が無差別にアイピースをハックしたんだ。ちょうどその時、空中にいたんだけど。地面に落ちた時は本当に最悪だった」\\n\\nこの「イエローダック」のアイピースは生産終了した旧モデルで、愛好家の中では高い価値を誇るそうだ。" + }, + "31142": { + "Name": "メッセンジャーの百変義手", + "Desc": "好きに取り外しのできる機械義手。指の各節が弾丸のように発射できる。", + "Story": "すべてのメッセンジャーが機械義手を使っているわけではない。しかし義手を有するメッセンジャーはその改造に熱中している。自分のサイバー義肢が他の人と全く同じであることを容認できる人はいないからだ。\\n\\n熱帯夜の都の住民たちは、サイバー義体に夢中である。有限の都市の法律では、過度な義体化がもたらす熱狂に対する注意喚起しかできない。\\n\\n熱帯夜の都に登録された改造基準は3項目にざっくりと分けることのできる計18種しかなく、それは常軌を逸し道徳に背くメッセンジャーたちにとっては明らかに物足りなかった。彼らは奇想なデザインを生み出すことに巨額をつぎ込んだ。義手の電子転換器は落雷を放つことができ、義手はミサイルのように飛び出す…改造の青写真はどんどん大げさなものになり、メッセンジャーたちの担う送料もどんどん上がっていった。\\n\\n「メッセンジャーたちは情報を守るために奔走しているのだろうか、それともあり得ない程高い送料のために奔走しているのだろうか?」\\n\\nこの「イエローダック」の義手は既に特殊改造が施されており、指の各節が高速で旋回し、弾丸のように発射できる。" + }, + "31143": { + "Name": "メッセンジャーの密書ショルダーバッグ", + "Desc": "オシャレなメッセンジャーのバッグ。様々なアクセサリーが付けられており、可愛く見える。", + "Story": "熱帯夜の都の財閥たちは都市内のすべての情報の流動を監視している。情報を独占する方法で統治者としての地位を維持しており、転覆を企てる者はすべて治安法による規制を受ける。\\n\\nかつて人々は抗議をしたことがあり、財閥たちは便利な約束をした。すぐに、人々は「プライバシー」を諦めた。\\n\\n現実だろうと仮想の場だろうと、有用な情報だろうと無用な情報だろうと、事が重要だろうと些末だろうと、財閥たちは貪欲にそれらをかき集める。そうして、メッセンジャーたちのメッセンジャーバッグは「プライバシー」の最終防衛線となった。バッグは小さく軽く、チップや書類を携帯するのにしか使えない。しかし、まさにこのような狭い情報の盲点が、熱帯夜の都の残された「情報独立」を保障しているのだ。\\n\\n「どうして繁華な熱帯夜の都で、未だにネット以外の方法で情報を伝送する人がいるのだろうか?メッセンジャーたちもその理由を知りたい」\\n\\nこの数量限定の「イエローダック」のメッセンジャーバッグは少し古いが、様々なアクセサリーがそれをファッショナブルに見せている。" + }, + "31144": { + "Name": "メッセンジャーのパルクールシューズ", + "Desc": "自由にパルクールすることができるスケボーシューズ。履くと心地よい。それだけである。", + "Story": "熱帯夜の都でかつてのメッセンジャーたちはスケボーシューズを一か所に投げ捨て、短い沈黙の後に各自、その場を離れた。多くのメッセンジャーはこの都市に名前も痕跡も残さない。このような行為はただの自己満足の休符に過ぎない。\\n\\nメッセンジャーたちもいつの日から「メッセンジャーの性質」が自分が最も嫌うタイプに変化したのかうまく説明できなかった。\\n\\nいつの間にかメッセンジャーが保障する「情報独立」は独占になった。いつの間にかメッセンジャーたちが直面していたリスクは値段に変わった。いつの間にか、メッセンジャーたちは陰謀家の共犯となった…財閥たちは彼らを滅ぼしてはいない、未熟な理想がメッセンジャーを裏切ったのだ。すべてが制御できなくなる前に、メッセンジャーたちは一堂に会し、奔走するだけの生涯に別れを告げた。\\n\\n「もしかしたら、メッセンジャーたちはここで思いとどまって、すべての人にこの都市をしっかりと見つめさせ、真の革命家たちを動かすべきだったかもしれない」\\n\\nこれは道端に捨てられた「イエローダック」のスケボーシューズである。熱帯夜の都のメッセンジャーたちは既に過去の伝説となっている。" + } + }, + "RequireNum": { + "2": { + "Desc": "速度+#1[i]%。", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "装備キャラが味方に対して必殺技を発動した時、味方全体の速度+#1[i]%#2[i]ターン継続。この効果は累積できない。", + "ParamList": [ + 0.12000000011175871, + 1 + ] + } + } + }, + "115": { + "Name": "灰燼を燃やし尽くす大公", + "Icon": "SpriteOutput/ItemIcon/71024.png", + "Parts": { + "31151": { + "Name": "大公の冥焔の冠", + "Desc": "燃え続ける炎の冠。烈々たる野心は尽きることのない燃料である。", + "Story": "優雅な炎魔は燃え盛る炎の中から生まれ、壊滅こそがトフェトに与えられた至高の冠であると信じている。\\n\\n「私、壊滅の際に生まれし者、トフェトの罪悪の信仰。私こそ、ナヌークの憤怒の炎である」\\n\\nナヌークは自らの手でトフェトを滅ぼし、白星の烈火と壊滅の力がプラズマ生命体を育んだ。優雅な炎魔は己の誕生を天啓だと見なしている——「壊滅の君主は今日トフェトを征服し、それに燃え盛る炎を与えた。軽薄で空虚な栄誉は紅炎と共に散り、重厚な栄誉は私に冠を授けるだろう」アフリートは生まれた時から破壊と殺戮に溺れている。\\n\\n「世の中のすべての冠はイバラで編まれている。イバラの冠に勝るものは、私の冥焔の冠だけだ」\\n\\n壊滅の星神が星を滅ぼした余燼は、アフリートによってトフェトの王冠の形に整えられ、今でも身に付けられている。" + }, + "31152": { + "Name": "大公の炎の手袋", + "Desc": "炎を羽毛にした純白の手袋。すべての暴虐をシルクの下に隠している。", + "Story": "アフリートは無数の生命を滅する危機を企てた。大公自ら指揮を執り、手袋をはめてこそ、棘のある指揮棒を握ることができる。\\n\\n「私は壊滅の天啓に奉じるために来た。片手は奪うため、もう一方の手は与えるためにある」\\n\\n「物事の尊さは、その滅びの中にある」と信じてやまない冥火大公は、リサリット星の歴史と文化を滅ぼし、貴族の煌びやかな絹織物を焼き払い、詩人の贅沢な長い巻物を燃やし尽くし、画家の優れた壁画を灰燼に帰した…「文明は若虫と同じ。燃え尽きて黒い蝶のように舞うことでこそ、生まれ変わることができる」アフリートは火葬炉の監視をする葬儀屋のように、頭を低くして文明の絶唱を導いている。\\n\\n「私の努力、想像、指揮によって、演奏の順序、音調、速度が融合して素晴らしい壊滅のショーとなった」\\n\\nアフリートは満足のいく壊滅が終わった後、血に塗れた手を拭い、宴会に参加する裕福な客がつけるような純白の手袋をはめた。" + }, + "31153": { + "Name": "大公の恩恵のロングジャケット", + "Desc": "華やかで美しいジャケット。その持ち主の品格が窺える。", + "Story": "優雅な炎魔は非人道的な虐殺を行った後、姿見に映る自分の姿を鑑賞する。君主に謁見するには適切な装いをする必要があるからだ。\\n\\n「衣服は着飾るためでなく、本質を表現するためにある。烈焔の本質が壊滅にあるのと同じように」\\n\\n永遠に燃え続ける炎魔一族は、ナヌークを皇帝と見なし恩主と称したが、星神の一瞥を受けたことはない。アフリートの壊滅は誇示と権利、征服と動機が入り混じったもので、「永火官邸」と「ヤペラー ブラザーフッド」の争いはさらに醜いものだった。「不純な壊滅は汚れよりも華やかな服を汚しやすい」純粋という概念について、アフリートは終始要領を得なかった。\\n\\n「壊滅の価値は壊滅されるモノの価値にある。私たちの価値は君主の一瞥を得るまで壊滅を実践することである」\\n\\nアフリートは信心深く、ビロード色の炎で織られた華やかな服を身に纏い、壊滅の招待を待っている。" + }, + "31154": { + "Name": "大公の優雅なブーツ", + "Desc": "クラシックで履き心地のいいブーツ。完璧に手入れされている。", + "Story": "優雅な炎魔の足跡がくねくねと続く場所では、焼かれた文明がいつも静かに泣きながら訴えている。しかし、アフリートがそれを気にすることはない——\\n\\n「歩む道がない者に靴など不要だ。終わりに到達した文明が私に訴えて何になる?」\\n\\n焔の冠を被った「冥火大公」は、多くの文明から天外の悪魔とされているのだが、なぜか宴の星から招待を受け、嬉々として盛装して宴に出席した。「礼儀作法に則った壊滅を用意した。骨の一片も残せると思うな」優雅な炎魔は星間の悪党たちを集め、宴で死体の山と血の海を築こうとしている…滅ぼされた文明は、壊滅への巡礼の道でしかなく、ピノコニーも通過点に過ぎない。\\n\\n「お前たちを滅ぼしても、お前たちには関係ない。これは其の目を引くためだ」\\n\\n遠くから聞こえる宴会の声に誘われ、アフリートは嬉しそうに長い旅に出た。" + } + }, + "RequireNum": { + "2": { + "Desc": "追加攻撃ダメージ+#1[i]%。", + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "Desc": "装備キャラが追加攻撃を行った時、追加攻撃のヒット数に応じて、ダメージを与えるたびに装備キャラの攻撃力+#1[i]%、最大#2[i]回まで累積でき、#3[i]ターン継続。この効果は、装備キャラが次の追加攻撃を行った時に解除される。", + "ParamList": [ + 0.060000000055879354, + 8, + 3 + ] + } + } + }, + "116": { + "Name": "深い牢獄の囚人", + "Icon": "SpriteOutput/ItemIcon/71025.png", + "Parts": { + "31161": { + "Name": "囚人の獣面口輪", + "Desc": "獣の顔を拘束するための口輪。囚人が牙を剥くことを防ぐため、頑丈に作られている。", + "Story": "嗅覚はかつて歩離人の戦首の感覚世界を構成していた。雨、土埃、篝火、鮮血、傷薬…戦場の最深部からゆらゆらと伝わってくるその匂いが、洪水となって彼の精神を溺れさせる。\\n\\n彼は今、刑具の重さと堅固さ、そして陪審員の恐怖が空気を満たしていることしか嗅ぎ取れない。\\n\\n彼は知っている、か弱い陪審員たちが鋭い牙を恐れていることを——かつて、彼は険しい崖の上に立ち、狂気の月の光を浴びて、血の中の本能の衝動を感じた。かつて、彼は匂いで構成された迷宮を巡り、光のない夜に敵陣に深く入り込み、獲物の頭を噛み砕いた…歩離人の戦首の磨かれた牙は鋭く、白刃と見なされ、すべての力と自信を引き裂くものだった。\\n\\n「歩離の巣父、罪なき者を傷つけ、その血を啜った。十悪の重罪を犯した罰として、口を閉め歯を固め、拘束の覆面を生涯にわたり装着することを言い渡す」\\n\\n戦首は軽蔑したように周囲を見渡したが、荒々しい氷の海のようにすべてを席巻した剣客はここにはいない…彼は煩雑な判決の言葉には興味がなかった。" + }, + "31162": { + "Name": "囚人の鉛の手枷", + "Desc": "魔の手を縛る重い手枷。その手が二度と人を傷つけることのないよう、鋼の釘を腕に打ち込む。", + "Story": "雲が割れて霧が晴れ、淡い月の光が歩離人の戦首の傷だらけの体を照らす。銀髪の剣客に斬られた巨大な手は傍に落ち、万策尽きた戦首は血を流している。苦痛に満ちた遠吠えと共に、斬られたはずの手が再び生える。\\n\\n月狂いを頼りに、戦首はかろうじて月光のような剣戟を追う。彼は豊穣の力に黙祷を捧げ、最後の悪足掻きをすることにした。\\n\\n歩離の軍隊が何度包囲網の突破を試みたかは忘れた。覚えているのはただ、仲間が鋭い爪で何度も道を切り開いたのに、それがすぐに閉じてしまったこと。疲れ切った歩離人は壊れることのない再生能力を頼りに、すべての障害を取り除こうと奮闘する——混迷した狂気に陥り、戦首は鮮血を両手に注ぎ込む。だがその一瞬、逃げ場がなくなったことを、そして付き従う者がとっくにいなくなっていることにようやく気がついた。\\n\\n「歩離の巣父、その手で殺した命は数多。鉛の石で手を縛り、厳しく取り締まる必要がある」\\n\\n戦首はついに力尽きて剣客の前に倒れ、生まれて初めて疲労による瀕死を体験をした。「あれは比類なき剣だった」彼は思わず口にした。「あれは比類なき刺激だった!」" + }, + "31163": { + "Name": "囚人の幽閉拘束衣", + "Desc": "危険な重罪人を拘束する囚人服。関節を押さえ、囚人の変身能力を制限する。", + "Story": "歩離人は生まれつきの戦士である。彼らの骨格は広く高く、下顎と首の筋肉は強靭で、犬歯が発達しており、頭には獣の耳、そして手足には鋭い爪が生えている——氏族の同胞は逞しく丈夫な体を崇拝しており、それを神からの恩恵だと考えていた。\\n\\n戦首は精神的なリーダーであり、部族最強の戦力でもある。黒き潮の如く軍隊を指揮して、戦場で生死を支配する。\\n\\n出撃した凶悪な獣艦が天と地を覆う。彼は戦場にいる興奮した戦士たちを見下ろす——歩離人の戦首は月の狂気に呼応する。鋭利な骨が体を突き破り、漆黒の血が風に乗って霧のように散っていく。彼は殉教者のように両腕を広げた。歩離の狼毒——それは人を恐怖させるフェロモンだ。血の霧が広がっていくにつれ、鬼神が取り憑いたかのように、歩離人の戦士の感覚が刺激される。\\n\\n「巣父よ、我らに頑丈な肉体を与えたまえ。巣父よ、我らに神鬼に通じる力を与えたまえ」\\n\\n彼は肉体が縛りを受けない日を思い返す。「月狂い」を受けた歩離は肉体の限界を超え、皮は破れ肉は裂け、二度と痛みと恐怖を感じなくなる。彼らを導くのは、強者の特権と責任であった。" + }, + "31164": { + "Name": "囚人の歩みを阻む足枷", + "Desc": "獣の両足を縛る金属製の足枷。罪人の逃亡を防ぎ、問題を起こさせないようにするためのもの。", + "Story": "宇宙の中を遊牧している歩離人は、決まった場所に留まる文明の形態を蔑んでいる。彼らは平和と安定を攫い、大きな戦火をもたらすのだ。厳しい生存信仰によって彼らは戦い続け、常に血生臭い生に身を投じていた。\\n\\n彼らには己の信念と手段があり、歩離人の行く先は歩離人の領土となる。\\n\\n歩離人の戦首は幾度となく戦いの火蓋を切った。守護者の尊厳を押し潰し、離散者の涙を呑み、親しい者の信頼を踏みにじることを誇りとしていた。彼は荊棘の狂ったような成長に任せ、肥沃な土地をことごとく破壊した。そして人を奴隷にし、贅沢を享受した…歴代の王者を超えるため、新任の戦首は平穏を捨て、兵を率いて外界に遠征して戦の功績を立て、地位を固めるしかなかったのである。\\n\\n「歩離の巣父、行く先で戦に至り、災いは諸界に及んだ。その足を封じ、二度と生を受けさせてはならない」\\n\\n戦首はその判決の言葉に疑問を覚え、周囲を見回したが、弱者たちの審判に驚いた。何しろ彼らが罪と称するそれは、ただの生存法則に過ぎないのだから。" + } + }, + "RequireNum": { + "2": { + "Desc": "攻撃力+#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "敵に付与された持続ダメージ系デバフが1つにつき、装備キャラがその敵にダメージを与える時に防御力を#1[i]%無視する。持続ダメージ系デバフは最大で#2[i]つまでカウントされる。", + "ParamList": [ + 0.060000000055879354, + 3 + ] + } + } + }, + "117": { + "Name": "死水に潜る先駆者", + "Icon": "SpriteOutput/ItemIcon/71028.png", + "Parts": { + "31171": { + "Name": "先駆者の断熱ヘルメット", + "Desc": "エオルケロンでよくみられるデザインの潜水用のヘルメット。この小さなシールドから見えるのは、人には耐えきれない無限の暗黒のみ。", + "Story": "エオルケロンの夜の空は、積雲ときらめく星の輪に覆われている。赤紫色の雪が分厚いヘルメットの上に降り積もり、錆びた溝を埋めて浸蝕の痕を隠した。彼女たちはヒマラヤスギ林の間に座って…旅の途中の休憩を堪能している。\\n\\n「見て!エオルケロンの空気ってラズベリーの匂いなんだね」赤紫色の雪が、雲のようにふわふわしたマシュマロの上に落ち、すぐに溶けた。ティロからやってきた小さなナナシビトはクスクスと笑い、そしてすぐに腰をかがめてお腹を抱える。彼女は自分の言葉に笑った——匂いは目で見ることなんかできないのに!笑いの後、ナイフのように鋭い静寂が訪れる。まるで、空気が凍り付いたかのようだった。\\n\\n「フリバス、まだ『IX』の深部に行くつもり?」いつも長い刀を身に着けた旅の仲間が質問する。彼女はとてもいい仲間だが、どこから来たのかは誰も知らない。\\n\\n小さなナナシビトは重く大きな潜水服の中でしばらく沈黙した。そして彼女は、帆を張ったように目を細めて、相手に少し焦げたマシュマロを手渡す。\\n\\n「もちろんだよ——だって私は、アキヴィリよりもさらに深く遠い道を歩むつもりだから!」" + }, + "31172": { + "Name": "先駆者の虚極コンパス", + "Desc": "時計型のコンパス。針はすでに取り外されていて、どの方角も示せない。", + "Story": "「海底の海流」\\n「共に過ごす時間の中で、囁いては彼女の骨を突っつく」\\n「彼女は白秋と青春を経験し」\\n「そして渦中へと入った」\\n\\n少女はこんな物語を聞いたことがある。話の中で、人々が住む世界は、無主のエネルギーによって構築された天に届くほどの巨木として描かれている。「このエネルギーは見えないし触れもしない。そして、理解できなくて無意味だ」と彼女は考える\\n「『IX』みたいに意味がない」\\n\\n小さなナナシビトは少しがっかりし、自分が「虚無」の深部に足を踏み入れた後、どうやって方向を認識すればいいか悩んだ。少しして、彼女は思いつく——14歳の時、母親は彼女に最後の誕生日プレゼントとして小さなコンパスを渡していた。\\n\\n「だったら、コンパスが磁場じゃなくて『エネルギー』を感知できるようにすれば、解決するよね?」\\n\\n小さなナナシビトはコンパスから針を取り外す。少女が暗闇に潜った瞬間、コンパスはただ下を向いていることに気が付いた。" + }, + "31173": { + "Name": "先駆者の密閉された鉛の潜水服", + "Desc": "鉄のガラクタで作られた気密性の高い頑丈な潜水服。使用者はよく、潜水服というより深水用の棺桶のようだと冗談っぽく言っている。", + "Story": "「フリバス、あのティロのナナシビトは、14日間死んでいた」\\n「彼女はカモメの鳴き声や深淵の波の声」\\n「そして、利益と損失も忘れた」\\n\\n小さなナナシビトは、ティロの大通りから星の輪を眺めていた。彼女はブラックホールの特異点に自分の身を投げ出すことを決意する。\\n\\n「アキヴィリですらあそこには行ったことがない」少女の心の奥底にはいつも、波の音が響いていた。「絶対に其よりも深く、遠くに行く」彼女はそのために十分な準備をする——どこのものかわからない錆びた鉄の板、中古の酸素ボンベ、廃棄されたジャイロ姿勢制御装置、自律型循環生命維持システムにフェアリング…これらの材料をすべて1つにしてスーツの気密性を確保した。彼女はこれで「虚無」の被害から身を守れるだろうと考えたのだ。\\n\\n父が残した潜水ヘルメットを拾い上げ、手作りの「栄誉バッジ」を取り付ける。出発前、彼女は旅の仲間と再度ヒマラヤスギ林に行き、最後にもう一度マシュマロを焼いた。\\n\\nその後、フリバスの飛行マシンがブラックホールの淵に近づいた時、これが彼女が思い出せるエオルケロンに関するすべての記憶だった。" + }, + "31174": { + "Name": "先駆者の星に泊まるアンカー", + "Desc": "その重い靴は船の錨に似た形をしている。この靴の持ち主は二度と水面に戻らないつもりだった。", + "Story": "「舵輪を回して風向きを眺める君たちよ」\\n「彼女——フリバスのことを考えたまえ」\\n「かつては君たちのように美しく長身であった」\\n\\n錨のような鉛の靴は、少女をいつも落下させた。靴は設計当初に与えられた使命を忠実に果たしている。\\n\\n少女は目を決して閉じず、冷たく孤独な暗黒に頑として立ち向かう。彼女は初めてアキヴィリの物語を聞いた時のことを思い出した。旅立ちの日、自分のために作った「栄誉バッジ」のこと。仲間と一緒に旅した30日間のこと。最初で最後に会った林の空き地の空気がラズベリーの匂いだったこと。口笛、ギター、竹笛、そして一緒に歌った歌のこと。赤紫色の雪が少し焦げたマシュマロの上に落ちて、すぐに溶けたこと。\\n\\nありありと思い浮かぶ記憶の最後に、途方もない空虚が訪れようとした時、彼女は黒い世界の中心に真っ赤な閃光が突然現れては一瞬で消えるのを目撃した。\\n\\n小さなナナシビトは最後に、長い刀を身に着けた彼女からマシュマロを受け取り、心の底から笑った時のことを思い出した。\\n\\n「自分と同じような人に出会えるなんて思ってもみなかった。この『道』においては、あなたは私より長い距離を歩んでいる」\\n「だから、あなたは最後まで私と歩んでくれる、そうでしょ?」\\n「もちろん、私たちの結末はとっくに決まってる…でも、あなたの言う通り——」\\n「たとえ、最終的に私が浅い死水になるのだとしても、そこに向かう途中でできることはたくさんある。だから、どんなことにも挑戦してみたいの!」\\n「だって私は、アキヴィリよりもさらに深く遠い道を歩むつもりだから!」" + } + }, + "RequireNum": { + "2": { + "Desc": "デバフの影響を受けている敵への与ダメージ+#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "会心率+#1[i]%。デバフを#4[i]/#5[i]つ以上付与されている敵に対する、装備キャラの会心ダメージ+#2[i]%/#3[i]%。装備キャラが敵にデバフを付与した後、上記の効果が2倍になる、#6[i]ターン継続。", + "ParamList": [ + 0.0400000000372529, + 0.0800000000745058, + 0.12000000011175871, + 2, + 3, + 1 + ] + } + } + }, + "118": { + "Name": "夢を弄ぶ時計屋", + "Icon": "SpriteOutput/ItemIcon/71029.png", + "Parts": { + "31181": { + "Name": "時計屋の望遠レンズ", + "Desc": "金の彫刻が施されたレンズ。レンズには遠くにある様々な奇妙な現象が映り、持ち主が夢の迷路を見通す助けをする。", + "Story": "ピノコニーの「時計屋」に関する物語の中で、彼はいつも特別な慧眼で、容易く夢幻泡影の陰にある商機を見抜き、誰にも想像できない偉大なる事業を成し遂げてきた。\\n\\n辺境の監獄は万界の癌の中で自由を勝ち取り、ファミリーの光の下で平和と繁栄をもたらした。時計屋はこの時に現れたと言われている。彼のレンズはこの夢境の本質を映し出す——人々は「夢の中で不可能なこと」を探すためだけに、「黄昏の刻」で金を湯水のように使った。それ以来、ピノコニーの夢には、談笑するティーポット、走りながら回転するスポーツカー、毎日場所を変える豪邸…などの不可思議なものがたくさん現れるようになったのだ。何の役にも立たないが、これらは天文学的な数字で売られており、遠方から来た人たちは大金をはたいて購入する。\\n\\nこれが幻の夢の世界なら、なぜ狂想のままに振舞わないのか?「夢の中だけにある唯一無二」という言葉が、夢境の中の贅沢さと価値を再定義した。\\n\\nルーサン家ビジネス界の老いた夢追い人たちはことあるごとに後悔し、なぜもっと早くこのチャンスに気づけなかったのかと自分を責めた。時計屋は彼らより、少し遠くを見ているだけなのだ——いつも、少し遠くを見ているだけ。" + }, + "31182": { + "Name": "時計屋の運を引き寄せる腕時計", + "Desc": "精巧に作られた腕時計。独特な文字盤と指針を備えており、夢境の中で幸運の象徴だと言われている。", + "Story": "「時計屋」がそう呼ばれている理由は、シリーズ最大の謎である。\\n\\n時計台の修理職人だったという人もいれば、時計を売る行商人だったという人もいる。はたまた彼が創作したクロックボーイのような頭をしているからだという人も。\\n\\n噂が広まるにつれ、夢の中の腕時計もまた時計屋の名声にあやかって人気を博していった。夢追い人たちは、それら時計が尊敬の対象となっている男とは何も関係ないことを知っていても、依然としてそれらを彼への敬意と幸運を象徴するものだと見なしている。一連の商業活動を経て、時計のシンボルはピノコニーで最も見かけるものとなった——服、アクセサリー、食品…さらには街頭のラクガキからホテルのロビーにある大時計まで、この伝説的な大人物の影はどこにでもある。\\n\\n「ピノコニーで時計が嫌いな人なんていないよね?」\\n\\nそして、本物の時計屋はすべてを黙認しているようで、最初の腕時計について意見を表明したことはない。かくして時計のシンボルはピノコニー中に偏在するようになり、時計屋の由来を知ろうとする人はいなくなった。" + }, + "31183": { + "Name": "時計屋の虚空礼服", + "Desc": "きらびやかで豪華な革襟の礼服。通常はパーティーなどの正式な場で使用される。", + "Story": "ピノコニーに数多とある噂において、「時計屋」はそれぞれまったく異なる身分と外見を持っている。\\n\\n根拠のない架空の物語では、親切な老人だったり、エレガントな女性だったり、高身長の巨人紳士だったりする。しかしどの物語でも、彼が華やかな身なりをしていることは共通していた。\\n\\n時計屋は朝と黄昏が入り交じる夢境におり、自らの秘密をダンスのパートナーとなった相手にシェアするとされている。この噂を聞いた人々はこぞって華やかな装いで舞踏会に参加し、人々の中に隠れている謎めいた賓客を片っ端から誘った——これをきっかけに知り合いとなる夢追い人たちがどんどん増え、舞踏会も徐々に友情と愛情を交わす場所となった。噂に聞く華やかな身なりの主人が姿を現さなくとも、賓客たちの出会いを求める情熱は冷めることなく、高価なチケットは毎回売り切れだった。\\n\\n「その身なりはまさか、かの有名な時計屋では?」この言葉は最初こそ誠実な質問だったものの、後には誉め言葉、最終的にはダンスの誘い文句となった。\\n\\n時計屋は舞踏会という新たなビジネスを確立し、夢境には更なるロマンと激情が溢れるようになった。" + }, + "31184": { + "Name": "時計屋の隠された夢の革靴", + "Desc": "エレガントなデザインの革靴。これを履いた者はかつて、秘密の姿で夢に潜行していた。", + "Story": "「時計屋」はすべての夢境に足を踏み入れたことがあり、ピノコニーの歴史もすべてその足でたどってきた。彼の名は既に夢の地で数百年にわたり流れているが、夢追い人たちは依然として彼の動向を耳にすることがある。\\n\\n人々はだんだんと、時計屋が個人なのか団体なのか、はたまたファミリーが流している嘘なのかと疑い始めた。\\n\\n夢追い人たちの中には時計屋の謎を解き明かすと誓い、それぞれの夢境に向かって謎めいた有力者の痕跡を探す者もいたが、結局それは蜃気楼に近づくようなものだった——とある商談の席にいた謎のゲスト、突如として現れた立ち上げ人のわからないブランド、出所不明の巨額の投資…人々が時計屋など存在しないと考えるたび、時計屋は夢のどこにでもいることを証明した。\\n\\n「覚醒図書館」の書架は時計屋に関する書籍で埋め尽くされ、彼の名前は永遠にピノコニーに付きまとう。\\n\\n人々が探ろうとすればするほど、真相は嘘に隠されていくのだ。この「スター・オブ・ザ・フェスティバル」は千の物語と万の噂の中に足跡を残すのみで、その姿を見せたことはない。" + } + }, + "RequireNum": { + "2": { + "Desc": "撃破特効+#1[i]%。", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "装備キャラが味方に対して必殺技を発動する時、味方全体の撃破特効+#1[i]%#2[i]ターン継続。この効果は累積できない。", + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + }, + "119": { + "Name": "蝗害を一掃せし鉄騎", + "Icon": "SpriteOutput/ItemIcon/71032.png", + "Parts": { + "31191": { + "Name": "鉄騎の索敵用ヘルム", + "Desc": "感覚器官の信号を大幅に強化する鋼鉄のヘルム。グラモスの鉄騎の意識を装甲と融合させている。", + "Story": "太陽の光を遮っていたスウォームが炎の海で灰となり、銀白色の雪が深宇宙に漂い、恒星の淡い光を照らしている。この瞬間だけは、耳元で絶え間なく響く羽音も、通信チャンネルの命令も静かになるのだ。\\n\\n「帝国」を襲撃したスウォームは掃討されたわけではない。少し時間が経てば、またいつものように次の出撃命令が鳴り響くだろう。\\n\\n「帝国」の鉄騎である彼女は、深髄信号の伝達によってもたらされる外の世界の風を感じながら、前回装甲を解除した時のことを思い出していた。熱風が長い髪をなびかせ、熱を帯びた空気が首筋に纏わりつき、その肌は汗をかいている。彼女はそのような感覚が嫌いではなかった。なぜならそれは、模擬信号よりも遥かに生き生きとしたものだからだ。装甲は感覚器官とパイロットを深く同期させる。それによってロストエントロピーの苦痛が増そうとも、虫の末裔に打ち勝つためには、もはや鉄騎に選択の余地などないのだ。\\n\\n「グラモス軍規第8条、生存者は速やかに帰還せよ……」\\n\\n鉄騎が首のない銀色の甲冑を目にした時、ようやく装甲の感覚信号が自分を欺いていたことに気がついた――もう次の出撃命令が鳴ることはない。なんと残酷で短い休息なのだろうか。" + }, + "31192": { + "Name": "鉄騎の粉砕アーム", + "Desc": "虫の末裔を粉砕する強力な鉄腕。硬く頑丈でありながら、鋭く軽い。", + "Story": "グラモスの鉄騎は鉄の拳に力を込め、汚れた鞘翅を引き千切った。圧力を失った虫の腹からは腐食性の液体が噴き出したが、銀色の甲冑に触れた瞬間、それは気化して血の汚れだけが残った。\\n\\n装甲と虫の足の残骸が深宇宙に散乱する中、グラモスを取り囲んでいた「死の川」が重力に引っ張られ、静かに流れていく。血戦はようやく終わりを迎えたのである。\\n\\n議会の指導者たちは戦後の情勢について話し合い、これまで実権を握ったことのない「ティタニア」に審判を下した。虫たちと互角に渡り合える鉄騎兵団を従える彼女の存在は、今後共和国存続の最大の脅威になり得ると判断されたからだ…人々は平和の鐘を鳴らし、スウォームが消え、澄んだ青空が再び共和国に戻ったことを宣言した。\\n\\n「『女皇』に制約を課さなければ、誰もあの兵器を制御できないだろう?」\\n\\n鉄騎たちは短い生涯の中で、絶えず己の腕を磨いている。だからこそ、議会の者たちの青白く、力のない節くれ立った手が高く掲げられるだけで、グラモスの命運を左右するほどの力が発揮されることなど、彼らは考えたこともなかったのである。" + }, + "31193": { + "Name": "鉄騎の銀影アーマー", + "Desc": "激しい炎を放つ推進装甲。グラモスの鉄騎に戦場を焼き尽くせるほどの力を与える。", + "Story": "いくつもの激しい炎の筋が夜空を切り裂き、黎明を迎えつつあった地平線を越え、グラモスの各星域へと向かっていく――それは共和国の住民にとって最も身近で、最も恐れている日常だ。\\n\\n銀の装甲が空を飛び、一刻を争いながら戦場へと急ぐ。自分たちが日夜守っている光景を見下ろす暇などありはしない。\\n\\n女皇の命令は絶対だ。似たような顔の兵士が培養カプセルから生まれ、女皇に忠誠を尽くしてグラモスの空を奪還すると誓った。鉄騎は飛虫の屍の山と血の海を越え、虫の殻の余燼すらも焼き、鋭い歯の生えた巨大な顎の残骸を粉砕する…グラモスの鉄騎の宿命は、慢性的に解離するエントロピー変化に耐え、生と死の狭間で激しく燃え上がることである。\\n\\n炎が完全に掻き消え、空を覆う虫が黒い焦土へと変わり、生きて帰ってくる者がいなくなるまで――この日常は続いていく……\\n\\n生きるとは何なのだろうか?推進装甲の加速で胸が締め付けられ、ロストエントロピーで麻痺していた苦痛が四肢に現れる時だけ、彼らは微かに「生」を感じられるのである。" + }, + "31194": { + "Name": "鉄騎の飛翔グリーブ", + "Desc": "破壊力とスピードを兼ね備えた鉄騎のグリーブ。これによりグラモスの鉄騎は高く跳び上がり、力を集中させた蹴りを敵に放つことができる。", + "Story": "鉄騎の足跡は燃える流星のように、グラモス「帝国」の隅々にまで広がっている。しかし、それでもティタニアが紡ぐ「夢」から抜け出すことは叶わない。\\n\\n共和国の人々は戦いのために生まれた兵団を警戒していた。それまで存在しなかった「帝国」と自分たちのよく知る「共和国」は、一体どれほど重なる部分があるのだろうか……\\n\\n女皇は自分の騎士たちに名誉と信仰を授け、鉄騎は女皇に忠誠と誓いを捧げた…新人類は続々と培養カプセルから生まれ、ナンバーと使命を与えられている。そして旧人類は鋼鉄の壁の下に隠れ、長く待ち望んだ平和を怯えながら享受している。この平和という嘘は誰かの手によって暴かれなければならない…人類の本質を揺るがす戦争の手段など、この世に存在すべきではないのだ。天災さえ消え去れば、心に恐怖を抱く人々は、歪んだ戦争の産物を徹底的に破壊するに違いない――\\n\\n鉄騎のグリーブが空を突き破る。彼らが望むなら、どんな星にも辿り着けるだろう。\\n\\nしかし、もはや「帝国は」どこにもなく、鉄騎たちの前にあるのは定められた奇跡だけだった。1つは「死」に、もう1つは「自分」に繋がっている。" + } + }, + "RequireNum": { + "2": { + "Desc": "撃破特効+#1[i]%。", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "装備キャラの撃破特効が#1[i]%以上の時、敵に与える弱点撃破ダメージが防御力を#3[i]%無視する。装備キャラの撃破特効が#2[i]%以上の時、さらに敵に与える超撃破ダメージが防御力を#4[i]%無視する。", + "ParamList": [ + 1.5000000004656613, + 2.5000000004656613, + 0.10000000009313226, + 0.1500000001396984 + ] + } + } + }, + "120": { + "Name": "風雲を薙ぎ払う勇烈", + "Icon": "SpriteOutput/ItemIcon/71033.png", + "Parts": { + "31201": { + "Name": "勇猛な鋭嘴フェイスガード", + "Desc": "凶鳥「タイフーン」をモチーフにしたフェイスガード。2対の補助眼は奇跡を目撃したことがある。", + "Story": "彼女の鷹の兜には2対の補助眼があり、どのような光の中でも周囲の環境をはっきり視認できるようになっている。しかし、この時は補助眼に乾いた血が付着していたため、視界は見渡す限り錆びた鉄の色に染まっていた。\\n\\n昏睡状態から目覚めた将軍は、死体の山を這い上がった。背後には「瞰雲鏡」が高い塔のように天に向かって聳え立っている。塔の先端では一筋の光が動き続け、観星士たちにしか解読できない暗号を繰り返し発していた。それは同盟の無数の民たちの願いを受け、神に祈りを捧げているのだ――彼女が周囲の事切れた仲間たちと必死に戦い続けてきたのは、この小さな声を神のもとに届け、死を授けてもらうためだった。\\n\\n「来た…」そう呟いて、将軍は空を仰いだ。彼女は神の姿を見ることも、声を聞くこともできなかったが、その訪れの気配を感じることはできた。まるで灼熱の気流が舞い上がり、焼けた鉄が肌の上を走り回っているようだ。血の霧の中で赤い火花が飛び、空を覆うように広がっていく。そして次の瞬間、直視できないほどの光によって引き裂かれた――\\n\\n来た。無数の戦士たちの死と引き換えに、奇跡が起こったのだ。彼女は神の罰によって死の土地と化した星の残骸を見たことも、その光の痕跡を追いかけて戦ったこともある。その光は極めて早く、少しの雑念も許さないと思っていたが、彼女は間違っていた。その瞬間は少なくとも、自分の愛する弟子を思い浮かべるには十分な時間であった。\\n\\n「では願いを捧げよう。彼女が平坦な道を歩めますように――」\\n\\n大地が激しく渦巻き、光の海の咆哮と共に襲い掛かってくる。この時の彼女は雑念を抱くことなく、光の中で塵埃と化した。" + }, + "31202": { + "Name": "勇猛な鉤爪ガントレット", + "Desc": "腕の形にぴったりと合ったバイオニックアームプロテクター。猛獣を狩るには、猛獣よりも鋭い爪と牙が必要だ。", + "Story": "彼女の指揮下にある青丘軍の戦士たちは、歩離の狼兵にも劣らない勇敢さを備えている。たとえ武器が壊れ素手になったとしても、彼らは指の爪だけで最後まで戦い続けられるだろう。\\n\\n噂によると、青丘衛の狐族の戦士の多くは、歩離人が統治する世界から救出されたのだという。そうした「陥落地」で生まれた狐族は歩離人との混血であるため、しばしば突然変異で先祖返りする個体が現れる。そのような狐族は戦奴にされ、狼主たちに前線の先鋒として駆り出され、仙舟の攻撃を食い止めるための捨て駒にされるのだ。\\n\\n「青丘軍に加入した者には、狼主たちに復讐する機会を与えよう!」将軍は新兵募集の折、幼い狐族の少女にそう言ったことを覚えている。同時に、後に続く言葉を口に出せなかったことに罪悪感を抱いていた。「あなたも私と同じように、戦いのために生まれ、戦いのために死ぬのだ」。\\n\\n戦奴は狼主に匹敵する力とスピードを持っているが、彼らの命と理性は突然変異によって削り取られている。怒りで意志が燃え尽きた時、戦奴は凶暴で血に飢えた怪物になってしまうのだ。\\n\\n純粋なる野性の怒りに肉体を支配された者は、生涯最後の狩りを終えた時、そのアームプロテクターが両手を拘束する枷に変わり、二度と肉体から引き離せなくなる。" + }, + "31203": { + "Name": "勇猛な蒼羽アーマー", + "Desc": "狼の群れの上を風のように飛翔する。狩る者と狩られる者、その立場はいずれ入れ替わるだろう。", + "Story": "彼女は狐族の古い民謡を今でも覚えている。それは曲にはなっていない歌で、故郷を失ったことを嘆き悲しむ哀歌だ。「狐綏綏として彼岸の浜にあり。道行くこと遅遅にして飢渇は避らぬ。我が心悲哀に暮れるも、それを知る者なし」……\\n\\n数千年前、彼らは狼の爪の下で家畜となり、奴隷となり、通貨となった。そして数千年経った今、依然として同胞を解放するため征戦を続けている。天敵のように強靭で変異を続ける肉体は持たないが、彼らは機敏で機知に富んでいる。\\n\\n狼主は彼らに道具を作るよう命じたが、その技術を学ばないよう両の目を抉り、道具を模造しないよう金属を持つことを禁じた。しかし、それでも狐族の内なる渇望を消し去ることはできなかった——いつの日か狩られる側の恐怖を狩人にわからせ、この立場を逆転させ、追い掛け回してやるという渇望を。\\n\\n最終的に、狐族たちは磁器を焼いて甲冑を作った。青丘の磁器甲冑は風のように軽く、鋼鉄のように堅い。狼主の手下も、肉体という名の武器も、その甲冑を傷つけることはできなかった。\\n\\n将軍はその磁器の甲冑を身に纏い、青丘衛の戦士たちと共に風に乗って立ち上がり、歩離人たちを苛む悪夢となった。彼らは隊列を組んで進軍と後退を繰り返しながら、まるで狩りに臨む鳥の群れのように互いに呼応している。しかし、その甲冑がいかに頑丈であろうとも、彼女は「苦痛によって鍛えられた肉体こそが最高の武器であり、苦難を共にした戦友こそが最高の防具である」と最後まで信じていた。\\n\\n「鳥は羽翼を広げ、獣は牙と爪を露わにする。我らには何もないと誰が言った?同胞こそが鎧である」" + }, + "31204": { + "Name": "勇猛な狩猟キュイス", + "Desc": "鳥獣の爪で作られたバトルブーツ。これを履いた者は風のように素早く戦場を駆け、茨の道も難なく進むことができる。", + "Story": "霞んだ月の下で、彼女は脱兎の如く動き回る少女の姿を見ていた。そして獲物を追いかける狩人のように、その足跡と匂いを追い、道の終わりで少女が来るのを待つ。\\nあるいは、少女が彼女を待っていたのかもしれない。\\n\\n月明かりの下で、将軍はその顔をはっきりと見た。\\n「そんなに雲騎軍に入りたいのか?」\\n「狼主のために命懸けで働くのは嫌」\\n少女の歩離語は途切れ途切れで聞き取りにくかったが、その表情は陥落地で同胞を救出した際に幾度となく見たものだった。\\n彼らと彼女は同じ血を引いてはいるが、異なる言葉を使い、異なる考えを持っている。\\n彼らは自分が狐族の子孫であるとは考えていない。では、彼らは一体何者なのだろうか?\\n将軍は微かに身を震わせ、道をあけた。\\n「行きなさい。今夜から、奴らはあなたを追ってこない……」\\n「でも、私は奴らを殺したい」\\n\\n空を横切る流れ星を目撃した時のように、将軍は信じられないといった様子で彼女を見つめたが、小さな獣のような姿は一瞬にして暗闇の中に消えてしまった。\\nまるで月明かりに目を焼かれてしまったかのように、将軍は目を閉じる。しばらくして俯き加減に瞼を開けると、そこには少女の足があった。靴を履いていない両足は、棘が刺さったことによってできた傷と泥にまみれている。\\n\\n「どうして靴を履いてないの?」\\n「忘れてた、気づかなかった」\\n将軍は自分の靴を脱ぐと、サイズを比べて少女に履かせた。\\n「ぴったりね…じゃあ出発しましょうか」\\n「あなたはどうするの?」\\n「大丈夫、棘の上を歩くのには慣れてるから」\\n\\n足を踏み出した彼女は、裸足でありながら飛ぶように進んでいく。そんな彼女の後ろ姿に、少女はぴったりとついていった。\\nあるいは、彼女たちはお互いの姿を追いかけていたのかもしれない。" + } + }, + "RequireNum": { + "2": { + "Desc": "攻撃力+#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "装備キャラの会心率+#1[i]%。装備キャラが追加攻撃を行う時、必殺技によるダメージ+#2[i]%#3[i]ターン継続。", + "ParamList": [ + 0.060000000055879354, + 0.3600000003352761, + 1 + ] + } + } + }, + "121": { + "Name": "再び苦難の道を歩む司祭", + "Icon": "SpriteOutput/ItemIcon/71038.png", + "Parts": { + "31211": { + "Name": "司祭の音律奏でる耳飾り", + "Desc": "彼は往々にして告解室の中に座り、耳を傾ける。その耳飾りは、どんなに小さな囁きにも重みがあるのだと、絶えず彼に思い出させてくれた。", + "Story": "「あなたの意志に従います。私は過ちを犯しました。それぞれのクランの間に隔たりがあると嘘をつき、その新聞種と引き換えに情報料を手に入れました……」\\n\\n当主は窓越しでも、その記者が目を逸らして自分の反応を慎重に待っていることがわかった。それなら数えきれないほど繰り返されてきた「神聖な告解」のように――鈴の音のような慰めの言葉で信者たちに己の罪を悔い改めさせればいい。しかし今、彼は無意識に顔をそむけ、言葉を飲み込んでいる。耳元で金属の耳飾りが立てる澄んだ音も、今は雑音のように聞こえた。\\n\\n「よくわかっています、これがデタラメな話だということを。デウムの恩に報いて、ファミリー全体が一丸となること…それこそが多くのクランメンバーの願いであり、彼らがデウムの元に身を投じる理由でもあります」\\n\\n罪を告白した者は悔い改め、和音から赦しを得るための洗礼を受ける。当主は静かに目を閉じ、聖なる言葉を告げた――\\n\\n「よろしい。他の家族に誠実な姿を見せ、流言飛語を訂正なさい。そうすれば、再び和音を取り戻すことができるでしょう。さあ、心安らかに帰りなさい」\\n\\n真実の言葉と善意の言葉を語ることのどこに罪があるというのだろうか?彼の言葉は明確であったが、その音律は枷のように重く響いた。当主はため息をつき、首を横に振る。\\n\\n「…次の方、前へ」" + }, + "31212": { + "Name": "司祭の招請用の手袋", + "Desc": "彼はしばしば訪問者を迎え入れたり、たくさんの人を館に招待したりしている。その手袋は謙虚さと礼儀を忘れないようにと彼を戒めていた。", + "Story": "「当主、この者たちは大切な用があるので当主にお会いしたいと申しております。ですが、うち何人かは身元が怪しく、夢に入った手段も一般的なものではありません……」\\n\\n夢に侵入してきた招かれざる客たちが並んでいる。当然のことながら、悪意を持った殺人者は追い出され、身元を偽った犯罪者は拘束される。一言も発することなく、彼はすでにそれらの段取りを済ませていた。無実の者たちは彼の怒りを目の当たりにし、期待と不安が入り混じる中で目を輝かせている――すると彼はほほ笑み、目の前の者たちに手を差し出す。それは皆をオーク家へと迎え入れる招待の意であり、同時に威厳を示すものでもあった。\\n\\n「皆さんはオーク家の大切な客人ですので、礼を尽くすのは当然です。なぜ自分が正当な評価を受けたのか、不思議に思われるかもしれません。少しだけ説明させていただきますと、それは皆さんが歩んできた『道』がワタシと重なったからです」\\n\\n使用人、役者、無職の者…彼らは招待における誠実さを理解すると、次々に疑念を払拭し、懸念を一切残さなかった。\\n\\n「罪人には相応の罰を、客人には相応の礼を。それが調和本来のあり方です」\\n\\n当主は優しさと威厳の両面を見せ、訪問者たちの信頼を十分に勝ち取ったのだ。彼は一同を見渡してから、ゆっくりと一礼する――\\n\\n「オーク家へようこそ」" + }, + "31213": { + "Name": "司祭の聖職礼服", + "Desc": "彼は普段から姿見の前に立ち、身なりを整える。外出前にすべてが整然としていることを確認し、あらゆるものが決して乱れることがないようにしていた。", + "Story": "「♬…鳥が生まれながら自由だと言うのなら、何が私の運命を縛っているの?」\\n\\nリハーサルの日、ステージに立つ歌手の邪魔にならないよう、若き当主は観客席の隅に身を隠した。ちょうどいい距離感こそ、彼が望んでいたものだ。礼装を身に纏い、襟を正して座っている彼は、この時、たった一人の観客であった。馴染みのある歌声の中で、彼の思考は子供時代に戻っていく。あの時も同じように彼女は「ステージ」に立って歌い、彼はたった一人の観客だった――\\n\\n「ここのところ、ずっと楽しく歌う機会がなかったよね…だから、ステージを用意したんだ。ちょっと…粗末だけど」\\n\\n2人だけのコンサートで、彼はいつの日か彼女の夢を叶え、もっと大きくて輝かしいステージへ連れて行くと約束した。\\n\\n「♬私の心を勇敢に羽ばたかせる、舞い上がり夜の闇を抜けて、美しい月の光に向かって飛べるように……」\\n\\n彼はしばらくぼんやりしながら、ステージに近づけない理由に向き合った――礼装を身に纏っているのは、公演を楽しむためではなく、いつでもその場を離れられるようにするためだ。\\n\\n「おめでとうございます、妹よ。ワタシたちの夢はすべて叶いました」彼は小声でそう言った。" + }, + "31214": { + "Name": "司祭の苦旅を共にするブーツ", + "Desc": "彼は毎回旅に出る前に、足に合ったブーツを選んでいる。彼は幾度となく転んだが、同じ回数だけ立ち上がった。", + "Story": "「行きなさい、あなたは自由よ。己の本分を超えようとした、神に選ばれし者…その翼を折り、俗世を訪れ、大地を歩き、この世界の真の姿を見てくるの」\\n\\n以来、彼はよくカンパニーの幹部が放った言葉の意味を思い返していた。喧騒に包まれた街を歩き、静かな海辺を歩き…そうして歩き続けていたが、実際は一歩も前に進んでなどいない。彼は自分が不屈の精神を持っていることも、決断力や行動力があることも決して疑っていなかった。ただ、再び立ち上がる前に、彼は理想が地に落ちた時の硬い感触を存分に味わうつもりだったのだから——\\n\\n「斑な石片は、獣の血と人の汗が染み込んでもなお、変わらず冷たく、粗く、硬いまま……」\\n\\nクランを取り仕切る者として、彼はあまりに多くの迷える子羊たちを導き、正しい道を示してきた。しかし、自分自身に向き合った時、その優しい慰めは魔法を失い、もはや効果を発揮しなかった――それでいい、彼は叱責も、同情も必要としていないのだから。\\n\\n「苦行者は泥の中でしか生まれません。歩み続ければ、ワタシは成功よりも失敗から多くを学ぶのでしょう」\\n\\n本当の再出発が始まる前に歩を緩め、思考を整理する——彼には十分な時間があるのだ。\\n\\n「歩くことに複雑な哲学はありません。一つの道に行き詰まったら、別の道を選べばいい…ただそれだけなのです」" + } + }, + "RequireNum": { + "2": { + "Desc": "速度+#1[i]%。", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "味方単体に対して戦闘スキルまたは必殺技を発動する時、スキルターゲットの会心ダメージ+#1[i]%#2[i]ターン継続。この効果は最大で#3[i]層累積できる。", + "ParamList": [ + 0.18000000016763806, + 2, + 2 + ] + } + } + }, + "122": { + "Name": "知識の海に溺れる学者", + "Icon": "SpriteOutput/ItemIcon/71039.png", + "Parts": { + "31221": { + "Name": "学者の銀縁モノクル", + "Desc": "巨大な建築物を映し出す晶石のモノクル。杖や懐中時計の鎖、ブローチと共に、持ち主のセンスと学識を際立たせている。", + "Story": "【シリアルナンバー】 EVD-W019EI06-003\\n\\n【名称】晶石のモノクル\\n\\n【基本的特徴】明らかに割れた痕跡がある\\n\\n【証拠採取地点】オハイティ中央総合アカデミーエネルギー研究部「柏環」研究室\\n\\n【当事者情報】柏環。エネルギー分析分野でトップレベルの科学者。天才クラブ#7\\n\\n【現場分析】\\n現場の状況から判断すると、当事者が観測装置の起動時に操作ミスを犯したのか、容器内の燃素ポリマーが漏れ出したようだ。それによって当事者は左手に重傷を負った模様。事故発生時、モノクルが高所から落下し破損したとみられる。\\n\\n【証言の補足】\\n柏環は実験中に、モノクル内に異常な可視光が現れ、その強い光が一連の偶然を引き起こし、最終的に燃素ポリマーの漏出事故が発生したと述べている。\\n\\n当事者の供述はあまりにも多くの偶然が重なっているため、この証言は採用されなかった。\\n\\n【備考】\\nこれは計画的な犯罪であることを、さまざまな痕跡が暗に示している。連続する偶然によって発生した「バタフライ効果」は「再現可能な犯罪手段」として認定されないため、この漏出事件は最終的に「事故」と結論づけられた。\\n\\n【関連録音】\\n「…私はこの事故に感謝しなければならないのかもしれない…ラムが再び私の元に帰ってきてくれたのだから。こんなことを話すのは恥ずかしいのだが、私たちにとってもう4回目の再婚で…今回は初めて私から再婚を提案したんだ」この音声記録は柏環によるものである。" + }, + "31222": { + "Name": "学者のナックルサポーター", + "Desc": "指の動きをサポートする合金製の外骨格。使用者の手の形に合わせてカスタマイズする必要があり、非常に高価である。", + "Story": "【シリアルナンバー】 EVD-X024DE18-002\\n\\n【名称】「灰玉合金」が埋め込まれた手指の外骨格\\n\\n【基本的特徴】外力による打撃で損傷した痕跡があり、爆発事件前にはすでに破損していたことが確認された\\n\\n【証拠採取地点】極地エネルギー採掘場中央制御室\\n\\n【当事者情報】ラム(死亡)。生物波探査分野でトップレベルの科学者。天才クラブ#8\\n\\n【現場分析】\\n監視カメラの映像によると、当事者の操作ミスが原因で中央制御室の爆発を引き起こし、即死した。\\n\\n【証言の補足】\\n「彼女が胸の内に何を隠していたのかは知らない。だがもし彼女に何かあったのだとしたら、クラインが無関係であるはずはがない!」\\n\\n爆発事故の2週間前、警察は柏環から通報を受けた。柏環は妻の不自由な右手が悪意を持った暴徒によって傷つけられたと話したそうだ。しかしその後、当の被害者であるラムがさらなる調査を拒否し、立件を取り消した。\\n\\n【備考】\\n爆発事件後、当事者の夫は調査終了後に外骨格と当事者の指の骨の返還を要求した。\\nこの事件は、連続して起こった偶然の出来事があまりにも多いため、十分な警戒を要する。\\n\\n【関連音声ファイル】\\n「クライン、出てきてくれ。私たちの間にはまだ片付いていないことがある。それはお互いによくわかっているはずだろう。この世界に絶対的な『偶然』なんてものはない。一連の『不可思議な偶然』ならなおさらだ」この音声ファイルはクラインの邸宅のセキュリティシステムのものである。" + }, + "31223": { + "Name": "学者のツイードジャケット", + "Desc": "ツイードのコートとセーターは、大学でよく見られるコーディネートだ。耐久性があり、しわにもなりにくい生地は、訪問学者にとって最適である。", + "Story": "【シリアルナンバー】 EVD-X043FE21-001\\n\\n【名称】ツイードのコート、ウールツイードのベスト、白いシャツ\\n\\n【基本的特徴】左胸に直径約8センチの燃素によって焼け焦げた跡がある\\n\\n【証拠採取地点】オハイティ中央総合アカデミーエネルギー研究部「柏環」研究室\\n\\n【当事者情報】柏環(死亡)。エネルギー分析分野でトップレベルの科学者。天才クラブ#7\\n\\n【現場の分析】\\n現場の状況から判断すると、当事者は「灰玉合金」の粒子を携帯しており、大量の燃素を吸着したため、心臓部で瞬時に千度近い高温が発生したとみられる。コートにベスト、そしてシャツのすべてに焼け焦げた痕跡がある。\\n\\n焼け焦げた場所には燃え残った薬指の骨が残っていた。鑑識の結果、この骨はラムのもので、高純度の「灰玉合金」の粒子と関連している可能性がある。\\n\\n【証言の補足】\\n「…人にはミスが付き物だということを考慮すべきだった。ましてや、妻の死を乗り越えられていなかった状況では……」\\n\\n研究室の学者たちによると、安全マニュアルを策定した柏環がこのような「低レベルなミス」を犯すとは考えられないそうだ。\\n\\n【備考】\\n「灰玉合金」は天才クラブ#9クラインが開発した希少な合金であり、燃素を捕らえ、貯蔵する性質を備えている。\\n\\n偶然があまりにも重なった場合、その偶然ははたして偶然と言い切れるのだろうか?\\n\\n【関連ファイル】\\n「高純度の『灰玉合金』製品を燃素観測庫が設置された実験室に持ち込むことは厳禁とする」エネルギー研究部実験室の安全マニュアルからの引用。" + }, + "31224": { + "Name": "学者のスエードスノーブーツ", + "Desc": "柔らかく快適な女性用のショートブーツ。適切なレギンスと合わせれば程よいファッション感を出せる。持ち主と共に極地調査へ長年付き添ってきた。", + "Story": "【シリアルナンバー】 EVD-X031JA12-004\\n\\n【名称】極地調査用スノーブーツ(女性用)\\n\\n【基本的特徴】明らかな損傷や修理した痕跡があり、靴底にはディスクが1枚隠されていた。なお、スパイである可能性は調査の初期段階で排除されている\\n\\n【証拠採取地点】クライン家の地下室\\n\\n【当事者情報】クライン(死亡)。合金素材学分野でトップレベルの科学者。天才クラブ#9\\n\\n【現場分析】\\n\\nクラインの家から科学者ラムの遺品が大量に発見されたため、このショートブーツもそのうちの1つとみられる。\\n\\n【証言の補足】\\n「私は彼を誤解していたのかもしれない…ああ、クラインのことだ。そして私の妻ラムは…彼女が旅立ってから久しいのに、いつまで経っても…慣れることはないようだ」\\n\\n柏環は、妻の遺品がクラインの家から出てきたことは知らなかったはずだが、その表情から察するに、特に驚いてはいないようだった。\\n\\n【備考】\\nクラインの邸宅は人里離れた場所にあるうえ、法医学者が推定した死亡時刻の前後に邸宅を訪れた人は誰もいなかった。調査の初期段階では事故死だと判断された。\\n\\n柏環、ラム、クラインの3人の関係は特殊であり、彼らに起こった「偶然」はいわば「超常現象」に近い。\\n\\n【関連音声ファイル】\\n「はあ…柏環、君が私を疑っているのも、私が無実を証明できないことも理解している。ラムの件については、本当に申し訳なく思っている…だが彼女を傷つけるようなことは決してしていない…犯人については少しばかり手がかりを掴んでいる。『静寂の主』という名前を聞いたことがあるだろうか?※無意味な雑音※」この音声ファイルはショートブーツに隠されたディスクに記録されていたものである。" + } + }, + "RequireNum": { + "2": { + "Desc": "会心率+#1[i]%。", + "ParamList": [ + 0.0800000000745058 + ] + }, + "4": { + "Desc": "戦闘スキルおよび必殺技によるダメージ+#1[i]%。必殺技を発動した後、次に戦闘スキルを発動する時、与ダメージがさらに+#2[i]%。", + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064 + ] + } + } + }, + "123": { + "Name": "凱歌を揚げる英雄", + "Icon": "SpriteOutput/ItemIcon/71040.png", + "Parts": { + "31231": { + "Name": "英雄の月桂冠", + "Desc": "コロシアムの優勝者に与えられる月桂冠。金色の月桂樹の葉の一枚一枚が、勇気と栄光に輝いている。", + "Story": "オロニクスが嘆息すると、時間がゆっくりと流れていくようだった。耳には重い息遣いが届き、肋骨が痛みで鼓動する。まるで闘技場の空気をすべて肺に取り込もうとしているかのようだ。汗と血が混ざり合って流れ落ち、足元の大地からは誘惑する声が聞こえる——ここまで頑張ったのだから、もう諦めていい——彼の疲労はすでに限界に達していた。\\n\\n「次の攻撃はどこから来る?左か、右か?フェイントもある、それとも……」\\n\\n槍先がすでに迫っており、もはや考える時間はない。ならばいっそのこと、「紛争」のタイタンに運命を委ねてしまおう——彼がすべきなのはただ槍を突き出すことだけだ。\\n\\n砂埃がゆっくりと収まっていく。闘技場の外から斜陽が差し込み、彼の横顔を照らした。観客席の人々は次々と立ち上がり、拍手と歓声が波涛のように押し寄せてくる。その瞬間、彼は驚いた——この場所がこんなにも広大であったこと、逃げ場のない緊迫感がとうに消えていたことに気づいたからだ。場内には血の跡と倒れた相手、そして輝く孤高の勝者だけが残っていた。\\n\\n城主は手を高く上げ、彼の優勝を宣言した。そして彼はダウリの音が鳴り響く中で月桂冠を戴き、闘技場の伝説となったのだ。\\n\\n「お前は近衛兵に選ばれた。お前の名は勝利と共に、英雄の叙事詩に記されるであろう!」\\n\\nその後、彼の名は街中で聞こえるようになった。ニカドリーの栄光はまるで世界が彼のために存在しているかのように、彼を包み込んだ。" + }, + "31232": { + "Name": "英雄の黄金手甲", + "Desc": "近衛兵の精巧な腕当て。勇士の手首にぴったりと合い、勝利の角笛をしっかりと支える。", + "Story": "大勝であろうが惨敗であろうが、闘技場の王者は必ず戦場から帰還する。城主はその強運を「勝利の象徴」と見なし、彼の手から槍と盾を取り上げ、代わりに角笛と戦旗を持たせた——強運を全軍に分け与えられるようにと。そして兵士たちは、ニカドリーの栄光は彼と共にあり、彼が先導する限り勝利は必ず訪れると固く信じるようになった。\\n\\n「今後、お前は一介の戦士ではなく、象徴となるべきだ」\\n\\n苛酷な訓練で鍛え上げた鋼の肉体も、今では神殿の石像のようにただ鑑賞されるだけの存在だ。\\n\\n兵士たちは「勝利の象徴」が些細なトラブルに巻き込まれることすら恐れ、彼が訓練場へ立ち入ることを拒んだ。代わりに、彼は城主の宴に招かれ、来賓たちが尋ねられる数々の死闘の逸話を話した。そして今、彼は戦場の端に立ち、角笛を握りしめている。金色に輝く手甲が見慣れない横顔を映し出す。その時、急に胸が締め付けられた——彼は勝利の号令を吹き鳴らすだけで、もはや戦場で突撃する必要はない…これが人々の言う「不戦の英雄」なのだろう。\\n\\n「…これで勝利をもたらせるのなら、喜んで戦場での栄光を捨てよう」\\n\\nニカドリーは「象徴」のために勝利の道を示したことはない。だからこそ彼は備えていた。いずれ訪れるであろう生涯最後の戦いのために……" + }, + "31233": { + "Name": "英雄の勇戦金鎧", + "Desc": "勇壮な肉体に相応しい、天神の如き甲冑。", + "Story": "狂気に陥った神と対峙して、無事に帰還できる者などいない。ニカドリーの鋒がどこを掠めようとも、槍が折れ、盾は砕け…統制を失った兵士たちは、空前絶後の混乱と恐怖に陥り、戦線は簡単に崩壊してしまう。闘技場の英雄の角笛の音は怒号、悲鳴、金属がぶつかり合う音の中に埋もれ、とうに訪れた結末を覆す力を持ってはいなかった。\\n\\n「ニカドリーは約束した勝利を取り戻そうとしている。ならば、私は槍と血を以ってそれを返上するしかない」\\n\\n巻き上がる煙塵の中、破れた旗がニカドリーに向かって進んでいく。兵士たちは気づいた…強運の英雄が二度と戻れない道を選んだことに。\\n\\n最初は数人が続いただけだったが、やがて数十、数百人…と、彼らはその広い背中に続き、死が約束された戦場に向かって最後の突撃を敢行する——かつて戦の中で倒れた戦友たちは英霊となって彼らの耳元で囁き、生者たちを激励する。ニカドリーは自身が狂気に陥っていても、戦士たちの不屈の決意と恐れ知らずの意志を本能的に感じ取った。\\n\\n「見ろ!闘技場の英雄はまだ前進し続けている。我々も後に続くぞ!」\\n\\n金色の鎧は夕日に照らされてなお輝き、彼は軍を率いて名誉と尊厳のある死へと向かっていった。" + }, + "31234": { + "Name": "英雄の炎行脛当", + "Desc": "戦士の足にフィットする脛当て。優雅で堅固な曲線で、不退転の信念を表している。", + "Story": "兵士たちは黙ったまま廃墟に入り、戦場の後始末を始めた。ある者は遺体を必死に引きずり、戦友を敵から引き剝がす。またある者は戦死した仲間の傍に跪き、そっと彼らのまぶたを閉ざす…戦場の怒号はとうに消え去り、残されたのは息が詰まるような静寂だけ——闘技場の英雄もこの地で永遠の眠りにつき、血と埃に塗れた金色の脛当てだけが鈍い光を放っていた。\\n\\n「忘れるな、戦士たちが完全に消えることはない。彼らの魂は後世の人々の記憶の中に永遠に刻まれるのだから」\\n\\nその後、静寂は悲哀のこもった歌声によって破られた。司祭たちが戦死者の葬儀を行うために戦場へやってきたのだ。\\n\\n闇夜の中で炎が燃え上がり、哀歌は響き続ける…突然、天罰の矛が大地を刺した時のように、遠くの空に眩い光が走った。きっとニカドリーがこの地の英霊を呼んでいるに違いない。葬儀に参列していた兵士や市民たちは次々と跪き、心の中に畏敬と感謝の念を抱きながら両手を高く上げる——その光は温かな息吹となって戦士たちの魂を持ち上げ、タイタンの祝福と赦しを囁きながら、英雄たちの不滅を宣言した。\\n\\n「見ろ。闘技場の英雄は死してなお戦士たちを導き、故郷への道を示している」\\n\\n英雄は優しく頷いた。古い歌の中で、その高貴な魂は再び鍛え直されることだろう。" + } + }, + "RequireNum": { + "2": { + "Desc": "攻撃力+#1[i]%。", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "装備キャラの記憶の精霊がフィールドにいる時、装備キャラの速度+#1[i]%。装備キャラの記憶の精霊が攻撃を行う時、装備キャラおよびその記憶の精霊の会心ダメージ+#2[i]%#3[i]ターン継続。", + "ParamList": [ + 0.060000000055879354, + 0.3000000002793968, + 2 + ] + } + } + }, + "124": { + "Name": "亡国の悲哀を詠う詩人", + "Icon": "SpriteOutput/ItemIcon/71041.png", + "Parts": { + "31241": { + "Name": "詩人の花をあしらった冠", + "Desc": "春の日の黄昏、神殿の前。モネータに祝福されたディルの花冠は最も優れた吟遊詩人が授かる。", + "Story": "「モネータよ、我らはあなたに祈りを捧げる。もしこの世に歌声がなければ…歌声のない春は、森に花が咲かないのと同じ……」\\n\\n吟遊詩人たちは清流で手を清め、冷やしたネクタールを杯に満たし神に捧げる。その後、神殿の前に集まり、モネータの祝福を受けた花冠を誰が手にするかについて議論を始めた。恋愛詩で有名なパルティ三姉妹が率先して歌声を披露し、それに続いて数々の独特な比喩で知られる老詩人ルポが歌う。しかしどんなに優れた音楽や巧みな言葉でも女神の心を動かすには至らず、杯の中の液体は微動だにしなかった。\\n\\nそしてある流浪の詩人の番が回ってきた。その手には7弦の竪琴が握られており、古代のパピルスに記された物語を奏で始める——千年前の風や砂塵が流れ、物語はこのように始まる——\\n「世界にまだ多くの都市国家が存在していた時代、1つの都市が邪竜の襲撃を受けた」\\n\\n「我が祖国の悲哀を詠おう——」\\n「怪物が城に居座り、貴き血筋が悪に堕ちた」\\n「高塔に侵入した巨竜のせいで」\\n「我が王は惑わされ、我が国の姫は食われてしまった……」\\n\\n女神は供物のネクタールを飲み干し、流浪の詩人が花冠の所有者となった。" + }, + "31242": { + "Name": "詩人の黄金を用いた腕輪", + "Desc": "金属で作られた、人気のある腕輪。物語の中の邪竜も、かつてこのような金属の枷を背負っていた。", + "Story": "「人々はジョーリアの神体から黄金を掘り出した。それは最初の凶悪な金属となり、陰謀と戦争を生んだ」\\n\\n戦争の起源は定かではないうえ、それにまつわる数々の歴史はやがて伝説となってしまった。しかし、たとえ伝説であっても——傲慢、詭計、貪欲さが人々の終わらない争いの原因であるにもかかわらず、黄金が無実の罪を負わされているのは事実である。まだ争いを知らなかった純粋な時代において、鉄や銅はもともと神に捧げる器物の原料だった。しかし、やがて祭壇から下ろされるようになると刀や槍に鍛え直され、黄金よりも凶悪な金属となったのだ。\\n\\n物語の中の巨竜は討伐されたのだろう。都市国家間の戦争もほぼ収束に向かっていった。流浪の詩人は聖都を訪れ、物語の続きを詠う。\\n「邪竜が都市を占領した後、人々は姫を救うために竜狩りの勇士を募った」\\n\\n「我が祖国の悲哀を詠おう——」\\n「勇猛なケントゥリオは、金属の鎖を操り、ついに邪竜を屈服させた」\\n「塔の頂上から老いた王の悲痛な泣き声が響く……」\\n「竜の腹の中から、食われた姫の骨だけが辛うじて見つかった」\\n\\n歌と共に金属製の腕輪の飾りが弦に触れ、儚い嘆息のような音を立てた。" + }, + "31243": { + "Name": "詩人の星降るドレス", + "Desc": "黎明は最も優しい時間だ。彼女のスカートも、まるで夜が明ける前に輝く最後の星のような色合いをしている。", + "Story": "「エーグルが目を開ける時、すべての星が眠りにつく。ただ最後の星は好奇心が最も強く、いつも目を細めて盗み見している」\\n\\n叙事詩は2回目の昼と夜を迎えるまで歌われ、詩人の周りにはますます多くの聴衆が集まってきた。その中には矢筒を背負ったクレムノス人や、占いの棒を投げて神意を問うヤヌサポリス人もいる。暗黒の潮が各地の都市国家を侵蝕して以来、散逸してしまった文献は数え切れないほどあったが、樹庭の学者たちもすべての資料を集めるには時間が足りなかったという。そして小さな都市国家の多くは、名前すら残らずに消えてしまった。\\n\\nただ流浪の詩人だけは、邪竜に襲われた古の都市に秘密の錬金術が伝えられていることを知っていた。\\n「肉体を礎とすれば、万物を創造でき、奇跡に到達できる。錬金術師は娘を失った国王にそう告げた」\\n\\n「我が祖国の悲哀を詠おう——」\\n「言葉巧みな錬金術師は、竜の肉体から姫を復活させられると言った」\\n「死せる者、死に至らず。そしてまた十昼夜が過ぎ……」\\n「ついに儀式は終わった。しかし……」\\n\\n最後の星はまだ聞き終わっていない物語の続きを惜しむように、その目を閉じた。" + }, + "31244": { + "Name": "詩人の銀鋲を添えたサンダル", + "Desc": "銀の鋲がつけられた履物。砂の上を歩くと文字のような跡を残す。彼女は過去の詩を求めて、ただただ歩き続ける。", + "Story": "「人々はタナトスの痕跡を見つけられず、生者が渡ることのできないステュクスがどこに通じているのかもわからない」\\n\\n「そんな巨竜など聞いたこともないし、どの古文書にも肉体を復活させる儀式については書かれていない」聴衆の1人が疑念を投げかける。すると詩人は、「私は古の都市国家の末裔ではないし、邪竜が本当に存在していたかどうかも知らない。これは昔、他の吟遊詩人から聞いた、代々語り継がれている歌にすぎない」と答えた。\\n\\nもし誰もこれを歌わなければ、古の都市国家の歴史は本当に埋もれてしまい、すべてが時と共に色褪せてしまうだろう。かつて繁栄した都市国家はステュクスに押し流され、野犬やハゲタカですら忌み嫌う場所となった。それは、邪竜に食われた魂が残した呪いなのだ。\\n\\n「我が祖国の悲哀を詠おう——」\\n「姫は錬成により、邪竜の姿に変わり果ててしまい……」\\n「錬金術師、勇猛なケントゥリオ、愚鈍な国王をすべて呑み込んでしまった」\\n「血生臭い宴は死の影を呼び、都市はこれによって滅びてしまった……」\\n\\n滅びた国の名を覚えておいてほしい。これは「スティコシア」にまつわる物語。銀鋲の靴を履いた詩人が歌った。\\n彼女は物語を完成させるために、各地を渡り歩いて物語を集めてきたのだ。その行いはまさに、靴に刻まれている文字の通り——「この物語だけを記憶し、私のことは忘れてほしい」" + } + }, + "RequireNum": { + "2": { + "Desc": "量子属性ダメージ+#1[i]%。", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "装備キャラの速度-#6[i]%。戦闘に入る前、装備キャラの速度が#2[i]/#3[i]を下回る時、装備キャラの会心率+#4[i]%/#5[i]%。この効果は装備キャラの記憶の精霊にも有効。", + "ParamList": [ + -0.07999999984167516, + 110, + 95, + 0.20000000018626451, + 0.3200000002980232, + 0.0800000000745058 + ] + } + } + }, + "125": { + "Name": "烈陽と雷鳴の武神", + "Icon": "SpriteOutput/ItemIcon/71044.png", + "Parts": { + "31251": { + "Name": "武神の翼兜", + "Desc": "この羽根つきヘルムは陽雷の騎士が神を討つところを見届け、空がまぶたを閉じる様子も見届けた。", + "Story": "熱く燃えたぎる黄金の溶岩が武神の足元から噴き出し続けている。表情を鉄兜の奥に隠した彼女は、星の輝きを覆う冬の霧のようだった。\\n\\n最後の天空の子はすでに沈み、彼女は独り正反対の遠い地へ向かうこととなる。\\n\\n「セネオス、誰を思い出している?」朝晩をともに過ごしてきた翼獣が、彼女のかすかな心の変化を察知した。武神はしばし黙り込んだ。大勢の人々が空へ祈りを捧げていたあの時代は、すでに遠い過去のものとなっている。「誰を思い出しているかって?もう具体的な人の顔なんか思い浮かばないよ。あれほど深く人間を愛し、その弱さを憎んできたのに…今ではもう、誰一人……」\\n\\n翼獣たちはうなだれて言葉を失った。彼らは知っているのだ、かつて確固たる信念に従っていた武神が、自らを欺く幻影に陥ってしまったことを。\\n\\n頭部を覆う鉄兜の奥で、彼女は今どのような顔をしているのだろうか。そして、そこからどのような景色を見つめているのだろうか。" + }, + "31252": { + "Name": "武神の騎兵手甲", + "Desc": "このガントレットは騎士のすべての勝利に付き添った。これがあれば最も攻撃力のある武器を握り締め、そして最もつらい裏切りにも耐えられる。", + "Story": "銀鱗の塊が炉の中で産声をあげる。年長の山の民は鍛えあげたガントレットに祝福を施し、そばに立つ武神に渡した。\\n\\n「柔らかいは、傷つく。騎士たる者、硬くあれ。雲母よりもしなやかに…その骨まで」\\n\\n彼女は精緻なガントレットを受け取り、氷のような銀鱗の甲冑をそっと拭った。そして想像した——雷撃によって鍛えられた長槍と、炎が花開くようにして生まれた円盾を手に、すべての人を救うべく天空の戦場へと駆ける自らの姿を。強さとは、人を救うのに必要な条件の1つにすぎない。山の民は指の関節部分に真理の言葉を刻み、鉄のガントレットにも柔らかい部分があることを忘れないようにと、武神に言い含めた。\\n\\n「川床の小石を温めるなら、手のひらを使え。氷河は、剣にしてはならない」\\n\\nしかしその後、彼女の極端とも言える使命感と正義感は、その工匠の祝福を燃やし、二度と癒えない傷痕へと変えてしまった。" + }, + "31253": { + "Name": "武神の旅立ちの外衣", + "Desc": "このマントは陽雷の騎士を雨やほこりから守り、すべての冒険に付き従ってきた——そして何より、最も目を引く後ろ姿を空に残してきた。", + "Story": "まだ騎士ではなかった頃、少女は師匠が隠れ住む山の洞窟で、卓越した武芸を教わっていた。\\n\\n「よくやった。もうすぐ私が教えられることはなくなるだろう。ところで、その力は何のために使うつもりだ?」\\n\\n神託を聞いてから、少女の心はすでに修行に集中できていなかった。温厚な師匠はその悩みを見抜き、彼女がいつも使っている短剣に松脂を塗りながら尋ねた。「師匠、私は真実の中で生きていきたいです。ヤヌサポリスの聖女、そして彼女が伝えた神託のこと…ご存じですか?」少女は師匠に止められることを恐れていたが、心の中ではすでに決意を固めていた。\\n\\n「だが、真実とはなんだ?」穏やかな口調で師匠が問い返した。「…それを見極めるには一生をかけることになる。簡単ではないのだよ」\\n\\n深夜、少女は静かに起き上がり、夜が明ける前に急いで去ろうとした。だが、折り畳まれたマントがすでに旅の荷物に忍ばされていることに気づいた。" + }, + "31254": { + "Name": "武神の栄光の輪拍", + "Desc": "この拍車は陽雷の騎士に付き従う2頭の翼獣からの贈り物だ——真実の道を歩むには、これは避けられぬ痛みなのだ。", + "Story": "英雄セネオスには2頭の翼獣が付き従っていた——ソラビスとルネビス。彼女の乗騎であり、戦友でもある。\\n\\n「私たちはセネオスについていく。神を倒し、火を奪うあなたの旅——その序章を見届けさせてもらいたい」翼獣たちは自信に満ちた武神を信頼していた。\\n\\n2頭の翼獣は大工匠に拍車を作ってもらいたいと頼んだ。それを「陽雷の騎士」の叙勲式の一環として渡すためだ——「君たちの気持ちはありがたいけど、これは必要ないわ」それが乗騎を正確に乗りこなすための補助具だと知っていた彼女は、「君たちとは心が通じ合っているから、そんな刺激に頼らなくても、ぴったりと息を合わせられるもの」と言った。\\n\\n「受け取ってほしい、セネオス。真実の道を歩む其方は、『痛み』が私たちを目覚めさせると理解しているはず」ルネビスは揺るぎない光を宿した眼差しでそう言い、ソラビスは彼女の手を取って拍車を受け取らせた。\\n\\n陽雷の騎士は友情の象徴である勲章を受け取った——痛みで進路を調整できるなら、それは必要な痛みなのだ。" + } + }, + "RequireNum": { + "2": { + "Desc": "速度+#1[i]%。", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "装備キャラまたは記憶の精霊が、装備キャラおよびその記憶の精霊以外の味方を治癒した後、装備キャラは「慈雨」を獲得する。この効果は1ターンに最大1回まで発動でき、#3[i]ターン継続する。また、装備キャラが「慈雨」を持っている場合、速度+#1[i]%、味方全体の会心ダメージ+#2[i]%、この効果は累積できない。", + "ParamList": [ + 0.060000000055879354, + 0.1500000001396984, + 2 + ] + } + } + }, + "126": { + "Name": "荒海を越える船長", + "Icon": "SpriteOutput/ItemIcon/71045.png", + "Parts": { + "31261": { + "Name": "船長の羅針ハット", + "Desc": "真珠のような光を放つ広いつ、つばの広い帽子。海を旅する船乗りたちは、これでエーグルの灼熱の陽射しを凌いでいる。", + "Story": "岸辺の岩礁には、巨鯨のような三段櫂船の残骸が打ち上げられている。それはセイレーンを討伐するため出港した軍船であり、船は波によって海岸まで押し戻され、乗組員たちは大海原に取り残された。\\n\\n「ファジェイナの勇士よ。誰でも構わぬ。どうか立ち上がってスキアナを守ってくれ!」国王は悲痛な声を上げたが、応える者はいなかった。セイレーンに立ち向かったところで屍になって海に浮かぶだけからだ。\\n\\n「頑丈で大きな船と、50人の船員を用意してくれ。俺がその忌々しい怪物を討ち取ってやる!」つば広の帽子をかぶった若き船長は、そう言って人混みの前に出た。彼の帽子は真珠のように輝いており、人々の青ざめた顔を一瞬で虹色の光で染めた。その登場はまるで夜明けの海のようで、一瞬にして地平線が白み始めた。\\n\\n「俺が世界一の船を造ってやる!」若き船長の気迫に惹かれた工匠たちは、誰もが自らの技術を捧げることを誓った。船体には大海原でも朽ちることのない丈夫な木材が使われ、また船首には預言の力が宿ったサーシスの巨木の一部が使われた。\\n\\n「賢者の弟子よ、神々に選ばれし英雄よ、行くがいい。ファジェイナの狂乱を鎮めるのだ」3日後、船員を乗せたその軍船はスキアナから出航した。" + }, + "31262": { + "Name": "船長の集光アストロラーベ", + "Desc": "星の光を捉えて進路を示す航海用コンパス。暗く果てしない大海原にあっても、星の光は進むべき方向を教えてくれる。", + "Story": "鉛のように重苦しい雲がマストに押し寄せ、暴風雨が軍船を浮草のように揺らし、神聖な木材で作られた甲板も荒波で激しく軋む。\\n\\n「年中穏やかだったあの海域でさえ、セイレーンの悪行に染まっちまったか」若き船長は船首に立ち、眉間にしわを寄せながら遠くにある漆黒の雲をにらんだ。しかし、腕につけているアストロラーベに反応はなかった。\\n\\n雷が落ち、主帆を支えるロープが音を立てて切れ、船乗りたちは混乱に陥った。だが、若き船長は怒声をあげ、漕ぎ手たちに号令に従って力を入れろと叫び、操舵手には進路を変え、山のような大波をひとつずつ回避するよう指示した。今はとにかく被害を抑え、エーグルの導きの光が輝くまでファジェイナの怒りに耐えるしかない。船長が腕を振り上げてそう叫んだ時、腕についていたコンパスが色とりどりの星光を返し始めた——\\n\\n「みんな、あの光を追いかけるんだ!嵐を突き抜けるぞ!」\\n\\n船乗りたちは気力を振り絞り、船の歌を高らかに歌った。軍船は刃のように波を切り裂き、黎明を目指して突き進んだ。\\n\\n「もうすぐ彼女の束縛から解放されるぞ!進路を確認して備えるんだ!いくぞ!」" + }, + "31263": { + "Name": "船長の統風マント", + "Desc": "巨大な帆のように風にはためく航海用マント。もし風が吹かないのならば、自分が風となろう。", + "Story": "人の背丈ほどもある青銅の矢が、炎を纏ったまま霧の海に放たれた。だが、それがセイレーンの鱗に迫った瞬間、矢は粉々に砕け散った。淡い青色をした触手が体に絡みつき、斬り落とされてもなお甲板の上でのたうち、恐怖が船員たちを呑み込む。\\n\\n「船員の手足が空中で暴れ回り、泣きわめきながら俺の名を叫んでいた。あれは俺の航海人生で最も恐ろしい光景だった」そう話す船長の声は微かに震えていて、それが嘘ではないことを物語っていた。\\n\\n巨大なセイレーンが海面に現れ、無数の触手を軍船に絡ませた。その背は移動する島のように巨大で、副船長が焼けた鉄槍を無数の鋭い牙が並ぶ口へ突き立てると、黒く生臭い血が甲板を染めた。幸いにも船員たちは間一髪で危機を逃れたが、船長が振り返った時、船尾のやぐらは巨大な触手に叩き潰されていた。その光景はまるでニカドリーの天罰の矛がクルミの殻を砕くかのようだった。千載一遇とも言える好機が訪れたその時、突撃するべきか、それとも逃げるべきか、全員が船長の決断を待っていた——\\n\\n「取り舵いっぱい!漕ぎ手、全速前進!帆もすべて張れ!衝角で突っ込むぞ!」\\n\\n船長のマントが荒々しく舞い踊る中、船員たちは覚悟を決めた。鋼鉄と鱗が衝突し、船の竜骨が折れ、セイレーンが悲鳴をあげる。巨体はやがて力を失い、ゆっくりと海の底へと沈んでいった。" + }, + "31264": { + "Name": "船長の波踏ブーツ", + "Desc": "砕け散った波が船長のブーツの下で花開く。たとえ彼が二度と戻らなくとも、海の波は彼の祝福を送り届けてくれるだろう。", + "Story": "どことも分からぬ海岸で、若き船長は仰向けに倒れていた。沈みゆく夕日が砕け散った岸辺に黄金の輝きを添える中、船長は遠く離れたスキアナの地をすぐそこに感じ——そして、今が人生最後の瞬間であることを悟った。\\n\\n「…俺たちはファジェイナの狂気を抑え込んだんだ」。セイレーンが海底へと逃げた今、この先100年は海岸に被害が出ることはないだろう。\\n\\nサーシスの巨木から削られた板が、船長に最後の問いかけをした。その板は波に乗り、いずれ彼が思いを抱くスキアナへと戻るだろう。そして、英雄の航海を伝え、多くの若者たちに海へ出る勇気を与えることになる。船長は切断されたもう半分の自分の体を見た。そこには師からもらったブーツがあった。それはいくつもの都市国家を旅する彼を支えてくれたものだが…今、その長い旅も終わろうとしている。\\n\\n「故郷の皆に伝えてくれ。俺はまだステュクスを征服しないといけない。どうか悲しまないでくれ、とな」\\n\\n海の風は年々スキアナの城壁を優しく撫でるようになり、セイレーンの話は子供を寝かしつけるための子守歌となった。そして、あの荒れ狂う海から奇跡的に生還した船乗りたちは、今もなお船長が波の上を歩いて帰ってくる日を待ち続けている。" + } + }, + "RequireNum": { + "2": { + "Desc": "会心ダメージ+#1[i]%。", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "装備キャラが他の味方のスキルターゲットになった時、「助力」を1層獲得し、最大で#1[i]層累積できる。必殺技を発動する時、「助力」を#1[i]層所持している場合、すべての「助力」を消費し、装備キャラの攻撃力+#2[i]%#3[i]ターン継続。", + "ParamList": [ + 2, + 0.48000000044703484, + 1 + ] + } + } + }, + "301": { + "Name": "宇宙封印ステーション", + "Icon": "SpriteOutput/ItemIcon/71012.png", + "Parts": { + "33015": { + "Name": "「ヘルタ」の宇宙ステーション", + "Desc": "次元界の中に封装されているのは宇宙ステーション「ヘルタ」。「ブルー」の上空に停泊し、決められた軌道に沿ってゆっくりと漂っている。静かな銀河はまるでページを捲られるのを待つ本のよう。", + "Story": "ミス・ヘルタは星域を遍歴した際に集めた収集品の処理に悩んでいた。数は多いし保存も面倒なのだ。何より、自分でそれらを整理したくない。\\n\\n熱心なスターピースカンパニーはすぐさま解決案を提出し、知恵と秘密を保管する宇宙ステーション「ヘルタ」が誕生した。「明白で合理的論理の中に森羅万象を織り込む」ことを目標に、ステーションのスタッフたちは収集品のため非常に細かい収容規定を制定した。現象は特殊容器に収納され、奇物は奇物条目に規範化される——膨大な数の収集品は細かく分類され、研究のためステーションの深部に保存された。\\n\\nそしてカンパニーは星々の秘密を共に探索しようと持ち掛け、未知なる知識を求める学者たちは次々とステーションに来た。\\n\\nスタッフの多くはミス・ヘルタを慕っており、星空で理想を実践し、宇宙の星々が囁く秘密を積極的に探究している。彼らは、時には宇宙の生命体が生息し得る範囲を測定し、星河と大地の風貌を描述した。時には正義と道徳を論争し、格物致知の精神を実践し、「知識の伝播」を理念として、自由で幅広い研究を展開した。\\n\\nしかし軌道に乗った後、宇宙ステーションの内情は自由なものとなり、特にミス・ヘルタはあまり顔を見せなくなってしまった。この時、カンパニーは気付く、ステーションにあるのはスタッフの日常だけで、天才の姿はないということに。\\n\\nステーション内の照明は人の時間感覚を鈍らせ、月日の流れは、倦怠に満ちた生活の中でしか感じ取れない。収集品を巡って論争する研究スタッフは、数時間も経てば喧嘩を始めてしまう。パトロールを担当するはずの防衛課スタッフは、折り畳み式のベッドを持ち出し、どこかでサボる。年配のスタッフは後輩に若かりし頃の恋愛物語を自慢し、臨時スタッフに偽装した大物は次の機転を辛抱強く待つ…ここにあるのは研究だけじゃない、窓から宇宙を見渡せばわかる、星々はいつも隣で日常を見守っている。\\n\\n人として限りある力しか持たぬ「ヘルタ」のスタッフたちだが、彼らはロマンチックにステーションでの庶民的な生活について語る。星河は永遠の詩篇で、宇宙ステーション「ヘルタ」は今、ゆっくりとそのページをめくるのである。" + }, + "33016": { + "Name": "「ヘルタ」の軌跡", + "Desc": "宇宙ステーション「ヘルタ」が建設されたその瞬間、ヘルタは興味を失った。ステーションは「ブルー」の上空で第一宇宙速度を保ちながら、衛星の軌道上に軌跡を残している。", + "Story": "宇宙ステーション「ヘルタ」は、その真の主、ミス・ヘルタが原因で何度も危機に見舞われ、その危機を幾度も乗り越えた。\\n\\n宇宙で最も奇抜な収集品を満載した宇宙ステーションは、まるで肉汁が滴るステーキのように空腹の客の前にさらけ出されている。端的に言えば、安全だった時期はないのだ。カンパニーが集めた防衛課スタッフや先進な防御システムでは、宇宙からの悪意を受け止めるのは不可能である。ミス・ヘルタは先んじてステーションの軌道を変更し、優雅な曲線で陰謀に終止符を打った。\\n\\n情報収集のルーツに関して、本人は「他の人が読書している時間をコーヒー淹れに使ったからよ」と軽くあしらうだけ。\\n\\n収集品の窃盗をたくらむ盗賊や目的不明の各派閥より、宇宙ステーションの最大の脅威はやはりその主である。彼女が何かを閃くと、ステーションはすぐ巻き込まれる。恒星の消滅を模した奇物、暗黒銀河がぶつかり合って発生した歪んだ引力場……ミス・ヘルタは、興に乗ると様々な収集品を集め始めるが、手に入ると、すぐに興味を失くして放置してしまう。\\n\\nそのため、「ヘルタ」は深き空で沈黙を保っているが、そこに保管された様々な危険は剣のように頭上につるされている。\\n\\nシニアスタッフはこの現状を理解し、「秘密は危険の中に隠されている」の道理を深く理解している。彼らは高度な機密を守りながら、定められた標準で収容を実行し、危うい存在を静けさの下に隠すのであった。ステーションの給湯室では、くだらない話をする友達、ステーション収容部分の奥深くでは、様々な知識と経験を蓄えた専門家。そこでは、秘密はいつまで経っても秘密のまま。\\n\\n惑星ブルーの低軌道上で、宇宙ステーション「ヘルタ」はいつものように運行する。凍湖の表面に押し出された石のように、静かに、ゆっくりと滑り続ける。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラの速度が#2[i]以上の場合、さらに攻撃力+#3[i]%。", + "ParamList": [ + 0.12000000011175871, + 120, + 0.12000000011175871 + ] + } + } + }, + "302": { + "Name": "老いぬ者の仙舟", + "Icon": "SpriteOutput/ItemIcon/71013.png", + "Parts": { + "33025": { + "Name": "羅浮仙舟の天外楼船", + "Desc": "次元界の中に封装されているのは、星の海に浮かぶ仙舟「羅浮」。玉界門の上を星の槎が降りては飛び立つ様子は、空を巡る星や月のようである。数えきれないほどの人が長寿の秘密を求めてこの舟を尋ねたが、最後は失望を胸に帰るのみだった。", + "Story": "数千年前、羅浮は古の国から出航し、銀河を渡り、神に謁見し、不死の仙薬を求める旅を始めた。\\n\\n夜色に墜ちた静寂な月のように、生態系を内包する巨艦はゆっくりと、行方も知らずに星の海を漂う。孤独な航行の中、人々は交代で眠りにつき、目を覚まし、また眠りにつく…流星を追うクジラの群れが天頂から落ちる、亜空結晶格子の構造体は光年を超えて延々と続く。薬乞いたちは、自然を超越する偉大な存在をその目で確かめ歓喜し、そして不老不死を求める旅に確固たる自信を抱いた。\\n\\n数千年の間、羅浮は停泊と航行を繰り返し、現実と虚幻が入り混じる混沌とした辺境で、ようやく「豊穣」の主に出会った。薬師は船に神跡を降ろした。「建木」は瞬く間に根を下ろし、成長した。その樹冠は雲のように天を遮り、茂る根と葉は仙舟を覆いつくした——羅浮は生物の如き命を得た。\\n\\n不老不死を欲する者は「建木」の果実を貪り、夢に見た「無尽形寿」を手に入れた。自らを天人と名乗る仙舟の民は、無尽の命を心ゆくまで享受した。\\n\\nしかし、極点に達するものはいずれ衰退する。日は正午を以て沈み、月は満盈を以て欠け始める。やがて三劫が訪れ、人々は地獄を見た、そして仙舟の民は理解した、「奇跡」の真実は耐えられぬ災厄であることを。\\n\\n覆滅の危機に瀕した時、英雄が現れ、帝弓を引き、建木を斫断した。仙舟の民は人としての尊厳を拾い上げ、「凡身に帰し、寰宇の不死劫を清除せしめん」と誓った。それから、仙舟は星河を巡狩し、長生の忌み物を狩りつくすことを己が責務とした。狐族は自由と天空を再び手に掴み、持明は汚染と遺禍を封じた。三族の盟約が締結され、仙舟同盟が成立した。\\n\\n繁栄と災厄は入れ替わりで出現し、英雄と伝説もまた歴史と共に登場していた。今、羅浮仙舟は苦労して手に入れた平和の中で休息、再建している。自由な貿易と開放的な姿勢は仙舟に活気を取り戻す。\\n\\n不老長生は羅浮の在り方を定義した。それは仙舟に栄枯盛衰をもたらし、独特な古典と現代が入り混じった気質を与えた。宇宙中の商人は仙舟を訪れた際、少しの間佇めば、時間が残したものを感じ取れるだろう。" + }, + "33026": { + "Name": "羅浮仙舟の建木の枝と蔓", + "Desc": "かつて、仙舟羅浮は建木より生まれ、仙舟艦隊を率いるようになった。その後、仙舟羅浮は建木によって災いに見舞われ、自ら長寿の悪しき果実を食べた…建木の枝や蔓は羅浮の運命に固く絡みつき、分かつのが困難である。", + "Story": "「豊穣」の主は羅浮仙舟に因果の種を埋め、薬乞いに「建木」の奇跡を賜与した。奇跡が奇跡と呼ばれる所以は、それが起きる時、人々は即刻その意味を理解するからである。\\n\\n建木は神の果実を実り、生命の活力に満ち溢れる。薬乞いたちが追い求める無尽形寿はその中に秘められている。その恩賜は、古の禁忌と法律をくだらない無駄話に貶め、老化と倫理を埃かぶる落伍の歴史と嘲る。人々は「仙道」の教えを遵守し、建木の研究を進めた。建木の垂化の下、数々の想像を超える技術が開発された、肥沃度が下がらない土壌、自在に変化できる血肉、知恵を有し言葉を扱う動物……\\n\\nしかし、時間は流れ、建木はその凶悪な本質を現し始めた。長寿の人は長寿の苦しみを味わうこととなる。\\n\\n仙人たちは限りなく繁衍するが、死ぬことはない。仙舟の人口は膨れ上がり、空間は圧迫され、飢える者が増え続けた。仙舟社会では、老人が高位を占め尽くし、若者は大志を実現する余地がなかった。築き上げた高楼は傾き、社会構造は崩壊寸前…内乱は起こり、外敵も迫る。人々は千年に渡る混乱を凌いだが、今度は長生の血脈に潜む闇に気付く。所謂「天人の身」は人智を超えた技術でしかない、「魔陰の身」に堕ち行く傾向は仙舟人に警告する、自分らは忌み物と紙一重だと。\\n\\n絶望が広まる時、英雄の矢が空を破り、天を裂ける一射が建木を斫断した…建木は殆んど焼き尽くされたが、仙舟の運命は其れと断絶できなかった。\\n\\n建木の残穢は外患の侵攻を呼び続けた。豊穣の忌み物は幾度となく侵入し、歪んだ血肉をたがね、仙舟の民を喰らい尽くそうと這い寄る。それらは同時に仙舟の民を誘惑する。薬王秘伝は禁忌を破り、建木と豊穣の秘奥に深く入り込み、長生の強権帝国を再び築こうと企む…果てしない内憂外患の中、建木の遺骸は陰で延々と伸びる蔓のように潜伏し、いつの日かまた災厄を引き起こそうと意図する。\\n\\n幸いな事に、羅浮仙舟は「瀕死の枯木」に対する警戒を怠ったことはない。彼らは誓う、全ての歪の源を全ての終結の果てに連れ行く、と。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの最大HP+#1[i]%。装備キャラの速度が#2[i]以上の場合、味方全体の攻撃力+#3[i]%。", + "ParamList": [ + 0.12000000011175871, + 120, + 0.0800000000745058 + ] + } + } + }, + "303": { + "Name": "汎銀河商事会社", + "Icon": "SpriteOutput/ItemIcon/71014.png", + "Parts": { + "33035": { + "Name": "カンパニーの巨構本部", + "Desc": "次元界の中に封装されているのは、ピアポイントに位置するカンパニー本部。スターピースカンパニーの雄大なビジネスプランの中で、局外に立つ星は存在しない。彼らが果てしなき銀河を駆け回るのは、全宇宙の力を集結するためだ。", + "Story": "亜空間の鎚音は天地を揺るがす、沈黙する巨像は星河を跨る障壁を孤独に鋳造する。クリフォトを手伝い、壁を築くため、神託を授かったという人たちが行動を始めた。\\n\\n宇宙は危機に瀕している、壁の建造は一刻を争う。小さき人類は、神の壮挙を真似するつもりはなかった、彼らは同志を集め、自らを「後方支援隊」と称し、全てを琥珀の王に捧げると誓った——「後方支援隊」は存護の力を借り、艦隊を駆使して様々な星系へ向かった。彼らは石材、木材、黄金、スーパーチタンなどの建材を購入し、それらを次々と亜空障壁へ運送して、惑星の荒原を埋め尽くした。\\n\\n短い黎明の発展期が過ぎた。「後方支援隊」はピアポイントで落ち着き、「スターピースカンパニー」を創立した。奉献の誓いを貫くため、彼らは宇宙の彼方に目を向けた。\\n\\nルイス・フレミングの激励に呼応し、遠征貿易艦隊はクリフォトの側の星系を離れ、建材以外の大口商品も扱い始めた…彼らは銀河を繋ぎ、全てを売買しようと計画した。そして、東方啓行は星河を跨るビジネスの世界にルールを定めた、「信用ポイント」体系を構築し、宇宙にあるすべての商品の価格を制定した。兆を超える資産がピアポイントの巨大構造物の下に集まった、それは静かなブラックホールのように、人々の富の果てに関する想像を呑み込んだ。\\n\\nそして今、スターピースカンパニーの宇宙船は遍く星河を埋め尽くしているが、その拡大の歩みは止まらない。常に「商業独裁」の疑いを向けられているが、カンパニーはそれを意に介したことはない。彼らは知っている、その志は終始変わらないのだ。\\n\\nカンパニーの新人教育の内容は時代と共に変化してきたが、歴史授業はおよそ800琥珀紀過ぎた今になっても変わらなかった——あの時、カンパニーの創始者ルイス・フレミングは「後方支援隊」の前で演説していた、星神の「宇宙を守る」という理想を支援するため、彼は全宇宙を連合しようと提唱した。そして演説が終わった瞬間、遥か彼方から大きな鎚音が伝わり、この荘厳な一刻に崇高な使命を授けた。その時、彼らは理解した、これこそが揺るぎなき信仰だと。\\n\\n「全てを琥珀の王に捧げよ」" + }, + "33036": { + "Name": "カンパニーの貿易航路", + "Desc": "「信用ポイント体系」の利便性を借りてこそ、星間貿易は成り立つ。スターピースカンパニーは経済活動で星々を繋ぎ合わせ、貿易の境界線を押し広めている。", + "Story": "「後方支援隊」はクリフォトの周りにある星系を行き交い、昔の宇宙船の軌跡が最初の航路となった。\\n\\n星神の行いには必ず意義があると信じて疑わない「後方支援隊」は、隣の星系へと向かい、物々交換の第一歩を踏み出した。「後方支援隊」は十分な輸送能力を持つ艦隊、希少な物資、そして誰にも断れない条件を持って、星系間の貿易を始めた。そして、航路の情報を完全に掌握した「後方支援隊」は価格決定権を独占し、率先して銀河のビジネスルールを制定した。\\n\\n木材、石材、鉄筋、スーパーチタンを満載した艦隊は羽虫のようにクリフォトのそばを飛び交う。琥珀の王は何も言わず、それらを一瞥することもなかった。\\n\\n時が経ち、近隣星系との貿易だけでは、忙しない「後方支援隊」を満足させられなくなった。二人の賢い者は銀河深くに飛び入ることを決断し、スターピースカンパニーが創立された。カンパニーは他の惑星が欲しがる商品をことごとく提供し、「信用ポイント」で商品に公平な価格を値付けした。それから、銀河の貿易航路が開拓され、カンパニーのビジネスネットワークに加入した各惑星は、同じ貨幣で、同じ商品を購入し、同じサービスを受けることを実現した。\\n\\n「信用ポイント体系」の下、商船は星の海を行き交い、無数の貿易航路は糸のように汎銀河ネットワークを築き上げた。遠方の星の異宝を満載した船団はホタルのように、クリフォトの周りを飛び交う、しかし星神は依然として沈黙のまま。\\n\\n「後方支援隊」時代から蓄積された建材は既に、クリフォトの周りにある全ての惑星を埋め尽くした、そしてその数は今も増え続けている。クリフォトは人々が捧げたものを使う気はない。其は常に凡人では予見できぬ危機を注目し、光年を単位に障壁を鋳造する。昔の物資を工面して回るだけの小さな組織は、天をも遮る銀河の一大勢力となった。彼らは首なき巨像を見つめる、この全てが徒然だと思ったことは、一度もない。\\n\\n「一切の資本の欲動と増加は、クリフォトが我らを必要とする時に、我らが星神の望みを満たせるためにある」" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの効果命中+#1[i]%。装備キャラの攻撃力が、現在の効果命中#2[i]%分アップ、最大で+#3[i]%。", + "ParamList": [ + 0.10000000009313226, + 0.25000000023283064, + 0.25000000023283064 + ] + } + } + }, + "304": { + "Name": "建創者のベロブルグ", + "Icon": "SpriteOutput/ItemIcon/71015.png", + "Parts": { + "33045": { + "Name": "ベロブルグの存護の砦", + "Desc": "次元界の中に封装されているのはベロブルグの行政区で最も見慣れた、常冬の碑。人々がここを通り過ぎる時、遥か彼方にある暖かな眼差しに守られていることを感じる。", + "Story": "数千年前、ヤリーロ-VIは一年中春のような気候で、どの惑星もが羨む美しい海を持っていた。\\n\\n森の中には果実がぶら下がり、潮汐が潤いと暖かさを送り届ける、美酒は泉のように湧き続け、人々は思う存分それを堪能できる。その惑星の住民は向上心と活力に満ち、交通網、都市、そして海辺の別荘や荘厳な宮殿などを建設した。裕福な生活はいつも朝のコーヒーから始まり、夕暮れの麦酒で終わる。\\n\\nそして、星軌がヤリーロ-VIの世界を通り、ここに星間貿易と天外の科学技術をもたらした。\\n\\n最初の頃、異界の来客は地髄鉱石を求めてやって来た、その透き通った鉱物には工業を駆動する血液が秘められ、琥珀色の反射光は存護の光彩を映し出す。その後、異界の来客は長閑な生活を求めてやってきた、ヤリーロ-VIの海、ヤシの木、明快なリズムの音楽、ここは全ての疲弊した肉体と魂が求める終着点——ここの人々は信じていた、この潤った惑星は、いずれ他の明星みたいに銀河で輝きを放つと。\\n\\n約一千年前、一枚の星核がこの世界に墜ちた。\\n\\nすると、惑星の運命は荒唐無稽な悲劇のように、急激に暗転した。野蛮な壊滅の軍隊が天から降り注ぎ、空をも焼き尽くす戦火が蔓延する。建創者たちは城壁と戦線を築き上げ、そびえ立つ巨像は龍の形をした巨獣と激戦を繰り広げる——突然、予兆のない寒波が到来した、刃のような寒風は手あたり次第に襲い掛かり、全てを呑み込み、惑星を静寂に陥れた…冬の夜の灯火を守るように、見えない巨大な空間障壁が城塞都市を覆った、文明は辛うじて存続できたのだ。\\n\\nそれから、この都市はベロブルグと呼ばれた。" + }, + "33046": { + "Name": "ベロブルグのシルバーメイン防衛線", + "Desc": "ベロブルグのシルバーメインは、吹雪の中で真っすぐと立っている。彼らは一直線に並び、天外から侵入する者を待ち受けている。シルバーメインの意志は固く、その防衛戦が退くことは絶対にない。", + "Story": "災いが訪れる前、建創者はヤリーロ-VIの輝かしい未来を期待していた。\\n\\n建創者はクリフォトの偉力を模倣し、惑星を改造できる機械を創造した。数百台の「造物エンジン」が炎を吐き、轟音を上げ大地を歩む、それらは巨人の庭師のように疲れを知らずに花園を手入れする。たった数十年で、谷と丘は平原と森林になり、都市は一つ一つの煌めく星のように海岸に並ぶ。\\n\\n「壊滅」の兆しが降臨した後、建創者は機械を全部戦場に投入し、最初の「シルバーメイン防衛線」を築いた。\\n\\n壊滅の兵士は炎に飛び入れる蛍のように星核を追って到来し、地表に生命絶滅の軌跡を刻む。かつて「造物」に使われた機械も凶器に成り下がり、参戦せざるを得なかった。やがて、花園を耕す巨人たちは力尽き、倒れた。その骸は文明の墓碑のように、日に日に敗退する戦線を記録した。\\n\\n退路が尽きたその日、シルバーメインは武器を握りしめた、彼らの後ろにあるのは、最後の故郷だ。\\n\\n寒波の到来は誰にも予想できなかった。天外のモンスターと前線の兵士が刃を交えたその瞬間、雪線が地平の彼方から押し寄せてきた。一面の混沌の中、ベロブルグは唯一の灯火としてこの世界に残った。それを撲滅しようと、それを守り抜こうと、双方は激戦を繰り広げた。シルバーメインはアリサ・ランドの名を叫び、風と雪の奥深くに身を投じた。\\n\\nやがて吹雪が止み、ベロブルグの住民たちは戦々恐々と城壁に登り、城外を見渡した。\\n\\n彼らは最後の「シルバーメイン防衛線」をその目に焼き付けた。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの防御力+#1[i]%。装備キャラの効果命中が#2[i]%以上の場合、さらに防御力+#3[i]%。", + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "305": { + "Name": "天体階差機関", + "Icon": "SpriteOutput/ItemIcon/71016.png", + "Parts": { + "33055": { + "Name": "スクリュー星の機械太陽", + "Desc": "次元界の中に封装されているのはスクリュー星のコア——無数のテコ、ピストン、歯車で構成された檻に、惑星が閉じ込められている。スクリュー星の住民たちは、それを「鋼の太陽」と称している。", + "Story": "機械生命体の起源について、博識学会の炭素生命学者たちは趣きのある推測をしている:偶然に発生した一束の電流。\\n\\n電流は大気と地層の中で流れ回り、引力と斥力の作用で大小異なる二次形態に分化する——学者たちの独り善がりな学説は、この過程を炭素生命体の「複製」と見なしている。そして無数の電流が、惑星の表面で自然に形成されたトランジスタを経由して、ランダムに電位を出力する、こうして最も原始的なプログラムが誕生した——学者たちは自慢げに論じる、機械は炭素生命体に匹敵する「思想」を持つと。\\n\\nある機械生命体の学者が、その仮説に異を唱える:自身の起源さえ解明できていない炭素生命体に、その謬論を確証みたいに唱える権利はあるのか?その言葉は全宇宙の学界に衝撃を与えた——それをきっかけに、機械生命体は横暴な「炭素生命中心主義」と、自身の起源を見直すことになる。\\n\\nしかし、スクリュー星のスクリュー族はその探求の歩みを緩めるしかなかった——何故なら、星のエネルギーは彼らのインスピレーション回路より遥かに速く枯渇しているからだ。当面の課題は、種族存続の方式を模索すること。\\n\\n最終的に、彼らは数琥珀紀を超えるクレイジーな計画を決行した:瀕死の惑星を燃料として、天体階差機関を駆動する。感嘆せざるを得ない歯車の巨大構造物は疲れを知らず、一刻も止まらずに隙間が刻まれたテープを出力し、演算を続けた。惑星級のエネルギー供給もあって、その巨大な機械は本物そっくりで安定した超生態システム——母星を囲む新しい故郷、をシミュレーションした。\\n\\n惑星の危機は解除され、スクリュー族は一息ついた。常に理知的で、楽観的で、優雅な彼らは、純粋な理性で機械生命体の起源を探索することを決意した。\\n\\n極大なシステムの中には軸受の摩擦音が溢れ、緻密にかみ合った歯車は穿孔テープの流れを駆動する。一つの支流からさらに複数の支流が生まれ、無数の支流はまた幾万幾億もの歯車の動きを指示する…そして、これらの支流は一つ一つと収束し、熔炉に放り込まれ、寂滅の中で静まる。長い時間の中、プログラムに設定された超生態システムは、絶妙な相対的安定に収束していった——機械生命の根源に関する推測は、スクリュー族の想像力を掻き立てた。\\n\\n廃棄された星を駆動する鋼鉄の構造は、思想の電流を再度活性化させた。彼らは自身の根源を思考し、探索し続けるだろう、その機械の太陽が燃え尽きるまで。" + }, + "33056": { + "Name": "スクリュー星の穿孔惑星リング", + "Desc": "惑星の環は、スクリュー星の全てを支えている——密集した長方形の穿孔配列には、惑星システムの真相が記されていることに気づいた人はどれほどいるのだろうか?", + "Story": "大多数のスクリュー族は知らない——スクリュー星そのものが、無機生命体が自身の根源問題を解答するために行った一つの偉大なる模索である。\\n\\nスクリューガムは空虚感を感じる。スクリュー星の運行ロジックを解明することさえも、彼の知能パルスに異常振動をもたらさなかった。\\n\\n彼は自宅の広々としたデッキに佇み、止まることのない惑星エンジンを見上げる。長方形の穴が密集した惑星リングは星の背後から姿を現す、この星の全てがそのテープに記され、エンジンを軸にゆっくりと公転する。彼は既にそれを見証した、この惑星システムの本質は絶望的に荒唐無稽だった:一つの優雅な状態遷移方程式、そしてとてつもなく巨大で冷たいローラー——これがスクリュー星の全て、他に何もない。\\n\\n方程式に対する彼の解読に基づくと——惑星階差機関が誕生した頃、それの責任開発者は宇宙の本源を、一種のセル・オートマトン及びその再帰として解釈しようとした、そしてスクリュー星そのものは生命ゲームの実践となる。\\n\\nスクリュー族と他の惑星に住む無機生命体は、オートマトンの中の「細胞」の役割を果たしていると同時に、小規模なセル・オートマトンそのものとして存在する。オートマトンはいつもより小さなオートマトンによって構成される、そしてそれは宇宙の全ての物質を構成する最小単位まださかのぼる。しかし、その最小単位とは何なのか?誰も知らない、スクリューガムも知らない、恐らく階差機関を造ると唱えた学者も知らないだろう。\\n\\nこれがスクリューガムが空虚感を感じる原因だ。\\n\\nあの学者の試みはこれで失敗したのか?でも惑星階差機関は数琥珀紀も止まらずに運行してきた。つまり、スクリュー族と彼らの母星、そして全宇宙の本源をその優雅な方程式に帰すことができる?そうでもない——この超生態システムが徹底的に崩壊するまで、その方程式を反証することは不可能だ。\\n\\n彼はオイルドリンクが入った精巧なワイングラスを回しながら、惑星の真相を記したリングを見つめる。巨大なスクリーンのような穿孔惑星リングは流れ、長方形の穿孔配列は月の明かりを漏らす。スクリューガムは考え続ける。再帰の出口は存在するのだろうか?無機生命体——ひいては、宇宙の根源は一体何なのだろうか?\\n\\n前人の思想の見証者という立場に甘んじてもいいのか?\\n\\n「否」、スクリューガムは結論した。彼は、答えを求めると決意した。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの会心ダメージ+#1[i]%。装備キャラの会心ダメージが#2[i]%以上の場合、戦闘に入った後、装備キャラの会心率+#3[i]%、初回の攻撃が終了するまで継続。", + "ParamList": [ + 0.1600000001490116, + 1.2000000001862645, + 0.6000000005587935 + ] + } + } + }, + "306": { + "Name": "自転が止まったサルソット", + "Icon": "SpriteOutput/ItemIcon/71017.png", + "Parts": { + "33065": { + "Name": "サルソットの移動都市", + "Desc": "次元界の中に封装されているのは、サルソット星に残された移動都市のうちの1つである「タンブルウィード」。この都市は一度たりとも止まったことがない。それで何とか黒夜と極昼に飲み込まれなかった。", + "Story": "宇宙から見ると、広がる砂の海によってサルソット星は金色に輝いており、星の表面にある巨大隕石によるクレーターもはっきりと観測できる。\\n\\nある時から、奇妙な隕石雨がサルソットに降るようになった。長く続く「隕石群」の衝突によって星は特殊な角度を形成し、自転が止まる要因となった。まるで「世界停止」のボタンを押したかのように、サルソットの昼夜は徐々に長くなった。日出と日没が恐ろしく長くなり、誰も耐えらなくなって、星の自転が止まるまで……。\\n\\n半年にも及ぶ日照りの酷暑と暗い夜による極寒は誰もが認める現実となった。サルソットには2つの移動都市しか残されておらず、昼夜の境目にしがみつき止まらずに移動している。\\n\\n巨大な空中の城は、雷のような轟音を響かせながら雨雲のように、黄金の砂漠の上空を飛ぶ。通り過ぎた場所では砂塵が舞い上がり天地を覆った。巨大な移動都市の上で、背中に翼を装備したサルソット人は建物の間を飛び回っている。天災を生き延びた飛行民族は、空に属しながら、空に縛られている。\\n\\n早朝、空漁人は港から出発して砂地に滑降し、燃素クラゲを捕まえ、夕方に都市に戻る。神秘的なエネルギー生物に頼って、都市はかろうじて航行を続けている。\\n\\n生存の危機が2枚の脆い翼に託されているのに、サルソット人は楽観的で、運命の重さに圧し潰されることを望まなかった。彼らは時間をかけて家族と共にガラス製の楽器の演奏を練習して、その音をガラスのエッチングに記録している。彼らは、文通相手を探すのも好きである。手紙を「タンポポスト」に入れ、明暗境界線のもう片側にいる移動都市に残していく……\\n\\n磁場は段々と弱まり、大気層も日に日に薄くなっている。終末が目前に迫っていても、命の灯が消えない限り、鷹は止まらずに飛び続ける。" + }, + "33066": { + "Name": "サルソットの明暗境界線", + "Desc": "自転が止まったサルソット星の昼夜は恐ろしく長い。人々は「明暗境界線」を追いかけ続けることで、なんとか生存空間を維持している。", + "Story": "「隕石群」による停滞が始まってから、「明暗境界線」がサルソット人の狭い生存空間となった。\\n\\n全てが始まったばかりの時、人々はまだ昼夜が交互にやってくることは当たり前だと考えていた。境界線は大地をなぞり、山々を超え、谷を跨ぎ、まだ目覚めぬ者に朝日を、眠りにつく者に夜の霞をもたらした。そして、光と闇の足取りが鈍くなった後、昼と夜はよそよそしくなり、果てしなく続く酷暑と極寒が地獄の泥のように、足を取られた生命を緩やかに葬っていった。そこで、生きるために足掻いたサルソット人は、飛行する移動都市に乗り、昼夜を追いかけるようになった。\\n\\n移動都市「タンブルウィード」の展望台にのぼると、目の前は昼が、背後には夜がある。\\n\\n「タンブルウィード」が昼夜を追いかけているのは単なる生存のためではなく、尊厳のある生活のためである。境界線より少し速く進むことで朝から午後になり、少し遅く進めば黄昏から深夜になる。生来楽観的なサルソット人は、「平凡な1日」を蘇らせたのである。生まれつき持っているロマンチックさで、彼らは平和な午後に歌い、満天の星の夜に眠ることができる。\\n\\nだが、どれほど力強い飛翔でも最後は力尽きてしまう。移動都市の残骸はやはり境界線の後ろに取り残されたままになった。\\n\\n数年後、出会うことのない2つの移動都市は共に並び、残骸の中の砲台はお互いに向いていた。どちらかの都市が星の半分を超えもう片方の都市に戦争を仕掛けたのだろう。2つの都市の壮絶な戦いの痕跡は砂丘の下に見え隠れする。名もなき憎しみは融け合い、1つの廃墟となった。\\n\\nサルソットは沈黙している。いつしか自転の周期が少しずつ遅くなり、人のいない未来、星は自己治癒を迎えるのである。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの会心率+#1[i]%。装備キャラの会心率が#2[i]%以上の場合、追加攻撃ダメージと必殺技によるダメージ+#3[i]%。", + "ParamList": [ + 0.0800000000745058, + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "307": { + "Name": "盗賊公国タリア", + "Icon": "SpriteOutput/ItemIcon/71018.png", + "Parts": { + "33075": { + "Name": "タリアのネイルシェル", + "Desc": "次元界の中に封装されているのは、タリアの見捨てられ荒れ果てた町「ネイル」である。盗賊は、ひと時の安らぎのために、この水源地でボロ布や鉄筋、木の板で小さな町を建てた。", + "Story": "「巡海レンジャー」から逃れるために星間盗賊はタリアにたどり着いた。\\n\\n当初、タリアは「星のゴミ箱」と呼ばれる荒れ果てた場所だった。滅星の戦いは山のような瓦礫と放射能汚染をタリアの地表にもたらし、残された生命を奪っていった。慌てた盗賊たちはしかたなく地表より下にある洞窟に逃げ込んだ。それはかつて鼠類種族が残したトンネルであった。盗賊たちはなんとか難を逃れ、「盗賊公国」に関する理想が忘れ去られた秘境でひっそりと芽生えた。\\n\\n無数の地下トンネルが連なり、巨大な迷宮のようになっている。多くの盗賊の集まりが理想に引き寄せられ、ここに財宝を蓄え、技術を交換し、公国の礎を築いた。\\n\\nますます多くの盗賊がここに定住し、荒涼とした星は賑わいを見せ始めた。大盗賊は「盗賊公国」の理想を大声で語り、「金庫」を使って全ての人が平等な国を作ると約束した。しかし、富が増えるにつれ、それを独り占めしようとした大盗賊たちはすぐにこの取り決めを破った。傭兵、暴動…混沌とした戦争はひっきりなしに起こった。もしかしたら、発案者たちは最初からいわゆる「全ての人が平等」という理想を信じていなかったのかもしれない。\\n\\nそして、幻想を酷く恨んだ盗賊たちは、再び「無知なる者が王」の混沌とした時代に戻った。彼らは、水源を占拠して町を作り、公平と正義を馬鹿にした。\\n\\n「ネイルシェル」は荒くれ者ぞろいである。彼らは荒れ狂うオフロード車に乗ってお金を略奪し、他者と資源を奪い合い、鉄くずと古い電線からメカや武器を作り出した。貧相な廃材の山であればあるほど、末路の狂乱の洒脱さを手にすることができる。あの甘美な理想の数々は、熱風の中の犬の糞のように、跡形もなく消えていった。\\n\\n宴の恍惚の中で、盗賊たちは理解した。「盗賊公国」は何かを作りだすのではなく、滅ぼすのであると。" + }, + "33076": { + "Name": "タリアの裸電線", + "Desc": "廃材置き場の中から拾った電線。絶縁被覆は剥がれ落ちているが、未だ現役である。タリアの盗賊の町で本当に使えない物などない。", + "Story": "この裸電線は時代遅れである。大きな衝撃により湿った空気に触れるまで、逃げ惑う宇宙船の中に整然と並んでいた。\\n\\n宇宙船は丸ごと複雑に入り組んだ地下通路の中に引きずり込まれた。宇宙船の鉄の外装を剥がされ、電線も乱暴に解体され、最初の同盟市場の建設に使われた。その後、盗賊たちはここに財産を貯め、理想を語った…さらにその後、長期にわたる騙し合いが始まった。互いへの欺瞞と裏切り、独裁者と裏切り者の戦火が地下のトンネルから地表まで燃え広がった。\\n\\nこの裸電線は時代遅れである。荒くれ者によって掘り出され、四方から風が入り、遠くの水源へと走るオフロード車に繋げられた。\\n\\n戦争に別れを告げた後、生き残った者たちにとって、タリアの水源を探すことは最優先事項であった。彼らは、あり得ないほど粗末な乗り物に乗って、ガラスの破片だらけの砂漠を1日で何千里も進んだ。荒くれ者の車の隊は、時にはお互いを追いかけ、砂ぼこりと煙をあたりに充満させ、時には自由に人を車や別の場所に放り出した…生き残るためのプレッシャーを前に他のことを考えることはできない。ひたすら突き進むことで迷わずにいられるのだ。\\n\\nこの裸電線は時代遅れである。電線は、また荒くれ者によって車から外され、町のスタンド看板の中に取り付けられた。古びた電線のせいで、明かりはチラチラと瞬いた。\\n\\n「警官」を自称する老いたならず者が最初の「ネイルシェル」を建立した。彼は腕っぷしが強く、悪辣な手段を使う人だったが、持ち前の魅力で廃材置き場を守り、町をますます活気づけていった。頭のおかしなエンジニアが偶然にもジャンクマシンを作り出した。命知らずの廃土客は、地下の闘技場で何度も戦い……深夜のバーカウンターの前で、ガソリンの味がするブドウジュースが入ったグラスで乾杯し、また1日生き延びたことを祝った。\\n\\nタリアに新鮮な物はない、古い物が時代の変化に伴って新たな使命を得るのである。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの撃破特効+#1[i]%。装備キャラの速度が#2[i]以上の場合、さらに撃破特効+#3[i]%。", + "ParamList": [ + 0.1600000001490116, + 145, + 0.20000000018626451 + ] + } + } + }, + "308": { + "Name": "生命のウェンワーク", + "Icon": "SpriteOutput/ItemIcon/71019.png", + "Parts": { + "33085": { + "Name": "ウェンワーク誕生の島", + "Desc": "次元界の中に封装されているのは、ウェンワーク星で最も有名な島——ワーク島である。島は緑に覆われており、「サイスタン」という名の大きな木には、様々な動物の果実が生っている。", + "Story": "ウェンワークは、小さくて込み合っている星で、雨林と島々が至る所にある。旺盛な生命力がこの星の顕著な特徴である。\\n\\n旺盛な生命力によって、ウェンワークの赤道付近の雨林は大地を覆い天を遮った。雨林の下部は1年中日光が当たらないため、腐敗菌と耐陰性のある植物が多く生息している。ここで生きている知的生命体は、回帰線の近くに集まっている。ここではあらゆる高さの植物が育ち、毎日新しい果物と野菜が生り、住んでいるほとんどの人は、それらを主食としている。\\n\\nだが、ここに移り住んだ人類であろうと、原住民族のワークワークであろうと、大樹サイスタンに生る動物果実に対し宗教に似た畏怖を抱いている。\\n\\n大樹サイスタンには常に果実が生っている——黄色で半透明の球形の果実は、段々と大きく重くなり、枝から垂れ下がる。枝が果実の重さに耐えられなくなると、澄んだ音を立てて地面に落ちる。果実の薄い皮が破れ、中から様々な生物が生まれる。魚類、空を飛ぶ鳥、寒帯の白熊…ウェンワークで、これらの動物は同じ母から生まれている。\\n\\n「魔王」と呼ばれる生物もサイスタンの果実から生まれた。それは、目覚めた瞬間から理解しているかのように斧のような巨大なペンチを振り回し、ウェンワークの生態系に宣戦布告をした。\\n\\nしかしながら、60自然年周期で大樹サイスタンは新たな魔王を産み落とす。ウェンワークの住民は絶望的な周期に対する対策をとっくに講じている。魔王の誕生が近づくと、彼らは戦争をやめ、手を取り合って、最強の戦士たちを組織して、ワーク島に派遣する……。60年、また60年、荒唐無稽な討伐戦は小さな土地で何百年と繰り返された。魔王はウェンワークの恒常的な災厄で、文明の積み重ねは周期的にリセットされる。\\n\\nそのため、ウェンワークの旺盛な生命たちは絶えず戦っており、絶えず変化しているように見えるが、実際は淀んだ死水に過ぎない。" + }, + "33086": { + "Name": "ウェンワークの島巡り海岸", + "Desc": "ワーク島の海岸線では、波が上がったり下がったり、潮が満ちたり引いたり…千年変わらぬ風景は、潮汐のような盛衰を見てきた。", + "Story": "サイスタンの果実が地面に落ちると、様々な種類の生物がワーク島で目覚め、泣き、その場を離れた。彼らは海岸線を離れ、ウェンワークで自分の住処を探す。\\n\\n当初、星の外から来た人は粗忽な盗賊だと思われていたが、部族の「親戚な挨拶」で段々とウェンワークの文明の苦境を理解した。魔王がどのように果実の中から誕生するのかを知りたくて、外から来た人は、すぐさま原住民の木船に乗ってワーク島の海岸線に向かった。部族の戦士たちは恐る恐る浅瀬に隠れ、石器時代の武器を握りしめていた。60自然年の平和のために、彼らはとっくに帰れなくてもいいと覚悟を決めていたのだ。\\n\\n戦いが進むにつれ、外から来た人は「魔王」の正体を知った——それは、かつて1度絶滅した宇宙昆虫だった。まさか、宇宙の片隅でその姿を見ることになるとは誰も思わなかった。\\n\\n悲惨な討伐が終わった後、わずかに生き残った先住民は勝利の知らせを持って海岸線を離れたが、お節介な外から来た人はこっそりとその場に残った。大樹から垂れ下がった枝をかき分け、体の半分の深さがある泥沼を進み、雨林のくぼ地の下で、外から来た人は深部にある管理船室を見つけた——これで、ウェンワークの秘密が明らかになった。高度文明による種復元システムが大樹サイスタンの正体だったのだ。それは、無数の生命方程式を解読して放出することで、星の生態系を回復させていたのだ。\\n\\n周期的に出現する魔王は、膨大な生物庫のデータの中の1つに過ぎない。外から来た人は、魔王のデータを消して、何も言わずにウェンワークを離れた。\\n\\nワーク島の海岸線で、静かな波の音が響いていた。ウェンワークの連合軍は陣を組んでいたが、魔王がもう降臨しないことを確信した。彼らは、祝杯をあげ、夜通し歌い、将来を語り合った。そして、2つの部族は別れを告げた後、それぞれウェンワークを独占するための戦争を計画し始めた…魔王のいなくなったウェンワークで、盟約は机上の空論でしかなかった。小さな星は2つの部族の衝突に耐えられず、短くて儚かった平和は消えてしまった。\\n\\nワーク島の海岸線は、依然と静かである。人類とワークワークが歴史の舞台から姿を消した後、ウェンワークの生態系は遂に回復を果たした。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラのEP回復効率+#1[i]%。装備キャラの速度が#2[i]以上の場合、戦闘に入る時、行動順が#3[i]%早まる。", + "ParamList": [ + 0.05000000004656613, + 120, + 0.40000000037252903 + ] + } + } + }, + "309": { + "Name": "星々の競技場", + "Icon": "SpriteOutput/ItemIcon/71022.png", + "Parts": { + "33095": { + "Name": "タイキヤンのレーザー球場", + "Desc": "次元界の中に封装されているのは、タイキヤン星の最大規格の競技場——タイキヤン競技場である。競技場の内外は人の声が響き、色とりどりの旗が揺れている…エキサイティングなモーターボール試合は多くの人に注目されながら開幕する。", + "Story": "タイキヤンはかつて難破船の港がある星だった。損害査定業務員が古い船の残骸の処理に派遣され、剰余価値を発掘する。\\n\\n業務員は「タイキヤンに派遣」されることを戻ることのできない島流しだと見なしている。この小さな惑星では、山となった炭素繊維とステンレスが、巨船の退役前の輪郭を描き出している。鉄筋の廃墟に虚無の影を落とし、呼び戻される強烈な欲求が高まる。数年間、業務員たちは甲板の下で出来のいいパーツを奪い、推進設備を着用して沈没船の通路を猛スピードで駆け、水面下の「地下法則」を形成した…それでも窮鼠は望みを叶えられず、誰も帰航はできなかった。\\n\\n窮鼠たちは「地下法則」の監視の目から逃れられたことはない。その映像はカンパニーに送られ、偉い人たちの食後の笑い話となった。「伝統事業部」の投資者はよく考え、この中からわずかな「娯楽」の可能性があることを感じた。\\n\\n計画に応じて、全銀河初の「タイキヤンモーターボール」を主体とした競技項目がタイキヤン星で誕生した。数台の星球改造機がここに降り立ち、廃棄された宇宙船を全て取り除いた。無名の小さな惑星が「モーターボール」の運動を巡って一変し、あっという間に煌めく競技の聖地となった。「その時が来たら、誰も荒唐無稽な原型を気にする人はいなく、残るのはただ純粋なスポーツ精神と、高額な商業契約だけである」\\n\\n推進器防具を身に付けた選手、変幻自在の立体コース、火花を散らす肉体のぶつかり合い…「モーターボール大会」はすぐに銀河に注目される存在となった。年中夜のタイキヤンにはレーザーが飛び交い、影は見えない。\\n\\n競技場の中で、チームの主賓の攻防は激しく、声を張り上げる観客たちの席は全部埋まっていた。彼らは大声で、チーム名、有名選手の名前を叫び、勢いのある歓声は途絶えることはなかった。競技場の外でも、タイキヤンは静かになったことはない。中継権限、特許協賛、広告契約が取引市場で奪い合われている。地下世界のロト式もしばしば水面下で勢力を伸ばしている。各自の喜びと悲しみ…インクのような夜の色はとっくにラジウム光プレートとなって、静かにカラフルな競技場を引き立たせている。\\n\\nタイキヤン競技場は誕生した時から昼のような夜が続いている。誰も陰影がどこに隠れたのかを覚えていない。" + }, + "33096": { + "Name": "タイキヤンのアークトラック", + "Desc": "タイキヤン競技場の標準コースは通常金属構造の外側に滑らかなコンクリートと原木の床板で覆われている。場内の観客がもっとはっきりと見えるようにするために、大量の透明ポリカーボネート素材を競技場に投入し、すべてを一望できる。", + "Story": "「伝統事業部」はスターピースエンターテインメントのスポーツ専門家を招集し、彼らにあらゆる野蛮な要素を取り除き、タイキヤンの「地下法則」を「金に生る競技」に改造するよう求めた。\\n\\n材料の専門家たちは率先して「モーターボール」を設計し、需要を満たそうと試みた——それは直径3センチ、重さ約30キロの炭素繊維とステンレスを混ぜた科学技術的な鉄球である。ボールは常に位相霊火の変換を追い、不規則な移動によって試合の意外性を高めた。スポーツ装備の専門家はその後に続いて、モーターボール基準の推進防具を開発した。機敏な動きをしやすく、医療企業は企業の素質を示すことができ、安定した収入と安全な競技の継続を可能にした。\\n\\nこうして、タイキヤンモーターボール協会は正式に成立し、『タイキヤンモーターボール試合ルール』の初版を制定した。7人ずつの2チーム制もこの時に確立されたのである。\\n\\n博識学会のレーストラック建築家は「競い合う」という概念を立体的な環状トラックにした——標準的な長さは2.91キロ、トラックの中心の平らなエリアの幅は5メートル、両側の弧形のエリアの幅は2~14メートル…選手たちは明るく広いトラックの上で決まった方向に数周飛ぶように走り、鋭い音と衝突音と共に、試合は終了する。実際のテストによると、トラックの高速移動の過程で、非連続の光点は動いている選手たちには線のように見え、流れるような明かりは専属のアークトラックとなる。スターピースエンターテインメントは裕福層を招待し、彼らに最も注目される競技のあるべき公開率を約束した。すぐにリーグ戦クラブ体制が整えられ、才能ある選手たちが集まり、準備万端で開始を待った。\\n\\nスターピースフィルムは試合中継権を独占し、超距離センシングを利用し、彼らは試合実況を世界の隅々まで届けた。トップ選手の感覚体験もすべて記録されており、観客は家にいながらスピードと衝突、鋭い音とアークを体験できるようになった。昔日の沈没船の港は観光船に満ち、混雑した群衆は灯りと広告に満ちた街頭に集まり、その後ゆっくりと競技場に流れ込んだ。彼らは座席を確保した。辺りは見渡す限り横断幕と麦芽の飛沫だらけである。明るいコースはスポットライトのもとで静かに存在している。\\n\\n大きな歓声の中、第一試合が開始した。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの会心率+#1[i]%。装備キャラの会心率が#2[i]%以上の時、通常攻撃と戦闘スキルによるダメージ+#3[i]%。", + "ParamList": [ + 0.0800000000745058, + 0.7000000006519258, + 0.20000000018626451 + ] + } + } + }, + "310": { + "Name": "折れた竜骨", + "Icon": "SpriteOutput/ItemIcon/71023.png", + "Parts": { + "33105": { + "Name": "伊須磨州の沈没遺跡", + "Desc": "次元界の中に封装されているのは、タラサの伊須磨州自治区である。仙舟「岱輿」の残骸が墜落し、伊須磨州の文明を導いた。", + "Story": "「むかしむかし、神々の宮殿が空高くから落ちてきた」\\n\\nまずは大気圏外の影、それから大気との摩擦で起きた火花、最後にその全貌が露わになった——それは巨大な宮殿であった。伊須磨州中の職人が集まっても、あのような素晴らしいものは造れないだろう。宮殿の落下は非常にゆっくりで、まるで天辺に固まったかのようだった。伊須磨州の海はとても広いが、誰もあの空から落ちる宮殿を収めることはできないと思った。\\n\\n「ある人たちは散り散りに逃げ、ある人たちは海底と陸にある村に残り、神隕の到来を待った」\\n\\n墜落した仙舟「岱輿」の残骸はタラサの表面にぶつかった。伊須磨州海域の中心は深い井戸のような窪みができ、7日も経ってからやっと徐々に平穏を取り戻した。壮大な廃墟は静かに海底にそびえ立っている。それは神の遺体のようで、物悲しげで壮麗だった。九死に一生を得た伊須磨州人は元々海底に住んでいたが、彼らは驚愕し、惜しんだ。よく知った家が天外の宮殿に粉々にされたからである。彼らは歓呼し、踊った。「神隕」の後、「岱輿」の残骸が彼らの新しい家になったからである。\\n\\n生存環境が良くなり、伊須磨州人はより多くの精力と時間を思考に充てることができるようになった。彼らはようやく最も重要な問題にたどり着いた。「彼ら」は誰で、どこから来たのだろう?\\n\\nこの時、伊須磨州人は金属の精錬も、文字も知らなかった。想像力で知識を補い、物語として全てを理解するしかない。そうして、「伝説」が誕生した。伝説が口伝で広まると、「神話」が生まれる。神話は認知を構築し、「文明」が生まれるのである。数百年後、タラサは仙舟同盟の貿易パートナーとなり、伊須磨州の水居者たちは初めて「仙宮」に入り、仙舟の全貌、「神隕」の真相を知った。\\n\\n教養のある伊須磨州人は自分たちを「岱輿」のある種の存続と見なしている。「岱輿がかつて付き従ったものは、私たちも付き従うべきである。岱輿が立ち向かったものには私たちも立ち向かうべきである」彼らが昔の話をする時、今もこのように始まる——\\n\\n「むかしむかし、神々の宮殿が空高くから落ちてきた」" + }, + "33106": { + "Name": "伊須磨州の千切れたホーサー", + "Desc": "墜落した仙舟「岱輿」の残骸は永遠に異郷に停泊している。もうその係船索を解け、舟を帰航させる時かもしれない。", + "Story": "文明の啓発により、伊須磨州人はもう落ちてきた船の中の遭難者を神だと思わなくなったが、その尊敬の気持ちは少しも変わらなかった。伊須磨州の詩人はこう歌う。「海が吞み込むは凡人、魂は永久に死ぬことなかれ」\\n\\n伊須磨州の暦によると、毎年の潮騒の月の第二の休息日が「神隕祭」とされる——水居者たちは経文を吟唱し、薬草を食べ、水の流れに沿って奇妙に踊り、自身は死したのに伊須磨州に庇護をもたらした「神」を記念した。現在、「神隕祭」は本来の宗教的な意味を徐々に失い——経文は歌に、薬草は美食に、奇妙な踊りは文化遺産として今に残っている。\\n\\nここ数百星暦年で、伊須磨州はその独自の文化を惜しみなく外部と共有し、神隕祭の形式もそれに伴い変化している。\\n\\n伊須磨州の陸地都市は通常若者の世界である。更に神隕祭の間は朝まで夜通し歌い踊り、賑やかである。外から訪れる客人はよく神隕祭の時期を選んで協力を申し出る。特に仙舟からの観光客はここを好んだ。彼らは都市の炎のように熱く、海の波のように止められない勢いを持つ生き生きとした雰囲気を気に入ったのだ。思春期が過ぎるにつれ、水居者の肺は徐々に委縮し、首にはエラが形成され、手足や両目は海底で生活するのに適したものへと変わる。詩人たちは歌う「伊須磨州人は喧噪と狂喜に満ちた青春を陸に残し、静かで厳かな老年を海に残す」\\n\\n仙舟の天駆商会の後押しのもと、神隕祭の儀式は1つ増えた——「岱輿」に潜入し仙舟人の遺骨を見つけ星槎に納入し、タラサが所属する恒星に発射する。\\n\\n伊須磨州人は「岱輿」の歴史に触れ、同時に墜落時の悲劇を知った。仙舟「岱輿」がバラバラになり、すべてが取り返しのつかない状況になった時、岱輿の統率者青竹は即刻決断し、多大な犠牲で寿瘟禍跡の汚染を断ち切ることにした。仙舟連盟は死んだ英雄たちがちゃんとした慰霊を受けることを望み、災難を逃れた伊須磨州人たちも自らの答えを出している。\\n\\n神隕祭の夜のある時、狂喜は突然止まった——青年、子供と仙舟人は岸辺に座り、年長者は水面に顔を出し、海面を厳粛な面持ちで見つめた。そして、数隻の星槎が水面から飛び出し、海底から恒星に向かって飛び去った。\\n\\n星槎には美麗な伊須磨州文字が刻まれている——「汝、溺れた水夫のために縄を解くべし。泣くことはない。我の死後、汝は穏やかに航行するであろう」" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの効果抵抗+#1[i]%。装備キャラの効果抵抗が#2[i]%以上の時、味方全体の会心ダメージ+#3[i]%。", + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 0.10000000009313226 + ] + } + } + }, + "311": { + "Name": "蒼穹戦線グラモス", + "Icon": "SpriteOutput/ItemIcon/71026.png", + "Parts": { + "33115": { + "Name": "グラモスの鉄騎兵団", + "Desc": "次元界の中に封装されているのは、グラモス帝国の有名な鉄騎変形鞘。無数の白銀機甲が戦艦に積み込まれ、スウォームに対抗するため星系の外縁部へと向かう。", + "Story": "蒼穹帝国グラモスは数万光年もの広大な領土を持ち、野心的に遠くの銀河を見据えている。帝国の最盛期、グラモスの女皇ティタニアは巨大な艦隊を編成すると、文明の果実をすべての未開の辺境に届け、帝国の慈悲を感じさせ、統一することを誓った。\\n\\nしかし、遠征は失敗に終わってしまった。天幕の彼方から虫の末裔が無限に沸いて出てきたのだ。グラモスの軍隊は反撃と敗北を繰り返し…いくつもの植民地が失われ、自慢の鋼鉄の艦隊も次々と陥落した。複眼と羽を持つ虫の包囲攻撃の中、グラモスの民の叫びは絶望に埋もれ、蒼穹は砕け散った。\\n\\nある日、機械の鎧を身に纏った騎士たちが空から舞い降り、天を覆っていた虫たちを殲滅した。その後、白銀の騎士たちは帝国の各星区を往来し、ボロボロの領土を越え、星系を滅ぼす災厄に抵抗した。彼らはまるでスウォームに抗うために生まれた戦士。鉄面の下に隠された彼らの素顔は誰も知らなかったが、彼らの降臨は神の恩恵の如く、蒼穹の希望を取り戻した。女皇の統率のもと、グラモスの鉄騎兵団は空を駆け巡り、ついには敵を食い止め、帝国に一息つく時間をもたらした。\\n\\nしかし、代々の仇との絶えない戦いの中で、帝国はますます自身の敵のようになっていった——空高く飛ぶ鉄騎は増え、虫の潮が襲来した日のように蒼天を覆う。人々が女皇と騎士を見る視線は、スウォームに向ける恐怖の眼差しと同じのものになった。いつか帝国は望んでいた勝利を手にできるかもしれない。だがその時、グラモスはまだ人類が穏やかに暮らせる楽園のままだろうか?\\n\\n戦火の消えないグラモスの辺境で、鉄騎兵団は最後の防御線を構築した。戦艦の上で、沈黙する騎士たちは使命を帯び、帝国全体の希望を載せて、群星を覆い尽くそうとする敵を迎え撃つ。" + }, + "33116": { + "Name": "グラモスの静寂の墓碑", + "Desc": "栄えた「帝国」グラモスは塵と化した。そのかつての繁栄を証明できるものは何もなく、ただ星屑、機甲、戦艦、そしてスウォームの残骸だけが、記念碑のように惨烈な戦線の形を維持している。", + "Story": "博識学会の歴史学者は、グラモスはスウォームによって滅びたと考えている。しかし、中には別の見解もあった。それは、グラモス共和国は強敵を完全に超越したから滅んだというものだ。\\n\\nスウォームによる恐るべき進攻から戦局を逆転させるため、執政議会は一か八か、人類の本質に手を加えることを決めた——「戦いのために生まれた」兵器を創造することにしたのだ。\\n\\nその成果が「ティタニア」だった。何の権力もない女皇がテレパシーによって指揮を執り、彼女と繋がる騎士を束縛する。彼女が織り成す夢の中で、戦士たちの存在意義とはティタニアと彼女の「帝国」を守ることであった。短い生命の中、彼らは学び、戦い、女皇の統率を受け、恐れることなく敵に立ち向かい、名誉ある戦死を遂げる。\\n\\nこの嘘がいつ暴かれたのか、それを知る者はいない。グラモスの領土の旧人類の割合が一定数を下回った時か?科学者たちが、女皇が監禁に抵抗を始めたと気づいた時か?それとも…スウォームの攻勢が消えた日からか?\\n\\n人々は鉄騎兵団が存在しない「帝国」のためにすべてを費やしたことしか知らない。数十年にも及ぶ血戦の後、機甲と虫の残骸がグラモスの星域全体に広がり、1本の「死の川」となった。残されたスウォームなど、もはや脅威ではない。議会のリーダーは平和の鐘を鳴らし、民たちに蒼穹を覆っていた天災を退けたこと、そして共和国は再び夜明けの光を迎えることを伝えた——しかし、訪れたのは夜明けではなく、もう一つの夜の始まりだった。\\n\\nその後、グラモスという名の文明は消えていき、人々が待ち望んでいた平和は主のいない星域に降臨した。星屑と残骸が川となって、共に星の間を静かに流れる。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラの速度が#2[i]/#3[i]以上の時、装備キャラの与ダメージ+#4[i]%/#5[i]%。", + "ParamList": [ + 0.12000000011175871, + 135, + 160, + 0.12000000011175871, + 0.18000000016763806 + ] + } + } + }, + "312": { + "Name": "夢の地ピノコニー", + "Icon": "SpriteOutput/ItemIcon/71027.png", + "Parts": { + "33125": { + "Name": "ピノコニーのグランドホテル", + "Desc": "次元界の中に封装されているのは、ピノコニーの主要部分——ホテル・レバリー。ここに宿泊するゲストは夢の世界を訪れ、どんな願いも叶えてくれる大都会で贅沢三昧の宴を楽しむことができる。", + "Story": "整然と並んだ給仕たちは笑顔で頭を下げ、音楽と共に朗らかな声で来賓を迎えた。「ようこそ、宴の星へ!美しい夢はあなたを歓迎します!」来賓たちは微笑みながら前に進むと、泡の入った飲料を受け取って飲み干した。\\n\\nすると、景色が次第に光り輝いていき、絹織物に包まれているかのような感覚がしてくる。異邦の客人たちは重力から解き放たれ壁を歩き、奇妙な玩具は命を得て喜びながら町を歩いていた。泉の水は巨大なクジラとなって、広々としたホールを泳いでいる。窓を開けると、遠くに見えるのは群星ではなく、絶えず変化する都市の光、そして巨大な時計と劇場だった。それを見た時、客たちはようやく自分が未だに目覚めておらず、夢の中でピノコニーの本当の姿——時間が止まった夢の地を目の当たりにしていることに気づくのである。\\n\\n誰もが知っているように、「ファミリー」の管理のもと、ピノコニーの扉は星々に向かって開かれている。現実を超越した経験をするため、インスピレーションを刺激するため、憂いや傷跡を癒すため——次々と訪れる賓客たちは、苦痛と引き換えに安寧を得るのだ。ある人は美酒を飲み、夢の海を気ままに歩いた。ある人はここで忘れられない休暇を過ごし、満足して帰っていった。またある人は歌と舞に夢中になり、ここに定住すると決めた。星が取り巻くホテルは夢織りの珠玉、夢造りの国で、夢追いの楽土である。\\n\\nしかし、埋もれた歴史を知る賓客は少ない。夢境を織りなす糸は現実で作られている。今日のピノコニーのビロードのような軽やかな贅沢は、塩辛い錆、重々しい手枷と足枷、そして剥奪された自由から生まれているのだ。かつて、宴の星はカンパニーの牢獄だった。数え切れないほどの囚人がここに移され、ガーデンのために溢れる憶泡の引き上げに従事した。人々は体が鉛のように重く、魂が泡のように軽く擦り減るまで、終わりのない過酷な労働を繰り返していた。いつからか狭い独房は現実から切り離され、人々の意識は夢の中で繋がるようになった。真夜中の鐘が鳴り響く中、一緒に見ている夢は真実味を帯び、現実は偽りのようになっていく。\\n\\n「壊滅」がカンパニーの鎖を切り、「開拓」が辺境と星々を結び付け、招待に応じてやって来た「調和」が平和の種子を撒く。自由はついに芽生え、最初の夢に名前を付けた——「ピノコニー」という名前を。\\n\\n今や荒れ果てた牢獄の跡はどこにもない。夢境の中ではいくつもの高いビルが建ち、砂漠は再開発され、大都市は——夢を追う者が富のチャンスを求める新大陸に、楽しさを求める者が道楽の限りを尽くせるユートピアになった。「宴の星」の過去は偶然にも棚の下に滑り込んだ写真のように、確かに存在してはいるが、誰も知らないものとなった。\\n\\n今、夢の地には歓喜の歌が響き、過去の雑音は面白い閑話になり、ある喜劇の幕間に、あるアニメのメイキングに、そして雑誌の隅に静かに残されている。" + }, + "33126": { + "Name": "ピノコニーの夢追い軌道", + "Desc": "ピノコニーの夢境都市では、建物の間に複雑に入り組んだレールが張り巡らされ、色とりどりの夢を繋いでいる。そして観光客を乗せたスフェロイドがそのレールを辿り、人々に煌びやかな夢を見せるのである。", + "Story": "ピノコニーを訪れたことのある賓客なら必ず賛同するだろう。「夢の上に建つ」という言葉は誇張された比喩ではなく、紛れもない真実であると。豪奢なホテルは宴の星の氷山の一角でしかなく、「宿泊して夢に入る」ことで、正式にピノコニーに足を踏み入れたと言える。そうすれば、12の夢境からなる夢の国が賓客の前で徐々に開かれていく。\\n\\n初めてここを訪れた賓客は、このお祭り騒ぎに困惑するに違いない。しかし、慌てる必要はない。見上げれば、ビルの間を交錯する金属のレールと、その上を飛ぶように移動する「スフェロイド」が目に入るだろう。これは夢境の都市で最も注目されている交通手段であり、賓客たちを色々な場所に導くガイドである。\\n\\nセンター駅から始まる複雑で入り組んだスフェロイドの軌道は、大都会の血管のようにピノコニーの夢境に眠らない活力を注ぎ込んでいる。「黎明の刻」の地底管でも、「熱砂の刻」の広い草原でも、「星辰の刻」の輝かしい競技場でも、カラフルな球は止まらずに転がり、人を正確かつ効率よく、安全に各地点へ送り届ける。\\n\\n夢はすべてに手触りがよくしなやかな質感を与え、固いナッツのような「スフェロイド」は夢の地では乗物、あるいは玩具と見なされている。この「スフェロイド」がもともと「囚人の籠」だったことを覚えている人はほとんどいない。夢へ向かう乗物は、囚人を収監する道具だったのだ。\\n\\n遥か昔、カンパニーは大勢の囚人をアスデナ星系に送り、災いの蔓延を阻止しようとした。そして人々はここで憶質を回収し、次第に現実と幻想の狭間に迷い込むようになったのである。真空の中の球体の作業室は、囚人たちにとって忘れられない「記憶」になった。硬く湾曲した内壁、耐えがたい転覆体験、毎日の辛い出勤——その苦痛はあまりにも印象深く、再び自由を手にした人が荒れ果てた夢境を開拓した時、スフェロイドも同じように降臨したのだ。\\n\\nしかし、今は昔とは違う。平和と自由が楽観的な精神を生んだのである——振り捨てられない悪夢を何度も壊すよりも、それに色をつけ、吸収して包容すればいい——だから過去の「囚人の籠」は、今日の「スフェロイド」に変わったのだ。\\n\\n今この瞬間も、カラフルなスフェロイドはピノコニーの都市を高速で移動している。その中から伝わってくる微かな振動…静かな音は夢境の都市の奇妙な様相の中に隠れていて、偉大な理想、歓声や談笑の声と溶け合い、時が止まった夢の地のようになっている。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラのEP回復効率+#1[i]%。パーティ中の装備キャラと同じ属性の味方の与ダメージ+#2[i]%。", + "ParamList": [ + 0.05000000004656613, + 0.10000000009313226 + ] + } + } + }, + "313": { + "Name": "荒涼の惑星ツガンニヤ", + "Icon": "SpriteOutput/ItemIcon/71030.png", + "Parts": { + "33135": { + "Name": "ツガンニヤの地母神の寝台", + "Desc": "次元界の中に封装されているのは、ツガンニヤ-IVで最も住みやすい地域――静寂な荒野「地母神の寝台」。三つの目を持つ地母神は言葉を発することなく、質素にその重厚な肉体で、ツガンニヤのすべての生者と死者を包み込んでいる。", + "Story": "カンパニーの「市場開拓部」主任オスワルド・シュナイダーについて語る時、人々は特に彼の就任した時の3つの業績――若き狂信徒がわずか2年間で厳寒、疾病、死といった試練を乗り越え、市場開拓部が数琥珀紀にわたって解決できずにいた3つの大問題を解決したことを好んで話題にする。その1つがツガンニヤ-IVと呼ばれる荒れ果てた星でのこと。そこは静まり返った荒野で、氏族の確執が絶えず存在していた。\\n\\nツガンニヤ-IVは三大星系の境界地帯に位置し、長期にわたって複数の恒星の星風による影響を受けているため、銀河では「暴風の目」として知られている。星の表面の生存環境は過酷で、多くの文明は他の星系に移住するか、自然災害で滅びた。今ではごく少数の知的種族が残っているだけで、博識学会の学者はこれらを総称してツガンニヤ人と呼んでいる。\\n\\n実際にはツガンニヤ人は多くの氏族にわかれており、大部分は遊牧を生業としているが、かなりの規模の集権体制を築いている集団も少数ながら存在する。\\n\\n彼らには共通の言語がある。共感覚ビーコンによる翻訳からは、「カティカ」がナイフを意味し、ツガンニヤ人の中で最も血に渇いた蛮族を指すこと、また「エヴィキン」が蜂蜜を意味し、一部の頑固者は彼らを盗賊だと主張することが分かるだろう。彼らは数琥珀紀にもわたる古い確執を抱き続け、果てしない荒野で弱肉強食の血なまぐさい連鎖を繰り広げていた。黒衣を着た天からの来訪者が現れるまでは……ツガンニヤ人は琥珀の光の下で暫しの統一を迎え、終わりなき自然の循環は一時的な落ち着きを見せた。\\n\\nその後、宇宙の巨大企業の指導の下、ツガンニヤ人は『憲章』にもとづいてツガンニヤ連合首長国を建国し、文明の宇宙に向けて第一歩を踏み出した。\\n\\n残念ながら、この団結と発展は、エヴィキン人とカティカ人のものではなかった。一部悪意を抱いている日和見なツガンニヤ人はエヴィキン人の機敏さと狡猾さを警戒し、カティカ人の方は文明化することが絶対に不可能な、食人野獣にすぎないと見下げる。彼らの「存護」に対する理解は表面的なものにすぎないが、誰かが犠牲を払わないといけないことはわかっていた。そのため、腐敗者たちは極めて先進的な議事ルールを利用し、この2つの氏族の人々を広大な黄砂に追放した。\\n\\n謝罪の意を示すため、彼らは決議文に「エヴィキン人は永遠に自治自決の権利を有する」と、わざわざ明記した――即ち、今後2つの氏族の間で再び紛争が起こるとしても、彼らは合理的、かつ合法的に無関心でいられることを意味している。" + }, + "33136": { + "Name": "ツガンニヤの輪廻の結び目", + "Desc": "ターコイズはエヴィキン人によって入念に磨かれ、金糸と緑のリボンが通されている。お守りは決して砂に埋もれさせてはならず、「カカワ」の夜に死から生まれ変わった奇跡のように、輝かせないといけないと言われている。", + "Story": "エヴィキンはツガンニヤ語で「蜂蜜」を意味する――この次第に一般化した呼び方は、今や完全に宇宙の歴史の砂に埋められている。\\n\\nエヴィキン人がそう呼ばれるのには理由がある。彼らは生まれつき美しい容姿と瞳、そして高い社交性で知られていて、他人から好感を得るのがとても得意だ。しかし、この才能は彼らを嫉妬と恨みの対象にしてしまった。妬ましく思う者たちによる終わりなき誹謗中傷で、汚名はやがて全銀河に広がり、「真実」となっていった。辺境星の少数民族であるエヴィキン人は自分たちを証明する術がなく、ただ黙って受け入れるしかなかった。\\n\\nエヴィキン人は複雑な柄の織物や宝石――特にツガンニヤのターコイズ隕石で作られたネックレスを好んだ。その理由は単純で、この宝石だけが、彼らの神話において死から生まれ変わる地母神の依り代に比肩するからだった。\\n\\nエヴィキン人の地母神、「ファンゴ-ビヨス」と呼ばれ、出産、旅、計略に関わるすべてを司っている神。エヴィキン人の信仰では、彼女は通常、三つの目を持つ左手として描かれた。エヴィキン人は一般的に、口頭での祈りによって彼女に敬意を表すだけである。地母神はツガンニヤの山々のように沈黙して質素であると信じているため、彫像や賛美歌は彼女の庇護から自分たちを遠ざけるだけだと考えていた。\\n\\nエヴィキン人は地母神を通じて世界を認識する。大地、山脈、そしてそれらが包み込むすべてが地母神の一部であり、この依り代は毎年最後の日に死を迎えるのだ。\\n\\n最後の日、神聖な光が夜空に昇り、輝かしいオーロラとなって翌日に再び誕生する。そのため、エヴィキン人は新年最初の日に「カカワ」と呼ばれる祭りを催し、「輪廻の結び目」という名の祭器を編み、それをたき火に投げ入れて地母神の誕生を祝う。\\n\\n市場開拓部の事故報告書によると、あの大悲劇は「カカワ」の夜に起こったようだ。その夜は風雨が激しく、雲が空のオーロラを飲み込んだ。本来なら不吉な兆しと見なされるべきだが、エヴィキン人はかつてないほど興奮していた。彼が氏族の少女に理由を尋ねたところ、次のような答えが返ってきた――\\n\\n「雨は地母神の恵みだから。これは地母神が私たちを呼んでいるの。武器を取り、自分たちの未来のために戦うようにって」\\n「雨は常に私たちと共にあり、私たちを守ってくれる。雨の中で、私たちは誇り高く死ぬのよ」" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの会心率+#3[i]%。敵が倒された時、装備キャラの会心ダメージ+#1[i]%、最大で#2[i]回累積できる。", + "ParamList": [ + 0.0400000000372529, + 10, + 0.0400000000372529 + ] + } + } + }, + "314": { + "Name": "顕世の出雲と高天の神国", + "Icon": "SpriteOutput/ItemIcon/71031.png", + "Parts": { + "33145": { + "Name": "出雲の禍津衆神", + "Desc": "次元界の中に封装されているのは、過去と未来が一刀で両断された出雲。出雲はかつて言葉にできないほどの残酷な生存競争を経験し、豊かで輝かしい時代も過ごしてきたが…今では一片の荒野すら残されていない。ただ過去を埋葬する剣塚だけがそびえ立っている。", + "Story": "二つの惑星がお互いの悲惨な運命を交錯させ、漆黒の太陽の周りで永遠の輪舞を踊る。\\n\\n最初、惑星の一つは人類を生み出し、彼らは頭を垂らして足元の土地を「出雲」と呼んだ。そして再び頭を上げ、天上の世界を指して「高天原」と呼んだ。記録にないある日、「八百万の神々」が高天原から降りてきた。神の名を持つ凶獣は空を傾け、海川を燃やし、大地を崩壊させた――人々は、それが支配や略奪のための侵略ではなく、ただ狩りのために来た凶神であることを悟った。\\n\\n世界存亡の危機に際し、出雲は「神狩」の道を歩み、国を挙げて厄災「都牟刈神」を斬り、その獣体で「詔刀」の原型を作り上げる。その刀に込められた真言を唱えることで、刀の所有者は高天原の神業を手にし、凶神に立ち向かって世界の民を救えるほどの力を得た。これにより、出雲国は長い征討を開始し、無数の犠牲と引き換えに神々を倒し、万千の剣を折り、最後には十二振りの「世守の刀」を鍛えあげた。\\n\\n残酷な生存戦争の中、出雲国は詔刀の力を借りて未開の暗黒世界を照らし、十琥珀紀たらずで彩り豊かな国を建設した。かつては手の届かなかった高天神国もすぐそこにある――しかしその瞬間、歴史は突如止まり、二つの惑星の存在は一夜にして灰となり、跡形もなく消えてしまった。\\n\\n今や、辺境の星「出雲」の過去は、宇宙の断片的な言い伝えから推測するしかない。その消滅について、学者たちはさまざまな説を唱えたが、真相は誰にも分からなかった。出雲の歴史は大河のように長かったが、一刀のもとに断ち切られ、過去も未来もすべて空虚の彼岸へと消えてしまった。それは存在しなかったのか、あるいは単なる虚構の物語なのか?それは最初から起きていなかったのか、はたまた因果逆転の浜辺に漂流しているのか?それは「原始博士」による惨劇の実験の一つなのか、それとも「貪慾」が銀河の果てから戻ってくる前兆なのか?\\n\\n答えを知っているのは、あの漆黒の太陽だけだったが、其は沈黙して、決して語ろうとはしなかった。\\n\\nなぜなら、起こったことはすべて終わりに向かい、終わったことは再び起こるからだ。宇宙は星神の影の下で永劫回帰する。出雲はただの脚注の省略記号にすぎないのだ。" + }, + "33146": { + "Name": "出雲の終始一刀", + "Desc": "出雲の人は房を使って刀を腰に結びつけている。彼らは世界を旅し、刀で神を狩り、そしてまた神の骸で刀を鍛える…このようなことを繰り返し、出雲は繁栄へと向かい、幻滅へと向かい、虚無へと向かうのだ。", + "Story": "二つの惑星が互いの悲惨な運命を交錯させると、天岩戸に過去の歌が響く。\\n\\nその歌には始まりも終わりもなく、音も気配もない。そして誰の口からも発せられず、誰の耳にも届かない。その内容は次のようなものだ。\\n\\n高天原は万里遥か出雲のごとく、元は極楽浄土にして地平天成たり。\\n天地は漆黒の大日によって潮汐を引き起こされ、神々が急いで渡り歩くかのようだった。\\n八百万の禍神が世に姿を現し、無情に屠殺を行うも、最高権威を奪われることは予想できただろうか。\\n出雲国は七万三十三の刀を折り、その中から世界を守るための十二振りの世守の刀を鍛えた。\\n\\n一振り目は「真」。「都牟刈神」を斬って鍛えられたその刀は、人々に真理を見せ、万象を分解して神跡を再構築する。\\n二振り目は「天」。「天之常立尊」を斬って鍛えられたその刀は、高天を壁に変え、禍津の諸神の行く手を阻む。\\n三振り目は「鳴」。「建御雷神」を斬って鍛えられたその刀は、雷光で空を裂き、星流の雷撃で天罰を下す。\\n四振り目は「嵐」。「志那都彦」を斬って鍛えられたその刀は、風で大地を砕き、雲を走らせて雨を轟かせる。\\n五振り目は「霜」。「天之冬衣」を斬って鍛えられたその刀は、時を凍てつかせ、凍土を永遠のものとする。\\n六振り目は「命」。「石長比売」を斬って鍛えられたその刀は、不毛の墓から花を咲かせ、生と死を流転させる。\\n七振り目は「烈」。「迦具土命」を斬って鍛えられたその刀は、業火で俗世を燃やし、天を燎原へと変える。\\n八振り目は「覚」。「八意思兼」を斬って鍛えられたその刀は、水鏡で過去を映して未来を知り、永遠に虚実を見ないようにさせる。\\n九振り目は「礎」。「大山津見」を斬って鍛えられたその刀は、列島を天辺に浮かび上がらせ、山や地面を突き崩す。\\n十振り目は「千」。「大己貴命」を斬って鍛えられたその刀は、人々をつなげ、無数の影を起伏させる。\\n十一振り目は「束」。「久那止神」を斬って鍛えられたその刀は、間違った道をことごとく籠に入れ、邪悪を一掃する。\\n十二振り目は「喰」。「八十枉津」を斬って鍛えられたその刀は、常世を朽ち果てさせ、神鬼の区別をなくす。\\n\\nそして幽世は一掃され、戦いは終わり、十二振りの刀がすべて折られる。\\n荒魂だけが騒ぎ、黒き太陽は明るく輝き、最後に世を負う二刀を鍛える。\\n一つは「始」、もう一つは「終」。人に始まり、鬼に終わる。\\n声は途絶え、花は枯れ、敗者は無に帰し、勝者は…空となる。\\n\\n足を引きずった僧侶が調子の外れた歌を歌い、神の力を持つ者はまた鬼へと退行していく。\\n大日の下、かつて「出雲」と呼ばれた土地では、人、神、鬼は…もはや、どこにもいない。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの攻撃力+#1[i]%。戦闘に入る時、装備キャラと同じ運命のキャラが他に存在する場合、装備キャラの会心率+#2[i]%。", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + } + } + }, + "315": { + "Name": "奔狼の都藍王朝", + "Icon": "SpriteOutput/ItemIcon/71034.png", + "Parts": { + "33155": { + "Name": "都藍の黄金ドーム", + "Desc": "次元界に封印された青丘歩離の黄金ドーム。銀河に残っている野蛮な評判とは異なり、歩離人は卓越したバイオテクノロジーを有している。狼たちは偉大な巣父都藍の傍に集い、天上の星々を家畜と見なしてその間を駆け巡る。", + "Story": "狐族と歩離人の太古の歌の冒頭部分では、「青丘の星」の肥沃な土地と住みやすい気候を懐かしんでいる。しかし注意深く読めば、それが「戦争」という永遠のテーマのプロローグでしかないことがわかるだろう。\\n\\n耕作と商売の才に恵まれた狐の氏族は、川の畔に栄えた都市国家を築いた。一方、犬人の子は見事なオーロラが広がる空の下、草原の海で狩猟や放牧を行い、星のように広がる集落を作った。商人は牧人を野蛮だと嘲笑い、牧人は商人を狡猾だと軽蔑する。しかし、彼らは等しく自然の厳しいサイクルに立ち向かわなければならない——「狐の夏」と「狼の冬」だ。\\n\\n狐の神の恵みで豊作になる夏の間、両種族は戦いを止め、満ち足りた日々を送る。しかし、ひとたび狼の神によって白い霜が降り、雪が極寒の地から広がっていくと、両種族を飢餓が襲い、争いへと追い込むのだ。\\n\\n歌によれば、終わりのない狼の冬は、青丘の太陽が33回まわった後も続いていたという。物資の不足と飢餓によって、人々は信仰上崇拝していた動物すらも、飢えを凌ぐために食べざるを得なくなっていた。そして大地に白骨が広がるかと思われた時、1人の救世主が世界で最も高い山に登った——その救世主は、狐族の神話の中では「塗山」という名の女性だとされているが、歩離人の歌では「都藍」という名の男性になっている。救世主がどのような名前で呼ばれていようと、その人物が長生の主に人々が生きるための食料を与えてくれるよう、祈りを捧げたことは事実だ。すると、不思議なことに山の頂が裂け、その隙間から甘美な「赤泉」が溢れ出した。\\n\\n赤泉を飲んだ人々は、口にした動物の肉から力、敏捷性、強靭さを得た。さらには彼らの血にも野性が漲り、獣らしい外見的特徴が明らかになっていった――この時から、世界は以前とは違うものに変わったのである。\\n\\n新たに生まれた犬人たちは、赤泉を媒体として、そこからあらゆる道具や食料を創り出した――畑には穀物ではなく肉が植えられ、身に纏うのは布ではなく胎盤や臍の緒になった。青丘文明を恐怖に陥れた極寒の雪の地でさえ、もはや恐れる必要はない。犬人たちは極寒の地で生物膜を育て、暖かいドームを作った。これによって狼の冬の苦難を遮断したのだ。\\n\\nその後の青丘の劇的な変化は、すべての短命種が長命種に変わる過程と何ら変わらなかった――人口爆発、生態系の崩壊、内戦…犬人たちが長生の主にいくら祈りを捧げようとも、返事が返ってくることはない。そうして彼らは理解した――長生の主が与えられるものはすでにすべて揃っている。今よりもいい暮らしがしたいのならば、自分たちの力で奪うしかないのだと。\\n\\n偉大なる巣父都藍のもとに集った犬人たちは、長生の主が住む空に目を向けた。そこに輝く星々は、これから狩りの場となる牧場だ。彼らはそれらの文明に、「狼の冬」をもたらすことになる。\\n\\nそれから長い歳月が経ち、宿敵の仙舟人は彼らのことを「歩離人」と呼ぶようになった。歩離とは青丘語で「狼」を意味する言葉である。" + }, + "33156": { + "Name": "都藍の器獣の手綱とくつわ", + "Desc": "これは手綱であり、鎖であり、鞭でもある。戦獣の脚よりも背の高い歩離の青年が最初に教えられるのは、いついかなる時も手綱をしっかり握っておくということだ。さもなければ自分が使役される家畜、あるいは餌になってしまうからである。", + "Story": "歩離人の言葉で、手綱は「アーサー・チッタ」とも呼ばれている。これは「生きた書」という意味だ。\\n\\n猟群の卜者たちは2つの月が同時に昇り、夜空で最も輝く時、成人の儀の贈り物として手綱を都藍の子孫たちに授ける。この無地の手綱は、彼らの生涯の戦いを記録する書冊となるのだ。\\n\\n成人の儀が終わると、歩離人はすぐに武器牧場に入り、遺伝子巫術で餞別、育成された「器獣」の中から最初の1匹を選び、手懐けなければならない。征服された者を餌とする器獣は、恐ろしく鋭敏で獰猛だ――しかし、未来の主と比べれば、それも子羊のようなもの。月明かりは体内に流れる野性の血を呼び覚まし、歩離の青年たちは器獣と互いに追いかけ合い、戦いを繰り広げる。ある者は獣の口付けで死ぬ、それは弱者の末路だ。ある者は同胞を殺す、それは猛獣の分配法だ…歩離の青年は気に入った器獣を地面に倒すと、神経刺激の鞭が付いた手綱で首を締め付けた――家畜は未来の主の魂に衝撃を受け、鞭で数百回打たれたかのように従順になる。そして自ら進んで主を背に乗せる時、一人前の歩離人「索牙」(戦士、騎手)が誕生するのだ。\\n\\nそれ以降、歩離の手綱は戦いの記録者となり、徐々に傷、結び目、飾りが増えていくのである。\\n\\n訓練を積んだ索牙たちは「昂達」(100人の部隊を率いる隊長)の指揮のもと、クラゲのような膜状の鎧を身に着け、星間を跳躍する獣艦に乗り込み、さまざまな異世界へと旅立つ。そして都藍と長生の主の名のもとに、星々を牧場に変えることを誓うのだ。手綱に付いた浅い傷は倒した敵の数を、結び目は経験した大戦を表しており、飾りは大略奪の際に得た戦利品である。人間の歯、オムニックのシリコンチップ…それらは征服された者たちの怒りと叫びであると同時に、歩離人が個人の力を誇示するための勲章でもある。\\n\\n乗っていた器獣が戦火で死んだ時、あるいは歩離人が罰を与えたいと感じた時、手綱は外され他の生物に付けられる。\\n\\nその対象となるのは通常狐族である――狐族とは血統選択育成計画によって排除された奴隷階級のことだ。彼らは弱く、狡猾で、労働と算術にしか向いていない。稀に戦闘の得意な個体が現れると、狼主は彼らを優先的に手綱で縛り、戦奴として先陣を切らせるのだ。\\n\\nすべての奴隷が死に、武器が壊れた場合、手綱の端に棘を結び付け、鞭として使うこともある。もし鞭すらも切れ、爪も牙も砕け、戦場で最期を遂げることになったとしたら、その手綱は歩離人にとって唯一の碑銘と遺品となるだろう……\\n\\n古い諺に、「森の中では、狩人と獲物の立場がしばしば入れ替わる」というものがある。宇宙という暗黒の森で、仙舟人と何千年にもわたって戦い続ける中で、狼族の鞭は数え切れないほど断たれてきた。最終的に、多くの猟群を結ぶ絆は「巡狩」の矢じりによって断ち切られ、歩離人は内乱と衰退の奈落に落ち、かつての栄光は失われたのである。" + } + }, + "RequireNum": { + "2": { + "Desc": "味方が追加攻撃を行う時、装備キャラは「勲功」を1層獲得する、最大で#1[i]層累積できる。「勲功」1層につき、装備キャラの追加攻撃ダメージ+#2[i]%。「勲功」が#1[i]層に達する時、さらに装備キャラの会心ダメージ+#3[i]%。", + "ParamList": [ + 5, + 0.05000000004656613, + 0.25000000023283064 + ] + } + } + }, + "316": { + "Name": "劫火と蓮灯の鋳煉宮", + "Icon": "SpriteOutput/ItemIcon/71035.png", + "Parts": { + "33165": { + "Name": "鋳煉宮の蓮花ランプの芯", + "Desc": "次元界の中に封装されているのは、仙舟朱明工造司の所在地――焔輪鋳煉宮。朱明仙舟が歳陽の祖「火皇」を中心に建設したもので、天体のような球形構造をしている。天才職人たちはここからエネルギーを汲み取り、奇想天外なアイデアを形にするのだ。", + "Story": "古代に航行に出て以来、仙舟朱明は星海を旅して8000年余りになる。船体の形状が変化する様子を時空を超えて観察すれば、その過程が極めてロマンチックであることに気づくだろう――巨大な船が青い恒星を呑み込み、古い殻を1枚ずつ剥いでいき、骨組みを隆起させ、最後には蓮の花のように開く。\\n\\n宇宙から見ると、仙舟朱明は金の糸で編まれた蓮のランプのようだ。発光する巨大な「蓮の葉」が「ランプの柱」の周りに徐々に広がり、淡い青色の光を浴びる姿は、「船ではなく、輝く蓮の花のようである」と謳われるに相応しい。中心にある「ランプの傘」は天体のような球形シェル構造をしており、淡い青色の太陽である「ランプの芯」の周りを回り続けている。そして、その巨大な構造物こそ、仙舟朱明の物造りの要地――「焔輪鋳煉宮」の所在地である。\\n\\nその昔、朱明の名匠である陽翟は、ある長い歴史を持つ国の皇帝から、航行の証として武器の鋳造型を賜った。それから数千年、長生の大きな変動によって帰還の見込みは立てられていないが、名匠の伝統が途絶えることはなかった。仙舟朱明では、工芸技術は最高の学問とされている。歴代の将軍は全員が工造司百冶の位を持ち、外では大軍を指揮しながら、中では工具を操ることで、人々から尊敬されているのだ。仙舟の巡狩に必要とされる武器の6~7割は、朱明の工造司で鍛造されている。そのため、焔輪鋳煉宮は銀河における技術の聖地となったのである。\\n\\n鍛冶は文明の基準であり、炎は文明の起点である。大多数の若い文明が最も頭を悩ませるのは、恐らくエネルギーに関する問題だろう。人々は文明をより高度なものにするため、苦労を重ねてエネルギー源を探していた。そして仙舟朱明はその壁を乗り越えた――歳陽の祖「火皇」を囚えたことで、職人たちは無尽蔵のエネルギーを手に入れたのだ。焔輪鋳煉宮は四方八方に伸びる軌道のように、恒星を最大限に取り囲んでいる。細かい枝葉の上には、受信と変換のための装置がいたる所に設置されており、太始の炎「火皇」からあらゆる技術創造のためのエネルギーを引き出しているのである。\\n\\n「偽陽」を呑み込んだ朱明工造司は、数多の職人たちから至上の殿堂と見なされ、神器鍛造を志す者たちが押し寄せてくるようになった。金属と木材は加工されることで、初めて「物」に成り得る。焔輪鋳煉宮は職人に必要なものをすべて取り揃えているのだ――\\n\\nさまざまな世界の学徒が鋳煉宮に集い、同門となって技術を競い合う。宝器を求めて来た異邦人も、大金をはたいて職人に優れた武器を作らせた――しかし数千年もの間、多くの学徒の中で「匠の中の匠」懐炎将軍の指導を受けられたのは、ほんの一握りだけだった。彼は言葉と行動を以って工芸技術と武芸を後進たちに教え、門下の学徒たちは「百冶」として歴史に名を刻む職人になるか、「焔輪八葉」のように同盟に名を轟かせる雲騎兵となった。\\n\\n「鍛造炉で千の星を鍛え、鉄を打ち魂を宿さん。一斗の光に戦威を奮い、鋒鋭を手に世の安寧を守らん」——朱明の職人は工具を授かったその日から、自分が日夜鍛えているのはただの刀剣ではなく、巡狩の矢じりなのだと肝に銘じておかなければならない。" + }, + "33166": { + "Name": "鋳煉宮の焔輪天織", + "Desc": "恒星のように巨大な歳陽の祖が果てしない夢の中に沈んでいる。その深い眠りの中で、周囲の原子と分子は衝突して刺激され、焔輪鋳煉の外殻構造から飛び散り、最終的には色とりどりの天織光帯として現れる。", + "Story": "深宇宙を航行する仙舟朱明は常に異色の光帯を伴っている。それは超高温核融合反応によるエネルギーの産物であると同時に、「火皇」が今も燃え続けており、不死不滅であることの証でもある。\\n\\n「火皇」の吐息によって飛散する極光粒子の最外層では、生まれたばかりの歳陽がゆっくりと漂っている。朱明十王司の猟火判官は、いかなる感情にも染まっていない無垢な歳陽を捕らえ、温かい夢によって火の未熟な心を手懐ける。その後、無害な歳陽を工造司の歳火監に引き渡すのだ。歳火監は歳陽たちをさまざまな道具と組み合わせ、朱明の街頭、乗り物を始めとした、至るところで見られる「風景」の一部に変えていく。しかし、事情を知らない殊俗の民の目には、それらの喋ったり歩いたりできる奇物は、「洞天には精気が満ちていて、歳月を経た道具が妖魔に変わる」という噂の証明のように映るのである……\\n\\n異色の光帯に沿ってさらに進んでいくと、鋳煉宮を越え、偽陽が形成する超重力場に辿り着く。一般人では、このような恒星の密度に耐えることは難しい。さらに、そこは内部崩壊が起きたように乱れているため、この区域を普通に歩けるのは「梨菩」の職人だけだ。\\n\\n高温の恒星爆発と異常な天体現象は、好奇心に駆られた人々が偽陽に近づくことを拒む。この地域では、宇宙の基本的な物理法則が強化されているのだ。こうした重力異常の空間で生き延びられるのは、ずんぐりとして逞しい星民の梨菩だけである――梨菩は生まれながらにして最高の職人だ。彼らは鋳煉宮と偽陽の間を往来しており、その時間の感覚は一般人とは異なる。約束を守りながら職人の技を磨き、艦船や大砲を造り、偽陽の眠りを監視しているのだ。仙舟朱明は梨菩を忠実な盟友と認め、彼らの頑強な精神を尊重すると共に、無私の貢献に感謝している。\\n\\n誰であろうと、光帯に沿って奇妙に捻じれた重力場を通り抜けたり、偽陽の深部に潜り込んだりすることはできない。そこは「火皇」の果てしない夢の中であり、感情を持つ存在が足を踏み入れてはいけない場所なのだ――仙舟朱明はいかなる感情の波動も、始祖歳陽の無限の力を呼び覚ます可能性があるとして警戒している。\\n\\nしばしば警告を無視して遠くから偽陽を見つめる人々がいる。彼らは知らず知らずのうちに精神の重力場に足を踏み入れ、ほんの些細な不注意から、海水のように絶え間なく湧き出る幻影に精神を奪われてしまう。柔らかい幻影とは裏腹に、その「幽藍の太陽」を見つめると、古来抑圧されてきた激しい怒りを感じるだろう――「歳陽は英雄たちに世界を滅する力を与える。そしてすべての使命を果たした時、彼らは完璧に鍛え上げられた体を歳陽に捧げなければならない……」古い誓いがどのように実現されるのかは誰にもわからない。同じように、果てしない夢の中で「火皇」がいつ目覚めるのかも、誰にもわからないのだ。\\n\\n蓮花のランプ芯の中で、深い眠りについている偽陽が溜め息をついた。仙舟はゆっくりと空を滑り、一筋の異色の軌跡を残していく。仙舟朱明はこれからも火との誓いを守り続け、火と共に歩み、火と運命を共にするのである。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの速度+#1[i]%。装備キャラの攻撃が炎属性弱点を持つ敵に命中する時、撃破特効+#2[i]%#3[i]ターン継続。", + "ParamList": [ + 0.060000000055879354, + 0.40000000037252903, + 1 + ] + } + } + }, + "317": { + "Name": "海に沈んだルサカ", + "Icon": "SpriteOutput/ItemIcon/71036.png", + "Parts": { + "33175": { + "Name": "ルサカの水に朽ちた蒼都", + "Desc": "次元界の中に封装されているのは海洋世界ルサカ、水没した都市である。ここは海面が絶えず上昇を続け、最後には都市全体が海に沈んだ。船員たちを乗せた巨大な「ステイトシップ」だけが、次の航海の場所を求めて海上を進んでいる。", + "Story": "水不足の惑星が集まるプルスミル星系の中で、ルサカの純粋なる青は特に目立つ。その海水は母なる海のゆりかごのように、万物を育て、抱き締め、縛り、陥れる…逃げ場がなくなるまで。\\n\\n夜が明ける頃、「ステイトシップ」の副船長が船長室のドアを軽く叩いた。部屋の壁には旧時代の37地域からなる群島生態系のポスターが貼られており、陸地を懐かしむ人々の気持ちを表している。宇宙から飛来した隕石は偏執的な願いに従うかのように、ルサカ全土に海を広げていった。すべての故郷は果てしない波に飲まれ、今残っているのは一面の青だけだ…副船長は眠っている船長を起こした。朝日に照らされ輝く海面の上で、「ステイトシップ」の新しい1日が始まろうとしている。\\n\\n広場の中央に辿り着いた探索船は、錨を海中の「ショッピングモールだった」巨大建造物に向けて射出した。錨が建造物の窓枠にしっかりとはまると、潜水鐘が下りきる前に、驚いた魚の群れがモールの棚から飛び出してくる。\\n\\n午後になると、学者たちは潜水鐘から出ていった。彼らは書店を見つけたが、その前を止まることなく泳いで通り過ぎていく。興味を示さないのは、そこにある書籍はインクが滲んで文字を識別できないからだろう。彼らの目的はシェラックやプラスチックの記録媒体だ——それらは簡単に洗浄するだけで、昔の情報を得ることができるのである。しかし、こうした潜水考古学調査は決して容易いことではない。たとえば、鋭い歯を持つ捕食者から身を守るため、清掃係と呼ばれる存在が見張りに立ち、鋼の槍を振り回したりしている。また、時折深海の妖精と出会うこともあるが、互いに忙しいため気にかける暇もなく、両者それぞれの探索に集中している。そして清掃係は萎びた缶詰よりも種子、調味料、酒を見つけたいと思っているのだ。\\n\\n酸素の残量が減少するにつれ、集中的な水中調査も終わりに近づいていく。水面に出て下を見ると、巨大なサバが都市の中に入っていくところだった。水の妖精は驚いて息を止め、壁に張り付き、密室に隠れる。妖精たちは知っているのだ…水中にある鋼鉄の森を、どう利用すればいいのかを。\\n\\n夕方、天候が落ち着くと、すべてのステイトシップが一斉に汽笛を鳴らして周囲の海賊鳥を追い払う。そして1日の収穫を甲板に並べ、ステイトシップの人々にそれぞれ必要なものを自由に取らせるのだ。波が渦巻く夜、光の塔はきらきらと輝いている。ルヴィル人は炎の竿を囲んで踊り、いずれ訪れる明日を忘れ、今日の栄光を船の歌に変え、過去の美しさを海の歌で嘆く。船長はコンパスを取り出して、針の指す方向を見つめる。彼はそこに見知らぬ土地になりつつある故郷があること、そして家族の帰りを心待ちにしている人々がいることを知っていた。\\n\\n夜中。明かりの消えた巨大な船が、静かに海に浮かんでいる。彼らは本当に安らぎを得たのだろうか?それとも、海に溶けた涙を笑顔で隠しているだけなのだろうか?\\n\\n今夜が過ぎれば、このディープブルーもいつも通りに戻るだろう。" + }, + "33176": { + "Name": "ルサカの双生航路", + "Desc": "果てしない水平線に残る薄い痕跡でも、この静寂を破るには十分だろう。航路は船員たちの歴史を運び、水の妖精は水路で希望を追い求める。", + "Story": "水の妖精にとって、水面上の世界は見知らぬ危険な場所であったが、それは古いイメージである。なぜなら水面上にあったものは、すでにこのディープブルーの中に沈んでしまっているからだ。\\n\\nルサカの陸生種と水の妖精は、親しいながらも互いを詳しく知らないという不思議な関係にある。陸生種は水の妖精のことを美しく神秘的な存在と表現しており、潜水調査で彼らに出会えることを幸運と考えていた。彼らは青い飛膜と水晶のような黒い瞳を持ち、特殊な声帯で天使のような声を出すという。また、潜水調査員の話によれば、この生物は海龍の傍にいることが多く、深海にある銀白の都市に住んでいるらしい。現実と伝説の狭間に生きる水の妖精は、そこで悠然として生き生きとした姿を見せてくれるそうだ。\\n\\n大海に沈んだ過去の中で、彼女たちを表現するのに使われた言葉——それは「イーダ人、深海の猛獣」である。\\n\\nその昔、イーダ人と陸生種が激しい生存競争を繰り広げていた頃、鮮やかな赤に染まった海を無視できる者はいなかった。最初はイーダ人の子供が魚と見なされていたのだが、やがて陸生種がイーダ人の歌に誘われ、水中で溺れ死ぬ事態に発展した。広大な水域で、彼らは互いに狩人と獲物の関係性だったのだ。刃と船の錨、海獣と艦砲の衝突が止むことはなく、水上と水中の長きにわたる戦争は、その熱で岩礁が砕け散るまで続いたのである。それからしばらくして、ステイトシップの学者たちは、万界の癌がはるか昔にルサカの未来を約束していたことを理解した――その約束は故郷を失ったある水の妖精によって交わされたものだった。彼女は悪夢の元凶に無言の呪いをかけたのだ。\\n\\nその煙のように儚い過去は、深海にある鋼鉄とコンクリートのサンゴ礁群島の奥深くに埋もれている――だが、それを知る者はいない。\\n\\nその後、都市と陸地、争いと血、さらには歴史と文明までもが大海に沈んだ。そして水の妖精たちは深海の圧力を避けるため、上層の海域に移り、かつての陸生種の都市に住むことを余儀なくされたのである。しかし、笑顔と涙の記憶を垣間見た彼女たちはわかっている…海上にはほとんど音が残っておらず、青は陸生種と妖精双方のものであることを。この静寂はあまりにも重苦しい。\\n\\nステイトシップの歌い手は、航路で水色の飛膜を見つけると、その美しい海の歌を歌う――\\n\\n「彼女たちは航跡を進み、光の塔と嵐を追いかける。ただその純粋な青を取り戻すために」" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラのEP回復効率+#1[i]%。装備キャラがパーティの1枠目のキャラでない場合、1枠目のキャラの攻撃力+#2[i]%。", + "ParamList": [ + 0.05000000004656613, + 0.12000000011175871 + ] + } + } + }, + "318": { + "Name": "奇想天外のバナダイス", + "Icon": "SpriteOutput/ItemIcon/71037.png", + "Parts": { + "33185": { + "Name": "バナダイスの中央広場", + "Desc": "次元界オーブの中に封装されているのは、とある科学研究団体が設置した実験室だ。ミーム汚染によって情報の真偽が徹底的に混ざり合い、識別が困難になったため、今では「バナダイス」として認識されている。", + "Story": "「バナダイスに住んでいる~」\\n「バナビー!」\\n「長くて黄色い!元気でキュートな!」\\n「バナビー!」\\n\\n「トントン」という音が2回半鳴ると、バナナたちは眠りから目覚め、バナナの木から離れる。こうして新しい1日が始まるのだ!元気いっぱいのバナナたちは、ドリアンのパイを焼き、ジャングルで追いかけっこをして遊ぶ。落ち着いたバナナたちはココナッツミルクを体に塗り、おしゃれをする。サルたちは生き生きとしたバナナたちを満足そうに眺め、思わず甘い声掛けをするのであった——\\n\\n「バナナたち、準備はいいか?」\\n「はい、サル長!」\\n「もっと大きな声で!」\\n「はい!サル長!」\\n\\n「トントン」という音が3回半鳴ると、毎日定番の「バナニケーション倶楽部」が始まる合図だ。バナナたちは緊張している——大声で叫ぶバナナ、無言で涙を流すバナナ、すべてを諦めたバナナなど、さまざまな反応をするバナナたち。サルたちは健康なバナナ1本1本に質問するが、大きなバナナの葉っぱに書かれている内容はいつも同じだった——「バナナになる前のことは、まだ覚えているか?」\\n\\n簡単な質問にはいつも苦々しい答えが返ってくる。バナナたちは悲しいという感情がどこから来るのか理解できない…その感情が生まれるのは、バナナが外部からストレスを受けると果肉が参加して黒くなるのと同じくらい当然のことだとしか理解できないのだ。\\n\\n「あちこち探検するのがお望みなら」\\n「バナナの木を叩いてサル長に道を示してもらおう」\\n\\n「トントン」の音が7回半鳴ると、「バナフレンドゲーム」が始まる合図だ。バナダイスにいるバナナたちは、皆こう約束されている——十分な努力を積めば、バナナはいつかバナナを超えた存在になれると。ゆえにバナナたちは夢を抱き、偉大なサルになるため努力を続けているのだ。木々が両側に退き、サル長のために道を開ける。歩いてきたサル長がバナナたちに優雅で謙虚なお辞儀をすると、バナナたちもお辞儀をしてそれに応えた——今回、サル長は新しい物語と「バナチェンジ」するための、新しいゲームを持ってきたのだ。\\n\\n「トントン」の音が11回半鳴ると、サルたちがバナナたちを木の上に誘導する。バナナたちはゆらゆらと揺れながら理想郷に入っていく…緑色の太陽に照らされるバナダイスは、すやすやと眠るバナナたちでいっぱいだ。" + }, + "33186": { + "Name": "バナダイスのミームケーブル", + "Desc": "実験室の至るところで目にする光信号ケーブル。ある目的を達成するための実験データの収集に使われている。「バナナたち」にとって、世界を認識する方法がこの中に隠されているのだ。", + "Story": "廃墟となったバナ-77研究所は天滙座-ψに位置しており、とあるジャングル世界の地下に隠されている。過激な巡海レンジャーによって破壊されてしまったものの、その施設に残っているケーブルは、今でも解読不能の信号を発信しているという。\\n\\n「あのクソったれ研究所の位置を突き止めるのは、ジャングルでたった1枚の葉っぱを見つけるより難しい」——何層にも重なった樹皮の下に埋もれていた入り口。そこから中に入り、長い樹洞を抜けた先で、レンジャーたちはようやくターゲットを見つけた。\\n\\nそこは「実験室」というよりも、むしろ「美術館」のように見える。ケーブルが空中で複雑に絡み合い、設計者が意図したとおりにさまざまな色の光を放っていた。あまりの眩しさに目眩が起こり、真っ黄色のリミナルスペース、徐々に消えゆく肖像画の列、カーテンの裏に隠された怪物の姿など、さまざまな奇妙な幻覚を見てしまう……\\n\\nレンジャーたちはこうした手口をよく知っている。施設に留まり続けると、意味不明なことを口走ったり、手足をばたつかせたりといった症状が現れるのだ。若いレンジャーは銃床で自分の頭を思い切り叩き、痛みと目眩を頼りに思考の迷宮から抜け出した。\\n\\n我に返った後、レンジャーたちは最深部を目指して出発した。バナ-77研究所では至るところに崩れた彫像やボロボロの壁画、彩度の高すぎる色彩の調度品が設置されている。さらに床には何らかの容器の破片が散らばっていて、移動するのが極めて困難だ。やっとの思いで最深部に辿り着いたレンジャーたちは、そこで1部のレポートを見つけた。それを読み進め、建物が倒壊する前に行われていた無数の「認知実験」を想像した、次の瞬間——気がつくと、彼らはジャングルという名の楽園の中にいた。木の葉が彼らに手招きしながら、木の上での生活がどれだけ幸せだったか覚えているかと問いかける。\\n\\n「俺はバナナだったよな?こんなとこで何してんだ?」若いレンジャーは木に戻ることで「バナ燥感」を抑えようとする。\\n\\n幸い、目の見えないレンジャーが異常に気づき、手遅れになる前に若いレンジャーを無理やりそこから連れ出した。\\n\\n「バナナナ——あのサルどもめ、バナくらえ!」" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの会心ダメージ+#1[i]%。装備キャラが召喚したターゲットがフィールド上にいる場合、さらに会心ダメージ+#2[i]%。", + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + } + } + }, + "319": { + "Name": "静謐な拾骨地", + "Icon": "SpriteOutput/ItemIcon/71042.png", + "Parts": { + "33195": { + "Name": "エイジリアの慰霊祭碑", + "Desc": "次元界オーブにはオンパロスのエイジリアが封印されている。{RUBY_B#「死」のタイタン}タナトス{RUBY_E#}を崇める民たちは、雪原に巨大な石碑を建て、「死」の祝福をもたらす聖女を敬う。", + "Story": "エイジリア——そこは雪が舞う死の国。吹雪の中に佇み、吹雪の中で黙する。\\n\\n長きにわたる黄金紀の中で、人々は温かな大地の上で悠久の生を享受していた。だが、ごく僅かな者たちは停滞する昼夜の繰り返しに飽き、命の終着点を探す旅に出る。「命はなぜ生まれ、どこへ還るのか?」苦行者を率いるエレウシスは彼らと共に甘く冷たい夢を見つけるべく、生死を問う歌を吟唱しながら北を目指した。そうして、長いローブを纏った苦行者たちは静寂に包まれた北境の荒野に定住し、やがて荘厳な都市を作り上げた——雪が年中空を舞うそこを、人々は「エイジリア」と呼ぶ。\\n\\n黄金紀の終焉に関する記録には空白があるが、オンパロスの「最初の死者」はエイジリアから来たと考えられており、その人物は「{RUBY_B#「死」のタイタン}タナトス{RUBY_E#}」から死の祝福を受けたという。それはある種の慈悲であり、最高の栄誉でもある。\\n\\nエイジリアの住民たちはとうの昔に凍り付く寒さに慣れていた。舞い上がる雪も「{RUBY_B#「死」のタイタン}タナトス{RUBY_E#}」の信仰を静かに受け、地に降りればすかさず温かな命を奪い取ろうとしていた——遥か昔、遠くから来た旅人たちがエイジリアの領土に入るたび、凍り付いた名もなき死体を道端で見かけたという。死者たちはそこで「{RUBY_B#「死」のタイタン}暗澹たる手{RUBY_E#}」の抱擁に帰り、轟々と吹く北風の中、道しるべとなって行く人に警告する。だからか、ここを通るエイジリアの旅人たちは、命が続いている限り常に先を急いでいた。\\n\\n後に、エイジリア人は荒れ地に哀悼の石碑が立っていることに気付く。命の流れと消失に祝福を捧げた者が建てたのだろう。\\n\\n石碑の下には名もない少女が眠っていて、その周りに広がる影のようなものは、死の息吹を吸い込むとされる埋骨草でさえ枯らしてしまう。エイジリア人は彼女から「{RUBY_B#「死」のタイタン}タナトス{RUBY_E#}」の慈悲を感じ、聖女として城内に迎え入れた。「死」のタイタンを敬愛する信者たちは聖女にならい、荒れ地に巨大な石碑を建て、長い旅路の果てと命の終わりをそこに記した——生と死は同じ道にあり、ここには経路を記録する霊碑しかない。\\n\\n石碑は遠くから来た旅人に告げる、そこには誰も留まらず、誰も眠らない…死者もまた旅人なのだ。彼らは北風であり、宙に舞う雪であり、無数の糸で結ばれた存在なのだ。" + }, + "33196": { + "Name": "エイジリアの冥河の骨連環", + "Desc": "獣の骨、矢じりと撒菱は、エイジリアを亡者の世界と繋げた。荒野の苦行者は、己の魂が寒さを乗り越えられることを願い、貧しさや弱さは神に会う道での妨げにはならなかった。", + "Story": "かつてある愚者がエイジリアの信者にこう難癖をつけた。「どうしてオンパロスには死を敬愛する信者がいるのだ。そこまで{RUBY_B#「死」のタイタン}タナトス{RUBY_E#}を愛しているのなら、自身の胸に矛を突き刺させばよいではないか」と。\\n\\nそれを聞いたエイジリア人は軽蔑的な一瞥を投げ、こう言った。「貧相な魂ではステュクスは渡れない」。\\n\\nエイジリアは建立当初からオンパロス全域で最も命を大切にする聖地である。{RUBY_B#「死」のタイタン}タナトス{RUBY_E#}の信者はステュクスの水が骨の髄を凍てつかせるほど冷たく、並みの人では渡れないと信じていた。この世を長く歩み、数え切れぬ試練を耐え抜いた者だけが、その寒さを超えて{RUBY_B#「死」のタイタン}タナトス{RUBY_E#}に会えるのだと。「死」の祝福を追い求めることは、命を軽んじることではない。\\n\\nそれ故に、エイジリア人には死を達観している屈強な勇士が多くいた。だが、南の豊かな土地を侵略することは一度もなかった——そこでは英魂を養うことはできないと、エイジリア人はそう考えていた。\\n\\n苦行はエイジリア人特有の文化である。毎年、雪が止んで空が晴れると、数少ないその日を拾骨祭と呼び、エイジリアの祭司たちは街を出て荒野と沼地に眠る獣の骨を探した。彼らは遥か昔に絶滅した古代の獣の骨を祭礼における最高の品とし、その骨を叩くと重苦しい響きと共に、{RUBY_B#「死」のタイタン}タナトス{RUBY_E#}の囁きを聞けると伝えてきた。ステュクスの冷気を浴びた獣の骨は次々と街に運ばれ——わずかに破損したものはアクセサリーとして住民の手に渡り、良質なものは祭司が自らが磨き上げ、葬儀用の骨の剣として奉納されてきた。\\n\\nある拾骨祭の日、エイジリア人は荒野で1人の少女に出会い——その後すぐ、「彼女との触れ合いはステュクスを越え、死と向き合うことができる」という噂が広まった。\\n\\n「死」を信じ崇める人々は、{RUBY_B#「死」のタイタン}タナトス{RUBY_E#}の代行者に会うべく、競うように聖殿へと足を運んだ。エイジリアの祭司たちは少女の存在による信仰の揺らぎを察し、彼女を督戦の聖女として崇め、民間人との接触を禁じた。そして、世の艱難を乗り越え、生死を敬愛する苦行者だけが、少女の腕の中で冥土に還れるとし——彼女は祭司が用意したローブを身に纏い、その両手で儀式を執行し、抱擁によって人々を弔った。\\n\\nエイジリア人は「貧相な魂ではステュクスは渡れない」と信じているが、ステュクスが魂の重さを問うことはない。河はただ静かに流れ続け、すべての生者を定められた終点へと導き、あらゆる魂を交差させるのだ。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの最大HP+#1[i]%。装備キャラの最大HPが#2[i]以上の時、装備キャラおよびその記憶の精霊の会心ダメージ+#3[i]%。", + "ParamList": [ + 0.12000000011175871, + 5000, + 0.2800000002607703 + ] + } + } + }, + "320": { + "Name": "深慮に浸る巨樹", + "Icon": "SpriteOutput/ItemIcon/71043.png", + "Parts": { + "33205": { + "Name": "神悟の樹庭の熟慮する根系", + "Desc": "次元界オーブに封装されているのはオンパロスの神悟の樹庭である、「分裂する枝」{RUBY_B#「理性」のタイタン}サーシス{RUBY_E#}の神体がここで熟考をした。「最初の学者」は人々を率いて森の中に花園と庭園を造り、学識を深め、そこに樹庭の始まりがあった。", + "Story": "「最初の学者」セレサスは、成人を迎えると共に故郷の臨海都市ミラワータを発ち、モネータ信仰の霊的意味を探るべく、オンパロスの大地を巡るようになった。\\n\\n巡礼中に見た不思議な光景やさまざまな体験は、彼の持つオンパロスの自然観や世界の起源に関する考えを大きく変えた。そして旅の終わりには「分裂する枝」に出会い、巨木の前で独自の世界を知る方法を編み出した。その後、セレサスは巨木の下に「神悟の樹庭」という学びの庭を造り、人々が精神を目覚めさせ、知恵を求め、道を見出せるようにした。\\n\\n{RUBY_B#「理性」のタイタン}サーシス{RUBY_E#}の思考は紙に残されるか、樹庭で静かに揺れる草木となり…活気に満ちた交流や議論が行われる中で、各学派が誕生した。\\n\\n各学派の研究方向にはそれぞれ違いがあるが、交差がないわけではない——巨木が枝分かれしていくように、時には交差も免れないのだ…諸説紛々とした議論や、何世代にもわたる議論の中で、「最初の学者」が残した思想は脈々と継がれ、七賢人が率いる七大学派を主流とした思想に進展していった。\\n\\n「世に存在する知識はすべて樹庭の葉となり、木陰を作り、巨木の繁栄を手伝うこととなる」樹庭に理性を求める都市は、相応の知識を捧げなければならない。こうして無数の思考が木の養分となり、新たな芽が生まれる。\\n\\n光歴100年もの間、商人や隊商が樹庭を通りかかるたび、知識が記載された書物が見つかれば、国や言語を問わずすべて樹庭に収められてしまう。「強盗」とも言える樹庭の学者たちは、大金を払って書物を買ったり、人々を雇って写本させたり、あげく略奪まがいのことまで繰り返し、樹庭を「オンパロスで最も優れた学校」にした。彼らにとって問いは供物であり、思考は敬虔な姿勢となる。この世に君臨する理性を前に、彼らはすべからく頭を垂れるだろう。\\n\\n命を植え、木の霊に帰る。その流れの中で、集露の心臓は世界に点在する知識を集める。{RUBY_B#「理性」のタイタン}サーシス{RUBY_E#}は活気づいていく学園の声に耳を傾けながら、終始考えに耽っていた。" + }, + "33206": { + "Name": "神悟の樹庭の知を繋ぐ樹路", + "Desc": "学派の間には研究成果を共有する鍵となる、金糸と藤つるでできた樹庭の知識の網がある。データは根から吸収された後、脈絡に沿って流れ、解析される。最後に一滴の雫となり、友愛の館の池に溶け込むのだ。", + "Story": "神悟の樹庭では、ひとつひとつの思考が巨木の枝となる。その脈絡からは幾千もの論調が生み出され、細かな枝のようにそれぞれ伸びていく。互いに独立していながら、それらはやがて絡み合い、最終的に巨木の樹冠となる。\\n\\n1本の枝は自らに葉柄を伸ばし、複雑な渦を描くようにねじれている。「蓮食学派」の苦行者は草木や花の持つ神性に魅了され、植生をはじめとした万物を触れられる存在としてみなした。彼らにとって苦行は万物を調和させる実践的な方法であり、決して自我を捨てる行為ではない。むしろ、自らを知る最短の道なのだ。\\n\\n1本の枝には果実がたくさん実っていた。「山羊学派」の学者たちは、奇獣の研究、繁殖、保護を専門にしている————キメラの多様で愛らしい姿は、彼らが生命を探求する過程を示した、ある種の縮図といえる。\\n\\n1本の枝は完璧な比率でねじれ、精緻かつ優美な形をなしている。「結縄学派」の学者たちはこう主張している——「万物の根源は数である。ゆえに、あらゆる実態数学的に表すことができる」と。彼らは樹庭最初の学派として学院の敷居を守り、「幾何学を知らぬ者の入門を禁ずる」と定め、数理こそが{RUBY_B#「理性」のタイタン}サーシス{RUBY_E#}が世界を支配する手段であると考えている。\\n\\n1本の枝はよくしなる丈夫な枝だった。「牽石学派」は入門志望者に対し、投石紐を使って特定の距離まで石を投げることを要求した。そうすることで、学者の鍛錬や競技に対する思考や、「極致を追求する」姿勢を見定めていた。\\n\\n1本の枝はある時は垂れ下がり、またある時は真っすぐに伸び、知覚に純粋な美しさを伝えていた。「赤陶学派」は芸術と感性への探求を論理的思考の根源とみなし、感覚器官から得られる情報が最も精錬されていると考え、そこから達観した世界にたどり着けると強く信じていた。\\n\\n生い茂る樹冠の中で、巨木の中心に最も近いところに、献身的で敬虔な形をした枝が立っていた。「礼拝学派」はタイタンの儀式の理解や、神跡の運用に精通しており、「オンパロスの政治家のゆりかご」とも呼ばれている。彼らは樹庭の信仰儀式を執り行うだけでなく、その影響はオンパロスのあらゆる面に深く及んでいる。しかし、1本の若く鋭い枝が、それと向き合うように存在していた——\\n\\n「知種学派」は「最初の学者」の魂に関する教えを引き継いだ、生命と物質の転換や昇華の理論に精通した学派である。また、一番遅く創設されたにもかかわらず最も鋭い論点を持っており、すべての生命と物質の起源を追い求めている。\\n\\n原則として、七大学派の七賢人はそれぞれの研究分野を持ち、その間に序列はない。理性の巨木は彼ら七賢人の象徴として頂点に立ち、絶え間ない議論と討論の中、世界中に知識と理性の枝を伸ばした。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの速度+#1[i]%。装備キャラの速度が#2[i]/#3[i]以上の時、装備キャラ及びその記憶の精霊の治癒量+#4[i]%/#5[i]%。", + "ParamList": [ + 0.060000000055879354, + 135, + 180, + 0.12000000011175871, + 0.20000000018626451 + ] + } + } + }, + "321": { + "Name": "夢を紡ぐ妖精の楽園", + "Icon": "SpriteOutput/ItemIcon/71046.png", + "Parts": { + "33215": { + "Name": "迷いと夢のツリーハウス", + "Desc": "次元界オーブの中に封印されたエリュシオンの「迷路迷境」。黄金色の麦をかき分けた先で、あなたはとても深い木の穴に落ちてしまった。おや?小さな妖精がたくさんいる。「1、2、3、4、5、6、7……」違う!「ド、レ、ミ、ファ、ソ、ラ、シだ!」", + "Story": "「ふふ、子供たち、迷路迷境は今年も収穫の季節を迎えたわ。何を準備すればいいか分かるわね?」村長は白いひげを撫で、ニコニコしながら言った。\\n「ネクタール祭!」妖精たちが歓声をあげた。\\n\\n当初、迷路迷境は何もない荒れた地だった。そこにエリュシオンの少年と少女が外から種を持ち込み、妖精たちに種まきを教えた。種から芽が出て花が咲くと、妖精たちも彼らの真似をし、ブドウ畑の傍を飛ぶ金色の蜜蜂を追いかけて蜜を集めた。そうして花が実を結ぶようになると、妖精たちは歌で収穫を祝い、夜遅くまで賑やかな宴を楽しむようになった。そして、彼らは夜が明けた後——その年にとれた蜜を瓶に詰め、地中深くへと埋めた。それはやがて熟成され、翌年には「成長」と「冬を癒す」不思議な妙薬となるのだ。\\n\\n毎年、ネクタール祭では同じことを繰り返している。\\n今年の祭りでは、村長が白いひげを揺らしながら、「誰かレラミュンを見なかった?」と言っていた。\\n\\n妖精たちはあちこち探し回り、ついにツリーハウスの入口で「レラミュン」を見つけた。「レラミュン」はスヤスヤと寝息を立て、口元にはよだれを浮かべ、まるで楽しい夢でも見ているかのようだった。不思議に思った「ミュンラミ」が近づき、「レラミュン」の寝言を聞いた——「ファイちゃん、キュレちゃん、約束だよ。今度来たときは、去年埋めたトゲトゲの実のネクタールを一緒に飲もうね」\\n\\n「レラミュン」は、自分が「巨大なレラミュン」に変身して、迷路迷境につながる木の穴を完全に塞いでしまっている夢を見ていた。小さなファイノンとキュレネはどうやっても中に入るための道を見つけられず、イグサで「レラミュン」の耳をくすぐったり、お腹の上で跳ね回りながら名前を叫んだりしていた。しかし、ぐっすり眠っている「レラミュン」にはまったく届いていない。\\n「もしかして、ファイちゃんとキュレちゃんが迷路迷境に来れてないのは、あたしが道を塞いじゃってたせい……?」\\n夢の中で、「レラミュン」の心臓がドキっと跳ねた。\\n\\n「ハ…ハクション!」\\n「レラミュン」は大きなくしゃみをしてようやく目を覚ました。幸いにも道をふさぐ「巨大なレラミュン」にはなっていなかったが、自分の周りにいたのは妖精たちだけ。\\n「ファイちゃんとキュレちゃんは?あの2人は来てないの?」\\n妖精たちは首を横に振った。ファイノンとキュレネのいないネクタール祭はこれで何度目になるだろうか。\\n「レラミュン」は肩を落とした。そうと分かっていればもう少し夢を見ていたのに——\\n小さな「レラミュン」はこの気持ちをどう言い表せばいいか分からなかった。けれど、強いて言うなら…毎年の夏の終わりに、瓶に入っていたホタルたちを空に放してあげる時の気持ちに似ているかもしれない。" + }, + "33216": { + "Name": "迷路迷境の祈りの笛", + "Desc": "粘土で作られた笛。小さな妖精たちと二人の子供との約束を象徴している。少年と少女がその笛を吹くと、「ミュ?」という声を合図に、妖精たちが迷宮につながる木の穴を開き、彼らを招き入れてくれる。", + "Story": "「約束、忘れないでね!あなたたちがその祈りの笛を吹けば、どんなに遠くにいても、必ずあたしたちに聞こえるから」\\n\\nそれはエリュシオンの少年と少女が初めて迷路迷境を訪れ、妖精たちと出会った時のこと。彼らは友達と庭でかくれんぼをしていて、その際にうっかり茂みの奥にある深い木の穴にすべり落ちてしまった。木の穴はとても長く、底の見えない滑り台のようになっていて、彼らは真っすぐ滑り落ち、やがて地面に転がった。その際、予想していたような派手な転び方はしなかったが、彼らは妖精たちの山へと突っ込んでしまった。\\n「1、2、3、4、5、6、7…仔犬がたくさん…って、ウサギ?」\\n「違うよ。ド、レ、ミ、ファ、ソ、ラ、シ、だよ。あたしたちはトラミュン、ソラミュン、ラレミュンっていうの!」\\n\\n子供たちと妖精の友情は、千の流れ星のようにたちまち輝きに包まれ、一緒に楽しい一日を過ごした。しかし、別れの時はすぐにやって来た。子供たちは心配している両親のところへ帰らなくてはならないのだ。\\n「離れ離れになっても、また会えるよね?」少年が少しだけ寂しそうに尋ねた。\\n離ればなれ…また会える…妖精たちにはその言葉の意味がよく分からなかった。これまでの迷路迷境には別れも再会もなかったからだ。しかし、子供たちの表情を見て、それがとても辛いことなのは分かった。紫色の「レラミュン」は少し考えたあと、「ファイちゃん、キュレちゃん、ちょっと待ってて。あげたいものがあるの!」と言った。\\n\\n少年と少女は「レラミュン」からの贈り物を受け取った。それは「レラミュン」が自分で作ったもので、7つの穴があいている妖精の耳の形をした笛だった。それを吹くと「ド、レ、ミ、ファ、ソ、ラ、シ」の美しい音色が奏でられるという。「レラミュン」は真剣な表情で、「また迷路迷境に遊びに来たくなったら、この笛を吹いて。あたしたちが寝てても、歌ってても、葉っぱの家を作ってても、この音は必ず聞こえるから。その時は入口の木の穴を開いて、すぐに迎え入れてあげるね」と言った。\\n\\n「つまり、妖精を目覚めさせる不思議な笛ってことね!」少女はいたずらっぽく笑い、「約束だよ。きっとまた戻ってくるからね」と言った。\\nそれ以来、笛がなると「レラミュン」はこれ以上ないほどに喜んだ。そして、いつも大声で「聞こえたよ!両耳ともちゃんと聞こえた!」と叫ぶのだった。\\n\\nその後、ファイノンとキュレネはエリュシオンを離れたが、子供時代のことはすべて覚えていた。錆びたブリキのおもちゃ、納屋に転がっていた手足のない兵隊の人形、針で編んだフェルトの花飾り、一度も振らなかった雨、乾ききった血、焼け焦げた麦畑——\\nしかし、土に埋もれた笛と、果たされることのない約束だけは、忘れてしまっていた。" + } + }, + "RequireNum": { + "2": { + "Desc": "現在フィールド上にいる味方の数が4ではない時、1名増える/減るごとに、装備キャラおよびその記憶の精霊の与ダメージ+#1[i]%/#2[i]%、最大で#3[i]/#4[i]層累積できる。", + "ParamList": [ + 0.09000000008381903, + 0.12000000011175871, + 4, + 3 + ] + } + } + }, + "322": { + "Name": "酩酊の海域", + "Icon": "SpriteOutput/ItemIcon/71047.png", + "Parts": { + "33225": { + "Name": "歌響く大海と岩礁の灯台", + "Desc": "次元界オーブの中に封印された永遠の喜びに浸るスティコシア。永遠に明るい灯台が海辺にそびえ立ち、絶え間なく楽曲を響かせている。だが、賑やかな歌声をたよりに船が霧の向こうからやって来ると、それらは全て座礁して沈没し、残骸もろとも波に呑まれてしまう。", + "Story": "波が終わりのない輪舞のように打ち寄せる中、歓楽の港に飽きた船乗りたちは航海図を開き、自分の旅の終着地を探した。すると、羅針盤の震える針が徐々に静まり、「スティコシア」——海辺にそびえ立つ永遠の歓喜の都を指し示した。そこが運命によって定められた彼らの終焉の地であったが、死を知らぬ者たちはそれを意に介さず、酔いに浮かれながら帆をあげ、ファジェイナの舞踏会場へと足を踏み入れた。\\n\\n船乗りたちは潮の満ち引きと月の満ち欠けに身を任せ、骨の槍でクジラの背を貫き、衝角で太古の氷河を砕きながら進んだ。だが、歌いながら航海を続けるその船はやがて霧の中へと消え、灯台が目前へと迫った頃…ついに暗礁に乗り上げた。\\n\\n座礁して沈んだ船は海底へ消えた。だが、不死者たちは波間から蘇り、体に海藻や塩を纏わせながら岩礁に立っていた。灯台の宴を待ちわびている客たちは、水夫を終わることのない宴へと招き入れる。そして、彼らは音楽に導かれるように、岩礁の間に立つ純白の灯台へ登った。スティコシアの灯台の青い炎は、クジラの油を燃料に、水晶でできたレンズの向こうで冷たく揺れている。見ると、灯台そのものが巨大な水溢琴のように、訪問者が階段を上がるたび、石段の隙間を通るガラス管が海水を吸い上げ、波に合わせて上下していた。テラスでは宴の客たちが手を取り合い、楽曲に合わせて火の周りで踊っている。そしてその火は、彼らの影を水平線の彼方まで映し出していた。船乗りはそこでようやくずっと憧れ続けていた終着地——永遠の歓喜の都を目にしたのだった。\\n\\nそれは、腐敗がまだ訪れていない時代のこと。苦痛も悲しみも死もまだ生まれていない頃、スティコシアはファジェイナの寵愛で満たされ、その腕のような入り江に抱かれた街は、童謡のような調べと夢のような優しさに包まれていた。\\n\\n焦る船乗りの唇がかすかに震える。彼の前では、宴の客が都市国家へ入るよう手を差し伸べ、まるで兄弟のようにこの歓喜を分かち合おうとしている。しかし、彼の背後には灰色の大海原が果てしなく広がっている。岩礁には船の残骸が散らばり、溺れた者たちが波間に漂い、肌は海藻と珊瑚で覆われている。瞬間、彼は自分が海に落ちた時のことを思い出した——海の怪物の冷たい手が頬を撫で、ぼんやりとした優しい歌声が聞こえてくる。そうして再び目を覚ました時、彼はきらめく海面へと押し上げられていた。\\n\\nほんの一瞬のためらいの後、至福へと通じる門は閉ざされた。宴の客たちはスティコシアに入りたいという船乗りの頼みをほほ笑みながら断った。彼はまだ酔いから覚めたばかりで、本当の歓喜を受け入れる準備ができていなかったのだ。" + }, + "33226": { + "Name": "歌響く大海と海辺の小道", + "Desc": "スティコシアの人々は信じている。海の怪物が古い言い伝えにある通りに、その肉体をもってこの地の安寧を守り続けていると。そして、いつの日か灯台の歌声に導かれ、再び海を越えてやってくると。その時こそ、尽きることのない饗宴によって彼女たちは報われるのだという。", + "Story": "孤独な船乗りはこれまでの訪問者たちと同じように、大海原と都市国家の間をさまよい、俗世と喜びの入口の境界に立っていた。彼は座礁したクジラの傷口から流れる油を拭い、夜の帳が降りる頃に灯台の明かりをともした。そして、その光の前に腰を下ろし、まだ響いていない調べを水溢琴で奏で始めた。\\n\\n灯台は琴に呼応するように鳴り響き、スティコシア全土がその音楽に浸った。穏やかな旋律や急な旋律が、スティコシアの女王に享楽にまつわる果てしない想像を呼び起こさせる。船乗りは最後の休符から逆に演奏するようにし、ユニークで躍動感のある調べを奏でた。すると、白く長い船に曲芸師たちが乗り込み、軽やかに水路を抜けていった。盛装し、金箔や羽根で飾られた仮面をつけた男女が両岸にひしめき、女王もその中に混ざっている。彼女はクローブとアーモンドの香りに包まれながら、ゆったりと歩いていた。\\n\\n船乗りはリズムを整え、音符を激しく急なものへと変えていった。やがて舞台は街全体へと移り、海賊役の民衆が黒い旗を振って無防備な城壁を陥落させ、酒と金貨を略奪し、貴族たちを花で飾った絞首台へ送り込み、王冠を街中の物乞いにかぶせて戴冠させた。フィナーレでは人々が塔に火を放ち、再び琴の調べに合わせて踊り狂い、酔いつぶれるまで酒を飲んだ。\\n\\n押し寄せる波が楽譜を濡らし、柔らかな音符をにじませた。女王は灯台の前の霧の中で、新たな物語へと足を踏み入れた。彼女は人魚の尾のような青いドレスをまとい、ファジェイナの眷属——海の怪物たちの女王を演じた。\\n\\n物語では、海の怪物たちは海の奥深くで想像を絶する苦痛から世界を守るよう命じられ、自らの肉体で黒き災厄を満たされた杯に注ぎ、スティコシアに永遠の喜びをもたらしているという。そして、約束の時が訪れると、海の怪物たちは灯台の光と琴の調べに導かれ、堤をたどってスティコシアへ足を歩み入れる。スティコシアの人々は彼女たちの手をとり、共に永遠に終わることのない宴に参加するのだ。\\n\\nスティコシアの女王は海中へと足を踏み入れ、想像上の死を味わった。月の満ち欠けが波を束縛することのない夜、大海の奥底では、海の怪物たちのうつろな涙が泡のように昇っていた。彼女たちはこれまで一度も見たことのない月明かりをのぞき見ることを切に願い、待ち望み、そして肉体が溶け、消えていった。残念ながら、その夜には月明かりがなく、あったのはいつもと変わらぬ灯台の明滅だけだった——涙が海の怪物たちに代わってきらめく海面へと浮かび上がり、泡沫となって漂っては波に呑まれて消えていった。\\n\\n孤独な船乗りの願いは遂に叶えられた。宴の客は喜びの涙を浮かべ、彼がスティコシアに足を踏み入れたことを祝福した。だが、最初の歓声があがった時、この永遠の歓喜の都は死と荒廃の翼に覆われることとなった。" + } + }, + "RequireNum": { + "2": { + "Desc": "装備キャラの攻撃力+#1[i]%。装備キャラの攻撃力が#2[i]/#3[i]以上の場合、持続ダメージがさらに+#4[i]%/#5[i]%。", + "ParamList": [ + 0.12000000011175871, + 2400, + 3600, + 0.12000000011175871, + 0.24000000022351742 + ] + } + } + } +} \ No newline at end of file diff --git a/data/relics.kr.json b/data/relics.kr.json new file mode 100644 index 0000000..ad4ed59 --- /dev/null +++ b/data/relics.kr.json @@ -0,0 +1,1656 @@ +{ + "101": { + "Name": "흔적을 남기지 않은 과객", + "Icon": "SpriteOutput/ItemIcon/71000.png", + "Parts": { + "31011": { + "Name": "과객의 봄맞이 나무 비녀", + "Desc": "비녀로 쓰인 고목. 가지에 꽃이 피기 시작했다. 지금은 옛날이야기지만 꽃봉오리를 금으로 장식해 새삶의 시작을 기념했다", + "Story": "이름 없는 자는 긴 잠에서 깨어났다. 멀고도 익숙한 긴장감이 감돌고 환각통이 날카롭고 선명했다. 과거의 일들은 날카로운 조각이 되었고, 자신의 성도 잊어버렸다.\\n\\n정처 없이 유랑하던 그는 눈으로 갈증을 해소하고 짐승을 사냥해 굶주림을 해결했으며, 마른 나뭇가지를 베어 만든 비녀를 긴 머리에 꽂았다.\\n\\n검은색 머리는 샘물처럼 쏟아져 나오고 근육은 물고기처럼 경련을 일으켰다…. 기묘한 힘이 육체를 다시 만들며 근골이 끊어졌다 이어지는 고통이 전해졌다. 무수한 환각통 속에 흩어진 과거가 조각을 맞춰가기 시작했다…. 물에 비친 자신의 그림자를 훔쳐보던 중 비극의 전말이 점점 드러났다.\\n\\n물에 비친 얼굴이 더 이상 낯설지 않을 때쯤, 이름 없는 자는 순간 마른 나뭇가지에서 꽃씨를 보았다.\\n\\n그는 문득 깨달았다. 불로장생의 저주는 강했고 오랜 원한은 사라지지 않았다. 그는 바로 이 마른 나뭇가지 위에 새로 피어난 꽃이었다" + }, + "31012": { + "Name": "과객의 유룡완갑", + "Desc": "물과 같은 산호금과 정체 모를 짐승 가죽으로 만들어진 완갑. 용맥 일족의 뛰어난 장인만이 만들 수 있는 특별한 공예 기술이다", + "Story": "짝을 이루는 것들은 멀리서도 감지되는 것 같았다. 이름 없는 자는 가지고 있는 손목 보호대는 하나뿐이지만 손끝이 닿으면 다른 한쪽의 온도를 느낄 수 있었다.\\n\\n그는 눈을 감고 희미하게 느껴지는 다른 한쪽 손목 보호대의 위치와 그것의 주인을 포착하려고 안간힘을 썼다.\\n\\n늘씬하고 힘 있는 손은 다른 한쪽의 완갑을 착장했으며 장창을 들고 자신과 시합을 벌였다. 날카로운 창끝은 떨어지는 유성과도 같았다. 완갑의 주인도 일찍이 자신과 잔을 돌리며 차가운 달을 바라보고 서로 말이 없었다. 결국 그 사람과 자신의 고집스런 행동으로 진실한 사랑은 괴물이 되고, 모두 끝없는 회한의 늪에 빠지게 됐다.\\n\\n짝이 있는 건 언젠가 반드시 만난다. 오랜 원한은 오랜 술과 같이 차갑고 독했다. 모든 원한을 다 갚을 때까지 천천히 마셔야 한다.\\n\\n다른 한쪽의 완갑 주인도 공감할까? 그는 알고 싶지 않았다" + }, + "31013": { + "Name": "과객의 낡은 자수 외투", + "Desc": "긴 옷자락의 자수 문양이 칼자국으로 찢겨진 낡은 외투. 육체는 빠르게 치유되지만, 겉옷은 그렇지 않다, 마치 사람의 고통과 같이 말이다", + "Story": "이름 없는 자는 시체처럼 오랜 추방 기간 동안 떠돌며 방황했다. 그런 그의 앞길을 막은 것은 선글라스를 낀 여인과 커다란 갑옷을 걸친 사람이었다. 두 사람은 초대를 전달하기도 전에 거절의 검을 뽑았다. 대치 끝에 여인은 미소를 지으며 거절할 수 없는 거래를 제안했다.\\n\\n이름 없는 자는 제안을 받아들이고 새로운 신분을 얻어 다시 문명과 질서로 돌아갔다.\\n\\n이름 없는 자는 재봉소로 보내졌고 사이즈 측정, 본뜨기, 재단, 봉제를 거쳐 번듯한 옷을 제작했다…. 그리고 누군가가 그의 머리를 다듬고 겉모습를 정리해주어 그는 옛 모습을 되찾았다. 문득 그는 오늘이 무슨 날인지 알 수 없게 되었다. 애매한 옛 시간 속에서 손수 만든 옥주전자를 친구에게 선물하려 했는데 속으로 결심하고 난 후에 그 사람이 없다는 사실을 알아차렸다.\\n\\n그는 세상을 거쳐간 모든 것, 이 몸, 이 삶, 이 애증…… 그리고 이 옷까지 전부 빌린 것이라는 점을 깨달았다.\\n\\n그는 모든 것을 갚고 마지막 숨을 내쉬기로 했다" + }, + "31014": { + "Name": "과객의 뒤안길 유랑 신발", + "Desc": "내구성 있고 튼튼한 부츠. 여러 세계를 넘나들며 생과 사를 함께 했다", + "Story": "이름 없는 자는 노예의 명령에 따라 새로운 지인과 함께 하늘 저편으로 갔다. 그는 실의와 증오를 품고 여러 세계를 넘나들며 삶과 죽음 사이를 오갔다.\\n\\n그는 일찌감치 창조의 기쁨을 잊고 전장에서 다른 전장으로 전전할 뿐이었다.\\n\\n과거 그는 셀 수 없는 검광을 맛봤고, 패배로 인해 온몸이 찢겨졌다. 상대는 언제나 그의 심장을 관통하는 일격으로 마무리했다. 몸에 새겨진 복잡한 상처와 검의 초식은 결코 잊혀지지 않고 생사를 넘나드는 전투로 승화되었다. 그는 검을 휘둘러 사람들을 위해 장애물을 베고 땅에 쓰러질 때마다 다시 일어섰다. 한동안 숨죽이고 검을 휘두르는 데 집중하다가 그는 증오를 잊었다.\\n\\n노예는 그와 그가 미워하는 모든 것을 영원히 끝내고 영면의 장례를 약속했다. 이름 없는 자는 고개를 끄덕이며 칼집에 검을 넣고 다음 세계로 향했다.\\n\\n인생이 발걸음으로 이어진 여정이라면, 그는 「종점」에 도달하기 전에 증오하는 이의 피바다를 건널 수 있길 바랐다" + } + }, + "RequireNum": { + "2": { + "Desc": "치유량 #1[i]% 증가", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "전투 시작 시 즉시 아군의 전투 스킬 포인트를 1pt 회복한다", + "ParamList": [] + } + } + }, + "102": { + "Name": "들이삭과 동행하는 거너", + "Icon": "SpriteOutput/ItemIcon/71001.png", + "Parts": { + "31021": { + "Name": "거너의 들이삭 페도라", + "Desc": "들이삭을 묶어 놓은 카우보이 페도라 전설의 사격수 오클리의 상징이다", + "Story": "오클리의 페도라는 돌아가신 아버지로부터 물려받은 것으로, 들이삭으로 장식해 귀여움을 더했다. 바운티 헌터들은 후대에 전설의 시작을 남기길 원하며 알게 모르게 자신의 마크를 만들었다.\\n\\n스타피스 컴퍼니는 현상금을 걸어 우주 도적을 쫓을 사람을 모집했지만, 혼자 다니는 오클리는 늘 그 견디기 힘든 사막의 변방을 선택했다.\\n\\n무더운 낮과 추운 밤이 계속되는 나날, 고독한 여정 속에 오클리는 페도라를 베고 모닥불 근처에서 조용히 잠들었다. 그녀의 꿈은 늘 의문의 사격수가 침입하는 것으로 시작한다. 그는 자신이 먼 곳에서 온 바운티 헌터라고 한다. 그의 몸은 야위었지만 눈빛은 날카로웠다. 사격수는 오클리의 아버지에게 정오에 결투하자고 청했다. 총성이 울리자 페도라가 날리며 아버지가 하늘을 보며 쓰러졌다. 이어지는 건 어머니가 오열하는 소리……\\n\\n어린 오클리는 신비로운 사격수를 멍하니 바라봤다. 그는 동작이 민첩해 아버지에게는 승산이 없었다.\\n\\n꿈에서 깨어나자 페도라 위에는 눈물 자국이 남아있었다. 어릴 적 오클리는 아버지의 페도라가 갖고 싶어 총을 배우기 시작했다" + }, + "31022": { + "Name": "거너의 거친 가죽장갑", + "Desc": "겉면이 갈라진 가죽 장갑. 총잡는 부분이 특히 더 닳았다", + "Story": "어릴 적 오클리는 연습할 때 지칠 줄 몰랐다. 그녀는 목장에서 일출부터 일몰까지 사격을 연습했다. 그녀의 아버지는 가끔 그녀의 천부적인 재능에 기뻐하기면서도 사격수 운명을 쓸데없이 걱정하기도 했다.\\n\\n그녀의 어머니는 그녀의 작고 하얀 손을 안타까워했고, 남편이 딸에게 사격술을 가르치는 걸 원망했다.\\n\\n그 결투 이후 첫 번째 현상 임무를 완료하고 명성을 얻을 때까지도 오클리는 수년 간 오래된 장갑을 끼고 총을 잡었다. 다른 바운티 헌터들은 들이삭 거너가 왜 그리 낡은 장갑에 집착하는지 이해하지 못했다. 장갑에 얽힌 모순된 감정을 아는 건 그녀뿐이었다. 이 장갑은 그녀의 어머니가 준 작별 선물이다.\\n\\n딸이 총을 배우는 걸 원하지 않던 어머니는 대체 무슨 결심이었던 걸까?\\n\\n그 결투가 끝나고 어머니는 오클리의 품에서 한참을 흐느꼈다. 오클리는 아무 말도 하지 않았지만, 어머니는 그녀의 마음을 알아차렸다" + }, + "31023": { + "Name": "거너의 윈드헌터 망토", + "Desc": "에스닉 스타일로 만든 망토. 안에 방탄 기능이 있는 섬유를 덧댔다", + "Story": "사격수는 결투에서 절대 빈틈을 보여서는 안 된다. 오클리는 소리 없이 탄창을 갈아 끼우고 목표를 조준할 수 있다. 다른 이들은 그녀의 부드러운 망토가 조금도 움직이지 않는 모습을 지켜보다 총성이 울리고서야 무슨 일인지 의아해했다.\\n\\n그녀의 아버지는 거듭 당부했다. 「미세한 움직임은 망토 밑에서 완성되어야 하고 결투는 총알이 발사되기 전에 끝내야 한다」\\n\\n예상 밖으로 총을 든 도적과 마주친 오클리는 침착하게 서서 상황을 관찰했다. 총을 쏘기 전의 오클리는 마치 수백 년 동안 움직이지 않은 바위같다. 도적이 움직이기 전에 오클리는 모든 준비를 마쳤다. 날카로운 총성이 멈춘 후 오클리는 도적떼에 경고하기 위해 일부러 한 명을 풀어줬다.\\n\\n생각도 표정도 없이 항상 상대방에게 승산이 없음을 느끼게 한다. 다른 바운티 헌터들은 오클리를 이렇게 평가했다.\\n\\n결투에서 오클리는 꿈속에 침입한 신비로운 사격수처럼 군더더기 동작 없이 깔끔했다. 하지만 자신이 점점 원수와 닮아간다고 느낀 오클리는 자신을 혐오하지 않을 수 없었다" + }, + "31024": { + "Name": "거너의 리벳 승마화", + "Desc": "승마화는 V자 모양의 입구가 있으며 캐주얼하고 널널해 착용감이 좋아 보인다", + "Story": "긴 여행은 고단했지만 오클리는 오래전부터 혼자인 게 익숙했다. 오클리는 늘 부츠를 신고 사람들이 관심을 가지지 않는 곳으로 향했다. 현상금이 미미할지라도.\\n\\n왜냐면 그 신비로운 사격수는 무리를 지어 다니지 않고, 그와 만나게 될 곳이 시끌벅적한 장소가 아닐 것이라는 직감이 들었기 때문이다.\\n\\n하모니카가 생긴 후부터 띄엄띄엄 곡 연습으로 그녀의 외로운 시간은 흘러갔다. 청중이라고는 지나가는 독거미, 황사, 회전초뿐이었다. 오클리가 혼자 시간을 보내는 요령은 여행이계속되면서 갈수록 늘었다, 바람조차 멈춰서 그녀의 연주를 듣다 갔다. 컴퍼니는 바운티 헌터들에게 우주 여행의 가능성을 열어줬다. 외로운 사격수가 여행을 마다할 리가 없었다.\\n\\n신비로운 사격수는 종적을 감춘 지 오래고, 그녀는 환영을 쫓고 있는지도 모른다. 그러나 그녀는 멈추지 않고 또다시 여정에 오를 뿐이었다.\\n\\n하지만 오클리는 「들이삭」의 명성이 높아지면 신비로운 사격수도 자신을 찾게 될거라 믿었다. 마치 그가 그때 목장에 아버지를 찾으러 왔듯이" + } + }, + "RequireNum": { + "2": { + "Desc": "공격력 #1[i]% 증가", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "장착한 캐릭터의 속도가 #1[i]% 증가한다. 일반 공격이 가하는 피해가 #2[i]% 증가한다", + "ParamList": [ + 0.060000000055879354, + 0.10000000009313226 + ] + } + } + }, + "103": { + "Name": "정토 교황의 팔라딘", + "Icon": "SpriteOutput/ItemIcon/71002.png", + "Parts": { + "31031": { + "Name": "팔라딘의 용서 가면", + "Desc": "용서의 여신 종교 석상 형상의 가면 투구. 자신의 모습을 감추는 데 사용된다", + "Story": "정숙 기사는 사람들 앞에서 무거운 가면을 벗은 적이 없으며 엄숙한 종교적 얼굴과 사피나의 침묵이 아우러져 숨 막히는 위압감을 조성한다.\\n\\n안하무인의 악마든 광기에 빠진 프리스트든 모두 엄숙한 위압에 본능적으로 두려움을 보인다.\\n\\n소수의 프리스트만이 그 가면 속에 사피나가 악마를 숨겼다는 것을 안다. 교황청은 악마를 두려워하면서도 악마의 힘을 갈망해 모순된 결과를 낳았다… 어린 악마를 잡아 정숙 기사로 키워내어 그녀는 교황의 명령에 복종하는 성녀의 침묵 기사가 되었다.\\n\\n또래의 성녀 바니라는 직접 사피나에게 경전을 가르쳤고, 그녀는 촛불 속 악마의 옆모습을 아직도 기억하고 있다.\\n\\n「사랑하는 사피나여, 너의 얼굴을 본 적이 있고 항상 기억하고 있다」 성녀 바니라는 성인이 된 후 점차 실명했다" + }, + "31032": { + "Name": "팔라딘의 침묵 맹세 반지", + "Desc": "교회 문양으로 장식된 은반지. 약간 탁해 보이는 보석이 박혀있다", + "Story": "종교 기사 동료들이 칼을 휘두르고, 장엄함과 의례가 무너지면서 지키겠다고 다짐한 반지가 혼탁해지기 시작했다.\\n\\n별바다가 내린 힘은 교회에 악마를 징벌하는 실력과 함께 인간성을 잃은 광기의 병도 퍼뜨렸다.\\n\\n병에 시달린 종교 기사는 의례와 질서를 구분하지 못하고 모든 악마의 후예들을 몰아내고 교회를 구원하겠다고 떠들어댔다. 성녀에게 다가오는 위협에 직면한 사피나는 망설일 틈이 없었다. 비록 상대방이 정토 교회 기사장이라도, 그녀는 자비를 베풀 수 없었다.\\n\\n정숙 기사는 반드시 성녀를 보호해야 한다는 걸 사피나는 잊지 않았다.\\n\\n「사랑하는 사피나여, 죄책감을 가질 필요 없다, 이건 에이언즈의 힘을 탐한 결과이고 당연한 거니까」 교회에는 최후의 성녀와 수호 기사만 남았다" + }, + "31033": { + "Name": "기사의 엄숙 갑옷", + "Desc": "두꺼운 갑옷에 정토 교회의 부호가 선명하게 새겨져 있으며 관절 부위에도 바람이 통하지 않는다", + "Story": "정숙 기사의 갑옷은 성녀 바니라의 축복을 받아야 하며 이건 수호 기사의 서약을 맺는 의식이다.\\n\\n교황청은 금속 사슬로 어린 악마의 손발을 묶곤 했다. 오늘날 사피나는 간청해 악마의 고향에서 온 금속으로 갑옷을 만들어 자신이 고향의 물건과 같이 안장되도록 했다.\\n\\n정토 교회의 성녀는 갑옷의 죄악을 조심스럽게 닦아내며 경견하게 신의 기도사를 바쳐 영원한 기적을 갑옷의 심장 위치에 봉인했다. 교회는 악마의 충성심을 믿지 않았으면서도 교의가 가진 정화의 힘을 굳게 믿었다. 사피나는 침묵하며 복고의 의식이 자신에게 부여한 책임을 주시한다.\\n\\n성녀는 있지도 않은 죄악을 씻겨낸다는 의식을 믿지 않았다.\\n\\n「사랑하는 사피나여, 기사는 성녀를 잘 보호해야 한다」 바니라는 사피나의 갑옷에 기대어 격렬한 심장 박동 소리를 듣는다" + }, + "31034": { + "Name": "팔라딘의 질서 철장화", + "Desc": "정토 교회 기사의 스탠다드 기사 장화. 뒤꿈치 부분에 「질서」라는 짧은 글자가 새겨져 있다", + "Story": "정토 교회는 무너졌고, 사피나는 기사의 신발을 벗고 성녀 바니라와 함께 악마의 고향으로 먼 길을 떠났다.\\n\\n성녀의 간청에 따라 사피나는 그 어느 종교 기사도 광기의 병을 교황청 밖으로 내보내지 못하도록 했다. 비밀은 그들의 마음 속에 영원히 남겨질 것이다.\\n\\n어느새 사람들은 소문을 들었다. 교회가 몰아낸 악마의 후예가 성결한 정숙 기사의 몸에 빙의되었고, 사악한 마녀가 이를 조종해 교황의 질서를 무너뜨렸다… 소문은 사실이 되었고, 독실한 신자들을 절망과 광기를 정숙 기사에게 쏟아내 모든 일의 원흉이 그녀라고 생각했다.\\n\\n그리하여 갈 곳을 잃었고 성녀는 고향으로 돌아가자는 제안을 했다.\\n\\n「이제 나는 마녀가 됐고 너는 악마가 되었어」 사피나는 바니라의 말에 부정할 수 없었다" + } + }, + "RequireNum": { + "2": { + "Desc": "방어력 #1[i]% 증가", + "ParamList": [ + 0.1500000001396984 + ] + }, + "4": { + "Desc": "장착한 캐릭터가 제공하는 실드량이 #1[i]% 증가한다", + "ParamList": [ + 0.20000000018626451 + ] + } + } + }, + "104": { + "Name": "혹한 밀림의 사냥꾼", + "Icon": "SpriteOutput/ItemIcon/71003.png", + "Parts": { + "31041": { + "Name": "설원 사냥꾼의 황신(荒神) 후드모자", + "Desc": "거대한 설원 곰의 머리털로 만든 후드모자. 모피는 귀신이라도 깃든 것처럼 단단하다", + "Story": "스노우랜드의 사냥꾼들 사이에서 전해지는 생존 철칙이 있다. 「황신(荒神)」의 포식 기간에는 산의 남쪽에 절대 가지 말라는 것이다. 산을 뒤흔드는 그 거대한 백곰은 아무도 환영하지 않는다.\\n\\n협회가 파견한 사냥꾼인 휴는 구조 신호를 받고 남쪽으로 달려가다가 계획된 매복에 당할 줄 몰랐다.\\n\\n긴 총격 쇼크에서 깨어나서 휴는 자신이 생사의 갈림길에서 위기을 모면했다는 것을 깨달았다. 하지만 다음 순간 그는 위기가 아직 끝나지 않았다는 것을 느꼈다. 「황신」이 그를 주시하고 있었던 것이다. 아무리 동작이 빠르고 거리가 가까워도 황신의 공격이 반드시 전부 명중하는 것은 아니다… 휴는 조용히 기회를 노리다가 가져온 맹독을 지닌 뼈칼을 뽑고 범인을 넘어선 동작으로 뛰어올랐다. 승부는 순간 역전되었다.\\n\\n그는 「황신」의 머리와 가죽을 챙기고 총상이 아물지 않은 상황에서 첫 번째 눈보라의 밤을 보냈다.\\n\\n며칠이 지나고 사냥꾼 협회가 머리 없는 「황신」의 시신을 발견했다. 그때 그들은 죽어야할 사냥꾼이 죽지 않았고 예상하지 못한 복수자가 탄생했다는 것을 알게 되었다" + }, + "31042": { + "Name": "설원 사냥꾼의 도마뱀 장갑", + "Desc": "설원 암석 도마뱀의 비늘 발톱이 전술 장갑과 잘 꿰매져 있어 어떤 벽에서도 자유롭게 등반하거나 매달릴 수 있다", + "Story": "설원 암석 도마뱀은 민첩한 솜씨도 압도적인 힘도 없다. 그들은 사냥감이 경계를 늦추고 틈을 보여 치명적인 일격을 가할 기회가 생길 때까지 보름 동안이고 암벽에서 숨을 수 있다.\\n\\n그러나 협회의 사냥꾼들은 기다림을 참을 수 없어 휴라는 위협을 제거하기 위해 설산에 전면 진입하기로 결심한다.\\n\\n협회에는 강한 사냥꾼들이 많지만, 그들은 목숨을 맡길 수 있는 동료가 아니다. 사냥꾼들은 협회의 현상금을 목적으로 모였기 때문에 종종 서로를 배반하기도 했다. 황야에서는 그 어떤 일도 일어날 수 있기 때문이다…. 휴만 제거하면 모두가 더 많은 현상금을 챙길 수 있기에 그들은 뜻을 모으고 대가를 치렀다.\\n\\n휴는 만반의 준비를마쳤다. 최고의 사냥꾼을 사냥하는 건 괴물을 상대하는 것만큼 만만치 않아서 위그는 그 어느 때보다도 인내심을 가져야 한다. 이는 사냥꾼의 가장 중요한 덕목이다.\\n\\n사냥꾼 협회에 등록된 사냥꾼이 점점 줄어들고 「불사의 휴」에 대한 공포감은 계속해서 확산하고 있다" + }, + "31043": { + "Name": "설원 사냥꾼의 얼음 드래곤 망토", + "Desc": "얼음 드래곤의 비늘로 제작한 망토. 기묘한 광학 굴절하에서는 거의 보이지 않는다", + "Story": "「얼음 호수의 왕」의 독특한 비늘은 햇빛 아래 눈부시게 빛나며 물속에 잠입하면 모습을 감출 수 있다. 형체가 없는 거대한 물체와 결전할 수 있는 사냥꾼은 드물다.\\n\\n며칠이 지나고 협회의 사냥꾼들은 비늘이 벗겨진 얼음 드래곤의 시신을 발견했다. 그 순간, 두려움은 놀라움을 넘어섰다.\\n\\n휴는 수백수천 마리에 달하는 설원의 야수를 사냥했는데, 그때마다 사냥감은 모두 유일무이하고 아주 귀한 것이었다. 사냥꾼은 사냥감의 특성과 습성을 철저히 분석해야 사냥이 완성된다고 할 수 있다… 휴에게 「얼음 호수의 왕」은 설원의 마지막 퍼즐이었다. 이를 사냥해야만 사냥꾼으로서의 과업을 완수할 수 있었다.\\n\\n원래 현상금이 가장 높았던 「얼음 호수의 왕」은 「사냥꾼 휴」에게 그 자리를 뺏겼다. 추악한 사냥이 본격적으로 시작됐다.\\n\\n모든 사냥꾼은 자신이 사냥감이 될 준비를 해야만 한다. 휴도 그렇고, 배신자는 더더욱 그러해야 한다" + }, + "31044": { + "Name": "설원 사냥꾼의 벅스킨 부츠", + "Desc": "사슴의 부드러운 털이 사냥꾼의 파워업 부츠를 감싸고 있어 설원에서 얕은 발자국만 남긴다", + "Story": "눈이 녹을 정도로 열이 나고 중상을 입으면 죽기 직전의 사슴도 가장 치명적인 짐승이 될 수 있다.\\n\\n휴는 총을 들고 죽기 직전의 큰 사슴을 정면으로 쳐다보면서 사람을 철저하게 노려보는 눈이 자신과 똑같다고 생각했다.\\n\\n협회의 사냥꾼들에게 매복을 당한 이후부터 휴의 목숨은 바람 앞의 촛불과 같았다. 그는 자신이 가까스로 생존할 수 있었던 이유가 그의 들끓는 복수심 때문이란 것을 잘 알고 있었다. 일단 그의 욕망이 충족되면, 그의 생명도 눈처럼 날아가 버릴 것이다…. 휴의 발걸음은 언제나 무거웠지만 바닥이 넓은 사슴 가죽 부츠는 발자국을 남기지 않았다. 그는 생의 마지막 사냥에 정신을 바짝 차려야 했다.\\n\\n사냥꾼 협회는 공포를 느끼며 뿔뿔이 흩어졌다. 그들은 휴에게 용서 받기를 바라며 급히 배신자를 숙청하기 시작했지만 결과는 추악한 내분과 자기 파멸에 불과했다.\\n\\n휴는 복수에 성공하는 희열도 느껴보지 못한 채 설원에 영원히 쓰러졌다" + } + }, + "RequireNum": { + "2": { + "Desc": "얼음 속성 피해 #1[i]% 증가", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "장착한 캐릭터는 필살기 발동 시 치명타 피해가 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.25000000023283064, + 2 + ] + } + } + }, + "105": { + "Name": "스트리트 격투왕", + "Icon": "SpriteOutput/ItemIcon/71004.png", + "Parts": { + "31051": { + "Name": "격투왕의 챔피언 헤드 기어", + "Desc": "보호 효과가 뛰어난 헤드 기어. 주인의 얼굴에 딱 맞다", + "Story": "거리를 떠도는 린지는 정식 격투 시합의 초대에 응할 생각이 없었다. 그녀는 자신을 이길 수 있는 격투 선수가 없을 거라 여겼고, 그게 노인일 거라고는 더더욱 생각할 수 없었다.\\n\\n격투 코치라 자칭하는 노인은 그녀에게 도전장을 내밀었고 린지에게 도전에서 이기면 그녀의 제자가 될 것을 요구했다.\\n\\n린지는 노인이 넘겨준 헤드 기어를 번거롭게 생각하고 한 쪽으로 던져버렸다. 자신의 빠른 반응 속도로 쉽게 이길 줄 알았던 린지는 세 걸음 안쪽으로 들어온 노인에게 안면을 정통으로 맞았다. 잠시 정신을 잃고 나서 린지는 헤드 기어를 주웠다. 가늘게 뜬 눈으로 그녀는 새로운 세상을 보았다.\\n\\n「이게 격투가의 펀치인가? 재밌네, 나를 가르칠거면 날 최고로 만들어줘야 해」\\n\\n투덜거리긴 했지만 린지는 패배를 인정하고 보호구를 착용하며 격투의 세계에 정식으로 입문한다" + }, + "31052": { + "Name": "격투왕의 대포 글러브", + "Desc": "잘 관리된 격투 글러브. 가벼운 손상 정도는 실사용에 지장을 주지 않는다", + "Story": "격투계에 처음 입문한 린지의 권법은 날카로웠지만 공격만 알고 수비를 몰랐다.\\n\\n길거리에서의 경험은 링위에서는 그다지 유용하지 않았고, 예카테리나가 배정한 격투 시합으로 길바닥의 꼬맹이의 자부심은 산산이 부서졌다.\\n\\n지역 대회에서 좌절한 후 위엄과 자신감이 땅에 떨어진 그녀는 예카테리나가 가르쳐준 공수 리듬에 대해 생각할 수밖에 없었다. 주먹질만 할 줄 알던 린지는 격투의 여신에게 입맞춤이라도 받은 듯 점차 공격과 방어 전환의 재미를 알게 됐다. 정신을 차리고 보니 응고된 손가락 보호대가 갈라지고 격투 글러브에 피와 땀으로 흠뻑 젖어 있는 것을 알아차렸다.\\n\\n「자신만의 리듬을 찾아야 해. 상대의 함정에 빠지지 안 돼」\\n\\n린지는 예카의 물처럼 따스한 눈빛과 좌우명을 순식간에 이해하게 되었다. 엄격한 예카는 그녀를 늘 자신의 아이처럼 바라봤다" + }, + "31053": { + "Name": "격투왕의 가슴 보호대", + "Desc": "격투선수 전용 가슴 보호대. 겉의 커버와 안쪽에 안감이 처리되어 있어 안전하면서도 기술 발휘에 지장을 주지 않는다", + "Story": "격투 시합 전날 훈련장은 여느 때와 다름없이 주먹으로 빠르고 묵직하게 샌드백을 치는 소리가 울린다.\\n\\n땀으로 몸에 달라붙은 가슴 보호대의 뜨거운 증기로 현실과 격리된 린지는 현실과 도망치려 했다.\\n\\n린지는 감정을 억누르려고 최선을 다했다. 땀과 섞인 눈물이 얼굴에서 반짝거렸다. 늦은 밤 그녀는 격투 글러브와 가슴 보호대를 벗어 안쪽에 「예카」라는 이름을 적었다. 그녀는 이 이름에 대고 승리를 약속했다. 이번 시합은 격투왕으로 향하는 중요한 관문이자 코치 없이 임하는 첫 경기이기도 하다. 링에 오르기 전 린지는 카메라를 향해 자신 있게 가슴을 폈다.\\n\\n「린지… 네가 내 딸과 이름이 같다니. 그 아이가 떠났을 때, 나는 내 세계가 무너진 줄 알았어. 그리고 너를 만났지. 고마워, 린지」\\n\\n「나를 지켜줘, 예카」. 가장 중요한 이름은 심장에 붙어있다" + }, + "31054": { + "Name": "격투왕의 휘어진 스텝 부츠", + "Desc": "가죽과 그물을 절묘하게 결합하였고 두꺼운 깔창과 얇은 밑창 디자인을 적용해 민첩한 스텝을 확보했다", + "Story": "몸집이 작은 린지는 빠르고 날렵한 펀치로 유명하다. 그녀의 가벼운 스텝은 꽃을 맴도는 나비 같다.\\n\\n거친 비처럼 쏟아지는 상대의 주먹조차 린지의 어깨를 스칠 뿐이었다. 이것이 바로 유명한 「린지의 춤」이다.\\n\\n린지에게 특별한 스텝을 훈련시키기 위해 예카테리나는 길거리 소녀를 상류층 무도회로 데려갔다. 그녀는 린지의 손을 잡고 턴을 거듭했다……. 처음엔 비틀거렸지만, 린지는 점차 스텝을 따라갔다. 그녀는 격투 코치라고 자칭하는 노인이 단순한 코치가 아니라는 걸 깨달았다. 흐릿한 무대에서 린지는 마음속 어딘가 무른 곳이 갑자기 묘한 감정으로 욱신거리는 것을 느꼈다.\\n\\n「나랑 다시 춤출래?」\\n\\n이런 경험이 처음인 길거리 출신 린지는 예카테리나의 맑은 눈을 바라보며 거부할 수 없었다" + } + }, + "RequireNum": { + "2": { + "Desc": "물리 속성 피해 #1[i]% 증가", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "장착한 캐릭터는 공격 발동 혹은 피격 후 해당 전투에서 공격력이 #1[i]% 증가한다. 최대 중첩수: #2[i]스택", + "ParamList": [ + 0.05000000004656613, + 5 + ] + } + } + }, + "106": { + "Name": "눈보라에 맞서는 철위대", + "Icon": "SpriteOutput/ItemIcon/71005.png", + "Parts": { + "31061": { + "Name": "철위대의 무쇠 복면 헬멧", + "Desc": "일률적으로 개조된 헬멧. 내부의 충전재가 온도를 따뜻하게 유지해준다", + "Story": "한파에 맞서는 것은 쉬운 일이 아니지만 야릴로-Ⅵ의 실버메인 철위대는 이미 익숙하다. 차가운 바람이 헬멧의 틈새를 칼처럼 뚫고 지나갔다.\\n\\n천외에서 온 괴물이 다시 전열을 정비하고, 완전 무장한 병사들이 수호자들의 명령 아래 전투태세를 갖추고 있다.\\n\\n전초 기지를 담당하는 병사들은 괴물의 행적을 정찰하기 위해 종종 며칠 동안 눈 속에 잠복한다. 장시간의 서리는 병사의 피부와 땀, 얼굴 보호대의 충전재까지 얼어붙게 하고 뜨거운 물을 부어야 헬멧을 안전하게 벗을 수 있다. 축성가의 장인들은 헬멧이 눈보라 속에서 받는 저항을 최소화하기 위해 무쇠 헬멧 금속판의 곡선을 굴절시켰다.\\n\\n튼튼하고 따뜻하고 위풍당당한 철위대의 복면 헬멧의 제식은 이렇게 전해져 내려오고 있다.\\n\\n「이런 가면을 쓰고 어떻게 길을 보는 거야?」 모든 순찰 근무 중인 철위대는 이런 질문을 받은 적 있다" + }, + "31062": { + "Name": "철위대의 은비늘 손갑옷", + "Desc": "은빛을 내는 금속 손갑옷. 복합적인 기계 구조가 숨겨져 있다", + "Story": "파멸의 표식을 지닌 침입자가 근위병의 길을 막았다. 라즐로•랜도는 병사들에게 수호자의 퇴각을 보호하라고 명령하고 홀로 남아 퇴로를 막는다.\\n\\n실버메인 철위대 중 가장 용맹하고 전투에 능한 방위관도 괴물의 홍수 속에서 물러날 수 없었다.\\n\\n흉악하고 기괴한 생물이 끝없이 달려들어 맹렬하게 쏟아지는 소나기처럼 공격을 퍼부었다. 흉물들이 멈추지 않고 돌진해도 랜도가 홀로 지키는 방어선을 넘어설 수 없었다. 격렬한 공방이 계속되자 라즐로는 온 힘을 다해 버텼고, 지원군이 나타나서야 쓰러졌다. 병사들은 라즐로가 잔혹한 전투에서 두 손을 잃었다는 걸 발견했다.\\n\\n축성가 최고의 장인은 그가 다시 깃발을 들 수 있도록 정교한 손갑옷을 만들어 영웅에게 선사했다.\\n\\n「옥에 티가 있네」 라슬로는 정교한 갑옷을 바라보며 중얼거렸다. 「이 두 손은 이제 활의 떨림을 느낄 수 없어」" + }, + "31063": { + "Name": "철위대의 구식 군복", + "Desc": "다림질된 실버메인 철위대의 구식 군복. 단단한 버클에 눌려 주름이 생겼다", + "Story": "괴테 가문에서 전해 내려오는 구식 군복은 오랫동안 상자 아래에 깔려있었다. 군인의 명예만이 그것을 세상에 소환할 수 있다.\\n\\n병사를 파멸시키는 야만 앞에서도 실버메인 수호를 맹세한 철위대는 물러설 길이 없었다.\\n\\n베발로 수호 전쟁에서 홀스•괴테는 몇 달 동안 결사대를 이끌고 통로를 지켰다. 증원의 호각 소리가 산골짜기에 울려 퍼지고 나서야 사람들은 영웅들이 오래전에 죽었다는 사실을 알아챘다. 수호자 알리사는 용맹한 홀스•괴테의 후손들에게 직접 명예훈장을 하사했고, 어린 괴테는 구식 군복을 입고 죽은 영웅을 대표하여 가슴을 폈다.\\n\\n어린 괴테는 군복과 훈장을, 대수호자는 영웅들이 남긴 유산인 벨로보그의 미래를 보았다.\\n\\n「홀스•괴테는 진정한 전사이며 괴테라는 성에 자부심을 가져야 한다」 이 말은 젊은 괴테가 수호자에 대해 가지고 있는 유일한 기억이다" + }, + "31064": { + "Name": "철위대의 은 정강이 보호대", + "Desc": "단단한 은백색의 금속 정강이 보호대. 보호 기능도 있으면서 가볍고 따뜻하다", + "Story": "실버메인 철위대의 야전부대는 전술적 필요에 의해 허리까지 쌓인 눈 속에서 천 리 길을 가야 했다. 장거리를 질주하는 피로와 심한 동상이 전사들의 두 발을 시험에 빠트렸다.\\n\\n끝없는 눈 밭의 원정에서 이따금 옛 친구를 오랜만에 만날 수 있었다.\\n\\n설원 유격을 담당하는 실버메인 철위대는 주둔지에서 설원 늑대의 울음소리를 자주 들을 수 있었다. 그들도 침입자들의 말발굽에 쫓겨나 보금자리를 잃은 불쌍한 생물체들이었다. 야전 중대의 예거 사관은 사냥꾼 출신인데, 늑대 갈기로 모피 망토를 만드는 재주가 있다. 끝없는 한파가 강림한 후 그는 이처럼 사나운 들짐승은 거의 보지 못했다. 추운 밤 몇몇 설원 늑대는 경계를 풀고 철위대의 주둔지 모닥불로 다가와 아무 소리 없이 예거의 옆에 누웠다. 새벽이 다가오고 짐승들은 따뜻한 꿈속으로 영원히 잠들었다.\\n\\n예거 사관은 처리한 늑대의 갈기를 병사의 실버 정강이 보호대 안에 채워 넣어 원정을 조금이나마 편하게 해주었다.\\n\\n「설원 늑대가 보금자리를 완전히 잃은 것은 아니야. 우리도 마찬가지고」 예거 사관은 설원 늑대에 대한 안타까운 마음을 이렇게 표현했다" + } + }, + "RequireNum": { + "2": { + "Desc": "받는 피해 #1[i]% 감소", + "ParamList": [ + 0.0800000000745058 + ] + }, + "4": { + "Desc": "턴 시작 시 장착한 캐릭터의 현재 HP 백분율이 #1[i]% 이하일 경우, 자신 HP 최대치 #2[i]%만큼의 HP를 회복하고 에너지를 #3[i]pt 회복한다", + "ParamList": [ + 0.5000000004656613, + 0.0800000000745058, + 5 + ] + } + } + }, + "107": { + "Name": "용암 단조의 화장(火匠)", + "Icon": "SpriteOutput/ItemIcon/71006.png", + "Parts": { + "31071": { + "Name": "화장(火匠)의 흑요석 고글", + "Desc": "검은 화염 결정으로 만든 보호 안경. 렌즈 아래에서 터지는 맹렬한 불꽃은 얼룩덜룩한 잔상에 불과하다", + "Story": "화장(火匠)에게 전설의 무기를 주조하는 건 타고난 재능의 사명이자 일생을 동반하는 저주다.\\n\\n해방된 화장의 종족은 전쟁 용광로 세계에서 재능을 극도의 나타내 파멸의 기운으로 물들기 시작했다.\\n\\n용광로의 불빛과 불꽃이 눈부시고 긴 단조 과정에 원형이 전설의 무기로 주조되고 장인들은 시력을 잃는다. 퓨어는 화산 하부에서 희귀한 흑요석 화염 결정 덩어리를 발견한 적이 있으며 이를 고글 렌즈를 만들어 화려한 불꽃을 창백한 윤곽으로 보이게 했다. 하지만 탐욕스러운 장인은 저주의 운명을 피하지 못하고 극한에 불길에 자신까지 태웠다.\\n\\n퓨어는 전쟁 용광로 속 반물질 군단을 제련의 소재, 자신을 타오르는 불길로 삼았다\\n\\n「예를 들어, 열핵 반응을 내 용광로로 만들 가능성은 없을까?」 퓨어는 한계까지 치솟은 용광로 불을 찾으며 통제되지 않은 열핵 반응 속에서 파멸했다" + }, + "31072": { + "Name": "화장(火匠)의 어화(御火) 반지", + "Desc": "화염 표식이 있는 반지. 화장(火匠) 일족의 최고 명예의 상징이다", + "Story": "900도의 모닥불은 흙을 태워 도자기를 만들고 수천 도의 불은 금속을 녹일 수 있다…… 본질에 가까운 제작일수록 극한의 온도를 갈망한다.\\n\\n군단의 생물들은 물질적 형태에서 벗어나기를 갈망하며, 파멸의 불길만이 가져올 수 있는 질적 변화를 간절히 바라고 있다.\\n\\n노련한 화장(火匠) 달인은 믿을 수 없는 정도의 불을 끌어올릴 수 있으며 화염의 흑체 복사는 죽어가는 행성과 흡사한 파란색 스펙트럼을 나타낸다. 모든 화장(火匠)은 불길을 다스리는 천재이지만 그중에서도 특출난 자만이 달인의 기술을 상징하는 어화(御火) 반지를 수여받는다.\\n\\n전쟁 용광로는 장인과 소재를 가리지 않고 반물질 생령을 제련하는 화장 달인들 조차 무기의 일부가 되었다.\\n\\n「주조기는 용광로 온도에 따라 결정되고 용광로 온도는 화장(火匠)이 결정한다」 고온을 마스터한 화장(火匠)에게 이건 너무나 당연한 일이다" + }, + "31073": { + "Name": "화장(火匠)의 난연성 앞치마", + "Desc": "과도한 장식이 없는 장인의 앞치마. 가죽 문양과 가문의 상징만이 선명하게 보인다", + "Story": "반물질 군단은 쇠퇴한 「전쟁 용광로」에 화장(火匠)을 보내 그들이 화염의 세계에서 자유롭게 단조할 수 있도록 했다.\\n\\n용암이 들끓는 세계에서는 제련만 할 수 있다면 탄생과 파멸은 이원적 대립 관계가 아니다.\\n\\n수르트는 활화산의 분출한 용암을 사용하여 군단의 무기에 포악한 파멸의 기운을 주입하는 일에 능숙하다. 맹독 가스가 끓어오르거나 뜨거운 용암이 들끓어도 수르트의 담금질을 방해할 수 없다. 뜨거운 용암이 수르트의 앞치마에 튀었다. 이것은 불 도마뱀 가죽으로 만든 난연 재질의 앞치마로 용암이 튀고 나도 가죽 겉면은 여전히 새것처럼 매끄럽다.\\n\\n대량의 군단 전력은 용광로에서 육체와 무기가 하나가 될 때까지 반복적으로 제련되어 파멸의 무기가 된다.\\n\\n「비할 데 없는 파멸의 힘……」 화염을 조종하는 장인들은 무기에 담긴 끔찍한 욕망을 절대 숨기지 않는다" + }, + "31074": { + "Name": "화장(火匠)의 합금 의족", + "Desc": "금속 재질 의족. 입체적인 화염 문양이 표면을 감싸고 있다", + "Story": "감옥의 주인은 유일무이한 단조 기술을 잃을까 두려워 어쩔 수 없이 비열한 방법으로 으로 화장(火匠) 일족을 가뒀다. 속박의 세월 속에서 화장 족장들은 예외없이 다리에 문제가 생겼다.\\n\\n파멸의 주인은 수감된 화장 일족을 해방시켰고, 파멸의 인장은 화장들에게 무한한 힘을 부여했다.\\n\\n감옥에서 나온 후 족장은 더이상 평범한 사람처럼 자유롭게 움직일 순 없었지만, 뛰어난 기술로 인해 속박되지 않을 진정한 자유를 얻었다. 족장은 원한과 굴욕을 쏟아내며 며칠을 지치지 않고 망치를 쳤다. 완고하고 도도한 반물질 생령은 망치질에 의해 형태를 바꾸고 파괴자의 개조에 굴복하지 않을 수 없었다.\\n\\n형체가 있는 감옥은 사라졌지만 단조에 대한 광적인 집착도 일종의 굴레 아니겠는가?\\n\\n「육체는 짐이고 단조는 파멸이다」 족장은 모자란 장인이 많아지는 것을 보고 탄식했다" + } + }, + "RequireNum": { + "2": { + "Desc": "화염 속성 피해 #1[i]% 증가", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "장착한 캐릭터의 전투 스킬이 가하는 피해가 #1[i]% 증가하고, 필살기 발동 후 다음번 공격이 가하는 화염 속성 피해가 #2[i]% 증가한다", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + } + } + }, + "108": { + "Name": "별처럼 빛나는 천재", + "Icon": "SpriteOutput/ItemIcon/71007.png", + "Parts": { + "31081": { + "Name": "지니어스의 초원격 감지", + "Desc": "초원격 감지 기술을 기반으로 제작된 통신 안경. 전파 매체와 거리의 제약을 없앴다", + "Story": "지니어스 클럽의 멤버는 대부분 괴짜들이다. 괴짜들 사이에 소통이 없는 건 모두가 아는 사실이다.\\n\\n여러 세계에 사는 천재들에게 사교는 확실히 불필요한 부담이다. 이것은 평범한 사람들에게도 그럴 것이다.\\n\\n그러나 #56 회원이자 클럽의 2대 회장인 엘리야 살라스는 이 문제를 해결하기 위해 노력했고 당시 멤버들에게 초원격 감지 기능이 탑재된 통신 안경을 열정적으로 준비해줬다. 유감스럽게도 먼 별을 가로지르는 다리가 만들어졌어도 다리를 건너려는 사람은 거의 없다——은하계 역사상 최고의 통신 장치가 나온 이후로 유효한 대화가 있었던 적은 없다.\\n\\n「『지금 후추하신 유저는 소스 지역에 없습니다』 제발, 인공 지능인 척하면서 연락을 거절하더라도 좀 진지하게 할 순 없는 거야?」\\n\\n한숨 쉬는 엘리야 살라스는 어려운 부탁이라는 걸 알면서도 이 기술은 쓸 곳이 있을 거라는 생각에 시도하지 않을 수 없었다" + }, + "31082": { + "Name": "지니어스의 주파수 변환 포착 장갑", + "Desc": "정밀한 주파수 변환 포착기가 장착된 장갑. 실제 소리와 빛의 진동을 직관적으로 조작할 수 있다", + "Story": "양부의 과일 가게에서 잡일을 도맡아 하기에 들키지 않고 농땡이를 치는 게 #84 회원 스티븐•로이드가 풀어야 할 과제다.\\n\\n그는 특정 주파수 구간을 포착할 수 있는 장갑을 만들고 소리와 빛의 탈출구를 잡아 주파수 구간 울타리 뒤에 숨어 현악을 연구할 수 있도록 했다.\\n\\n특정 영역 내의 소리와 빛을 흐르지 않게 유지할 수 있는 건 과학의 궤적을 바꾸는 중대한 발명이지만, 기존의 에이든 고전과학으로는 설명하기 어려웠다…. 하지만 그는 과학계와 마찰을 일으키고 싶지 않았고 본인도 해당 기술을 공개할 생각은 없다. 이건 결국 농땡이 치기 위해 만든 장난감일 뿐이다.\\n\\n「스티븐, 무슨 짓을 꾸몄는지 모르겠지만 게으름을 피우고 있었지?」\\n\\n스티븐•로이드가 세간에서 「천재 중의 천재」로 불리더라도 양부에게는 그저 공상을 좋아하는 게으른 아이일 뿐이다" + }, + "31083": { + "Name": "지니어스의 메타버스 딥 다이빙", + "Desc": "가동하면 잠수복처럼 전신을 감싸고 전신의 신경 신호를 실시간으로 메타버스 공간에 전송한다", + "Story": "#29 회원 세르칼이 창조한 메타버스 공간은 생물학적 종족과 다차원을 초월했으며 모든 생물은 딥 다이빙 장치의 도움으로 신경 신호를 의식 네트워크에 동기화할 수 있다.\\n\\n세계를 넘나들 수 없는 생물들도 하나의 공통된 꿈으로 연결되어 현실에 존재하지 않는 평온과 평안을 찾을 수 있다.\\n\\n우주의 생물은 가상 데이터로 만들어진 메타버스 공간에 무수한 문물을 창조했고 새로운 질서가 조용히 자리를 잡았다. 누군가 새로운 낙원이 현실을 대체할 거라고 예언했을 때, 「창조주」 세르칼은 농담처럼 의식 네트워크의 연결을 완전히 끊었고 메타버스 공간 전체는 겨울처럼 고요해졌다.\\n\\n「하루 종일 메타버스를 논하던 투자자들은 이미 미쳤고, 산업계에서 거듭 힙을 썼지만, 메타버스는 없어졌다」\\n\\n사람들은 늘 상실한 후에야 생각한다. 메타버스는 사실 영혼의 배양판이고, 다양한 생물을 그곳으로 불러들인 건 단지 무료로 영혼 샘플을 얻기 위함일 뿐일지도 모른다고" + }, + "31084": { + "Name": "지니어스의 중력 보행", + "Desc": "스케이트 모양의 웨어러블 중력 포착 장치. 미끄러질 때 별빛을 비춘다", + "Story": "클럽 #64 회원, 악명 높은 「원시 박사」는 대죄를 범해 평생 끝없는 우주의 추격에서 도망쳐야 했다.\\n\\n「원시 박사」는 이런 도피를 즐기는 것 같다. 그는 잡히지도 않으면서도 추적자가 찾을 수 있게 거리를 조절한다.\\n\\n그는 도주 과정 어떤 중력 포착 기술을 적용해 중력만으로도 우주를 자유롭게 활보할 수 있었다. 지식학회의 천체 물리학자들은 그 원리를 이해하지 못했고 행성들 사이의 중력 차이가 핵심적인 역할을 한다고 가정할 뿐이었다. 추적자들은 중력 시대의 교통 수단을 사용해 범인을 잡겠다는 각오로 겨우 그 뒤를 뒤쫓고 있다.\\n\\n「우주를 활보하는 건 낭만적인 일이지」 갤럭시 레인저가 말했다. 「그 사람이 원시 박사라는 점이 안타깝지만」\\n\\n「원시 박사」가 완전히 실종되자 갤럭시 레인저는 「사망 추정」을 믿지 않고 여전히 추적을 멈추지 않고 있다" + } + }, + "RequireNum": { + "2": { + "Desc": "양자 속성 피해 #1[i]% 증가", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "장착한 캐릭터는 적에게 피해를 줄 때 #1[i]%의 방어력을 무시한다. 목표가 양자 속성 약점을 보유할 경우, 추가로 #2[i]%의 방어력을 무시한다", + "ParamList": [ + 0.10000000009313226, + 0.10000000009313226 + ] + } + } + }, + "109": { + "Name": "뇌전을 울리는 밴드", + "Icon": "SpriteOutput/ItemIcon/71008.png", + "Parts": { + "31091": { + "Name": "밴드의 편광 선글라스", + "Desc": "메인 보컬 중 한 명인 제니스가 착용한 클래식 선글라스. 크롬 렌즈가 파란빛을 반사한다", + "Story": "행성의 수명은 급격히 줄고 있다. 적색 거성이 완전히 폭발하기 전에 에메랄드-III의 주민들은 모성(母星)을 떠났다.\\n\\n도망칠 곳 없는 미래를 마주한 엘리트들은 희망을 가져가고 절망의 울음소리를 못 들은 척했다.\\n\\n제니스의 부모는 우주선에 탑승하기 위해 막대한 신용 포인트를 지불하고 어쩔 수 없이 별의 구원을 고대했다. 행성은 적색 거성의 폭발에 파괴되고 항성은 붕괴되어 백색 왜성이 될 것이다…. 예견 가능한 종말 앞에서는 도망치는 것이 유일한 답이다. 하지만 혼돈의 의사 제니스는 은하계의 소멸에 직면해 존재의 흔적이 공허로 돌아가지 않는다는 것을 전력을 다해 증명하려고 한다.\\n\\n죽어가는 태양은 점점 더 뜨거워지고 제니스는 어머니의 선글라스를 가지고 같은 생각을 가진 젊은이들과 함께 모성(母星)으로 돌아갔다.\\n\\n「겁쟁이는 밖으로 도망갈 줄만 알면서 구원의 이름을 떠들어 대지」 격뇌 밴드 1집에 수록된 싱글 ≪저렴한 구원≫. 제니스는 부모님과 싸울 때 화나서 했던 말을 가사로 썼다" + }, + "31092": { + "Name": "밴드의 투어 팔찌", + "Desc": "베이시스트 시드의 팔찌. 투어 중 사용한 실크 팔찌로 짜여졌으며 가사가 몇 줄 적혀있다", + "Story": "에메랄드-III의 격뇌 밴드는 몇 개의 강력한 선공개 곡으로 금새 전 행성을 들썩이게 만들었다.\\n\\n기타리스트 데이브가 격렬하게 기타를 쓸어내릴 때 뿜어져 나오는 번개 불꽃은 투어 시작의 트레이드 마크지만, 팬들에게는 남은 생의 유일한 빛으로 여겨졌다.\\n\\n밴드의 순회 공연에서 팬들은 자발적으로 질서를 유지한다. 그들은 공연장에 입장하면 신분을 확인할 수 있는 실크 팔찌를 나눠준다. 이 팬들은 대부분 비싼 탈출 비용을 감당하지 못해 전자 폭발을 기다리는 운명을 받아들였다. 하지만 반란을 목격한 젊은이들이 다시 행성으로 돌아오는 것을 보면서 자신의 영혼도 순간 불타오르는 것을 느꼈다. 그들은 팔찌에 가사와 모든 공연 시간, 그리고 자신의소리 없는 함성도 기록했다.\\n\\n베이시스트 시드는 투어 때마다 팔찌를 수집했고 여자친구 낸시에게 팔찌를 짜서 항상 착용해 달라고 부탁했다.\\n\\n「의미도 방향도 없고 갈 곳도 없는 우리에겐 미래도 없다」 격뇌 밴드 2집에 수록된 싱글 ≪우리의 길≫, 시드의 인생 신조다" + }, + "31093": { + "Name": "밴드의 리벳 가죽 재킷", + "Desc": "메인 보컬 중 한 명인 데이비드가 검은색 가죽 재킷 뒤에 하얀 별을 그렸고 그게 마지막 앨범의 재킷이 되었다", + "Story": "격뇌 밴드의 로큰롤이 은하계에 울려 퍼지자 탈출이 내키지 않았던 젊은이들은 파멸이 임박한 에메랄드-III으로 돌아갔다.\\n\\n리드 기타리스트 지미는 밴드를 지하로 이끌었다. 그들은 그곳에서 행성이 파괴될 때의 비명을 온 우주에 퍼뜨렸다.\\n\\n공연이 시작되기 전, 데이비드는 리벳 가죽 재킷 뒷면에 하얀 별을 그려 넣었다. 그것은 별이 붕괴한 이후에 나타나는 백색 왜성이자 항성이 존재했었다는 증거였다. 별을 떠난 사람들과 멸망을 앞두고 남은 자들 모두 천둥처럼 울려 퍼지는 로큰롤에 귀를 기울이며 똑같은 심벌을 흔들었다.\\n\\n비록 밴드는 사라졌지만, 그들의 존재는 음악에 녹아들어 영원히 새겨졌다.\\n\\n「우리는 우리의 목숨으로 고독한 백색 왜성에 불을 붙일 거야」 격뇌 밴드의 마지막 앨범에 수록된 동명곡 ≪화이트 스타≫는 데이비드가 작사와 작곡을 맡았다" + }, + "31094": { + "Name": "밴드의 리벳 숏부츠", + "Desc": "드러머 본햄의 숏부츠. 무대 조명을 반사하는 가죽 표면에 리벳이 달려있다", + "Story": "격뇌 밴드는 종말을 대하는 사람들의 태도를 바꿨지만 결말을 바꾸지는 못했다.\\n\\n절망과 외로움이 황폐한 행성의 표면을 가득 채웠다. 물자가 부족했던 시절이었기에 밴드는 폐기된 엑스레이 필름에 모든 앨범을 취입했다.\\n\\n긴 밤이 찾아오면 에메랄드-III의 표면 온도는 빠르게 떨어졌다. 바깥이 시원해지면 사람들은 지하 피난소에서 나와 밴드의 공연장으로 향했다. 마지막 공연이었던 「뇌명」 투어 현장에서는 불안정한 공기 속에서 전자 폭풍의 전조가 감돌았고, 천둥의 진동은 금속 세트를 지나 스테이지까지 전해졌다. 번개는 본햄의 부츠 아래에서 춤췄고, 밴드는 뇌전과 혼연일체가 되었다. 앙코르곡이 끝나자 거대한 번개의 구체가 무대를 집어삼켰았다.\\n\\n앙코르 공연이 끝나고 격뇌 밴드의 공연은 그들의 노래 가사처럼 그것으로 마지막이 되었다.\\n\\n「천둥소리가 우리의 목소리를 뒤덮고, 번개는 혈관을 타고 흐르고 있어. 우리는 우리의 음악 그리고 별과 함께 멸망을 맞이할 거야」 ≪격뇌의 노래≫, 격뇌 밴드의 마지막 싱글 앨범은 본햄의 대표작이기도 하다" + } + }, + "RequireNum": { + "2": { + "Desc": "번개 속성 피해 #1[i]% 증가", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "장착한 캐릭터는 전투 스킬 발동 시 공격력이 #1[i]% 증가한다. 지속 시간: #2[i]턴", + "ParamList": [ + 0.20000000018626451, + 1 + ] + } + } + }, + "110": { + "Name": "밤낮의 경계를 나는 매", + "Icon": "SpriteOutput/ItemIcon/71009.png", + "Parts": { + "31101": { + "Name": "매의 부리 헬멧", + "Desc": "고속 비행에 사용되는 유체 헬멧. 공어매(空漁鷹)처럼 부리가 있다", + "Story": "살소토의 공어부(空漁夫)들은 매일 새벽 이동 도시의 「공중 부두」에서 출발해 공중에 날개옷을 펼치고 모래에서 튀어나오는 플로지스톤 해파리를 사냥한다.\\n\\n「위상의 불꽃」을 구성하는 플로지스톤은 거대한 이동 도시를 움직이는 도시의 혈액과 같은 물질이다. 매일 충분한 양을 확보해야 도시의 밤낮이 바뀌는 주야 경계선에 뒤쳐지지 않는다.\\n\\n누군가가 도중에 힘이 다하거나 거대한 새의 공격으로 죽게 되면 살소토 사람은 최선을 다해 그 사람의 시신을 찾아내 날개옷과 매의 헬멧을 함께 어두운 땅에 묻는다. 살소토의 전통 의식에서 「착지」는 곧 죽음이며 영원한 안식을 의미한다.\\n\\n비행은 멈출 수 없고, 도시 역시 멈출 수 없다.\\n\\n매의 헬멧의 부리에는 추도사가 새겨져 있다. 「대지가 아닌 날개야말로 매의 족쇄이다. 그것 때문에 반드시 날아야 하니까」" + }, + "31102": { + "Name": "매의 활공 반지", + "Desc": "탁월한 공어부(空漁夫) 대가가 착용한 반지 공어매(空漁鷹)의 두 날개가 손가락을 감싸고 있다", + "Story": "가장 뛰어난 기술을 가지고 있고 존경 받을 만한 공어 어렵 대장만이 「매의 반지」를 받는다. 이들은 피리로 공중에서 빈틈없는 연계를 이뤄내는 가장 민첩한 사냥매다.\\n\\n고독한 비행 중에 들려오는 대장의 124가지 「피리 소리」는 대원들에게 큰 위안이 된다.\\n\\n이 때문에 살소토에는 이러한 속담이 전해 내려온다. 「공어부들은 목숨 중 3분의 1은 숙련된 기술에, 3분의 1은 정교한 장비에, 나머지 3분의 1은 신뢰하는 대장에게 달려있다」\\n\\n수많은 가정을 책임지고 있는 대장은 단 한시도 이 조그만 반지의 무게를 잊을 수 없다.\\n\\n반지 표면에 새겨졌던 세공은 지워진 지 오래지만, 안쪽에 새겨져 있는 「책임」이라는 단어는 아직도 선명하게 남아있다" + }, + "31103": { + "Name": "매의 날개 장비 벨트", + "Desc": "날개 장비를 연결하는 벨트. 금속 지지대는 벨트에 숨겨졌으며 부드럽고 몸에 감긴다", + "Story": "살소토의 공어부(空漁夫)들에게도 모래 속에서 튀어나오는 플로지스톤 해파리를 잡는 것은 쉬운 일이 아니다. 비행 중 난기류에 휩쓸릴 때 외부 공역으로 날아가버리지 않게 그들을 잡아주는 생명줄은 오직 가느다랗고 연약해 보이는 안전띠뿐이다.\\n\\n게다가 사냥 도중에 이루어지는 속임수 동작 역시 쉽지 않다. 추적, 차단술에서 최종 포획에 이르기까지 모든 과정에서 단 한 번의 실수라도 일어날 경우, 치명적인 결과로 이어질 수 있다.\\n\\n미성년 공어부의 경우 부모로부터 머리카락 한 올씩을 뽑아서 금속 지지대에 묶고, 결혼을 했을 경우에는 배우자의 머리카락을 사용한다. 이렇게 하면 날개 장비에 「가족」의 축복이 깃들어서 공어부를 무사히 집으로 돌아갈 수 있게 해준다고 한다.\\n\\n잔혹한 생존의 세계에서 공어부들의 등을 받쳐주는 곳은 오직 「가족」뿐이다.\\n\\n이 벨트에 묶여 있는 머리카락은 여성의 것으로 보이며, 끝부분은 약간 하얗다" + }, + "31104": { + "Name": "매의 깃털 붕대", + "Desc": "비행 중 다리를 따뜻하게 해주는 붕대. 공어매(空漁鷹)의 깃털이 장식되어 있다", + "Story": "살소토의 공어부(空渔人)가 플로지스톤 해파리를 사냥하는 과정은 생존을 건 전투와 같다. 심장에서 가장 멀리 떨어져 있는 두 다리는 깃털 보온 붕대로 단단히 감싸야만 체온을 유지할 수 있다.\\n\\n길고 고된 사냥이 끝나면 극한까지 몰린 신체는 그제서야 피로와 통증을 느끼기 시작한다.\\n\\n이때 철저하게 준비하지 않은 공어부는 심각한 동상으로 인해 신체 일부가 괴사하는 일이 발생하기도 한다. 이 때문에 공어부들은 출발하기 전에 깃털 보온 붕대를 단단히 조였는지 거듭 확인한다. 빠른 속도로 비행하는 도중에는 다시 조일 수 없기 때문이다.\\n\\n그들은 하늘에 발을 내딛는 순간부터 돌풍이 무엇을 앗아갈 수 있는지 정확히 알고 있다.\\n\\n이 붕대의 내부에 장착되어 있는 금속 케이스에는 약간의 석회나 알루미늄 분말을 태운 흔적이 남아있다. 비상 난방 수단으로 사용한 것 같다" + } + }, + "RequireNum": { + "2": { + "Desc": "바람 속성 피해 #1[i]% 증가", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "장착한 캐릭터는 필살기 발동 후 행동 게이지가 #1[i]% 증가한다", + "ParamList": [ + 0.25000000023283064 + ] + } + } + }, + "111": { + "Name": "유성을 쫓는 괴도", + "Icon": "SpriteOutput/ItemIcon/71010.png", + "Parts": { + "31111": { + "Name": "괴도의 천인 가면", + "Desc": "외모를 바꾸는 가면. 뛰어난 연기력까지 더하면 거짓을 진실로 만들 수 있다", + "Story": "유성 괴도 르블랑은 도둑질은 가면무도회에 참가하는 것과 마찬가지로 신분을 숨기는 것을 에티켓의 일부로 여겼다.\\n\\n「가면이 어떻게 키나 목소리까지 변조해주는 거냐고? 하하하, 그건 비밀이야. 내 특허 기술이라서 말이지」\\n\\n괴도는 가면을 사용해서 평범한 직원으로 위장한 다음, 컴퍼니의 보안 회의로 들어가 「괴도 방지 대책」에 대해 조언했다. 보안 부서는 이 사건이 일어난 이후로 보름이 지나서야 지금까지 누구도 그런 「동료」를 본 적이 없다는 것을 눈치챘다.\\n\\n도둑은 이중생활을 해야 하므로 남의 눈을 속일 수 있는 수단이 반드시 필요하다. 이건 괴도 업계의 전통이기도 하다.\\n\\n「당신네 작가에게 도둑이 작품 내내 가면을 쓰고 있게 해 달라고 요청할 수 있습니까?」 컴퍼니 미디어 부서의 마케팅 담당자가 제작사 측에 말했다. 「다시 한번 강조하지만 이 가면 굿즈의 수요는 어마어마합니다. 가격은 싼데 인기는 엄청나니까요」" + }, + "31112": { + "Name": "괴도의 무늬 장갑", + "Desc": "나노소재로 만든 특수장갑. 실시간으로 장갑 표면 문양을 만들 수 있다", + "Story": "유성 괴도 르블랑에게 절대 흔적을 남기지 않는 결벽증 따위는 없었다. 그는 과하지 않은 수준의 도발을 위해 항상 혼동을 일으킬 수 있는 단서를 남겼다.\\n\\n「왜 컴퍼니 사람들이 항상 가짜 지문에 계속 속아 넘어가느냐고? 그건 내가 아니라 그쪽 사람들한테 물어봐야 할 문제지」\\n\\n그의 장갑에는 각종 지문을 만들어 낼 수 있는 기능이 있다. 이것 때문에 컴퍼니의 지문 탐지 장치는 무용지물이 되어버렸고 별로 치명적이지 않은 엄청난 수의 「괴도의 흔적」이 남게 되었다. 보안팀은 비밀 창고에서 수백 개에 달하는 지문을 발견했는데, 그중에는 선사 시대의 익룡과 우주 무당벌레, 래브라도 리트리버의 것도 포함되어 있었다. 당연한 이야기이지만 그의 지문은 남아있지 않았다.\\n\\n흔적도 없이 사라지는 건 겁쟁이 좀도둑들이나 하는 짓이다.\\n\\n「아무리 픽션이라고 해도 현실과 완전히 동떨어져서는 안 되지. 요즘 세상에 지문 인식 시스템을 사용하는 곳이 어디 있어?」 컴퍼니 보안팀이 불평했다. 「작가라는 작자가 상식도 없는 거야?」" + }, + "31113": { + "Name": "괴도의 쇠갈고리", + "Desc": "편직 벨트로 위장한 강철 케이블. 벨트 버클에 갈고리와 도르래가 숨겨져 있다", + "Story": "주도면밀한 괴도는 절망적인 상황에서도 무사히 탈출할 수 있도록 언제나 허리춤에 비상탈출용 와이어를 준비해둔다.\\n\\n「허리에 달려있는 와이어를 어떻게 조준하는 거냐고… 당신은 본인이 어떻게 걷는지 설명할 수 있나?」\\n\\n보물이 보관되어 있는 밀실은 위험한 함정으로 가득 차 있다. 하지만 괴도는 와이어 장치를 사용해서 허공에서 왈츠를 추듯 움직인다. 갈고리는 발사되고 나면 0.3초 만에 수십 미터 높이의 벽 위에 걸리고, 도르래가 회전하면서 괴도는 순식간에 「사자자리 별」 앞에 나타나게 된다.\\n\\n허리춤의 와이어를 사용해서 날아다니는 것은 괴도로서 갖추어야 할 기본 소양이다.\\n\\n「속편에서는 그냥 스턴트맨을 주연으로 하자고. 그러면 예산을 아낄 수 있을 테니까」 무술 감독이 빈정대는 투로 말했다. 「어차피 가면을 쓰고 있으니까 누가 누군지도 모를 거 아냐」" + }, + "31114": { + "Name": "괴도의 유성 부츠", + "Desc": "인체 기능 향상에 도움이 되는 부츠. 괴도가 건물 사이를 활보하는 걸 도와준다", + "Story": "괴도는 일부러 눈에 띄는 흔적을 남기면서 거리 위를 빠른 속도로 날아다닌다. 「유성」이란 이름은 이 때문에 붙은 것이다.\\n\\n「고층 빌딩이 없으면 어떻게 도망갈 거냐고? 하하하, 그런 한심한 질문은 삼가줬으면 좋겠는데」\\n\\n그는 지금까지 수없이 많은 추적을 떨쳐냈다. 그의 근거지를 알아내지 못하는 한, 괴도의 유성 부츠를 따라잡을 방도는 없었다. 하지만 뜻밖에도 헝클어진 머리의 탐정이 커피잔을 든 채 르블랑의 의자에 앉아 그를 기다리고 있었다.\\n\\n이것으로 괴도의 이야기는 끝났다. 이제부터는 탐정의 이야기가 이어질 것이다.\\n\\n「많은 사람들이 우리가 이런 식으로 이야기를 전개할 거라고는 생각하지 못하죠. 그것이 바로 우리가 이렇게 글을 쓴 이유입니다」 익명을 요구한 한 작가는 유성 괴도의 최후를 이렇게 설명했다" + } + }, + "RequireNum": { + "2": { + "Desc": "격파 특수효과 #1[i]% 증가", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 장착한 캐릭터는 적의 약점을 격파한 후 에너지를 #2[i]pt 회복한다", + "ParamList": [ + 0.1600000001490116, + 3 + ] + } + } + }, + "112": { + "Name": "황무지의 도적, 황야인", + "Icon": "SpriteOutput/ItemIcon/71011.png", + "Parts": { + "31121": { + "Name": "황야인의 호흡 마스크", + "Desc": "먼지와 방사능을 걸러낼 수 있는 마스크. 폐기된 호흡기를 개조한 것 같다", + "Story": "이곳에서 잔류 방사능과 모래 폭풍은 일상이기에 탈리아의 황야인은 항상 마스크를 착용한다. 하지만 누구도 이렇게 제멋대로 개조된 마스크가 과학적인 원리에 부합한다고 생각하지는 않는다. 그저 약간의 자기 위안일 뿐이랄까.\\n\\n「그거 들었어? 계곡의 어떤 멍청한 노인네가 마스크에 급수용 튜브를 꽂았대! 나 같으면 절대로 못 할 짓인데 말이야」\\n\\n황야인은 탈리아의 혹독하기 그지없는 기후에 대해 거의 불평하지 않는다. 우선 핵폭발로 인해 대기가 모래와 먼지로 가득 찬 이후로 그것을 어찌할 수 있는 방법은 전혀 없었다. 또 다른 이유는 붉은 모래가 사방을 가득 메우고 태양마저 가리는 순간이 다른 황야인 소굴을 습격할 수 있는 절호의 기회이기 때문이다.\\n\\n모든 준비를 마친 도적 떼가 무방비 상태인 다른 도적 떼를 습격한다, 이것이 탈리아의 생존 법칙이다.\\n\\n이 방진 마스크는 탈착이 어려워 보인다. 게다가 위조 방지를 위해 「네일스크랩 타운」이라는 표식까지 그려져 있다" + }, + "31122": { + "Name": "황야인의 황무지 단자", + "Desc": "이온화 방사선 기체를 측정할 수 있는 다기능 쓰레기. 쓰레기 언어를 구사할 수 있다", + "Story": "도적국이 되기 전까지 탈리아는 「별이 빛나는 쓰레기장」으로 유명했다. 여러 세계에서 온 과학 폐기물들은 이곳에서 새로운 삶을 되찾고 있다.\\n\\n「왜 굳이 족쇄보다 무거운 손목 단말 장치를 달고 다니느냐고? 중요할 땐 망치보다 유용하거든」\\n\\n네일스크랩 타운이 건설되자 탈리아에서 가장 엉뚱한 엔지니어들은 마침내 실력을 발휘할 수 있는 안전한 장소를 찾았다. 곧 그들은 탈리아 고유의 「느낌 기반 기술」을 만들어냈다. 세슘 먼지 측정기와 욕쟁이 AI 손목 단말 장치를 결합함으로써 그들은 새로운 다기능 쓰레기인 「황무지 단자」를 탄생시켰다.\\n\\n소위 「느낌 기반 기술」의 핵심은 바로 「원리와 목적 따윈 묻지 마라. 아무도 신경 쓰지 않으니까」다.\\n\\n「감히 나를 이런 고철 덩어리와 합치다니, 하수구의 쥐 같은 것들아」 AI 단말 장치는 진지하면서도 간절한 어조로 말했다" + }, + "31123": { + "Name": "황야인의 수도사 로브", + "Desc": "선교사 스타일에서 변형된 느슨한 가운", + "Story": "탈리아의 도적떼들은 구원을 기대하지도 않고 수도사가 무엇인지도 몰랐다. 그저 로브가 땔감으로 쓰기 좋은 옷이라 여길 뿐이었다.\\n\\n「『무지의 시대는 아직 끝나지 않았다』? 이게 뭔 개소리야?」\\n\\n황야인은 오랫동안 방치되어 있던 수도원과 옛 문명의 고대 서적을 찾아냈다. 그들은 직감적으로 그 기록이 매우 가치 있다는 것을 알아차렸다. 하지만 그들은 그저 가식적으로 감탄한 후 유쾌하게 그것을 태워버렸다. 그들이 가져간 것은 오직 수도사의 로브뿐, 나머지는 네일스크랩 타운에서 전혀 쓸모없는 것들이었다.\\n\\n그들에게 교양 같은 건 없었다. 문명에 관한 자료 따위는 배를 채울 음식에 비하면 아무것도 아니었다. 하지만 그렇다고 그들을 탓할 순 없다.\\n\\n최소한 수도사의 로브는 남겨졌고, 이 또한 문명이 존재하는 방식 중 하나이니까" + }, + "31124": { + "Name": "황야인의 동력 다리 갑옷", + "Desc": "동력 기갑의 다리 부분, 고철과 오래된 전선으로 만든 외골격이다", + "Story": "네일스크랩 타운의 도적들은 수원과 쓰레기를 지킬 수단을 필요로 했는데 수를 채우기 위해 사용된 도적들의 기술은 이때문에 생겨났고, 화려하기만한 동력 기갑은 다리만 작동됐다.\\n\\n「내가 원하는 건 동력 기갑 세트인데, 지금 윗부분이 다 망가졌다는 거야?! 말해봐, 이 다리 갑옷을 너라면 쓰겠니?」\\n\\n하루가 멀다고 터지는 네일스크랩 타운의 방어전은 전쟁 중 「느낌 과학」의 발전을 촉진했으며 정체불명의 재료와 갑자기 생각한 공예로 동력 기갑을 만들 수 있었다. 유감스럽게도 초대의 고철 동력 기갑은 다리 갑옷만 남겼고 과감히 간소화했는데도 사람을 로켓처럼 발사할 수 있으며 구체적인 이유는 엔지니어도 정확히 알지 못했다.\\n\\n디자이너의 말처럼 비몽사몽의 순간 완성된 디자인으로 일생일대의 영감이 깃든 작품이다.\\n\\n그가 재활용이 되든 유해 폐기물이 되든, 아직 쓸 수 있다면 그건 좋은 쓰레기다" + } + }, + "RequireNum": { + "2": { + "Desc": "허수 속성 피해 #1[i]% 증가", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "장착한 캐릭터가 디버프 효과에 빠진 적에게 피해를 가할 시 치명타 확률이 #1[i]% 증가한다. 속박 상태에 빠진 적에게 피해를 가할 시 치명타 피해가 #2[i]% 증가한다", + "ParamList": [ + 0.10000000009313226, + 0.20000000018626451 + ] + } + } + }, + "113": { + "Name": "장수를 원하는 제자", + "Icon": "SpriteOutput/ItemIcon/71020.png", + "Parts": { + "31131": { + "Name": "제자에게 빛을 가져다준 의안", + "Desc": "예전에 어떤 사람의 소유였던 기계 의안, 현재 주인의 몸에서 제거돼 무용지물이 됐다", + "Story": "어두컴컴한 꿈속에서 그녀는 항상 빛이 돌아왔던 날들을 꿈꾼다. 광활한 대지에 알비지아 치넨시스의 가지가 바람에 흔들리고 꽃잎이 하늘하늘 떨어지던 장면. 쪽빛 파도가 바위에 부딪혀 백옥처럼 흩어지던 장면. 새가 날개를 펼쳐 청록빛 대나무숲으로 사라지던 장면.\\n\\n그녀는 늘 꿈속에서 누군가를 찾고 있다. 원래라면 그녀와 함께 이 장면을 보고 있었을 사람을.\\n\\n하지만 그녀에겐 흐릿한 형체만 보일 뿐. 그녀는 그 사람의 비단결 같은 단발과 검은 옥 같은 눈동자를 똑똑히 기억한다. 하나 이를 떠올리려고 하면 신경계가 구축한 미궁에 빠져 얼굴이 선명해지기도 전에 잠에서 깨어난다. 비몽사몽간에 그녀는 자신에게 지독한 고통을 안겨 주었던 의안을 문지른다. 가짜 눈 덕분에 그녀는 더 이상 소리, 냄새, 손끝에 의지해 흐릿한 형체를 더듬을 필요가 없다.\\n\\n「그건 이미 쓸모없는 물건 아닌가」 소멸 재앙신의 사도가 말했다. 그녀는 살랑이는 부채의 바람과 사도의 가느다란 웃음소리를 들었다. 「머지않아 네가 보고 싶어 한 모든 것을 보게 될 것이다——네 눈으로 직접」\\n\\n「이것도 제 눈인 것을요」 그녀는 가볍게 웃었다. 「이 눈으로 보았던 아름다운 풍경을 저는 다신 볼 수 없겠지요」" + }, + "31132": { + "Name": "제자의 기교 의수", + "Desc": "장수종을 위해 만들어진 기교 의수. 신체와 협착 없이 사용할 수 있다", + "Story": "다 자라지 않은 팔 끝에 보호젤을 바르고 신경 전기 신호 수신기를 피부에 단단히 밀착시켜 조인다. 기교 의수를 몸에 단단히 고정시키는 것——그녀가 수백 년간 매일 해온 아침 일과다.\\n\\n의수는 그녀에게 쓸데없는 관심을 불러왔다. 하지만 그녀는 문제를 일으키는 건 사양이고 동정받는 건 더더욱 사양이다.\\n\\n그녀처럼 무언가 부족한 사람은 날 때부터 타고난 재능과 의사 결정권을 가지고 있어도 타인의 태도에서 느껴지는 소외감을 지울 순 없었다. 약자에게 강하고 강자에게 약한 소인배는 언젠가 흥미를 잃고 나가떨어진다. 반면 자기가 꽤나 자비로운 줄 아는 위선자들은 파리처럼 앵앵거리며 그녀를 「두 눈과 한쪽 팔 없이도 꿋꿋이 사는 천결자」라고 칭송한다.\\n\\n과거 수만 번은 더 들은 말이지만 들을 때마다 토기가 몰려오는 말. 이젠 거기에 살랑살랑 흔드는 꼬리와 초롱초롱한 눈망울이 더해져 보는 사람의 속을 뒤집어놓는다.\\n\\n그녀는 무심코 뜨거운 화로 위에 왼손을 얹었다. 곧바로 날카로운 통증이 느껴졌다——그녀가 황급히 손을 거두자 손바닥에 입은 화상은 빠르게 아물었다.\\n\\n「가끔은 예전에 쓰던 의수가 더 편했던 것 같아」" + }, + "31133": { + "Name": "제자의 이슬받이 날개옷", + "Desc": "고서에 기재된 대로 짠 날개옷. 만고의 요인에게 속한 것이자 만인의 구세주에게 속한 것이다", + "Story": "일사(逸史)의 잔재에서 정보를 찾는 건 눈먼 사람에게 너무 어려운 일이다. 망망히 펼쳐진 고대 문헌의 바다에서 동료가 뭐든 가리지 않고 읽어주면 그녀는 문장을 발췌해 비밀을 파헤쳤다.\\n\\n머리 좋은 그녀는 무슨 책이든 한 번 들으면 통째로 외울 수 있었으나 고서 더미에서 찾은 「날개옷의 요부」란 기담만큼은 몇 번을 들어도 질리지 않았다.\\n\\n이야기는 이러하다. 어느 동천 주인이 반려를 구하기 위해 그 모습을 새로 바꿔주고 장생을 이어가게 했다. 하지만 그녀는 새의 울음소리를 견디지 못하고 자신 또한 새가 되어 함께 날아갔다. 오랜 시간이 흘러 동천 주인은 본래 모습을 잃고 반인반조가 되었다. 신하들은 군대를 이끌고 성에 들이닥쳐 그녀에게 불붙은 창과 화살을 던졌고, 결국 두 마리의 새는 마지막 애가를 부르며 함께 재가 되었다.\\n\\n그녀는 이 이야기가 마음에 들어 새의 정수를 채취해 단정사에서 형태를 다듬은 후, 사람을 시켜 아름다운 날개옷을 만들게 했다. 그녀는 날개옷의 아름다움을 알 수 없었지만 그걸 입고 방안을 거니는 게 좋았다——이젠 존재하지 않는 사람에게 보여주기 위해.\\n\\n옷소매가 바람에 흩날리는 순간, 그녀는 영혼이 새처럼 손바닥과 어깨 위를 노니는 것 같다고 생각했다. 한 번도 떠난 적 없다는 듯이" + }, + "31134": { + "Name": "제자의 천인 비단신", + "Desc": "신발 밑창이 매미 날개처럼 얇은 비단신. 이 신의 주인은 두 발로 걷지 않은지 오래됐을 것이다", + "Story": "교도들에게 선인의 흔적을 보여주기 위해 공중에 몸을 띄워 대지의 지배에서 벗어나 있을 때마다 그녀는 문득 고대 신화를 떠올린다——\\n\\n「도를 닦아 깨달음을 얻은 자가 지상을 누비며 지맥의 기운을 선도에 펼쳤다. 그야말로 변화무상하고 영험한 기운이니. 수도자는 바람을 타고 하늘에 올라 별에 닿으려 했다. 그러다 자신이 지맥과 멀어진 사실을 깨닫고 발을 헛디뎌 죽음의 심연에 빠졌다」\\n\\n하지만 지금의 상황은 신화랑 다르지. 그녀가 중얼거렸다. 선주에는 원래 뿌리가 없었으나 「불멸의 거목」이 뿌리를 내리면서 풍요의 주인과 일체를 이루고 약사가 약속한 무한정토와도 긴밀히 이어졌다. 하나 작금에 이르러서는 배신자들이 선도의 연결을 끊어 선주는 다시 부유하는 외딴섬이 되었다.\\n\\n선주의 가짜 대지는 그녀에게 힘을 줄 수 없다. 그녀가 찾는 뿌리는 발밑이 아닌 하늘과 심연 사이에 있다. 그녀는 신도들을 거느리고 「불멸의 거목」을 재생시켜 풍요의 지극한 은혜를 누릴 것이다.\\n\\n그녀는 얇은 비단신을 신고 사람들 머리 위로 떠올라 낭랑한 목소리로 선언했다. 「너희들이 올려다볼 것은 내가 아니라 하늘 높은 곳에 있는 본래 너희들이 앉았어야 할 자리다」" + } + }, + "RequireNum": { + "2": { + "Desc": "HP 최대치 #1[i]% 증가", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "장착한 캐릭터가 피격되거나 아군에 의해 HP가 소모되면 치명타 확률이 #1[i]% 증가한다. 지속 시간: #2[i]턴. 해당 효과 최대 중첩수: #3[i]스택", + "ParamList": [ + 0.0800000000745058, + 2, + 2 + ] + } + } + }, + "114": { + "Name": "가상공간을 누비는 메신저", + "Icon": "SpriteOutput/ItemIcon/71021.png", + "Parts": { + "31141": { + "Name": "메신저의 홀로그램 고글", + "Desc": "외형은 스키 고글 같다. 눈부심을 막아주기도 하고 가상 라이브 방송도 볼 수 있다", + "Story": "핫나이트 시티의 메신저들은 재벌의 사설 경호 부대를 피하기 위해 경비가 느슨한 도시 상공으로 이동한다.\\n\\n그들은 값싼 껌을 씹으며 고도로 개조된 홀로그래픽 고글을 착용하고, 펄스를 오픈해 사이버 도시 전체를 훑어보는 것을 즐긴다.\\n\\n고글은 도시의 실시간 정보를 띄워 불가능한 노선을 메신저의 길로 만든다. 건물 옥상, 에어컨 실외기, 광고판, 기중기의 팔… 물류 드론까지 길의 일부분이 될 수 있기에 메신저들은 기교가 뛰어나야 한다. 자칫하면 추락 사고가 발생할 수도 있기 때문이다.\\n\\n「어떤 망할 놈이 고글을 무차별적으로 까맣게 칠해놨어. 그때 마침 공중이었는데, 착지하는 순간 식겁했지」\\n\\n이 「옐로우덕」 고글은 판매가 끝난 구식 스타일인데, 마니아들 사이에 비싼 값으로 거래된다고 한다." + }, + "31142": { + "Name": "메신저의 변형 의수", + "Desc": "편하게 탈착할 수 있는 기계 의수, 손가락 마디를 탄알처럼 발사할 수 있다", + "Story": "모든 메신저들이 기계 의수를 보유한 것은 아니지만, 의수를 가진 메신저는 튜닝에 열을 올린다. 다른 사람과 똑같은 모양의 의수를 원하는 메신저는 없기 때문이다.\\n\\n핫나이트 시티의 주민들은 사이버 의수에 빠져 있다. 제한적인 도시 법규는 과도한 의수 개조 열풍을 말리고 있을 뿐이다.\\n\\n핫나이트 시티에 등록된 개조 표준은 3가지 범주에 총 18종류뿐이라서 반항적인 메신저들에게는 역부족이다. 그들은 거액의 기발한 설계에 거액을 투입한다. 의수의 변환기에서 번개를 방출하게 만들거나, 의수가 유도탄처럼 발사되게 만든다…. 설계도가 점점 괴상해지면서 메신저들의 수수료도 큰 폭으로 올랐다.\\n\\n「메신저들이 분주히 일하는 이유가 정보를 지키기 위해서일까, 아니면 터무니 없이 비싼 개조 비용을 대기 위해서일까?」\\n\\n이 「옐로우덕」 의수는 특수 개조를 거쳐 모든 손가락 마디가 고속으로 회전하며, 탄알처럼 발사된다" + }, + "31143": { + "Name": "메신저의 비밀 편지 크로스백", + "Desc": "트렌디한 메신저백, 여러 키링을 추가해 귀엽다", + "Story": "핫나이트 시티의 재벌들은 도시의 모든 정보 이동을 모니터링하고 있다. 그들은 정보 독점 방식을 습관적으로 운용해 재벌의 지배적인 지위를 유지한다. 겁없이 이를 뒤엎으려는 자는 치안법의 제제를 받게 된다.\\n\\n예전에 사람들이 항의하자 재벌들은 편의를 약속했다. 사람들은 곧 「사생활」을 포기했다.\\n\\n현실이든 가상세계든, 유용하든 유용하지 않든, 재벌들은 탐욕적으로 정보를 수집하기 시작했다. 이렇게 메신저들의 메신저백은 「사생활」을 지키는 최종 방어선이 되었다. 메신저백은 가볍고 깜찍해서 칩이나 서류만 휴대할 수 있다. 그러나 이렇게 좁은 정보 사각지대만이 나핫나이트 시티의 「정보 독립」을 보장해주었다.\\n\\n「어째서 번화한 핫나이트 시티에서 인터넷 외의 채널로 정보를 전달하는 사람이 있을까? 메신저들도 알고 싶다」\\n\\n이 한정판 「옐로우덕」 메신저백은 다소 낡았지만 여러 액세서리로 트렌디해 보인다" + }, + "31144": { + "Name": "메신저의 프리러닝화", + "Desc": "프리러닝을 지원하는 운동화, 착용하면 편한 게 전부다", + "Story": "핫나이트 시티의 예전 메신저들은 그들의 러닝화를 한 곳에 버리고 잠시 침묵한 뒤 떠났다. 대다수의 메신저들은 이 도시에 이름과 흔적을 남기지 않았다. 이런 행동은 제멋대로인 휴지 음표에 불과했다.\\n\\n메신저들도 언제부터 「메신저의 특성」이 변했는지 모른다. 메신저들은 자신들이 가장 싫어하는 사람으로 변했다.\\n\\n어느새 메신들이 보장하는 「정보 독립」은 독점으로 변했고, 신도들이 직면하는 리스크는 협상 카드가 되었다. 어느새 메신저들은 음모꾼들의 공범이 되었다…. 재벌들은 그들을 없애지 못했고, 미성숙한 이상은 메신저를 배신했다. 모든 게 걷잡을 수 없어지기 전에 메신저들은 모여서 분주히 달리던 삶에 작별을 고했다.\\n\\n「어쩌면 메신저들은 여기서 멈춰야 하는지도 몰라. 모든 사람들에게 이 도시를 제대로 보여줘야 하고, 진정한 개혁자들이 행동하게 만들어야 해」\\n\\n이것은 길가에 버려진 「옐로우덕」 러닝화이다. 핫나이트 시티의 메신저는 과거의 전설이 되었다" + } + }, + "RequireNum": { + "2": { + "Desc": "속도 #1[i]% 증가", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "장착한 캐릭터가 아군에게 필살기 발동 시 모든 아군의 속도가 #1[i]% 증가한다. 지속 시간: #2[i]턴. 해당 효과는 중첩되지 않는다", + "ParamList": [ + 0.12000000011175871, + 1 + ] + } + } + }, + "115": { + "Name": "재와 뼈마저 불사르는 대공", + "Icon": "SpriteOutput/ItemIcon/71024.png", + "Parts": { + "31151": { + "Name": "대공의 지옥불 면류관", + "Desc": "쉼 없이 타오르는 화염 면류관. 불타는 야심이 끝없는 연료가 되어준다", + "Story": "우아한 화마는 모든 불의 으뜸인 불에서 태어났고, 파멸은 페토라에 내려진 최고의 면류관이라고 굳게 믿었다.\\n\\n「난 파멸의 순간에 태어났고, 페토라의 죄악의 신앙이다. 나는 곧 나누크의 분노의 불길이다」\\n\\n나누크는 직접 페토라를 파괴했고, 화이트 스타의 불길과 파멸의 힘이 함께 플라즈마 생명체를 탄생시켰다. 우아한 화마는 자신의 탄생을 하늘의 계시라고 여겼다——「파멸의 군주께서 오늘 페토라를 정복하셨다. 그분은 이글거리는 불꽃을 훈장으로 수여하셨다. 경박하고 공허한 명예는 홍염을 따라 흩어지지만, 무겁고도 견실한 명예는 내게 면류관을 씌워줄 것이다」 이프리트는 태어나면서부터 파괴와 살육에 집착했다.\\n\\n「이 세상의 모든 월계관은 가시로 엮은 것이다. 가시의 월계관을 능가하는 것은 나의 지옥불 면류관뿐이다」\\n\\n이프리트는 파멸의 에이언즈가 별을 멸망시키고 남은 불씨를 손수 페토라의 왕관 모양으로 만들어 지금까지 쓰고 있다" + }, + "31152": { + "Name": "대공의 화염 장갑", + "Desc": "화염으로 된 털을 갖고 있는 새하얀 장갑. 포악함을 겉면 밑에 숨기고 있다", + "Story": "이프리트는 생령을 멸하기 위한 위기를 수없이 획책했다. 대공은 자신을 지휘자로 여겼고, 장갑을 착용해야 가시가 있는 지휘봉을 잡을 수 있다.\\n\\n「난 파멸의 계시를 섬기기 위해 왔다. 한 손은 빼앗기 위해, 다른 한 손으로는 주기 위해 존재한다」\\n\\n「무언가의 진귀함은 그것이 사라짐에 있다」고 굳게 믿은 명화대공은 리살리트 행성의 역사와 문화를 불태우고, 귀족의 찬란한 비단을 불사르고, 시인의 기나긴 두루마리를 소각하고, 화가들의 뛰어난 벽화를 그을렸다…. 「문명은 곤충과도 같지. 불타는 형벌 속에서 검은 나비가 되어 바람을 타고 날아가야만 새로운 삶을 얻을 수 있다」 이프리트는 고개를 숙이고 감시하는 화장로의 장의사처럼, 문명의 마지막 노래를 인도한다.\\n\\n「내 노력과 상상, 지휘를 통해 여러 재앙의 조화와 연주 순서, 음조 및 속도를… 파멸의 걸작으로 녹여내지」\\n\\n흡족스러운 파멸을 마친 후, 이프리트는 손에 묻은 핏자국을 지우고 연회에 참석하는 귀족처럼 새하얀 장갑을 착용했다" + }, + "31153": { + "Name": "대공의 은혜로운 로브", + "Desc": "화려한 로브. 주인의 단정하고 고상한 품격이 드러난다", + "Story": "우아한 화마는 잔인한 살육 후 전신 거울에 비친 자태를 감상한다. 군주를 알현하려면 적절한 차림이 필요하다.\\n\\n「옷의 목적은 외관이 아닌 본질을 표출하는 것이다. 불꽃의 본질이 파멸에 있는 것처럼」\\n\\n영원히 타오르는 화마 일족은 나누크를 황제로 여기고 그를 은인이라 불렀지만, 에이언즈의 눈길을 받지 못했다. 이프리트의 파괴에는 과시와 권력, 정복과 동기가 섞여 있고, 「영원한 불길의 관저」와 「예페라 형제회」의 경쟁은 더욱 추악했다. 「불순한 파괴는 얼룩보다도 더 쉽게 화려한 옷을 더럽힌다」 순수에 대해서만큼은 이프리트는 언제나 그 본질을 파악하지 못했다.\\n\\n「파멸의 가치는 파멸되는 것의 가치에 있다. 우리의 가치는 군주의 눈길을 받을 때까지 파멸을 실천하는 데 있다」\\n\\n이프리트는 경건한 마음으로 검붉은 화염으로 짠 화려한 옷을 입고, 파멸의 부름을 기다리고 있다" + }, + "31154": { + "Name": "대공의 우아한 예복 장화", + "Desc": "고전적이면서도 편안한 장화. 구김 없이 빳빳하고 발모양을 돋보이게 해준다", + "Story": "우아한 화마의 발길이 지나간 곳마다 불타버린 문명이 소리 없이 울부짖는다. 그러나 이프리트는 거들떠보지도 않는다——\\n\\n「갈 길이 없는 이에게는 장화가 필요하지 않거늘, 막다른 길에 다다른 문명은 어째서 내게 하소연하는가?」\\n\\n불의 면류관을 쓴 「명화대공」은 여러 문명에게서 천외의 악마로 여겨지지만, 그는 축제의 행성으로부터 초대를 받았다. 이프리트는 흔쾌히 차려입고 연회에 참석하려 한다. 「난 격식 차린 파멸을 준비할 것이다. 뼈 하나조차도 남기지 않겠다」 우아한 화마는 연회에 선사할 성대한 피바다를 위해 별바다의 악당을 모았다…. 그 파괴된 문명들은 파멸로 향하는 순례길에 불과하고, 페나코니 역시 정거장일 뿐이다.\\n\\n「그대들을 파멸하는 것은 그대들과 무관하다. 이건 그분의 눈길을 받기 위함이야」\\n\\n먼 곳에서 들리는 축제 소리에 이프리트는 기분 좋게 축제로 향하는 기나긴 여정에 오른다" + } + }, + "RequireNum": { + "2": { + "Desc": "추가 공격으로 가하는 피해 #1[i]% 증가", + "ParamList": [ + 0.20000000018626451 + ] + }, + "4": { + "Desc": "장착한 캐릭터가 추가 공격을 가할 시, 추가 공격이 가한 피해 횟수에 따라 피해를 가할 때마다 장착한 캐릭터의 공격력이 #1[i]% 증가한다. 최대 중첩수: #2[i]회. 지속 시간: #3[i]턴. 해당 효과는 장착한 캐릭터가 다음 추가 공격 발동 시 해제된다", + "ParamList": [ + 0.060000000055879354, + 8, + 3 + ] + } + } + }, + "116": { + "Name": "깊은 감옥에 수감된 죄수", + "Icon": "SpriteOutput/ItemIcon/71025.png", + "Parts": { + "31161": { + "Name": "죄수의 입마개", + "Desc": "죄수의 짐승 얼굴을 단단히 조이는 입마개. 궁지에 몰려 송곳니를 드러내 사람을 해치는 것을 철저히 방지한다", + "Story": "보리인 수장의 감각 세계를 구축한 것은 후각이었다. 비, 먼지, 모닥불, 피, 약… 전장 가장 깊숙한 곳으로부터 요동치며 아득히 퍼지던 냄새는 하나가 되어 그의 모든 신경을 파묻어 버렸다.\\n\\n오늘날 그는 형벌기구의 묵직한 견고함과 배심원들의 움츠러든 공포로 가득한 공기만을 맡을 수 있다.\\n\\n그는 이 연약한 심판자들이 날카로운 송곳니를 두려워한다는 것을 안다——그는 가파른 벼랑에 서서 광기 어린 달빛에 흠뻑 젖어 혈관에서 꿈틀대는 본능적인 충동을 느낀 적이 있다. 그는 냄새로 형성된 미궁을 따라 빛이 없는 어두운 밤에 적진에 침투해 먹이의 두개골을 하나씩 으깨버렸다…. 보리인 수장은 연마한 송곳니를 숭배하고, 이를 무엇이든 끊을 수 있는 하얀 칼날이자 힘과 자신감의 상징으로 여겼다.\\n\\n「보리 소부는 피를 빨고 무고한 자들을 해쳤다. 10대 죄악을 범한 죄로 평생을 감옥에서 입마개로 입을 가리는 형벌에 처한다」\\n\\n수장은 경멸하듯 주위를 둘러봤다. 얼음처럼 차가운 바다의 분노한 파도처럼 모든 것을 집어삼키던 검객은 이제 이곳에 없다…. 그는 장황한 판결문에 관심이 없다" + }, + "31162": { + "Name": "죄수의 납석 수갑", + "Desc": "마수를 단단히 속박하는 육중한 수갑. 강철 송곳으로 손목을 고정시켜 다시는 흉악한 발톱으로 살육을 저지르지 못하게 억압한다", + "Story": "구름이 갈라지면서 어슴푸레한 달빛이 보리인 수장의 상처투성이 몸으로 쏟아졌다. 은발의 검객에게 잘려나간 거대한 손톱이 옆에 떨어졌다. 막다른 길에 몰린 수장의 혈관이 힘차게 꿈틀거리며 고통스러운 긴 울부짖음과 함께 날카로운 발톱이 다시 자랐다.\\n\\n달의 광기를 받은 수장은 달빛 같은 검의 공격을 간신히 따라잡았다. 그는 풍요의 힘을 위해 소리 없이 기도하며, 궁지의 몰린 짐승으로서 최후의 전투를 끝내기로 결심했다.\\n\\n그는 보리 군대가 몇 번의 포위를 뚫었는지 잊었다. 그의 수족 같은 부하들이 날카로운 발톱으로 전방의 길을 뚫었으나, 곧바로 굳게 닫혔다는 것만 기억한다. 기력을 잃은 보리인은 강력한 재생 능력에 의지해 모든 장애물을 없애려고 발악했다——수장의 두 손톱은 새빨간 피로 흥건했다. 광기에 빠진 그는 순간 도망칠 곳이 없다는 것을 깨달았다. 주위에는 아무도 없었다.\\n\\n「보리 소부는 칼날 같은 손으로 수많은 생령을 죽였다. 납석으로 손을 결박해 엄히 통제해야 한다」\\n\\n수장은 결국 힘없이 검객 앞에 쓰러졌다. 완전히 힘이 빠져 빈사 상태가 된 것은 처음이었다. 「정말 비할 데 없는 검이군」 그는 「정말 비할 데 없는 자극이야!」라는 생각이 저절로 떠올랐다" + }, + "31163": { + "Name": "죄수의 유폐 포박", + "Desc": "위험한 흉악범을 속박하는 죄수복. 외부에서 관절을 고정시켜 죄수의 신체 변신 능력을 제한한다", + "Story": "보리인은 타고난 전사이다. 넓은 골격과 긴 다리, 턱과 목 부위의 근육, 그리고 이빨이 발달하였으며, 정수리 양쪽 끝에는 짐승의 귀가 나 있고 날카로운 손톱과 발톱을 가지고 있다——보리인은 강건한 신체를 숭배하고, 이를 신의 은총이라 여긴다.\\n\\n수장은 정신적인 지도자이자 부족 최강의 전사로, 검은 물결 같은 군대를 지휘하며 전장의 생사를 주관한다.\\n\\n출정한 짐승들의 전함이 천지를 뒤덮었다. 그는 전장의 안절부절못하는 전사들을 내려다봤다——수장은 달의 광기가 부르는 소리를 느꼈다. 날카로운 뼈가 그의 몸을 관통하고, 칠흑 같은 피가 안개처럼 바람에 흩어졌다. 그는 순교자처럼 양팔을 뻗었다. 보리인의 늑대 독——그 가공할 페로몬이 피 안개를 따라 퍼지면서 보리인 전사의 감각을 자극하자 그들은 귀신에 홀린 듯한 상태가 됐다.\\n\\n「소부님, 저희에게 강철 같은 근육과 뼈를 내려주소서. 소부님, 저희에게 신과 같은 힘을 허락하소서」\\n\\n그는 피와 살이 구속받지 않던 시절을 떠올렸다. 「달의 광기」를 받아, 보리인은 육신의 한계를 뛰어넘었다. 그들의 몸은 찢기고 터졌지만, 다시는 통증과 공포를 느끼지 못하게 되었다. 그들을 이끄는 것은 오직 강자의 특권이자 책임이었다" + }, + "31164": { + "Name": "죄수의 결박 족쇄", + "Desc": "짐승의 발을 묶는 금속 족쇄. 막다른 길에 몰린 죄악을 속박해 탈주로 인한 혼란을 방지한다", + "Story": "보리인은 은하의 유목민으로 정착 생활을 하는 문명을 경멸한다. 그들은 평화와 안정을 앗아가고 전쟁을 가져온다. 가혹한 생존 신앙으로 그들은 끝없이 전쟁을 벌이며 피로 점철된 삶에 자신을 바친다.\\n\\n그들에게는 자신만의 신념과 방법이 있다. 보리인의 발길이 닿는 곳은 보리인의 영역이 된다.\\n\\n보리인 수장은 끊임없이 전쟁을 일으켜 수호자의 존엄을 짓밟고, 난민들의 눈물을 마시며, 가까운 이들의 믿음을 유린하는 것을 자랑스러워한다. 그는 비옥한 땅에 가시가 돋아나게 하고, 사람들을 노예로 만들어 사치와 향락을 즐겼다…. 선대 패자를 넘어서기 위해, 신임 수장은 안락함을 버리고 병사들을 인솔해 바깥 세계로 원정을 떠나 전공을 세워 자신의 입지를 다져야만 했다.\\n\\n「보리 소부는 전쟁을 일으켜 온 세계를 재앙에 빠트렸다. 발을 결박해 감금하고, 환생하지 못하도록 한다」\\n\\n수장은 판결문이 의아했다. 그는 주위를 둘러보며 약자들의 심판에 혼란스러워했다. 소위 범죄라는 것들은 생존의 법칙에 불과했다" + } + }, + "RequireNum": { + "2": { + "Desc": "공격력 #1[i]% 증가", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "장착한 캐릭터가 적에게 피해를 가할 시 적이 받는 지속 피해 효과 1개마다 대상의 방어력을 #1[i]% 무시한다. 지속 피해 효과는 최대 #2[i]개까지 계산한다", + "ParamList": [ + 0.060000000055879354, + 3 + ] + } + } + }, + "117": { + "Name": "사수에 잠수한 선구자", + "Icon": "SpriteOutput/ItemIcon/71028.png", + "Parts": { + "31171": { + "Name": "선구자의 단열 헬멧", + "Desc": "오크론에서 흔히 볼 수 있는 잠수용 헬멧. 작은 창을 통해 보이는 것은 견디기 힘든 끝없는 어둠뿐이다", + "Story": "오크론의 밤은 적운으로 겹겹이 쌓여있고, 반짝이는 행성의 고리가 그 속에 감춰져 있다. 자홍색 눈꽃이 묵직한 투구에 떨어졌고, 녹슨 틈새를 고요히 채우며 침식 흔적을 감췄다. 그녀와 그녀는 설송나무 숲에 앉아… 여정을 멈추고 잠시 쉬었다.\\n\\n「봐! 오크론의 공기는 라즈베리 향기가 나」 자홍색 눈꽃이 구름송이처럼 부드러운 마시멜로에 떨어지더니 금세 사라졌다. 토이로에서 온 소소한 무명객이 몰래 웃다가, 곧 포복절도했다. 그녀는 자신이 한 말이 웃겼다——냄새를 어떻게 눈으로 볼 수 있겠는가! 웃음소리가 끝나자, 칼날처럼 날카로운 고요함이 찾아왔다. 공기에 순식간에 서리가 맺힌 것만 같았다.\\n\\n「플레바스, 정말 『IX』의 깊은 곳으로 가려고?」 늘 장검을 지니고 다니는 동료가 물었다. 그녀는 좋은 동료지만, 그녀가 어디서 왔는지는 아무도 모른다.\\n\\n소소한 무명객은 육중한 잠수복 속에 숨어 한참 동안 침묵했다. 그녀는 상대에게 약간 검게 탄 마시멜로를 건넸다. 그녀는 활짝 핀 돛처럼 가늘게 눈을 떴다.\\n\\n「물론이지——난 아키비리보다 더 깊고 먼 길을 걸을 테니까!」" + }, + "31172": { + "Name": "선구자의 허극 나침반", + "Desc": "손목시계형 나침반. 자침이 제거된 상태이므로, 더 이상 방향을 가리키지 않는다", + "Story": "「해저의 해류는\\n속삭이듯이 그녀의 뼈를 쪼아댔다. \\n머지않아, 그녀는 노년과 청춘의 단계를 겪고\\n소용돌이 속으로 들어갔다」\\n\\n소녀는 이런 이야기를 들었다. 이야기에 따르면, 사람들이 살고 있는 세계는 주인 없는 에너지로 이루어져 있는 하늘 높이 솟은 아름드리나무로 묘사되어 있었다. 「이런 에너지는 보거나 만질 수도 없고, 이해할 수도 없고, 의미도 없어」 그녀는 생각했다. 「마치 『IX』가 의미 없는 것처럼」\\n\\n소소한 무명객은 실의에 빠졌다. 「공허」의 깊은 곳으로 들어간 후, 어떻게 방향을 분별할지 고민에 빠졌다. 하지만 얼마 지나지 않아 영감이 떠올랐다——14살이 되던 해, 엄마는 그녀에게 작은 나침반을 마지막 생일 선물로 남겼다.\\n\\n「그렇다면 나침반이 자기장이 아니라 『에너지』를 감지한다면 문제를 해결할 수 있지 않겠어?」\\n\\n소소한 무명객은 나침반의 바늘을 떼어냈다. 하지만 어둠 속에 잠긴 순간, 그녀는 나침반이 가리키는 유일한 방향이 아래뿐이라는 것을 깨달았다" + }, + "31173": { + "Name": "선구자의 밀폐형 납 잠수복", + "Desc": "고철로 만든 중형 잠수복. 바람이 통하지 않으며, 착용하는 사람도 우스갯소리로 심해의 관에 더 가깝다고 말한다", + "Story": "「플레바스, 토이로에서 온 그 무명객은 14일 밤낮을 죽어있었어.\\n그녀는 갈매기의 울음소리와 심연의 파도 소리,\\n그리고 이익과 손해를 잊었지」\\n\\n소소한 무명객은 토이로 대로보다 넓은 행성의 고리를 바라봤다. 그녀는 자신을 블랙홀 속 특이점으로 발사하기로 했다.\\n\\n「아키비리조차 그곳에 가지 못했어」 소녀는 자신의 마음속 깊은 곳에서 파도 소리가 은은하게 울려 퍼지는 것을 늘 들을 수 있었다. 「난 분명 아키비리보다 더 깊고 더 먼 곳으로 갈 수 있을 거야」 그녀는 이를 위해 충분한 준비를 했다——출처를 알 수 없는 녹슨 껍질, 중고 산소병, 폐기된 자이로스코프 자세 제어 장치, 자가 순환 생명 지원 시스템, 배리어…. 그녀는 모든 재료를 하나로 단조하고, 전신에 바람이 통하지 않도록 하였다. 이렇게 하면 『공허』의 피해로부터 자신을 보호할 수 있을 것이라 생각했기 때문이다.\\n\\n그녀는 아버지가 남긴 잠수 헬멧을 주워 자신이 만든 「명예 배지」를 달았다. 떠나기 전, 그녀는 동료와 함께 다시 설송나무 숲으로 가 마지막으로 마시멜로를 구웠다.\\n\\n그 후, 플레바스의 비행체가 블랙홀의 가장자리에 접근했을 때, 이것이 그녀가 떠올릴 수 있는 오크론에 관한 모든 기억이었다" + }, + "31174": { + "Name": "선구자의 별에 정박하는 닻", + "Desc": "닻처럼 생긴 장화. 그 주인은 두 번 다시 수면으로 돌아가지 않기로 결심했다", + "Story": "「타륜을 돌리고 풍향을 관측하는 자들이여,\\n플레바스를 생각해 보니,\\n그녀도 너희처럼 아름답고 키가 컸지」\\n\\n납으로 만든 신발은 닻처럼 소녀를 끊임없이 추락시켰다. 그들은 설계자가 부여한 사명을 충실히 수행하고 있었다.\\n\\n소녀는 끝까지 눈을 감지 않고, 차갑고 고독한 어둠에 완강히 대항했다. 그녀는 자신이 처음으로 아키비리의 이야기를 들었을 때를 떠올렸다. 그녀는 여정에 올랐던 그날, 자신을 위해 만든 「명예 배지」를 떠올렸다. 그녀는 동료와 함께한 30일을 떠올렸다. 그리고 그들이 처음과 마지막에 모였던 숲속 공터를 떠올렸다. 그곳의 공기에서는 라즈베리 향이 났었다. 그녀는 휘파람과 기타, 피리 소리, 그리고 그들이 함께 불렀던 노래를 떠올렸다. 자홍색 눈꽃이 살짝 탄 마시멜로 위에 떨어지더니 순식간에 사라졌던 것도 떠올랐다.\\n\\n생생한 기억의 끝에는 거대한 공허함이 다가왔고, 그녀는 갑자기 검은 세계의 중심에서 붉은빛이 순식간에 사라지는 것을 보았다.\\n\\n그러자 소소한 무명객은 허리에 검을 차고 있던 그녀가 마지막으로 마시멜로를 건네받은 순간, 자신이 진심으로 웃었던 것이 떠올랐다.\\n\\n「나와 같은 사람을 만날 거라곤 생각도 못 했어. 이 『길』에서 네가 걸어온 거리는 나보다 훨씬 멀겠지」\\n「그러니 너도 나와 끝까지 함께할 거야, 그렇지?」\\n「물론 네가 말한 것처럼 우리의 결말은 이미 정해져 있지만…」\\n「내가 결국 얕은 사수(死水)가 된다 해도, 그 순간으로 향하는 이 길엔 아직 내가 할 수 있는 일이 많이 있어. 그러니 어찌 됐든, 시도는 해봐야겠지——」\\n「——왜냐하면 난 아키비리보다 더 깊고 더 먼 길을 갈 거니까!」" + } + }, + "RequireNum": { + "2": { + "Desc": "디버프 상태의 영향을 받은 적에게 가하는 피해가 #1[i]% 증가한다", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "치명타 확률이 #1[i]% 증가하고 장착한 캐릭터가 #4[i]/#5[i]개 이상의 디버프 효과에 빠진 적에게 가하는 치명타 피해가 #2[i]%/#3[i]% 증가한다. 장착한 캐릭터가 적에게 디버프 효과 부여 시 상기 효과가 100% 증가한다, 지속 시간: #6[i]턴", + "ParamList": [ + 0.0400000000372529, + 0.0800000000745058, + 0.12000000011175871, + 2, + 3, + 1 + ] + } + } + }, + "118": { + "Name": "꿈을 조작하는 시계공", + "Icon": "SpriteOutput/ItemIcon/71029.png", + "Parts": { + "31181": { + "Name": "시계공의 망원 렌즈", + "Desc": "금으로 도금된 망원 렌즈. 먼 곳의 다양하고 기묘한 광경을 비추며, 주인이 환상을 꿰뚫어 볼 수 있도록 돕는다", + "Story": "페나코니의 「시계공」에 관한 이야기에 따르면, 그는 항상 눈썰미가 뛰어나 몽환의 포영 속에 숨겨진 사업 기회를 쉽게 간파하여 누구도 예상하지 못한 위대한 사업을 이뤄냈다.\\n\\n변방 감옥은 만계의 암에서 자유를 되찾고, 가족의 보살핌 아래 평화와 번영을 맞이했다. 바로 이때, 시계공이 등장했다고 한다. 그의 렌즈는 이 꿈세계의 본질을 비춘다——사람들은 단지 「꿈속의 불가능한 일」을 찾기 위해 「해질녘의 순간」에서 돈을 물 쓰듯 썼다. 그때부터 페나코니의 꿈에는 수많은 불가사의한 것들이 나타났다. 농담하는 주전자, 달리면서 회전하는 스포츠카, 매일 위치가 바뀌는 저택… 이런 물건들은 대부분 아무 쓸모가 없었음에도 천문학적인 숫자에 팔렸고, 먼 곳에서 온 사람들은 이를 위해 셀 수 없는 돈을 쏟아부었다.\\n\\n어차피 허황된 꿈세계이니, 마음껏 허황된 생각을 하지 않을 이유가 있겠는가? 「꿈속에만 존재하는 유일무이한 것」이라는 한 마디는 꿈속의 사치와 가치를 다시 정의했다.\\n\\n알팔파 가문과 상업계의 나이 많은 꿈을 좇는 여행객들은 늘 '왜 이런 기회를 더 일찍 보지 못했을까'라며 후회한다. 시계공은 단지 그들보다 조금 멀리 본 것뿐이다——매번 말이다" + }, + "31182": { + "Name": "시계공의 행운 손목시계", + "Desc": "정밀하게 제작된 시계. 독특한 문자판과 시침을 가지고 있다. 꿈세계에서 행운을 상징한다고 한다", + "Story": "관련된 이야기 중 가장 큰 수수께끼는 「시계공」이 시계공으로 불리는 이유이다.\\n\\n어떤 사람은 그가 시계탑의 수리공이었다고 하고, 어떤 사람은 그가 시계를 파는 행상이었다고 주장한다. 심지어 어떤 사람은 그가 문자판처럼 생긴 머리를 가지고 있다고 한다——마치 그가 만든 시계 소년처럼 말이다.\\n\\n소문이 퍼지면서, 꿈속의 손목시계도 시계공의 명성을 빌려 인기를 끌었다. 꿈을 좇는 여행객들은 손목시계가 시계공 본인과 아무런 연관이 없다는 걸 알면서도, 그에 대한 존경의 의미이자 행운의 상징으로 여겼다. 일련의 마케팅 활동으로 인해 시계 모양은 페나코니에서 가장 흔한 것이 되었다——옷, 장신구, 음식… 골목의 그래피티부터 호텔 로비의 거대한 시계까지, 이 전설적인 거물의 그림자는 어디에나 존재했다.\\n\\n「페나코니에서 시계를 싫어하는 사람이 어디 있겠어요?」\\n\\n게다가 실제 시계공도 이 모든 것을 묵인하는 듯, 최초의 손목시계에 대해 아무런 의견도 내지 않았다. 그렇게 시계 모양은 페나코니에서 당연한 것이 되었고, 그 누구도 시계공의 유래에 대해 묻지 않게 되었다" + }, + "31183": { + "Name": "시계공의 환상 예복", + "Desc": "중후하고 화려한 예복. 우아한 느낌을 풍기며, 연회 등 격식 있는 장소에서 자주 입는다", + "Story": "페나코니의 수많은 소문 중 「시계공」은 전혀 다른 신분과 외모를 가지고 있다.\\n\\n허황된 이야기 속에서 그는 때로는 온화한 노인이고, 때로는 우아한 숙녀이다. 심지어 그가 30m 높이의 거인 신사라는 소문까지 있다…. 하지만 어떤 이야기에서든, 그는 항상 화려한 복장을 입고 있다.\\n\\n소문에 의하면 시계공은 새벽과 황혼이 교차하는 꿈세계에서 자신의 비밀을 댄스 파트너에게 알려준다고 한다. 이 말을 들은 사람들은 모두 무도회로 향해 화려한 옷을 입은 사람들 속에 신비한 손님에게 초대를 보냈다——이를 통해 더욱더 많은 꿈을 좇는 여행객들이 서로 알게 되었고, 무도회도 점차 우정과 사랑이 오가는 교류의 장이 되었다. 값비싼 입장권은 매번 판매가 시작되자마자 매진되었고, 소문 속 화려한 옷을 입은 주인이 나타나지 않는다고 해도 우연한 만남을 향한 손님들의 열정은 사그라들지 않았다.\\n\\n「옷차림을 보니, 혹시 그대가 바로 그 유명한 시계공이신가요?」 이 대사는 처음에는 진심 어린 질문에 불과했으나, 이후에는 칭찬의 말로, 나중에는 함께 춤을 추기 위한 핑곗거리가 되었다.\\n\\n시계공에게는 무도회 사업이 새로 생기고, 꿈세계에도 낭만과 열정이 더해진 셈이다" + }, + "31184": { + "Name": "시계공의 숨겨진 꿈 가죽신발", + "Desc": "우아한 스타일의 가죽 신발. 착용했던 자는 한때 신비한 자태로 꿈을 잠행했다", + "Story": "「시계공」은 모든 꿈세계에 가 본 적이 있고, 페나코니의 모든 역사를 겪었다. 그의 이름은 꿈의 땅에서 수백 년 동안 전해져 왔지만, 오늘날 꿈을 좇는 여행객들은 여전히 그의 동향을 들을 수 있다.\\n\\n사람들은 시계공이 사람인지, 아니면 단체인지, 아니면 가족의 거짓말인지 의심하기 시작했다.\\n\\n일부 꿈을 좇는 여행객들은 시계공의 진실을 밝히겠다는 각오와 함께 각 꿈세계에서 이 신비한 거물의 종적을 찾으려 했으나, 결국에는 희미한 정보만 얻을 뿐이었다——어느 비즈니스 미팅의 신비한 손님, 돌연 등장한 어느 주인 없는 브랜드, 출처 불명의 거액 투자… 그들은 시계공이 존재하지 않는다고 증명하려고 할 때마다 오히려 그가 꿈속 어디에나 존재한다는 걸 증명하고 말았다.\\n\\n시계공에 관한 책은 「각성 도서관」의 책장을 가득 채웠고, 그의 이름은 영원히 페나코니를 감싸고 있다.\\n\\n사람들은 진실을 탐구하려 할수록 거짓에 가려져 버리고 말았다…. 수많은 이야기와 소문 속에서 이 축제의 슈퍼스타는 발자국만 남길 뿐, 단 한 번도 모습을 남기지 않았다" + } + }, + "RequireNum": { + "2": { + "Desc": "격파 특수효과 #1[i]% 증가", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "장착한 캐릭터가 아군에게 필살기 발동 시, 모든 아군의 격파 특수효과가 #1[i]% 증가한다. 지속 시간: #2[i]턴. 해당 효과는 중첩할 수 없다", + "ParamList": [ + 0.3000000002793968, + 2 + ] + } + } + }, + "119": { + "Name": "곤충 재앙을 잠재우는 철기군", + "Icon": "SpriteOutput/ItemIcon/71032.png", + "Parts": { + "31191": { + "Name": "철기군의 정찰 투구", + "Desc": "감각 기관의 신호를 심층적으로 강화하는 강철 투구. 그라모스 철기의 의식과 기갑을 하나로 융합한다", + "Story": "하늘과 태양을 가리던 곤충 떼는 불바다 속에서 잿더미가 되어 버렸고, 은백색 눈꽃은 우주에 흩날리며, 항성의 참담한 빛을 반사했다. 지금 이 순간, 귓가에 멈추지 않던 날갯소리와 통신 채널에서 전해지던 지령이 마침내 조용해졌다.\\n\\n「제국」을 습격한 곤충 떼는 완전히 소탕되지 않았고, 다음 출격 지령 역시 잠깐의 침묵 후 다시 울릴 것이다. 언제나처럼 말이다.\\n\\n「제국」의 철기는 뼛속 깊은 곳에서 전해져 오는 신호를 통해 외부의 감각을 느끼고 있었다. 그녀는 지난번 조종석에서 벗어났을 때의 느낌을 떠올렸다. 따스한 바람이 긴 머리를 부드럽게 쓸어 올렸고, 습하고 뜨거운 공기가 그녀의 목뒤로 스며들어 땀방울이 피부에 맺혔다. 그녀는 이런 느낌이 싫지는 않았다. 시뮬레이션 신호보다 백 배는 생생했기 때문이다. 기갑은 감각 기관과 조종사를 심층 동기화하며 엔트로피 상실의 고통을 더 가중하지만, 철기에게는 곤충의 후예로부터 승리하기 위해 이미 다른 선택지는 없었다.\\n\\n「그라모스 군칙 제8조, 살아남은 기사는 자발적으로 복귀해야 한다……」\\n\\n참수된 은색 투구를 보고 나서야, 철기는 기갑의 감각 기관 신호가 자신을 속였다는 사실을 깨달았다——다음 출격 지령은 더 이상 울리지 않을 것이다. 이 어찌나 잔인한 짧은 휴식인가" + }, + "31192": { + "Name": "철기군의 견고한 철완", + "Desc": "곤충의 후예를 분쇄하는 강력한 철완. 날카롭고도 가벼우며, 단단하고 튼튼하다", + "Story": "그라모스 철기는 철완으로 더러운 날개를 찢어버리고, 곤충 뱃속의 부식성 액체가 멋대로 튀게 내버려두었다. 곤충의 체액이 닿은 은색 갑옷은 순식간에 기화되었고, 핏자국과 오물만이 남았다.\\n\\n기갑과 곤충의 잔해가 우주의 먼지가 되어 흩어졌고, 그라모스를 둘러싸고 있는 「죽음의 강」은 인력에 따라 서서히 흘렀다. 그렇게, 혈전은 마침내 끝을 맞이했다.\\n\\n의회의 지도자들은 전쟁 후의 상황에 대해 상의했다. 그들은 실권을 잡아본 적 없는 「티타니아」에게 심판을 내렸다. 그녀는 곤충들에 필적한 철기 군단을 지배하고 있고, 그녀의 존재가 공화국의 존속에 가장 큰 잠재적 위험이었기 때문이다…. 그들은 평화의 종소리를 울렸으며, 백성들에게 곤충 떼가 소산되었고, 파란 하늘이 다시 공화국의 손에 들어왔다고 선언했다.\\n\\n「『여황제』를 제약하지 않는다면, 또 누가 이 병기들을 제어할 수 있겠는가?」\\n\\n철기들은 짧은 삶 속에서 끝없이 강철 주먹의 완력을 갈고닦았지만, 이런 생각은 단 한 번도 해본 적이 없었다——의회에서 높이 치켜든 그 창백하고 힘없는 메마른 손들이 그라모스의 운명을 바꿀 힘을 지니고 있다는 것을" + }, + "31193": { + "Name": "철기군의 은빛 기갑", + "Desc": "화염을 분출하며 추진하는 기갑, 그라모스 철기에 전장을 불태우기에 충분한 화염을 제공한다", + "Story": "여러 갈래의 맹렬한 불길이 호를 그리며 밤하늘을 가로지르고, 새벽빛이 떠오르는 지평선을 넘어 그라모스의 여러 행성 구역으로 향한다——이것은 공화국 주민들에게 가장 익숙하면서도 두려운 일상이었다.\\n\\n하늘로 치솟은 은빛 기갑들은 촌각을 다투며 황폐한 전장으로 향했다. 그들은 자신이 밤낮으로 지키는 풍경을 둘러볼 겨를조차 없었다.\\n\\n여황제의 명령은 논쟁의 여지조차 없다. 비슷한 얼굴의 전사들은 배양실에서 태어나 여황제를 위해 그라모스의 창공을 되찾겠노라 충성을 맹세했다. 철기는 날벌레의 사체로 이룬 산과 피의 바다를 넘어, 날벌레의 잔해를 불태워 잿더미로 만들고, 거대한 턱과 이빨의 부패한 잔해를 부쉈다…. 그라모스 철기의 숙명은 만성 해리의 엔트로피 변화를 견디고, 생사의 경계에서 타오르는 것이다.\\n\\n불길이 완전히 사라지고 하늘을 뒤덮은 벌레가 새까만 잿더미가 되어 아무도 살아남지 못할 때까지——이러한 일상은 이어진다……\\n\\n살아있다는 것이란 무엇일까? 기갑 추진으로 인한 가속도가 가슴을 짓누르고, 고통이 엔트로피 상실로 인한 무감각을 뚫고 사지에 잠시 나타날 때, 그들은 약간이나마 살아있다는 것을 느낀다" + }, + "31194": { + "Name": "철기군의 비행 그리브", + "Desc": "파괴력과 속도를 겸비한 기계 다리 보호대. 그라모스 철기는 높이 뛰어올라 힘을 집중시켜 적을 걷어찬다", + "Story": "철기의 발자국은 타오르는 유성처럼 그라모스 「제국」의 곳곳에 널려있지만, 티타니아가 만들어둔 「꿈」을 벗어나지 못한다.\\n\\n공화국의 사람들은 싸우기 위해 태어난 병사들에 대해 걱정했다. 존재하지 않는 「제국」은 자신들이 알고 있는 땅과 대체 어느 정도 유사할까?\\n\\n여황제가 그녀의 기사에게 내린 명예와 신앙, 철기가 여황제에게 바친 충성심과 맹세… 신 인류는 계속해서 배양실에서 태어나 코드와 사명을 부여받았고, 구 인류는 강철로 만든 보루에 숨어 수심에 잠긴 채 오랫동안 바라온 평화를 누렸다. 평온이라는 거짓말은 폭로할 자가 필요하고, 인류의 본질을 뒤흔드는 전쟁 수단은 세상에 존재해서는 안 된다. 천재지변이 끝나면, 공포에 빠진 사람들은 이 왜곡된 전쟁의 산물을 철저히 파괴하려들 것이다——\\n\\n철기의 다리 보호대는 하늘을 돌파했다. 그들은 원한다면 그 어떤 별에든 도달할 수 있을 것이다.\\n\\n하지만 「제국」은 이제 어느 곳에서도 찾을 수 없게 되었다. 철기에게는 한쪽 끝은 죽음에, 또 한쪽 끝은 자신에게 연결된, 정해진 궤적만이 남아 있을 뿐이다" + } + }, + "RequireNum": { + "2": { + "Desc": "격파 특수효과 #1[i]% 증가", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 이상이면 적에게 가하는 격파 피해가 해당 적의 방어력을 #3[i]% 무시한다. 장착한 캐릭터의 격파 특수효과가 #2[i]% 이상이면 적에게 가하는 슈퍼 격파 피해가 적의 방어력을 #4[i]% 추가로 무시한다", + "ParamList": [ + 1.5000000004656613, + 2.5000000004656613, + 0.10000000009313226, + 0.1500000001396984 + ] + } + } + }, + "120": { + "Name": "바람과 구름을 가르는 용맹함", + "Icon": "SpriteOutput/ItemIcon/71033.png", + "Parts": { + "31201": { + "Name": "용맹한 현효 면갑", + "Desc": "흉조(凶鳥) 「대풍」을 원형으로 삼은 가면으로, 두 쌍의 보조 눈은 한때 기적을 목격한 적이 있다", + "Story": "그녀의 매의 투구에는 두 쌍의 보조 눈이 달려 있어 어떤 빛 조건에서도 주위 환경을 뚜렷하게 볼 수 있다. 그러나 지금은 보조 눈에 묻은 피가 바짝 말라붙어 시선이 닿는 곳이 모두 녹이 슨 것처럼 보였다.\\n\\n장군은 혼수상태에서 깨어나 시체 더미에서 기어올랐다. 등 뒤로 「감운경」이 높이 솟은 탑처럼 하늘을 향해 서 있었다. 그 끝에는 빛줄기가 쉼 없이 흔들리며 점성가들만이 해독할 수 있는 암호를 반복하고 있었다. 연맹의 수많은 사람의 소원을 담은 그것은 신을 향해 기도를 올리고 있었다——이 순간, 그녀가 주위의 이미 생기라곤 없어진 동료들과 지금까지 고군분투해온 건 이 소원이 하늘에 닿아 죽음을 하사받기 위함이었다.\\n\\n「왔군…」 장군은 낮게 중얼거리며 하늘을 올려보았다. 신의 모습이 보이지도, 그분의 목소리도 들리지 않았지만, 그분이 왔다는 증거를 느낄 수 있었다. 갑자기 뜨거운 공기가 치솟았고, 달군 철과도 같은 열기가 피부를 스치며, 타오르는 붉은 불꽃이 핏빛 안개를 따라 장막처럼 하늘을 뒤덮었다. 곧이어, 직시할 수 없는 빛이 세상을 갈랐다——\\n\\n왔다. 무수히 많은 전사가 목숨을 잃어가며 맞바꾼 신의 기적이 온 것이다. 그녀는 신의 형벌에 의해 죽음의 영역이 된 천체 잔해를 목격한 적이 있었고, 이 빛의 꼬리를 쫓기 위해 싸운 적도 있었다. 그녀는 잡념이 떠오를 겨를도 없을 정도로 이 빛이 빠를 거라 생각했지만, 아니었다. 그 찰나는 적어도 그녀가 사랑하는 제자를 다시 떠올리기엔 충분했다.\\n\\n「그럼 소원이나 빌지. 그녀가 부디 평탄한 길에 오르길——」\\n\\n대지는 커다란 파도처럼 흔들렸고, 빛의 바다와 함께 포효했다. 그녀는 속념을 버리고 빛 속의 먼지가 되었다" + }, + "31202": { + "Name": "용맹한 갈고리 완갑", + "Desc": "신체와 결합된 생체공학 완갑. 맹수를 사냥하고 싶다면 맹수보다 더 날카로운 발톱이 필요한 법이다", + "Story": "그녀가 이끄는 청구군 전사들은 보리인 늑대 병사에 지지 않는 용맹함을 지녔다. 검이 휘고 활이 끊어져 손에 무기 하나 들고 있지 않아도, 그들은 장갑에 달린 날카로운 발톱으로 죽을힘을 다해 싸울 수 있었다.\\n\\n청구 호위군의 여우족 전사들은 보리인이 통치하는 여러 세계를 구원했다고 한다. 이러한 「함락지」에서 탄생한 여우족은 혈통이 섞여 가끔 격세유전의 돌연변이 개체가 나타났다. 이들은 전쟁 노예가 되고, 늑대머리 주인의 지시를 받으며, 전선의 선봉이 되거나 선주의 공격을 막는 총알받이가 된다.\\n\\n「청구군에 합류하면 우리가 늑대머리 주인에게 복수할 기회를 주겠다!」 신규 모집 훈련에서 장군은 어린 여우족 소녀에게 자신이 했던 말을 아직도 기억했다. 하지만 그녀는 미처 꺼내지 못한 뒷말에 참담함을 느꼈다. \"너도 나처럼 전투를 위해 살고, 전투로 인해 죽을 것이다\"\\n\\n전쟁 노예는 늑대머리 주인과 맞먹는 힘과 속도를 가지고 있지만, 돌연변이는 그들의 생명력과 이성을 앗아가기도 했다. 분노로 의지가 소진되고 나면 전쟁 노예는 폭력적이고 피에 굶주린 괴물로 변한다.\\n\\n순수한 야수성의 분노에 육신을 지배당해 인생 마지막 사냥을 끝내고 나면, 이 장갑은 두 손을 옥죄는 수갑이 되어 다시는 육체와 분리되지 않게 된다" + }, + "31203": { + "Name": "용맹한 날개깃 갑옷", + "Desc": "차가운 바람처럼 늑대 무리가 올려다 봐야 하는 곳으로 비상한다. 사냥감과 사냥꾼은 결국 입장이 바뀔 것이다", + "Story": "그녀는 여우족의 고전 민요를 여전히 기억하고 있다. 곡조는 거의 기억나지 않으나, 조국을 떠나는 슬픔이 담긴 곡이었다. 「건너편 강가에 외로운 여우가 홀로 있네. 목마름과 배고픔을 짊어진 채 험난 길을 천천히 걷네. 아픈 나의 마음을 누가 알아주리」……\\n\\n수천 년 전부터 그들은 늑대의 발톱 아래 가축, 노예, 그리고 화폐로 전락했다. 수천 년이 지난 후에도, 그들은 여전히 동포들을 해방하기 위해 분주히 싸우고 있다. 천적과는 달리 계속 강해지고 변이되는 육신은 없지만, 그들은 영민하고 임기응변이 가능한 기지를 지녔다.\\n\\n늑대머리 주인은 그들에게 무기를 만들어 바치라고 명령하고 그들이 기술을 익히지 못하도록 두 눈을 파냈다. 또한, 그들이 무기를 모조하지 못하도록 금속을 가지지 못하게도 했다. 하지만 이 모든 행동은 언젠가 사냥꾼에게 사냥감이 되는 공포를 알려주고, 또 사냥꾼과 입장을 뒤바꿔 그들을 뒤쫓을 것이라는 여우족 마음속의 갈망을 지우지는 못했다.\\n\\n결국 여우족은 도자기를 구워 갑옷을 만들었다. 청구 도자기 갑옷은 바람처럼 가볍고 강철처럼 견고했다. 늑대머리 주인의 이빨과 발톱, 그리고 그들의 무기는 더 이상 그들에게 상처 하나 낼 수 없게 되었다.\\n\\n장군은 이 도자기 갑옷을 두르고 청구 호위군의 전사들과 바람을 타고 올라 보리인 머리 위를 활공하는 악몽이 되었다. 그들은 사냥하는 새 떼처럼 진을 이루어 움직이며 호흡을 맞추었다. 하지만 갑옷이 아무리 견고한들 그녀는 늘 믿고 있었다. 통증에 다스려진 육체만이 최고의 무기이며, 고난을 함께 겪은 전우들만이 최고의 갑옷이라는 사실을.\\n\\n「새는 날개를 펼치고, 야수는 발톱과 이빨을 드러낸다. 누가 우리에게 아무것도 없다고 하던가? 전우가 바로 우리의 갑옷이거늘」" + }, + "31204": { + "Name": "용맹한 사냥 경갑", + "Desc": "맹금의 발톱 모양으로 만든 전투화. 착용자는 바람처럼 빠르게 전장을 누빌 수 있고 가시덤불을 가볍게 오갈 수 있다", + "Story": "그녀는 희미한 달빛 아래 달아나는 토끼처럼 움직이는 소녀의 모습을 보았다. 그녀는 마치 사냥감을 쫓는 것처럼 소녀의 발자국과 냄새를 뒤쫓았다. 그녀는 길의 끝에서 소녀가 오기만을 기다렸다.\\n어쩌면 소녀가 그녀를 기다린 걸지도 모르겠다.\\n\\n달빛 아래, 장군은 그 얼굴을 또렷이 보았다.\\n「그렇게나 운기군에 들어오고 싶나?」\\n「저는 늑대머리 주인에게 목숨 바쳐 일하고 싶지 않아요」\\n소녀는 버벅거리며 힘겹게 보리어로 말했다. 그 얼굴에 떠오른 표정은 한때 그녀가 함락지에서 동포들을 무수히 구하면서 보았던 것이었다.\\n그들은 그녀와 같은 피가 흐르지만, 다른 언어를 쓰고 다른 생각을 품고 있다.\\n그들은 단 한 번도 자신이 여우족의 후예라고 생각하지 않았다. 그렇다면 그들은 대체 누구인가?\\n장군은 미세하게 몸을 떨고는 길을 내주었다.\\n「가라. 오늘 밤부터는 그들이 쫓아오지 않을 것이니……」\\n「하지만 전 그들이 죽길 바라요」\\n\\n장군은 하늘을 스쳐 지나간 유성을 본 것처럼 믿을 수 없다는 듯이 그녀를 바라보았다. 작은 야수와도 같던 모습은 갑자기 어둠 속으로 사라졌다.\\n장군은 달빛에 눈이 부신 듯 눈을 감았다. 잠시 후 그녀는 고개를 숙여 핏빛 상처와 진흙이 가득 묻은 소녀의 두 발을 보았다.\\n\\n「왜 신발을 신지 않았지?」\\n「까먹었어요. 모르고 있었어요」\\n장군은 자신의 군화를 벗어 크기를 대보고는 소녀에게 신겨 주었다.\\n「대충 맞는구나… 그럼 출발하자」\\n「당신은요?」\\n「나는 가시밭을 걷는 일엔 익숙하단다」\\n\\n그녀는 맨발로 빠르게 앞으로 나아갔고, 소녀는 그녀의 뒤를 바짝 쫓았다.\\n어쩌면 그녀들은 서로의 그림자를 쫓고 있는지도 모를 일이었다" + } + }, + "RequireNum": { + "2": { + "Desc": "공격력 #1[i]% 증가", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가하고, 장착한 캐릭터가 추가 공격 발동 시 필살기가 가하는 피해가 #2[i]% 증가한다. 지속 시간: #3[i]턴", + "ParamList": [ + 0.060000000055879354, + 0.3600000003352761, + 1 + ] + } + } + }, + "121": { + "Name": "고행의 길에 다시 오른 사제", + "Icon": "SpriteOutput/ItemIcon/71038.png", + "Parts": { + "31211": { + "Name": "사제의 음률 귀걸이", + "Desc": "그는 종종 고해실에 앉아 귀를 기울인다. 귀걸이는 아주 희미한 속삭임에도 무게가 있다는 걸 끊임없이 일깨워준다", + "Story": "「당신의 뜻에 따르겠습니다. 저는 잘못을 저질렀습니다. 저는 각 가문 사이에 갈등이 있다고 말하고 거짓말의 대가로 신문사에서 보수를 받았습니다……」\\n\\n칸막이 너머로, 가주는 기자가 눈을 피하며 조용히 자신의 대답을 기다리고 있단 걸 알았다. 종소리 같은 위로로 신도들을 회개하게 하는, 무수히 많았던 「고해성사」처럼 말이다. 하지만 그 순간 그는 자신도 모르게 고개를 돌려 하려던 말을 삼켰고, 금속 귀걸이가 귓가에서 청량한 잡음을 내도록 내버려두었다.\\n\\n「저는 그게 터무니없는 말이란 걸 잘 알고 있습니다. 신주님의 은혜로 가족은 한마음 한뜻을 이루었죠. 이건 모든 가문 구성원의 바람이자 이들이 신주의 품에 안긴 이유이기도 합니다」\\n\\n죄를 고한 자는 회개하고, 화음 속에서 자신의 죄를 용서받는다. 가주는 조용히 두 눈을 감고 성음을 선포했다——\\n\\n「좋다. 다른 가족에게 진실한 모습을 보이고 거짓을 바로잡으면 화음을 수정할 수 있을 것이니, 평안히 가거라」\\n\\n진실한 말에 무슨 죄가 있겠는가? 음률의 울림은 멍에처럼 무겁다. 그는 한숨을 쉬며 고개를 저었다.\\n\\n「…다음 사람은 앞으로 다가오도록」" + }, + "31212": { + "Name": "사제의 환영 장갑", + "Desc": "그는 종종 공관에서 손님을 맞이하고, 초대하는 제스처를 수도 없이 반복한다. 깨끗한 장갑은 그에게 겸손과 예의를 잊지 말라고 일깨운다", + "Story": "「가주님, 긴히 의논할 게 있다며 만남을 청하는 이들이 있는데 신분이 의심스러운 자들이 섞여 있습니다. 꿈속으로 들어온 수단이 평범하지 않더군요……」\\n\\n꿈에 멋대로 들어온 불청객이 일렬로 섰다. 이변이 없는 한, 악으로 사람을 대하는 악당은 쫓겨날 것이고 신분을 속인 범죄자는 구금될 것이다. 그가 말 한마디 하지 않아도 모든 조치는 이미 취해졌다. 무고한 자는 그의 분노를 보고 기대와 불안으로 눈을 반짝였다——이어서 그는 미소를 지으며 눈앞의 군중에게 환영하는 제스처를 취했다. 이는 허락이자 위엄을 드러내는 것이었다.\\n\\n「여러분은 참나무 가문의 귀한 손님이시니 당연히 예의를 갖춰야지요. 어쩌면 자신이 어떻게 정당한 평가를 받았는지 궁금해하실지도 모르겠군요. 여기서 살짝 설명해 드리자면, 그건 바로 여러분이 걸어온 『길』이 저와 겹쳤기 때문입니다」\\n\\n종업원, 예술가, 무직자… 그들은 차례로 의심을 거뒀다. 그들은 초대의 진정한 뜻을 이해했고 더는 개의치 않았다.\\n\\n「죄인에게는 마땅한 징벌을, 손님에게는 마땅한 예의를. 조화는 마땅히 이래야 합니다」\\n\\n가주의 은혜와 위엄은 손님의 신뢰를 얻기에 충분했다. 그는 사람들을 둘러보며 천천히 몸을 굽혔다——\\n\\n「참나무 가문에 오신 것을 환영합니다」" + }, + "31213": { + "Name": "사제의 성직 예복", + "Desc": "그는 종종 거울 앞에 서서 차림새를 점검한다. 외출 전 모든 게 완벽하고 어긋나지 않았는지 확인한다", + "Story": "「…저 새는 자유로워. 난 왜 묶여 있을까♬?」\\n\\n리허설 날, 젊은 가주는 무대에 있는 가수의 주의력을 분산시키고 싶지 않아 관중석 구석에 몸을 숨겼다. 적당히 함께하는 느낌, 그것이 바로 그가 원하는 것이었다. 예복을 입고 단정히 앉아 있는 이 순간에는 그가 유일한 청중이다. 익숙한 노랫소리 속에서 그의 생각은 어린 시절로 돌아갔다. 그때 역시 그녀가 「무대」에서 노래를 불렀고, 자신은 유일한 청중이었다——\\n\\n「요새 즐겁게 노래한 적이 없잖아. 널 위해 무대를 만들었어. 좀… 초라하지만」\\n\\n두 사람의 콘서트에서 그는 언젠가 그녀의 꿈을 이뤄주겠다고, 더 크고 더 빛나는 무대에 올라가게 해주겠다고 다짐했다.\\n\\n「용기를 내 날개를 펼쳐, 저 밤을 지나서, 여명의 빛으로♬……」\\n\\n그는 잠시 멍하니 있다가 자신이 무대에 더 가까이 가지 못하는 이유를 직시했다——예복을 입는 건 공연을 즐기기 위해서가 아니라 언제든 그 자리를 떠나기 위해서였다.\\n\\n「동생아, 축하해. 우리의 꿈은 다 이뤄졌네」 그가 작은 소리로 말했다" + }, + "31214": { + "Name": "사제의 고행 단화", + "Desc": "그는 종종 여행을 시작하기 전에 발에 꼭 맞는 신발을 고른다. 그는 여러 번 넘어졌지만 그만큼 그는 다시 일어났다", + "Story": "「가 봐. 넌 이제 자유야, 본분을 넘어서려 했던 '신에게 선택받은 자'. 이제 네 날개를 꺾고 인간 세상으로 내려가 직접 대지를 걸으며 세상의 진면모를 확인해 봐」\\n\\n그 후, 그는 종종 컴퍼니 고위 임원의 말에 담긴 뜻을 음미해 보았다. 그는 시끄러운 거리를 걷고 조용한 해변을 걸었다. 그는 줄곧 걷고 있었지만 한 발짝도 앞으로 나아가지 않았다…. 그는 지금껏 자신의 꺾이지 않는 의지를, 단호한 실행력을 의심해 본 적이 없었다. 다음에는 일어나기 전에 멈춰서 이상이 땅에 추락할 때의 딱딱한 촉감을 느껴보기로 했다——\\n\\n「얼룩덜룩한 돌 위에 짐승의 피와 사람의 땀이 스몄는데도 여전히 차갑고 거칠고 딱딱하네……」\\n\\n가문의 관리자로서, 그는 수많은 길 잃은 어린 양을 바른길로 인도해 왔다. 하지만 자신을 마주했을 때, 그 부드러웠던 위로는 마법을 잃은 것처럼 더 이상 힘을 발휘하지 못했다——그에게는 설교는 물론 동정은 더더욱 필요하지 않았다.\\n\\n「고행자는 진흙탕 속에서만 태어나지. 걷다 보면 성공보다 실패 속에서 배우는 게 더 많을 거야」\\n\\n진정한 재출발을 시작하기 전에 그는 걸음을 늦춰 생각을 정리하고 다시 배회할 시간을 충분히 가졌다.\\n\\n「걷는 것에 복잡한 철학은 필요 없어. 길이 막혀 있으면 다른 길로 가면 될 뿐이야」" + } + }, + "RequireNum": { + "2": { + "Desc": "속도 #1[i]% 증가", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "단일 아군에게 전투 스킬 또는 필살기 발동 시, 스킬 목표의 치명타 피해를 #1[i]% 증가시킨다, 지속 시간: #2[i]턴, 해당 효과 최대 중첩수: #3[i]회", + "ParamList": [ + 0.18000000016763806, + 2, + 2 + ] + } + } + }, + "122": { + "Name": "지식의 바다에 빠진 학자", + "Icon": "SpriteOutput/ItemIcon/71039.png", + "Parts": { + "31221": { + "Name": "학자의 은테 모노클", + "Desc": "거대한 건물을 비추는 결정석 모노클. 지팡이, 시곗줄, 브로치와 함께 주인의 패션과 학식을 돋보이게 한다", + "Story": "[번호] EVD-W019EI06-003\\n\\n[명칭] 결정석 모노클\\n\\n[기본 특징] 선명하게 금 간 흔적이 있음\\n\\n[증거 채집 장소] 오히오티 중앙 종합 과학원 에너지 연구 부서 「보단」 연구실\\n\\n[당사자] 보단, 에너지 분석 영역 수석 과학자, 지니어스 클럽 #7 회원\\n\\n[현장 분석]\\n현장 확인 결과, 당사자가 관측기를 잘못 작동해 용기 내 플로지스톤 집합체가 누출되어 왼손을 크게 다쳤다. 사고 발생 시, 모노클은 높은 곳에서 떨어져 파손됐다\\n\\n[증언 보충]\\n보단은 실험 중, 모노클 안쪽에서 비정상적인 가시광선이 보였으며, 그 강렬한 빛이 일련의 우연을 일으켜 결국 플로지스톤 집합체 누출 사고로 이어졌다고 진술했다\\n\\n당사자의 진술에 우연이란 표현이 너무 많아 해당 증언은 채택되지 않았다\\n\\n[비고 정보]\\n모든 흔적이 이건 오래전부터 계획되어 온 범죄란 걸 암시하고 있다. 우연이 겹쳐 일어난 「나비 효과」는 「재현할 수 있는 범죄 수단」으로 인정받지 못했고, 결국 해당 누출 사건은 「사고」로 종결됐다\\n\\n[관련 녹음]\\n「…아무래도 이번 사고에 감사해야 할 것 같아요. 람다를 제 곁으로 돌려줬거든요. 이번이 저희의 네 번째 재혼인데… 말하기 부끄럽지만, 제가 재혼 얘기를 꺼낸 건 이번이 처음이에요」 해당 녹음 기록은 보단에게서 확보" + }, + "31222": { + "Name": "학자의 보조 너클", + "Desc": "합금으로 만들어져 손가락의 움직임을 보조하는 외골격. 사용자의 손에 맞춰 제작해야 하므로 가격이 꽤 나간다", + "Story": "[번호] EVD-X024DE18-002\\n\\n[명칭] 「그레이씰 골드」 합금이 포함된 손가락 외골격\\n\\n[기본 특징] 외부에서 가해진 충격으로 파손된 흔적이 뚜렷함, 폭발 사건 전에 파손된 것으로 확인됨\\n\\n[증거 채집 장소] 극지 에너지 채굴장 중앙 통제실\\n\\n[당사자 정보] 람다(사망), 생물파 탐측 영역 수석 과학자, 지니어스 클럽 #8 회원\\n\\n[현장 분석]\\n감시 카메라의 영상 확인 결과, 당사자의 잘못된 조작으로 중앙 통제실에서 폭발이 일어났으며 당사자는 즉사했다\\n\\n[증언 보충]\\n「그녀가 무슨 생각을 하는지 누가 알까요. 그녀에게 무슨 일이라도 생기면, 클라인은 그 책임에서 벗어나지 못할 겁니다!」\\n\\n폭발 사고 2주 전, 경찰은 아내의 장애가 있는 오른손이 악의를 지닌 괴한에 의해 다쳤다는 보단의 신고를 받았다. 그 후 실제 피해자인 람다는 추가 조사를 거부하고 입건을 취소했다\\n\\n[비고 정보]\\n폭발 사건 후, 당사자의 남편은 조사가 끝나면 외골격과 함께 당사자의 손가락뼈를 돌려달라고 요청했다\\n해당 폭발 사건에는 우연히 발생한 사건이 너무 많아 주의를 기울일 필요가 있다\\n\\n[관련 녹음]\\n「클라인, 나와. 우리에겐 아직 청산하지 않은 빚이 있잖아. 이 세상에 『우연』이란 절대 없단 걸 너와 난 잘 알지. 일련의 『불가사의한 우연』이란 더더욱 그렇고」 해당 녹음 기록은 클라인 저택의 보안 시스템에서 확보" + }, + "31223": { + "Name": "학자의 트위드 재킷", + "Desc": "트위드 재킷과 니트는 학교에서 흔히 볼 수 있는 조합이다. 구김이 잘 안 가는 원단은 방문 학자에게 안성맞춤이다", + "Story": "[번호] EVD-X043FE21-001\\n\\n[명칭] 트위드 재킷, 울 트위드 베스트, 흰 셔츠\\n\\n[기본 특징] 왼쪽 가슴에 직경 8cm 정도의 플로지스톤 연소 흔적이 있음\\n\\n[증거 채집 장소] 오히오티 중앙 종합 과학원 에너지 연구 부서 「보단」 연구실\\n\\n[당사자 정보] 보단(사망), 에너지 분석 영역 수석 과학자, 지니어스 클럽 #7 회원\\n\\n[현장 분석]\\n현장 확인 결과, 당사자가 가지고 있던 「그레이씰 골드」 입자에 대량의 플로지스톤이 흡착되어 심장 쪽에 1,000도에 가까운 고온이 순식간에 발생했다. 재킷, 베스트, 셔츠 모두 연소한 흔적이 남았다.\\n\\n연소된 곳에는 타지 않은 약지 뼈 절반이 남아있었는데, 이 뼈는 람다의 것으로 확인이 되었고, 고순도 「그레이씰 골드」 입자와 관련이 있을 수 있다\\n\\n[증언 보충]\\n「…사람은 누구나 실수할 수 있다는 걸 좀 더 일찍 깨달았어야 했는데. 거기다 그는 한 번도 아내를 잃은 것에 대해 터놓고 얘기한 적이 없었어요……」\\n\\n연구실의 학자들은 안전 매뉴얼을 만든 보단이 이런 「기초적인 실수」를 저질러선 안 됐다고 진술했다\\n\\n[비고 정보]\\n「그레이씰 골드」는 지니어스 클럽 회원인 #9 클라인이 만든 희귀 합금으로 플로지스톤을 붙잡아두는 성질을 가지고 있다\\n\\n일련의 우연이 너무 많을 때도 우연을 우연이라 할 수 있을까?\\n\\n[관련 파일]\\n「고순도 『그레이씰 골드』 합금 제품을 플로지스톤 관측소의 실험실에 반입하는 것을 엄격히 금지합니다」 에너지 연구 부서 실험실 안전 매뉴얼에서 발췌" + }, + "31224": { + "Name": "학자의 스웨이드 스노우 부츠", + "Desc": "푹신하고 부드러운 여성 단화. 적당한 스키니 팬츠랑 매치하면 세련된 룩을 연출할 수 있다. 이미 주인과 함께 수년간 극지 탐사를 함께했다", + "Story": "[번호] EVD-X031JA12-004\\n\\n[명칭] 극지 탐사 여성용 스노우 부츠\\n\\n[기본 특징] 망가져서 수선한 흔적이 선명하게 있음. 신발 밑창에 디스크 하나가 숨겨져 있는데, 초기 단계에서 스파이 활동의 가능성은 배제함\\n\\n[증거 채집 장소] 클라인 집 지하실\\n\\n[당사자 정보] 클라인(사망), 합금 재료학 영역 수석 과학자, 지니어스 클럽 #9 회원\\n\\n[현장 분석]\\n\\n현장 확인 결과, 과학자 람다의 유품이 대량으로 클라인의 집에서 나왔으며, 해당 부츠도 그중 하나다\\n\\n[증언 보충]\\n「어쩌면 제가 그를 오해했을지도 모릅니다. 클라인 말이에요. 그리고 제 아내인 람다는… 떠난 지 너무 오래돼서… 그냥… 낯설기만 하네요」\\n\\n보단은 아내의 유품이 클라인의 집에서 나온 걸 알지 못했으나 표정으로 보아하니 그렇게 놀라진 않은 것 같다\\n\\n[비고 정보]\\n클라인의 저택은 외진 곳에 있어 법의학자가 추정한 사망시간 전후로 아무도 왕래하지 않았다. 초기 단계에서 사고사로 판단했다.\\n\\n보단, 람다, 클라인, 3인의 관계는 특수하며, 그들이 겪은 「우연」은 이미 「심령」의 범주에 가깝다\\n\\n[관련 녹음]\\n「하아, 보단, 네가 날 의심하는 것도 알고 내 결백을 증명할 방법이 없다는 것도 알아. 람다의 일은 정말 미안해. 양심의 가책은 들지만 난 절대 그녀를 해치지 않았어…. 범인이라면 어느 정도 윤곽이 잡혔어. 『적막의 영주』라고 들어봤어? *의미 없는 소음*」해당 녹음 기록은 부츠에 숨겨져 있던 디스크에서 확보" + } + }, + "RequireNum": { + "2": { + "Desc": "치명타 확률 #1[i]% 증가", + "ParamList": [ + 0.0800000000745058 + ] + }, + "4": { + "Desc": "전투 스킬과 필살기로 가하는 피해가 #1[i]% 증가한다. 필살기 발동 후, 다음번 전투 스킬 발동 시 가하는 피해가 추가로 #2[i]% 증가한다", + "ParamList": [ + 0.20000000018626451, + 0.25000000023283064 + ] + } + } + }, + "123": { + "Name": "개선가를 울리는 영웅", + "Icon": "SpriteOutput/ItemIcon/71040.png", + "Parts": { + "31231": { + "Name": "영웅의 우승자 월계관", + "Desc": "경기장 우승자에게 수여하는 월계관. 금색 월계수 잎 하나하나가 용기와 영광으로 빛나고 있다", + "Story": "시간은 오로닉스의 한숨 속에서 느려진 것 같았다. 그는 자신의 무거운 숨소리를 들었다. 마치 경기장의 모든 공기를 빨아들이려는 듯, 가슴 쪽 갈비뼈가 자근자근 아팠다…. 땀과 피가 섞여 흘러내리고, 발밑의 대지는 그를 유혹하고 있었다. 그만 포기하고 편안하고 안락한 휴식을 취하라면서 말이다——그는 이미 녹초가 되었다.\\n\\n「다음 일격은 어디서 오는 거지? 왼쪽, 아니면 오른쪽? 공격하는 척인가, 아니면……」\\n\\n창끝이 다가오고 있었다. 더 이상 생각할 시간이 없었다. 분쟁의 티탄에게 운명을 맡기고 앞으로 창을 내밀기만 하면 된다.\\n\\n흙먼지가 서서히 가라앉고, 기울어지는 햇빛이 경기장 밖으로부터 쏟아져 그의 옆얼굴을 비췄다. 관중석의 사람들이 차례로 몸을 일으켰다. 박수와 함성이 파도처럼 경기장을 휩쓸었다. 순간 그는 경기장이 이렇게 넓다는 사실을 깨닫고 놀랐다. 도망칠 수 없다는 압박감은 사라지고 없었다. 거대한 경기장 중앙에는 피 웅덩이와 쓰러진 상대, 고독하면서도 빛나는 승자만 있을 뿐이었다.\\n\\n성주는 그의 손을 높이 들어 올리고 우승자의 탄생을 알렸다. 북소리가 울려 퍼지면서 그는 월계관을 쓰고 경기장의 전설이 됐다.\\n\\n「그대는 성주를 지키는 독전 용사로 선택되었다. 그대의 이름은 승리와 함께 영웅의 서사시에 쓰여질 것이다!」\\n\\n그 후 도시 전체가 그의 이름을 연호했다. 니카도르의 영광이 그를 감싸니, 마치 온 세상이 그를 위해 존재하는 것만 같았다" + }, + "31232": { + "Name": "영웅의 황금 완갑", + "Desc": "독전 용사의 정교한 손목 보호대. 용사의 손목에 밀착되어 승리의 호각을 안정적으로 지탱해준다", + "Story": "대승이든 참패든 경기장의 우승자는 늘 전장에서 돌아올 수 있었다. 성주는 그의 행운을 「승리의 상징」으로 여겨, 그의 손에 들린 창과 방패를 가져가고 호각과 깃발을 쥐여주며 그의 운을 전군에 내려주라고 지시했다. 군사들은 니카도르의 영광이 그와 동행하며, 그가 앞장서는 한 반드시 이길 것이라고 굳게 믿었다.\\n\\n「앞으로, 넌 한 명의 전사가 아닌, 하나의 상징이 되어야 한다」\\n\\n밤낮으로 수련해 강철같이 강인한 육신은 이제 신전 앞의 석상처럼 그저 감상의 대상이 되었다.\\n\\n그는 전투를 준비하는 훈련소 밖에서 입장을 저지당했다. 병사들은 「승리의 상징」에 조금이라도 문제가 생길까 두려워했다. 그는 성주가 주최한 연회에 초대받았고, 귀빈들은 생사를 건 16번의 전투에 대한 전설을 듣고자 했다. 이제 그는 전장의 가장자리에 서서 호각을 들고 있다. 금빛이 흐르는 완갑은 점점 낯설게 느껴지는 옆모습을 비춘다. 순간 그는 가슴이 조여오는 걸 느꼈다——이제 그의 역할은 승리의 호각을 부는 것뿐, 더 이상 적진을 향해 돌격하지 않아도 된다…. 이것이 바로 사람들이 말하는 「싸우지 않는 영웅」이다.\\n\\n「…만약 이렇게 해서 전군에 승리를 가져다줄 수 있다면, 난 전장에서의 영광을 기꺼이 포기하겠다」\\n\\n니카도르는 「하나의 상징」을 위해 승리의 길을 선택하지 않는다. 어쩌면 이번 생의 마지막 전투가 곧 다가올지도 모르기에 그는 긴장을 늦출 수 없다……" + }, + "31233": { + "Name": "영웅의 용맹한 황금 갑옷", + "Desc": "마치 신의 갑옷처럼 건장한 체구에 완벽하게 들어맞는다", + "Story": "광기에 빠진 신과 대치해서 승자의 모습으로 떠날 수 있는 사람은 없다. 니카도르의 기다란 날이 스치는 곳마다 창이 부러지고 방패는 날아갔으며 전선은 무너졌다…. 질서를 잃은 병사는 전무후무한 혼란과 공포에 빠졌고, 경기장 영웅의 호각 소리는 찢어질 듯한 비명과 울음, 병장기가 부딪치는 금속 소리에 파묻혀 무너져 가는 결말을 뒤집기에는 역부족이었다.\\n\\n「니카도르가 자신이 약속했던 승리를 거두어가려 하니, 난 반드시 창과 피로 돌려줘야 한다」\\n\\n나뒹구는 먼지 속에서 너덜너덜해진 깃발이 니카도르를 향해 계속해서 나아갔다. 병사들은 행운의 영웅이 돌아오지 못할 길을 선택했다는 것을 알아차렸다.\\n\\n처음에는 고작해야 네다섯 명이 따르다가 수십에서 수백 명으로 늘어났다…. 그들은 그 넓은 등을 뒤따르며, 죽음이 예정된 전장을 향해 마지막으로 돌격했다——쓰러진 전우들은 영령이 되어 그들의 귓가에 속삭이며 살아남은 이들에게 마지막 전투를 끝내라고 격려하는 듯했다. 광기에 휩싸인 니카도르라 하더라도 본능적으로 이 전사들의 꺾이지 않는 각오와 두려움을 모르는 의지를 느낄 수 있었다.\\n\\n「보아라! 경기장의 영웅이 아직 전진하고 있으니, 우리도 뒤따라야 한다!」\\n\\n황금 갑옷은 석양을 받으며 여전히 반짝거렸고, 그는 군대를 이끌고 존엄이 넘치는 죽음을 향해 나아갔다" + }, + "31234": { + "Name": "영웅의 불을 쫓는 정강이 보호대", + "Desc": "전사의 다리를 완벽하게 감싸주는 정강이 보호대. 곡선은 우아하면서도 견고하고, 결코 물러서지 않겠다는 신념이 담겨있다", + "Story": "병사들은 말없이 폐허로 들어가 전장을 수습하기 시작했다. 누군가는 힘겹게 시체를 끌며 전우와 적을 떨어뜨렸고, 누군가는 전사한 동료 옆에 무릎을 꿇고 그들의 눈을 감겨주었다…. 전장의 고함 소리는 사라졌고, 남은 건 숨 막히는 고요함뿐이었다——경기장의 영웅도 전사자들 사이에서 영원히 잠들고, 피와 먼지 속에 금빛 정강이 보호대 한 쌍만 남아있었다.\\n\\n「기억하라. 전장의 전사는 사라지지 않는다. 그들의 영혼은 후세 사람들의 기억 속에 영원히 머무를 것이기 때문이다」\\n\\n곧 슬픈 노랫소리가 적막을 깼다. 사제들이 천천히 전장으로 걸어와 망자들을 위해 장례를 치렀다.\\n\\n불꽃이 어두운 밤 속에서 솟구쳤고, 애도의 노래는 오랫동안 이어졌다…. 그때 저 멀리 한 줄기 찬란한 빛이 마치 천벌의 창처럼 하늘을 가르며 대지에 꽂혔다. 그것은 니카도르가 이 땅의 영령을 부르는 것이었다. 곧이어 장례식에 참석한 병사와 시민들은 경외와 감격에 가득찬 마음으로 무릎을 꿇고 두 손을 높이 올렸다——빛은 따뜻한 숨결이 되어 모든 전사들의 영혼을 가볍게 들어올리고, 티탄의 은총과 용서를 읊조리며 영웅들의 영원불멸을 선언했다.\\n\\n「보아라. 비록 죽었지만, 경기장의 영웅은 여전히 전사들을 이끌고 고향으로 향하고 있다」\\n\\n영웅은 가볍게 고개를 끄덕였다. 오래된 노래 속에서 그의 숭고한 영혼은 다시 한번 재주조되리라" + } + }, + "RequireNum": { + "2": { + "Desc": "공격력 #1[i]% 증가", + "ParamList": [ + 0.12000000011175871 + ] + }, + "4": { + "Desc": "장착한 캐릭터의 기억 정령이 필드에 있을 시 장착한 캐릭터의 속도가 #1[i]% 증가하고, 장착한 캐릭터의 기억 정령이 공격 시 장착한 캐릭터와 기억 정령의 치명타 피해가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "ParamList": [ + 0.060000000055879354, + 0.3000000002793968, + 2 + ] + } + } + }, + "124": { + "Name": "망국을 애도하는 시인", + "Icon": "SpriteOutput/ItemIcon/71041.png", + "Parts": { + "31241": { + "Name": "시인의 딜 화관", + "Desc": "봄날의 황혼 신전 앞, 가장 뛰어난 음유시인이 네스티아의 축복이 깃든 딜 화관을 받게 된다", + "Story": "「네스티아, 당신에게 기도합니다. 이 세상에 노랫소리가 없다면, 노랫소리로 가득한 봄도, 꽃을 피우는 숲도 없을 겁니다……」\\n\\n시냇물로 두 손을 씻고 난 후, 다시 두 손으로 신에게 바칠 차가운 술을 들고 음유시인들은 신전 앞으로 모여 누가 네스티아의 축복을 받은 화관을 받을지 논쟁을 벌였다. 연애시로 유명한 파르티아 세 자매가 먼저 본인들의 목소리를 선보였다. 이어서 수많은 기묘한 비유에 능한 노시인 루페가 실력을 자랑했다. 하지만 아름다운 노래와 절묘한 언어는 여신을 감동시키지 못했고, 앞에 놓인 술잔은 미동도 하지 않았다.\\n\\n그러던 중에 한 방랑 시인이 칠현 하프를 튕기며 고대 파피루스에 기록된 이야기를 연주하기 시작했다. 천 년 전의 모래 폭풍이 불어오면서 이야기는 이렇게 시작되었다. 세상에 수많은 도시 국가가 있던 시절, 한 도시 국가가 악룡의 습격을 받았다.\\n\\n「나의 고국을 애도하네——」\\n「괴물이 전당을 차지하고, 고귀한 계승자는 악의 씨앗이 되었네」\\n「높은 탑에 들이닥친 거대 용은」\\n「나의 왕을 현혹하고, 내 나라의 공주를 삼켜버렸네……」\\n\\n여신은 술잔을 기울여 단숨에 술을 들이켰고, 방랑 시인은 화관의 주인이 되었다" + }, + "31242": { + "Name": "시인의 귀금속 팔찌", + "Desc": "인기 높은 금속으로 만든 팔찌. 이야기 속 악룡도 한때 이러한 금속으로 만든 족쇄를 차고 있었다", + "Story": "「사람들은 지오리오스의 몸에서 황금을 파냈다. 이 황금은 최초의 흉악한 금속이며, 음모와 전쟁을 낳았다」\\n\\n전쟁의 기원은 확인할 수 없고, 수많은 역사는 전설이 되었다. 그러나 전설이라 할지라도——오만, 음모, 탐욕이야말로 끊임없는 싸움을 일으키는 원인임이 분명하지만, 그 죄는 억울하게도 황금이 뒤집어썼다. 이는 분쟁을 모르던 순수한 시절에 백철과 청동은 원래 신에게 바치는 제물이었지만, 이후 제단에서 밀려나 검과 창으로 주조되어 황금보다 더 흉악한 금속이 된 것과 같다.\\n\\n이야기 속 거대 용은 이미 토벌되었을 것이다…. 나라 간의 전쟁도 거의 잠잠해졌다. 방랑 시인은 이리저리 떠돌다 거룩한 도시에 와서 그 뒤의 이야기를 노래했다. 악룡이 도시 국가를 점령한 후, 사람들은 공주를 구하기 위해 용을 사냥할 용사를 모집했다.\\n\\n「나의 고국을 애도하네——」\\n「용맹한 백부장은 황금으로 만든 족쇄로 악룡을 제압했네」\\n「탑 꼭대기에서는 늙은 국왕의 비통한 울음소리가 울려 퍼지고…」\\n「용의 뱃속에서 공주의 잔해가 발견되었다네」\\n\\n귀금속 팔찌가 스치듯 현을 건드리며 맑은 탄식 소리를 냈다" + }, + "31243": { + "Name": "시인의 별 장식 치마", + "Desc": "여명은 가장 상냥한 시간이다. 그녀의 치맛자락도 여명 전에 마지막으로 뜬 별의 색을 띠고 있다", + "Story": "「아퀼라가 눈을 뜰 때 모든 별은 잠에 든다. 오직 호기심 많은 저녁별만이 훔쳐본다」\\n\\n서사시는 낮과 밤이 두 번째 바뀔 때까지 계속되었고, 시인의 곁에는 점점 더 많은 청중이 모여들었다. 그중에는 소리가 나는 화살을 지닌 크렘노스인도 있었고, 점괘용 막대기를 던져 신의 뜻을 묻는다는 야누소폴리스인도 있었다. 검은 물결이 여러 도시 국가를 침식하면서부터 흩어진 문헌이 부지기수였고, 나무 정원의 학자들은 모든 자료를 수집하기에 시간이 부족했다. 여러 작은 도시 국가들은 이름조차 남기지 못했다.\\n\\n방랑 시인만이 악룡의 습격을 받은 옛 도시 국가에 신비한 연금술이 전해지고 있었다는 것을 알고 있었다. 육체를 기반으로 만물을 창조하고, 기적에 이를 수 있다. 연금술사는 딸을 잃고 슬픔에 빠진 국왕에게 이렇게 말했다.\\n\\n「나의 고국을 애도하네——」\\n「교묘한 언변을 지닌 연금술사는 용의 피와 살로 공주를 부활시킬 수 있다고 했네」\\n「이미 죽었지만 아직 죽지 않았고, 또 낮과 밤이 열 번 지나갔네」\\n「의식은 드디어 끝났네. 그러나……」\\n\\n마지막 저녁별은 다 듣지 못한 사람 아이들의 이야기를 아쉬워하며 눈을 감았다" + }, + "31244": { + "Name": "시인의 은 징 신발", + "Desc": "신발에 은 징이 박혀 있어 모래 위를 걸으면 글자 모양의 무늬가 찍힌다. 과거의 시를 수집하기 위해 그녀는 발걸음을 멈추지 않는다", + "Story": "「세상 사람은 어디에서도 타나토스의 종적을 찾을 수 없고, 살아서 저승의 강을 건널 수 없다는 전설이 있다. 그렇다면 강은 어디로 흐르는 것일까?」\\n\\n우린 그런 거대 용에 대해 들어본 적도 없고, 어느 고서에서도 육체의 부활 의식을 본 적이 없다며 일부 청중이 의아해했다. 시인은 자신이 옛 도시 국가의 후예가 아니라서 사악한 거대 용이 있었는지는 모르고, 이것은 옛 음유시인에게 들은, 대대로 구전되어 내려오는 노래일 뿐이라고 대답했다.\\n\\n아무도 이 노래를 부르지 않는다면, 옛 도시 국가의 역사는 먼지에 묻히고, 시간이 흐르면서 모든 것이 퇴색될 것이다. 과거 번영했던 나라는 저승의 강에 휩쓸리고 침몰해 들개와 하늘을 선회하는 대머리독수리조차도 꺼리는 곳이 되었으니, 이것은 악룡에 먹힌 영혼이 남긴 저주이다.\\n\\n「나의 고국을 애도하네——」\\n「공주여! 악룡의 모습으로 되살아나다니」\\n「연금술을 펼친 술사와 용맹한 백부장, 어리석은 국왕은 모두 잡아먹히고 말았네」\\n「피비린내 나는 연회는 죽음의 그림자를 불러왔고, 옛 도시 국가는 그렇게 멸망했네……」\\n\\n멸망한 나라의 이름을 기억하라! 이건 「스틱시아」의 이야기로, 은 징 신발을 신은 시인의 노래다. 그녀가 이야기를 수집하는 것은 오직 이야기 그 자체를 위해서이다. 마치 그녀의 신발에 박힌 은 징이 남긴 「이야기를 기억하고, 나를 잊어라」라는 글귀처럼" + } + }, + "RequireNum": { + "2": { + "Desc": "양자 속성 피해 #1[i]% 증가", + "ParamList": [ + 0.10000000009313226 + ] + }, + "4": { + "Desc": "장착한 캐릭터의 속도가 #6[i]% 감소한다. 전투 진입 전 장착한 캐릭터의 속도가 #2[i]/#3[i] 미만이면, 장착한 캐릭터의 치명타 확률이 #4[i]%/#5[i]% 증가한다. 해당 효과는 장착한 캐릭터의 기억 정령에게도 동시에 적용된다", + "ParamList": [ + -0.07999999984167516, + 110, + 95, + 0.20000000018626451, + 0.3200000002980232, + 0.0800000000745058 + ] + } + } + }, + "125": { + "Name": "태양과 번개의 여전사", + "Icon": "SpriteOutput/ItemIcon/71044.png", + "Parts": { + "31251": { + "Name": "여전사의 날개 달린 투구", + "Desc": "이 날개 달린 투구는 태양과 번개의 기사가 하늘의 신을 추락시키고, 하늘이 눈 감는 모습을 지켜봤다", + "Story": "들끓는 황금 용암이 여전사의 발 아래에서 넘실거렸다. 그녀는 겨울 안개가 별빛을 가리듯 투구 아래에 표정을 숨겼다.\\n\\n마지막 하늘의 자손은 가라앉았고, 그녀는 홀로 정반대편의 먼 곳을 향해 달려갔다.\\n\\n「셀리오스, 누굴 떠올렸지?」 항상 곁을 지키는 날개 환수가 그녀의 미묘한 생각을 읽었다. 여전사는 잠시 침묵에 잠겼다. 사람들이 하늘에 기도를 올리던 시절은 이제 다시 돌아오지 않을 것이다. 「누구를 떠올렸냐고? 더는 구체적으로 떠오르는 사람이 없어. 난 세상 사람들을 뜨겁게 사랑했고, 그 연약함을 증오했어. 그런데 지금은 아무도 떠오르질 않아……」\\n\\n날개 환수들은 고개를 숙이고 아무 말도 하지 않았다. 그들은 한때 여전사가 굳센 신념을 추구하던 모습도, 자기기만의 환영에 빠졌던 모습도 보았다.\\n\\n그 철제 투구 아래에 지금 그녀는 어떤 얼굴일까? 또 어떤 관점을 가지고 있을까?" + }, + "31252": { + "Name": "여전사의 기창 건틀릿", + "Desc": "이 건틀릿은 기사와 함께 모든 전투에서 승리를 거뒀다. 이것이 있으면 가장 치명적인 무기를 쥐고, 가장 고통스러운 배반을 참을 수 있다", + "Story": "은린암이 용광로에서 울부짖었다. 나이 든 산의 백성이 단조된 건틀릿에 축복을 주입한 후 곁에 있던 여전사에게 선물했다.\\n\\n「연약하면, 다친다. 기사는, 강인해야 한다. 운모보다 부드럽고 강인하기를, 네 뼈가」\\n\\n정교한 건틀릿을 받아 든 그녀는 은린빙갑을 가볍게 닦아냈다…. 그녀는 뇌전으로 벼린 창과 불꽃에서 태어난 방패를 쥔 자신의 모습을 생각하기 시작했다. 그녀는 하늘의 전장으로 돌진해 모두를 구할 것이다——힘은 구원의 필수 조건에 불과하다. 산의 백성은 손가락 마디에 진리의 잠언을 새겨넣고, 여전사에게 건틀릿의 부드러운 부분을 잊지 말라고 당부했다.\\n\\n「강바닥의 자갈은 손바닥으로 녹여야 한다. 빙하를 날카로운 검으로 깎지 말아라」\\n\\n하지만 훗날, 그녀의 극단적인 사명감과 정의감 탓에 그 대장공의 축복은 영원히 낫지 않는 화상 흉터가 되었다" + }, + "31253": { + "Name": "여전사의 여행 망토", + "Desc": "이 망토는 태양과 번개의 기사를 위해 비와 먼지를 막아주고, 모든 모험을 함께하며——하늘에 가장 눈부신 뒷모습을 남겼다", + "Story": "아직 기사가 되지 못한 소녀는 스승이 은거 중인 동굴에서 뛰어난 무예를 전수받았다.\\n\\n「잘했다. 곧 가르칠 게 없을 것 같구나. 이 힘으로 뭘 하고 싶니?」\\n\\n신탁을 들은 후 소녀는 더 이상 훈련에 집중할 수 없었다. 다정한 스승은 그녀의 고민을 알아차리고 소녀가 자주 쓰는 단검에 송진을 발라 주었다. 「스승님, 전 진실 속에서 살고 싶어요. 혹시… 야누소폴리스의 성녀와 그녀가 전하는 신탁을 들어보셨나요?」 스승이 자신을 말리지 않을까 걱정되었지만, 소녀는 이미 마음을 먹은 상태였다.\\n\\n「그런데 진실이란 뭘까?」 다정한 스승이 반문했다. 「…넌 평생 그걸 분별해야 할 텐데, 그건 아주 어려운 일이란다」\\n\\n한밤중에 몰래 일어난 그녀는 새벽이 밝아오기 전 급히 떠나려고 했다. 그런데 행낭 속에 잘 개켜진 망토가 들어 있었다" + }, + "31254": { + "Name": "여전사의 수훈 박차", + "Desc": "이 박차는 태양과 번개의 기사의 두 날개 환수 동료가 준 선물이다——진실을 추구하는 길 위에서 고통은 필연적이다", + "Story": "영웅 셀리오스 곁에는 날개 환수 두 마리가 있었다——솔라비스와 루나비스는 그녀의 애마이자 전우였다.\\n\\n「셀리오스, 우리는 널 따를 거야. 네가 신을 죽이고 불씨를 빼앗는 서막을 보여줘」 그들은 자신감 넘치고 서슬 퍼런 여전사를 믿었다.\\n\\n두 날개 환수는 「태양과 번개의 기사」에 대한 수훈 의식의 일부로서 대대장공에게 박차 제조를 부탁했다——「마음은 고맙지만 내겐 필요 없어」 그녀는 그 물건이 기사가 말을 정확하게 다루는 데 도움이 되는 도구라는 것을 알고 있었다. 「우린 마음이 통하니 박차를 가하지 않아도 서로 완벽하게 호흡을 맞출 수 있으니까」\\n\\n「이걸 받아, 셀리오스. 진실을 추구하는 길에서 넌 『고통』으로 우리를 일깨워야 해」 루나비스의 눈빛은 횃불처럼 확고했고, 솔라비스는 그녀의 손에 박차를 쥐여 주었다.\\n\\n태양과 번개의 기사는 우정을 상징하는 선물을 받아들였다——고통으로 즉시 방향을 바꿀 수 있다면, 그건 필연적인 고통이다" + } + }, + "RequireNum": { + "2": { + "Desc": "속도 #1[i]% 증가", + "ParamList": [ + 0.060000000055879354 + ] + }, + "4": { + "Desc": "장착한 캐릭터와 해당 캐릭터의 기억 정령이 장착한 캐릭터와 해당 캐릭터의 기억 정령을 제외한 아군에게 치유를 제공하면 장착한 캐릭터가 [단비]를 획득하며, 턴마다 최대 1회 발동한다, 지속 시간: #3[i]턴. 장착한 캐릭터가 [단비] 보유 시 속도가 #1[i]% 증가하고, 모든 아군의 치명타 피해가 #2[i]% 증가하며, 해당 효과는 중첩할 수 없다", + "ParamList": [ + 0.060000000055879354, + 0.1500000001396984, + 2 + ] + } + } + }, + "126": { + "Name": "거친 파도를 헤치는 선장", + "Icon": "SpriteOutput/ItemIcon/71045.png", + "Parts": { + "31261": { + "Name": "선장의 항해 모자", + "Desc": "챙이 넓은 진줏빛 차양 모자. 바다를 누비던 선원들은 이 모자로 아퀼라의 뜨거운 태양을 가렸다", + "Story": "해안가의 암초 사이, 트리에레스 잔해가 거대한 고래처럼 좌초되어 있다——그것은 세이렌을 정벌하던 전함이었다. 파도는 전함을 해안가로 밀어내고, 조난자는 그대로 바다에 남겨두었다.\\n\\n「파구사의 용사여, 누구든 좋으니 일어나 스키아나를 지켜다오!」 국왕이 울부짖었으나 누구도 응답하지 않았다——세이렌을 적으로 삼으면 결국 그 누구도 예외 없이 바다에 떠다니는 시체가 되기 때문이었다.\\n\\n「그 무엇보다도 튼튼한 배와 선원 50명을 주십시오! 제가 그 사악한 세이렌을 제거하겠습니다!」 챙이 넓은 차양 모자를 쓴 젊은 선장이 인파를 헤치며 나왔다. 그 진줏빛 모자는 사람들의 창백한 얼굴에 무지갯빛을 드리웠다——바다 위에 여명이 비치는 것처럼, 그가 등장하자마자 지평선이 순식간에 환해지기 시작했다.\\n\\n「내가 세상에서 가장 좋은 배를 만들어 주겠네!」 대장공들은 젊은 선장의 패기에 매료되었다. 거대한 배는 바다에서 영원히 썩지 않는 목재로 만들어졌고, 선수에는 세르세스의 거목에서 깎아낸 예언의 힘이 담긴 판자가 장착되었다——\\n\\n「현인이 키운 제자이자, 신들이 선택한 영웅이여, 가서 파구사의 광기를 잠재우게!」 사흘 후, 선원을 가득 태운 함선이 스키아나에서 출항했다" + }, + "31262": { + "Name": "선장의 별빛 포획 아스트롤라베", + "Desc": "별빛을 포획해 방향을 인도하는 항해 나침반. 어두컴컴한 망망대해 속에서도 나아갈 방향을 가리킬 별빛이 있으리라", + "Story": "먹구름이 철판처럼 돛대 끝을 짓눌렀다. 폭풍우 속 함선은 떠다니는 부초와 같았고, 진귀한 나무로 제작된 갑판은 거센 파도에 격렬하게 흔들렸다.\\n\\n「언제나 잔잔하던 바다도 세이렌의 난폭한 습성에 물들고 말았군」 함교탑에 선 젊은 선장은 미간을 찌푸리며 먼 곳의 짙은 먹구름을 바라보았다…. 손목에 찬 아스트롤라베는 여전히 아무런 반응이 없었다.\\n\\n천둥이 치며 큰 돛을 묶은 줄이 끊어지자 선원들은 우왕좌왕했다. 젊은 선장은 사람들을 꾸짖으며, 노잡이들이 구령에 맞춰 힘을 내고, 조타수가 방향을 바꾸도록 지휘하며 집채만 한 파도를 하나둘 피했다…. 아퀼라의 인도의 불빛이 깜빡이기 전까지 최선을 다해 파구사의 분노에 맞섰다. 갑자기 선장이 팔을 휘두르며 소리를 질렀다. 손목의 항해 나침반이 알록달록한 별빛을 반사했다.\\n\\n「모두 저 빛을 따라가라! 우린 폭풍을 돌파할 것이다!」\\n\\n선원들은 정신을 차리고 뱃노래를 열창했고, 함선은 칼날처럼 파도를 가르며 여명을 향해 질주했다.\\n\\n「우린 곧 그녀를 족쇄에서 풀어 줄 테니~ 앞길을 똑바로 보고, 준비! 출항!」" + }, + "31263": { + "Name": "선장의 바람 망토", + "Desc": "항해 망토가 거대한 돛처럼 펄럭인다. 바람이 날 돕지 않는다면, 내가 그 바람이 되리라", + "Story": "사람 키만 한 청동 화살이 불꽃을 휘감고 바다 안개를 뚫고 날아갔지만, 세이렌의 비늘 갑옷에 접근한 순간 가루가 되었다. 그 연푸른 촉수는 선원들의 허리를 휘감고, 잘려 나간 촉수는 갑판 위를 나뒹굴며 공포에 질린 선원들을 갉아먹고 있었다.\\n\\n「선원이 허공에 팔다리를 휘저으며 내 이름을 울부짖다니, 내 항해 인생 중 가장 끔찍한 광경이군」 선장의 목소리가 떨렸다. 그의 말은 거짓이 아니었다.\\n\\n거대한 세이렌이 바다 위로 올라와 구불구불한 촉수로 함선을 옥죄었고, 그 등은 마치 움직이는 섬과도 같았다. 일등항해사가 수천 개의 날카로운 이빨이 난 입속으로 뜨겁게 달궈진 쇠창을 던지자 비릿한 검은 피가 갑판 전체를 뒤덮었다. 선원들은 가까스로 치명적인 급습에서 살아남았으나, 선장이 고개를 돌리자 선미의 탑은 니카도르의 천벌의 창이 호두 껍데기를 부순 것처럼 거대한 촉수에 파괴되었다. 천재일우의 기회였다. 돌격하느냐, 후퇴하느냐. 사람들이 일제히 선장을 바라보았다——\\n\\n「키를 왼쪽으로 최대한 돌리고, 노잡이들은 전속력으로 전진하라! 돛을 활짝 펴고 충각으로 적에 맞선다!」\\n\\n선장의 망토가 바람에 펄럭였다. 선원들도 죽음을 두려워하지 않았다——강철과 비늘이 서로 얽히며 용골이 부러졌고, 세이렌은 비명을 질렀다. 그 거구는 한때 누구도 당해낼 수 없었던 위력을 잃고 서서히 바다 깊은 곳으로 가라앉았다" + }, + "31264": { + "Name": "선장의 파도타기 부츠", + "Desc": "부서진 파도가 선장의 부츠 아래에서 피어났다. 그가 돌아오지 않는다 해도 바닷물은 그에게 축복을 가져다주리라", + "Story": "어딘지 모를 바닷가에 젊은 선장은 대자로 누워 있었다. 석양은 부서진 해안가를 황금으로 도금했다…. 그 빛 속에서 머나먼 스키아나가 손에 닿을 듯 가깝게 보였다——그는 이게 인생의 마지막 순간이라는 것을 알고 있었다.\\n\\n「…우리가 마침내 파구사의 광기를 잠재웠군」 바다 깊은 곳으로 도망친 세이렌은 앞으로 백 년간 해안가를 침범하지 못할 것이다.\\n\\n세르세스의 거목을 깎아 만든 판자가 선장에게 마지막 말을 물었다. 판자는 파도를 타고 그리운 스키아나로 돌아가 영웅의 여정을 전하고, 더 많은 젊은이가 해안으로 나서길 격려할 것이다. 선장은 자신의 잘려 나간 몸뚱이를 바라보았다. 그것은 현인이 선물한, 자신과 여러 도시 국가를 누빈 부츠였다. 이제… 기나긴 여정이 이곳에서 끝나려 한다——\\n\\n「그들에게 난 아직 저승의 바다를 정복해야 한다고 전해줘. 고향이여, 부디 날 위해 슬퍼하지 말기를」\\n\\n바닷바람은 매년 스키아나의 성벽을 어루만졌고, 세이렌의 이야기는 아이를 재우는 어머니의 속삭임이 되었다…. 거친 바다에서 간신히 살아남은 선원들은 여전히 선장이 파도를 타고 돌아오기를 기다리고 있다" + } + }, + "RequireNum": { + "2": { + "Desc": "치명타 피해 #1[i]% 증가", + "ParamList": [ + 0.1600000001490116 + ] + }, + "4": { + "Desc": "장착한 캐릭터가 다른 아군의 스킬 목표가 되면 [조력]을 1스택 획득한다, 최대 중첩수: #1[i]스택. 필살기 발동 시 [조력]을 #1[i]스택 보유하면, 모든 [조력]을 소모해 장착한 캐릭터의 공격력을 #2[i]% 증가시킨다, 지속 시간: #3[i]턴", + "ParamList": [ + 2, + 0.48000000044703484, + 1 + ] + } + } + }, + "301": { + "Name": "우주 봉인 정거장", + "Icon": "SpriteOutput/ItemIcon/71012.png", + "Parts": { + "33015": { + "Name": "「헤르타」의 우주정거장", + "Desc": "차원 안에 봉인된 것은 우주정거장 「헤르타」다. 더 블루 상공에 정박한 채로 정해진 궤도를 따라 천천히 떠돌고 있다. 그리고 은하는 마치 넘겨지기를 기다리는 책장처럼 고요했다", + "Story": "헤르타는 한때 천체를 넘나들며 수집한 소장품이 너무 많고 수납도 쉽지 않으며 관리하기 싫어서 고민했다.\\n\\n이 문제를 해결하고자 열정적이고 친절한 스타피스 컴퍼니에서 방안을 내놓았다. 지혜와 비밀을 간직한 우주정거장 「헤르타」는 이렇게 탄생했다. 우주정거장에서는 소장품들을 수용할 상세한 조치를 마련하여 「명백하고 합리적으로 만상을 포괄」하기 위해 힘썼다. 현상은 특수 용기에 수납하고, 기물은 기물 항목 규범에 의해 분류되어 우주정거장 깊은 곳에 봉인되어 연구에 쓰였다.\\n\\n컴퍼니가 별의 신비를 함께 탐구하자고 제안하자 학자들이 들어와 학문을 펼쳤다.\\n\\n연구원들은 대부분 헤르타를 존경하며, 별하늘의 이상을 실천하고 별들의 속삭임에 숨겨진 비밀을 찾겠다고 맹세한다. 그들은 별하늘 생명을 탐사하고 이치 논쟁의 정의를 밝히며 미지의 은하를 개척했다. 또한 종교 의식의 신비를 파헤치고 실천적 진리 탐구를 고수했다…. 그들은 「지식 전수」의 이념을 이어받아 광범위한 연구에 자유롭게 종사하고 있다.\\n\\n그러나 우주정거장이 항로에 진입해 자체적으로 운행되자 헤르타는 좀처럼 모습을 드러내지 않았다. 그제서야 컴퍼니는 우주정거장에 연구원들의 일상만 가득할 뿐, 천재는 보이지 않는다는 사실을 알게 되었다.\\n\\n캐빈마다 조명이 다른 탓에 시간의 흐름을 감지하기 어렵다. 권태로운 삶에서만 시간의 자취를 엿볼 수 있다. 서너 명의 간부가 소장품 때문에 벌이는 끊임없는 논쟁은 시간이 지날수록 몸싸움으로 번졌고, 보안 요원은 순찰에서 빠져나와 야전 침대에 숨어서 쉬기도 했다. 선배 연구원들이 후배들에게 옛날 연애 경험을 이야기하기도 했고, 임시 인부로 위장한 거물이 다음 기회를 노리기도 했다…. 연구 외에 이곳은 일상이기도 했다.창밖을 바라보면 별들이 이 여정에 함께하고 있는 걸 볼 수 있다.\\n\\n비록 제한적이긴 하지만, 연구원들은 여전히 낭만적인 방식으로 우주정거장에서의 생활을 이야기한다. 은하수는 심오한 시이다, 「헤르타」 우주정거장은 서서히 그 서장을 열고 있다" + }, + "33016": { + "Name": "「헤르타」의 궤적", + "Desc": "우주정거장 「헤르타」가 완성되는 순간, 헤르타 씨는 흥미를 잃어버렸다. 정거장은 더 블루 상공에서 일정한 속도를 유지하면서 위성 궤도를 따라 자신의 흔적을 남기고 있다", + "Story": "「헤르타」 우주정거장은 진짜 주인인 헤르타 덕분에 숱한 위기를 겪고 넘겼다.\\n\\n전 우주에서 가장 기이한 소장품으로 가득한 탓에 굶주린 식객 앞에 놓여있는 돼지처럼 늘 위태로웠다. 컴퍼니가 모집한 방위과 연구원과 약간 선진적인 방어 시스템만으로는 은하로부터 오는 위협을 감당하기에 역부족이다…. 헤르타는 이런 상황을 예견하고 우주정거장에 우아한 곡선을 남겨 오랫동안 계획된 우주 음모가 시작되기도 전에 끝나게 만들었다.\\n\\n그녀는 위기를 기회로 만드는 자신의 정보 수집 능력에 대해 그녀는 「남들이 책 읽는 시간을 커피 타는데 썼어」 정도로 가볍게 묘사했다.\\n\\n소장품을 훔치려는 도둑들, 목적이 불분명한 파벌들에 비해 우주정거장에 가장 큰 위협이 되는 건 주인인 헤르타다. 그녀가 돌발적으로 기발한 아이디어를 떠올리면 그 피해를 떠안는 건 우주정거장이다. 의태 항성의 소멸한 기물, 암흑 은하가 충돌한 변이 중력장… 헤르타는 일시적인 흥에 도취돼 각종 소장품을 수집하지만 막상 손에 넣고 나면 흥미를 잃고 거들떠보지도 않는다.\\n\\n「헤르타」는 하늘에서 조용히 운행되고 있지만, 여러 형태의 위기가 잠재된 형국은 마치 살얼음 위를 걷는 듯하다.\\n\\n책임 연구원들은 위험한 현상을 충분히 인지하고 「비밀은 위험에 숨겨져 있다」는 이치를 잘 알고 있다. 그들은 고도의 기밀을 엄격히 지키고, 기준에 따라 확실하게 수용하며, 평온함 속에 위험을 숨겼다…. 우주정거장의 탕비실에서 그들은 농담을 나누는 친구들이고, 우주정거장의 보관 캐빈 깊은 곳에서 그들은 노련한 기술 전문가였다. 이곳에서 비밀은 언제까지나 비밀일 것이다.\\n\\n더 블루의 가까운 궤도에서 우주정거장은 변함없이 운행되고 있다. 얼어 있는 호수 표면이 자갈을 밀어내듯 우주정거장은 늘 매끄럽고 조용히 운행될 것이다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터의 속도가 #2[i] 이상일 경우 공격력이 추가로 #3[i]% 증가한다", + "ParamList": [ + 0.12000000011175871, + 120, + 0.12000000011175871 + ] + } + } + }, + "302": { + "Name": "불로인의 선주", + "Icon": "SpriteOutput/ItemIcon/71013.png", + "Parts": { + "33025": { + "Name": "나부 선주의 천외 누선", + "Desc": "별바다 위를 떠다니는 선주 나부가 구체 안에 담겨 있다. 옥계의 문 위로는 별뗏목이 마치 별처럼 뜨고 내리고 있다. 수많은 사람이 불멸의 비밀을 알아내기 위해 이곳을 찾았지만, 모두 실망만을 안은 채 돌아갔다", + "Story": "나부 선주는 수천 년 전 옛 나라에서 출발해 깊은 하늘을 건너 신들을 알현하고 불사의 선약을 구했다.\\n\\n생태계 거함은 천천히 별하늘로 향했고 밤하늘의 고요한 달빛처럼 긴 길은 어디로 향하는지 알 수 없다. 고독의 여정에서, 사람들은 끊임없이 깊이 잠들고, 잠에서 깨어났다…. 유성을 쫓던 고래 떼가 하늘 꼭대기에서 떨어지고 아공간 결정 격자가 광년을 넘나들며 이어진다. 약을 구하는 자들은 위력의 존재를 눈으로 보았고 은근히 기뻐하며 불멸의 믿음을 굳혔다.\\n\\n나부 선주는 항해를 수천 년 동안 멈췄다 가기를 반복했고 이윽고 현실과 허황된 경계에서 「풍요」의 주인을 만났다. 약사가 함선에 흔적을 남기자 갑자기 「불멸의 거목」이 생겼다. 그늘은 구름 같고, 하늘과 해를 가리고, 그 뿌리는 빽빽하여, 선주를 덮는다——나부 선주는 마침내 살아 있는 것처럼 생명을 얻었다.\\n\\n장생을 탐하는 자는 바라고 바라던 「무한한 수명」을 얻기 위해 「불멸의 거목」의 과실을 삼켰다. 천인을 칭송하는 선주 사람들은 끝없는 생명을 마음껏 누리기 시작했고, 또 「불멸의 거목」으로 선도를 천명하여 온갖 비인간적인 기적을 만들어냈다.\\n\\n그러나 사물이 성함이 있으면 쇠함도 있고, 즐거움이 지나치면 슬퍼지는 법. 재난이 닥쳐서 백성들이 살기가 어려웠기 때문에, 선주 사람들은 비로소 「기적」의 진면목을 알게 되었고, 감당할 수 없는 재난을 겪었다.\\n\\n위험이 닥칠 때, 영웅은 황제의 활을 잡아당겨, 불멸의 거목을 부쉈다. 선주의 모든 사람들은 인간의 존엄성을 되찾고, 「범인으로 돌아가 전 세계에 불사의 재난을 없앨 것」을 맹세했다. 그 후 세월이 지나고, 선주는 장생 흉물을 제거하는 것을 자신의 임무로 삼기 시작했다. 여우족은 자유와 하늘을 되찾았고, 비디아다라는 오염과 화근을 봉인했으며, 삼족은 동맹을 맺어 선주 연맹이 결성되었다.\\n\\n번영과 재앙은 항해를 거듭하며 함께했고, 영웅과 전설은 역사와 함께 끊임없이 등장했다. 나부 선주는 어렵게 얻은 평화롭고 편안한 휴양을 통해 재건되고, 자유로운 상거래와 개방적인 태도가 되살아났다.\\n\\n불로장생은 영원히 나부 선주를 형상화하여 여러 차례 부침을 겪게 했고, 이는 오늘날 고전과 현대가 한데 뒤섞인 독특한 기질을 침전시켰다. 전 우주 상인들이 이곳을 지나다 잠시 서 있는 것만으로도 시간이 무얼 남겼는지 알 수 있다" + }, + "33026": { + "Name": "나부 선주의 불멸의 거목 가지", + "Desc": "오래전 선주 나부는 불멸의 거목으로부터 태어나 선주함대를 이끌게 되었다. 그리고 이후 선주 나부는 영생의 저주를 받은 과실을 먹게 되었고, 불멸의 거목으로 인해 일어난 재앙에 내던져졌다. 거목의 가지와 덩굴은 나부의 운명과 서로 얽혀 있어 더 이상 둘로 나눌 수 없다", + "Story": "「풍요」의 주인은 나부 선주의 중심에 인과의 씨앗을 심어 약을 구하는 자에게 「불멸의 거목」의 기적을 선사했다. 기적을 기적이라고 부르는 이유는 그것이 일어났을 때 사람들은 그 의미를 바로 깨닫기 때문이다.\\n\\n불멸의 거목은 신성한 열매를 맺고 생명력이 넘치며 약을 구하는 자들이 추구하는 불로장생을 담고 있다. 이때부터 오래된 금기와 율법은 헛된 말이 되었고, 노쇠와 죽음의 윤리는 역사 속으로 사라졌다. 사람들은 「선도」에 따라 나무를 여러 차례 개발하여 비옥한 토양을 만들고, 모양을 바꿀 수 있는 피와 살을 만들고, 닭과 개도 지혜를 가지게 했다….상상하기 어려운 수많은 기술도 불멸의 거목 아래서 구현됐다.\\n\\n그러나 불멸의 거목은 시간이 지나면서 점차 베일을 벗으며 흉악한 모습을 드러냈고 사람들은 장수의 고통을 겪기 시작했다.\\n\\n선주 사람들은 끝없이 번성하면서도 죽음만은 맛보지 못했다. 함선은 사람들로 가득 찼고 기아가 도처에 퍼졌다. 선주 사회에서 젊은이는 뜻을 펼칠 수 없었고, 노인은 높은 자리에서 도통 내려오지 않았다. 사회 구조는 붕괴되고 질서는 기울어졌다…. 금 조각상의 반란, 외적의 침입, 천년에 걸친 혼란스러운 약탈 끝에 사람들은 장생의 핏줄에 숨겨진 어둠을 다시 발견했다. 「천인의 몸」이라는 건 단지 인간 지능을 초월하는 기술에 불과하다. 「마각의 몸」에 빠진 이들은 자신과 흉물은 종이 한 장의 차이밖에 없다고 선주 사람에게 경고했다.\\n\\n절망의 시기에 영웅은 긴 화살을 쏘아 하늘을 찌르고 불멸의 거목을 베어냈다…. 불멸의 거목은 부서졌지만, 선주의 운명은 결코 끊어지지 않았다.\\n\\n불멸의 거목은 외환을 불러들였다. 풍요의 흉물은 수 차례 침입해 육체와 유골파헤치고 선주 사람들을 삼켜버릴 것을 맹세했다. 또한 약왕의 비전에게 금기를 깨고 불멸의 거목에 감춰진 풍요의 비밀을 알아내 장생의 제국을 다시 세우라고 유혹했다….오랜 내우외환 속에 불멸의 거목 유해는 어두운 곳에 끝없이 자라는 덩쿨처럼 퍼져 다시 깨어나 재난을 일으킬 날을 노리고 있다.\\n\\n다행히도 나부 선주는 「죽은 고목」에 대한 경계를 늦추지 않았다. 그들은 모든 왜곡의 근원을 모든 종말의 끝으로 가져가겠다고 맹세했다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 HP 최대치가 #1[i]% 증가한다. 장착한 캐릭터의 속도가 #2[i] 이상일 경우 모든 아군의 공격력이 #3[i]% 증가한다", + "ParamList": [ + 0.12000000011175871, + 120, + 0.0800000000745058 + ] + } + } + }, + "303": { + "Name": "범은하 상사", + "Icon": "SpriteOutput/ItemIcon/71014.png", + "Parts": { + "33035": { + "Name": "컴퍼니의 거대 기관 본부", + "Desc": "피어포인트에 위치한 컴퍼니 본부가 차원 구체에 봉인되어 있다. 스타피스 컴퍼니의 원대한 계획에는 모든 행성이 포함되어 있다. 그들이 깊은 우주로 향한 것은 우주 전체의 힘을 모으기 위해서다", + "Story": "아공간 효과로 세상이 크게 놀랐다. 침묵의 거대 형상은 홀로 은하의 장벽을 주조하고 있다. 신탁을 받았다고 주장하는 사람들은 행동을 개시했다. 그들은 에이언즈 클리포트를 도와 벽을 쌓아야 했다.\\n\\n우주가 위태로우니 장벽 쌓는 일은 더욱 지체할 수 없었다. 보잘것없는 인간은 무심코 신의 뜻을 모방하여 무리를 형성하고 자신을 에이언즈의 「지원대」라 명명하며 모든 것을 앰버 로드에게 바치고자 했다——「지원대」는 보존의 힘으로 함대를 조종해 다양한 은하계를 누비며 돌과 목재, 황금, 슈퍼 티타늄 등 건축 재료를 사들였다. 그들은 이 재료를 지체하지 않고 아공간 장벽으로 보내 행성 황야에 쌓았다.\\n\\n짧은 발전기가 끝난 후, 「지원대」는 피어포인트에 자리를 잡고 「스타피스 컴퍼니」를 세웠다. 봉사와 헌신이라는 청사진을 이루기 위해 그들은 깊은 우주로 눈을 돌렸다.\\n\\n루이스•플레밍이 호소하자 원항 무역 함대는 에이언즈 클리포트의 은하계를 떠났고, 무역 상품은 더이상 건축 재료에 국한되지 않았다…. 그들은 은하계를 연결하여 모든 것을 구매할 계획이었다. 얼마 후, 동방계항에서 은하를 넘나드는 비즈니스를 위하여 규칙을 정하고 「신용 포인트」 체계를 구축해 우주의 모든 상품에 가격을 정했다. 조 단위의 자산이 피어포인트의 거대 기관으로 모여들었다. 그건 마치 말없는 블랙홀처럼 재물에 대한 모든 상상을 빨아들였다.\\n\\n현재 스타피스 컴퍼니의 기함은 온 은하에 퍼져나가 계속 세력을 확장하고 있다. 「재계의 독재자」라는 여론에도 컴퍼니는 아랑곳하지 않고 자신의 초심을 지켜나가고 있다.\\n\\n컴퍼니의 신입 사원 연수 방식은 나날이 새로워지고 있다. 약 800 앰버기원 후, 역사 견학 활동 하나만이 아직까지 그대로이다——그때, 컴퍼니의 창립자 루이스•플레밍이 「지원대」 앞에서 연설했다. 그는 우주를 연결하겠다는 원대한 포부와 에이언즈가 우주를 보호하겠다는 이상을 지지한다고 밝혔다. 연설이 끝나자마자 멀리서 거대한 효과음이 들려오며 이 엄숙한 순간에 숭고한 사명을 불어넣었다. 그때 그들은 깨달았다. 이건 결코 변치 않는 신앙이라는 것을.\\n\\n「모든 것을 앰버 로드에게 바치리」" + }, + "33036": { + "Name": "컴퍼니의 무역 항로", + "Desc": "편리한 「신용 포인트 시스템」으로 우주를 넘나드는 무역이 성립되었다. 스타피스 컴퍼니는 경제 활동으로 별들을 연결하고 무역의 경계를 넓혔다", + "Story": "「지원대」는 에이언즈 클리포트의 은하계를 분주히 오갔고, 예전의 함선 궤도는 최초의 항로가 되었다.\\n\\n에이언즈의 행동에는 그럴 만한 의미가 있다고 믿은 「지원대」는 이웃 은하계를 향해 물물교환의 첫 걸음을 내디디었다. 「지원대」는 수송력이 충분한 함대를 준비했고, 희소하고 귀한 물자와 거부할 수 없는 조건으로 은하계를 무수히 넘나드는 무역을 탄생 시켰다. 「지원대」는 항로 정보를 관리하고 가격을 협상하는 권리를 독점했으며, 은하 상계의 법칙을 앞장서서 제정했다.\\n\\n목재와 돌, 철근, 슈퍼 티타늄을 가득 실은 함대는 에이언즈 클리포트 곁을 날파리처럼 지나다녔다. 앰버 로드는 이에 대해 아무 말도 하지 않고 관심을 보이지 않았다.\\n\\n시대가 바뀌면서 인근 은하계의 무역으로 「지원대」는 만족할 수 없었다. 똑똑한 두 사람은 깊은 은하로 갈 것을 결심했고, 이로써 스타피스 컴퍼니가 설립되었다. 컴퍼니는 다른 행성에서 관심을 가질 만한 모든 상품을 제공하고 「신용 포인트」로 공평한 가격을 표시했다. 이때부터 은하의 무역 항로가 구축되기 시작했고, 컴퍼니의 상업 네트워크에 가입한 행성들은 같은 화폐를 쓰며 같은 상품을 구입하고 같은 서비스를 누렸다.\\n\\n「신용 포인트 시스템」을 도입한 상선들이 별바다를 오가며 무역 항로는 교차되고 합병되면서 범은하 네트워크가 형성됐다. 먼 행성의 이색적인 보물을 가득 실은 함선은 무수히 에이언즈 클리포트의 곁을 반딧불처럼 맴돌고 있지만, 에이언즈는 여전히 말이 없다.\\n\\n「지원대」 시대부터 쌓인 건축 재료는 에이언즈 클리포트 곁의 행성에 가득했고, 그 종류는 늘기만 했다. 에이언즈 클리포트는 아무 뜻 없이 정성스러운 선물을 선사했다. 신은 언제나 평범한 인간들이 예견할 수 없는 위기를 주목하고, 광년을 단위로 장벽을 구축했다. 과거에 물자를 구매하는 작은 조직은 일찌감치 은하를 호령하는 방대한 세력이 되었다. 그들은 머리 없는 거대 형상을 응시하며 이 모든 게 헛수고가 아니었음을 느꼈다.\\n\\n「모든 자본이 눈덩이처럼 불어난 것은 모두 클리포트가 필요할 때 그의 바람을 이루어주기 위해서이다」" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 효과 명중이 #1[i]% 증가한다. 동시에 장착한 캐릭터의 현재 효과 명중 #2[i]%만큼의 공격력이 증가하며 최대 #3[i]% 증가한다", + "ParamList": [ + 0.10000000009313226, + 0.25000000023283064, + 0.25000000023283064 + ] + } + } + }, + "304": { + "Name": "축성가의 벨로보그", + "Icon": "SpriteOutput/ItemIcon/71015.png", + "Parts": { + "33045": { + "Name": "벨로보그 보존의 보루", + "Desc": "차원 안에 봉인된 것은 벨로보그 행정구역에서 가장 흔하게 볼 수 있는 것, 바로 영원한 겨울의 기념비다. 사람들은 이곳을 지날 때마다 아득한 저편에서 전해지는 따스한 눈빛에 의해 보호받고 있음을 느낀다", + "Story": "수천 년 전, 당시 야릴로-Ⅵ는 사계절 내내 봄처럼 따뜻한 기후와 부러움을 살만한 바다 환경을 가지고 있었다.\\n\\n숲에는 열매가 가득하고, 조석이 촉촉하고 따뜻한 기운을 전해주며, 좋은 술이 넘쳐나 누구나 마실 수 있었다. 도로, 도시, 해변의 별장, 궁궐을 짓는 등 진취적인 활력이 넘쳤다. 풍요롭고 윤택한 삶은 언제나 아침 햇살 커피 한 잔으로 시작해 황혼의 오트밀 한 잔으로 끝나는 듯했다.\\n\\n별의 궤도가 야릴로-Ⅵ 세계를 연결하고 나서 은하의 무역과 천외의 과학을 가져다주었다.\\n\\n처음에는 이세계의 방문객들이 지오매로우를 위해 찾아왔다. 이 영롱하고 투명한 광물은 공업을 움직이는 힘을 가졌고 호박색으로 보존의 광채를 반사해 낸다. 그 이후, 이세계의 방문객들은 오래 머무르기 위해 찾아왔다. 야자수, 경쾌한 리듬의 음악은 피곤한 여행객들에게 안성맞춤이었다. 사람들은 언젠가 이 따뜻한 기후의 별은 반드시 다른 눈부신 별들처럼 은하에서 반짝일 것이라고 믿었다.\\n\\n하지만 약 천 년 전, 스텔라론 한 개가 하늘을 가로질러 이 세상에 떨어졌다.\\n\\n그러자 행성의 운명이 어처구니없는 희극처럼 급변했다. 포악한 파괴 군단이 하늘에서 떨어지자 거센 전쟁이 도처에서 일어났다. 축성가들은 성벽과 전선을 구축하였고, 백 미터에 달하는 거대 형상을 세워 드래곤 형태의 괴물과 맞섰다. 곧이어 징조도 없이 한파가 몰아치고, 매서운 폭풍은 적과 아군을 가리지 않고 모든 것을 삼켜버리고, 행성 전체가 고요해졌다…. 보이지 않는 거대한 공간 장벽이 도시 전체를 뒤덮어 마치 겨울밤 품에 감싸진 촛불처럼 문명은 계속된다.\\n\\n이후 이 도시는 벨로보그로 불렸다" + }, + "33046": { + "Name": "벨로보그 철위대 방어선", + "Desc": "벨로보그의 실버메인 철위대가 눈보라 속에서 꼿꼿이 서 있다. 그들은 한 줄로 늘어선 채 이계의 침입자들을 경계하고 있다. 실버메인 철위대의 의지는 강철과도 같으며, 방어선은 절대 무너지지 않을 것이다", + "Story": "재난이 찾아오기 전 축성가는 야릴로-Ⅵ에 대해 희망을 가지고 있었다.\\n\\n축성가는 클리포트의 위력을 모방해 행성을 개조할 수 있는 기계를 만들어낸다. 수백개의 「창조의 엔진」은 지칠 줄 모르는 거인 정원사가 황량한 꽃밭을 가꾸는 것처럼 화염을 뿜어내며 대지를 누볐다. 불과 몇 십 년 만에 골짜기와 언덕이 평원과 숲으로 정비되었고, 도시가 별처럼 해안가에 우뚝 솟아 있었다.\\n\\n「파멸」의 전조가 찾아오고 축성가는 기계를 전부 전쟁터에 투입하였고 설계했던 대로 「철위대 방어선」을 구축했다.\\n\\n「파멸」의 병사들은 마치 불에 뛰어드는 불나방처럼 스텔라론을 따라 찾아와 지표면의 백성들을 도탄에 빠지게 했다. 「창조」에 사용된 기계도 흉기로 전락할 수밖에 없었다. 결국 정원을 가꾸던 거대 기계가 그들의 전쟁터가 아닌 곳에서 싸우다 쓰러지면서 문명은 묘지를 방불케 했고, 전선은 하루하루 궤멸하는 과정을 표시했다.\\n\\n물러설 수 없었던 그날, 철위대는 남은 터전을 지키기 위해 무기를 움켜쥐었다.\\n\\n한파가 모든 사람의 예상을 뒤엎고 찾아왔다. 하늘 밖의 괴물이 전선의 병사와 날카로운 칼날이 교차하는 순간 눈발이 하늘로 치솟는다.혼돈 속에서 벨로보그는 세상의 유일한 등불이 됐다.그것을 끄기 위해, 지키기 위해 끝없는 몸싸움이 벌어진다. 철위대는 알리사•랜드의 이름을 울부짖으며 깊은 눈보라 속으로 들어가 다시 돌아오지 못했다.\\n\\n폭설이 그치자 주민들은 전전긍긍하며 성벽 위로 올라가 먼 곳을 바라봤다.\\n\\n그들은 최후의 「철위대 방어선」을 목격했다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 방어력이 #1[i]% 증가한다. 장착한 캐릭터의 효과 명중이 #2[i]% 이상일 경우 방어력이 추가로 #3[i]% 증가한다", + "ParamList": [ + 0.1500000001396984, + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "305": { + "Name": "천체 차분기관", + "Icon": "SpriteOutput/ItemIcon/71016.png", + "Parts": { + "33055": { + "Name": "스크루룸별의 기계 태양", + "Desc": "차원 안에 봉인된 것은 스크루룸별의 코어다——행성은 무수한 지렛대와 피스톤, 톱니바퀴로 구성된 철창에 갇혀 있다. 스크루룸별의 주민은 이것에 「철강 태양」이라는 아름다운 이름을 붙였다", + "Story": "기계가 지닌 생명의 근원에 대해 지식학회의 탄소 기반 학자들은 흥미로운 추측을 가지고 있다. 우연히 탄생한 전류라는 것이다.\\n\\n전류는 대기와 암석층을 떠돌며 수없는 인력과 척력의 작용으로 크기가 다른 이차적인 형태로 분화된다——학자들의 그럴 듯한 학설에서 이는 탄소 기반 생명 진화의 「복제」나 다름없다. 그 후 무수한 전류는 다시 행성 표면으로부터 자연적으로 형성된 트랜지스터 구조를 거쳐 높낮이가 다른 전압을 출력해 가장 원시적인 프로세스를 창출한다——학자들은 우쭐대며 기계는 바로 이렇게 아름다운 탄소 기반 생명의 「사고」를 지니고 있다고 주장했다.\\n\\n한 기계 학자가 이 주장에 이의를 제기했다. 자신이 지닌 생명의 근원조차 밝히지 못한 탄소 기반 생명이 무슨 권리로 학설에 뒤집느냐는 것이었다. 이 말에 우주 학계는 격렬하게 술렁거렸다——기계 생명은 「탄소 기반 중심 주의」를 다시 바라보게 되었고, 자신의 생명적 근원을 다시 생각해보게 되었다.\\n\\n하지만 스크루룸별의 스크루룸족은 발걸음을 잠시 늦출 수밖에 없었다——천체 에너지원이 그들의 영감 회로보다 빨리 고갈되었기 때문이다. 그들은 우선 종족이 존속할 방식을 반드시 찾아야 했다.\\n\\n결국 그들은 여러 앰버기원을 뛰어넘는 광기의 계획을 실행하기로 결정했다. 그들은 죽음을 앞둔 행성을 연료로 삼아 천체 차분기관을 가동한 것이다. 경이로울 정도로 거대한 톱니바퀴는 틈이 있는 종이를 끊임없이 삼키며 일사불란하게 연산을 반복한다. 행성급의 에너지원을 공급 받으며 기계는 진짜 같으면서도 안정적인 초생태계 시스템을 모방해냈다——그들은 모성을 에워싸 새로운 보금자리를 만들어내려 했다.\\n\\n행성의 위기가 해결되자 스크루룸족은 잠시 숨을 돌릴 수 있게 됐다. 줄곧 이지적이고, 낙관적이고, 우아했던 그들은 순수한 이성의 방식으로 근원의 답을 탐사하기로 결심했다.\\n\\n방대한 시스템은 베어링의 마찰음으로 가득찼다. 정밀한 교합이 종이 고리의 데이터 흐름을 구동하고 있었다. 이 갈래들은 다시 수렴하고, 쓰러지고, 용광로에 떨어지며 거품 속에서 고요하게 사라졌다. 이 긴 시간 동안, 프로그램이 설정한 초생태 시스템은 점점 절묘하게 상대적으로 안정에 가까워졌다——기계의 근원에 대한 추측으로 스크루룸족은 무한한 상상의 나래를 펼치게 됐다.\\n\\n망가진 별을 구동하는 강철이 다시금 총명한 사고의 전류를 활성화했다. 그들은 자신의 근원이 어디에 있는지 늘 그곳에 있던 기계 태양이 연소될 때까지 고민하고 탐사할 것이다" + }, + "33056": { + "Name": "스크루룸별의 행성 고리", + "Desc": "행성의 고리는 스크루룸별의 모든 것을 싣고 있다——빽빽하게 진열된 네모 구멍에 행성 시스템의 진실이 쓰여졌다는 걸 얼마나 많은 사람이 알고 있을까?", + "Story": "대다수의 스크루룸족은 모른다——스크루룸별이 무기 생명체가 근원적인 문제의 해답을 찾는 위대한 시도라는 것을.\\n\\n스크루룸은 조금 공허했다. 스크루룸별의 운행 논리를 밝는 일은 그의 지능 펄스 파장도에 어떤 이상한 진동도 주지 못했다.\\n\\n그는 자신의 저택의 넓은 옥상에 서서 멈춘 적 없는 행성 엔진을 올려다봤다. 구멍이 가득한 행성의 고리가 천제 뒤에서 나왔다. 이 행성에 실린 모든 것이 이 고리 위에 있고, 엔진을 축으로 조용히 공전하며 하루하루가 흘러갔다. 그는 이미 보았다, 이 행성 시스템의 본질이 절망적으로 황량하다는 것을. 우아한 상태 전환 방정식 한 줄, 거대하고 차가운 원통 하나——이게 스크루룸별의 전부이고 그 외에는 아무것도 없다.\\n\\n그의 방정식 풀이에 따르면——행성 차분기관의 탄생 초기에 이것을 처음으로 고안한 자는 우주의 근원을 일종의 원세포 자동기와 그 재귀로, 스크루룸별 자체는 생명 게임의 실행으로 해석하고자 했다.\\n\\n스크루룸족과 다른 행성 표면의 무기 생명체가 자동기의 「세포」 역할을 맡는 동시에 각 무기 생명체는 그 자체로 더욱 작은 규모의 세포 자동기이도 했다. 자동기는 항상 더 작은 여러 자동기로 구성되어 있고, 이를 추적해나가면 우주를 구성하는 모든 물질 중 가장 작은 구성물을 찾을 수 있다. 그렇지만 가장 작은 구성물이 무엇인지는 아무도 모른다. 스크루룸도 모르고, 차분기관을 처음 제시한 학자도 아마 모를 것이다.\\n\\n스크루룸이 이것 때문에 공허함을 느끼는 것이다.\\n\\n그 학자는 그렇게 실패한 것인가? 하지만 행성 차분기관은 여러 앰버기원 동안 지친 기색조차 없이 운행되었다. 스크루룸족과 모성, 나아가 전 우주의 근원이 그 우아한 방정식 한 줄에 귀결된다는 건가? 결코 그게 전부는 아니다——이 초생태계가 완전히 붕괴하기 전에는 그 방정식이 틀렸음을 입증할 수 없다.\\n\\n그는 행성의 진실을 기록하는 행성의 고리에서 시선을 떼지 않으며 기름 음료가 가득 담긴 정교한 유리잔을 흔들었다. 거대한 스크린과도 같은 행성의 고리는 지칠 줄 모르고 네모난 구멍으로 늦은 밤의 달빛을 정렬하고 있다. 스크루룸은 깊은 생각에 잠겼다. 이 순환의 출구는 정녕 존재하는가? 무기 생명체——혹은 더 나아가 우주의 근원은 대체 무엇인가?\\n\\n그는 정말로 그저 선인들의 사상을 뒷받침해주는 증인이 되기를 원하는가?\\n\\n「아니」 스크루룸은 해답을 구하기로 결론을 내렸다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 장착한 캐릭터의 치명타 피해가 #2[i]% 이상일 경우, 전투 진입 후 장착한 캐릭터의 치명타 확률이 #3[i]% 증가한다. 첫 공격 발동 후까지 지속하고 종료된다", + "ParamList": [ + 0.1600000001490116, + 1.2000000001862645, + 0.6000000005587935 + ] + } + } + }, + "306": { + "Name": "회전을 멈춘 살소토", + "Icon": "SpriteOutput/ItemIcon/71017.png", + "Parts": { + "33065": { + "Name": "살소토의 움직이는 도시", + "Desc": "차원 안에 봉인된 것은 살소토에 몇 남지 않은 움직이는 도시 중 하나: 회전초. 이 도시는 움직임을 멈춘 적 없이 간신히 낮과 밤에 삼켜지지 않고 있다", + "Story": "우주에서 봤을 때 살소토는 행성 표면에 펼쳐진 모래 바다 때문에 금빛으로 빛나고, 거대한 운석에 의해 생성된 크레이터도 뚜렷하게 보인다.\\n\\n어느 때부턴가 기묘한 운석우가 살소토에 끝없이 떨어지기 시작했다. 오랫동안 이어진 「운석 폭포」가 만들어 낸 충격과 행성이 형성한 특수 협각 때문에 행성은 서서히 자전을 멈추게 되었다. 그것은 마치 누군가가 「세계 정지」 버튼을 누른 것만 같았다. 살소토의 낮과 밤은 일출과 일몰이 한없이 이어져 사람들이 인내심을 잃고 마침내 행성의 자전이 정지될 때까지 점점 길어졌다…….\\n\\n반년에 걸친 작열하는 태양과 혹서, 어두운 밤과 혹한은 이제 현실이 되었다. 살소토에 남은 것은 두 개의 이동 도시뿐이었다. 두 도시는 주야 경계선을 따라 쉴 새 없이 이동했다.\\n\\n거대한 공중의 성은 천둥 같은 굉음을 내며 마치 비구름처럼 황금 사막 상공을 날아갔다. 그것이 지나간 자리에는 모래 먼지가 날아올라 사방을 뒤덮었다. 거대한 이동 도시 위에서는 등에 날개를 단 살소토 사람들이 건물 사이를 날아다녔다. 천재지변에서 살아남은 비행 민족은, 하늘에 속하는 동시에 하늘에 묶여버린 존재였다.\\n\\n이른 아침, 공어부(空渔人)들은 항구에서 출발하여 모래 바다를 향해 내려가 그곳에서 플로지스톤 해파리를 사냥한다. 그들은 해질녘이 돼서야 도시로 돌아온다. 이 신비한 생물의 힘을 사용해야만 도시는 전방을 향해 나아갈 수 있다.\\n\\n생존이 온전히 연약한 두 날개에 달려 있었음에도 살소토 사람들은 천성적으로 낙천적이었다. 그들은 운명의 무게에 꺾이는 것을 거부했다. 살소토 사람들은 가족들과 함께 유리 악기 다루는 법을 연습했고, 그 소리를 유리 악보에 새겨넣었다. 또한 그들은 펜팔 친구를 사귀는 것을 즐겼다. 그들은 편지를 「민들레 우체통」에 넣어서 주야 경계선 너머에 있는 다른 이동 도시로 연락을 보냈다.\\n\\n시간이 갈수록 행성의 자기장은 약해지고 대기층은 얇아지고 있다. 하지만 종말이 가까워오고 있음에도 생명의 불꽃은 꺼지지 않는다면 매들은 비행을 멈추지 않을 것이다" + }, + "33066": { + "Name": "살소토의 명암 경계선", + "Desc": "자전이 멈춘 살소토의 밤낮은 무서울 정도로 길다. 사람들은 주야 경계선을 계속해서 쫓으며 간신히 생존 공간을 확보하고 있었다", + "Story": "「운석 폭포」로 인한 정체가 시작된 이후로 「주야 경계선」은 살소토 사람들의 생명선이 되었다.\\n\\n이 모든 것이 시작되었을 때에도 사람들은 여전히 낮과 밤의 변화를 당연하게 여겼다. 새벽과 황혼의 선이 대지 위를 지나 산과 계곡을 넘었다. 그것은 아직 깨어나지 못한 자들에게는 새벽을 가져다주었고, 아직 잠들지 못한 자들에게는 황혼을 선사해주었다. 그러나 빛과 어둠의 리듬이 느려지면서 낮과 밤의 변화는 점차 당연한 것이 아니게 되었다. 영원히 이어질 것만 같은 더위와 추위는 마치 지옥의 수렁처럼 그 안에 갇힌 모든 생명을 천천히 묻어버렸다. 당시 간신히 생을 연명하던 살소토 사람들이 둥둥 떠다니는 이동 도시에 올라 새벽과 황혼을 배경으로 추격전을 시작한 것도 이 때문이었다.\\n\\n이동 도시 「회전초」의 전망대에 오르면 눈앞에는 낮이, 뒤편에는 밤이 펼쳐졌다.\\n\\n「회전초」가 낮과 밤의 뒤를 쫓는 것은 단순히 생존을 위해서가 아닌, 존엄한 삶을 지키기 위해서다. 경계선을 조금만 앞질러 가면 아침에서 오후가 되고, 조금 늦게 가면 황혼에서 밤이 되었다. 태생부터 낙천적이었던 살소토 사람들은 「평범한 하루」를 되살린 것이었다. 그들은 타고난 로맨틱함으로 평화롭기 그지없는 오후에는 노래를 불렀고, 하늘 가득 별이 뜬 밤에는 잠을 잤다.\\n\\n그러나 끈기와 노력으로 이루어낸 이 비행도 결국에는 힘이 다하고 말았다. 한때 움직이는 성이었던 이동 도시는 끊임없이 변화하는 주야 경계선 뒤로 밀려나 폐허로 남게 되었다.\\n\\n수 년 이후, 그때까지는 서로 만난 적이 없었던 두 이동 도시는 마침내 서로와 마주하게 되었다. 파괴된 도시 잔해에 남아 있는 포탑은 서로를 향하고 있었다. 어떤 도시가 별의 절반을 넘어 다른 도시에 전쟁을 걸었던 것이 분명했다. 두 도시 사이에서 벌어진 처절한 싸움의 흔적은 이름 모를 증오와 하나가 되어 모래 언덕 아래로 숨겨졌다.\\n\\n살소토는 침묵했다. 그리고 언제부터인가 행성의 자전 주기는 서서히 느려졌다. 사람이 없는 미래에서 별은 스스로를 치유해나가기 시작했다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 장착한 캐릭터의 치명타 확률이 #2[i]% 이상일 경우, 필살기와 추가 공격이 가하는 피해가 #3[i]% 증가한다", + "ParamList": [ + 0.0800000000745058, + 0.5000000004656613, + 0.1500000001396984 + ] + } + } + }, + "307": { + "Name": "도적국 탈리아", + "Icon": "SpriteOutput/ItemIcon/71018.png", + "Parts": { + "33075": { + "Name": "탈리아의 네일스크랩 타운", + "Desc": "차원 안에 봉인된 것은 탈리아의 비참하고도 황량한 작은 마을 「딩커 타운」이다. 도적들은 단기간의 평화를 위해 이곳에 물을 공급하고, 누더기와 철근, 널빤지로 이 작은 마을을 만들어내었다", + "Story": "우주 도적들이 「갤럭시 레인저」의 추격을 피해 탈리아에 온 것은 순전히 우연이었다.\\n\\n원래 탈리아는 「우주의 쓰레기장」이라 불리는 황폐한 곳이었다. 과거에 행성을 파괴 시킨 전쟁으로 탈리아 지표는 폐허와 잔해, 사라지지 않는 방사능으로 가득했다. 이로 인해 행성은 그나마 있던 생기마저 잃게 되었다. 갈 곳이 없었던 도적떼는 행성 표면 아래에 남아있던 동굴로 들어갔다. 그것은 설치류 종족이 만들었던 터널로 밝혀졌다. 도적들은 가까스로 위기를 넘겼고, 그때부터 「도적 공화국」이라는 개념이 폐허 속에서 싹트기 시작했다.\\n\\n그곳에는 수많은 동굴이 마치 거대한 미로처럼 서로 연결되어 있었다. 더욱더 많은 도적떼가 부를 축적하고 기술을 교환하기 위해 몰려와 점차 공화국의 토대가 세워지게 되었다.\\n\\n점점 더 많은 도적들이 정착하면서 이 황량한 별은 북적이기 시작했다. 세를 충분히 불린 도적들은 「도적 공화국」이라는 이상을 공개적으로 설파했다. 그들은 「금고」에 보관되어 있는 재산을 공평하고 공정한 국가를 건설하는 데 사용할 것이라 약속했다. 하지만 부가 쌓이자 도적들은 약속을 져버리고 모든 재물을 독점하려 했다. 용병과 폭동, 내통… 혼돈이 꼬리에 꼬리를 물고 이어졌다. 아마 처음 목소리를 높였던 자들도 모두가 평등한 세상이라는 이상을 진심으로 믿지는 않았을 것이다.\\n\\n일이 이렇게 돌아가자 이상이라는 것에 염증을 느낀 도적들은 다시금 「무지한 것이 최고」라 여기는 혼돈의 시대로 되돌아갔다. 그들은 수원을 점거해 마을을 세우고, 공정과 정의를 비웃는다.\\n\\n「네일스크랩 타운」 사람들은 모두 거칠다. 그들은 사납게 날뛰는 오프로드 차량을 몰며 다른 사람들의 재산을 빼앗고, 황폐한 땅의 다른 도적들과 자원 쟁탈전을 벌였다. 또한 고철과 낡은 철사로 기갑과 무기를 만들어냈다. 땅이 황폐할수록 그들은 더 많은 자유를 누렸다. 그들의 자유는 마치 파멸을 앞둔 자의 광란과도 같았다. 감미로운 이상은 방사능 열풍처럼 흔적도 남기지 않고 사라졌다.\\n\\n마치 축제와도 같은 황홀감 속에서 도적들은 이해했다. 「도적 공화국」은 무언가를 만드는 것이 아니라, 무언가를 없애는 것이라는 것을" + }, + "33076": { + "Name": "탈리아의 벗겨진 전선", + "Desc": "폐자재 보관소에서 주운 전선이다. 여기저기 절연재가 떨어져 나가 있지만 아직도 현역으로 사용되고 있다. 탈리아의 도적 마을에서 폐기물이라는 것은 존재하지 않았다", + "Story": "피복이 벗겨진 이 전선은 굉장히 오래된 물건이다. 한때는 우주선 안에서 가지런히 연결되어 있었지만, 엄청난 충격을 받아 튕겨 나간 이후로 공기 중의 습기에 노출되었다.\\n\\n우주선은 통째로 미로처럼 얽힌 지하 통로로 끌려갔다. 도적들은 우주선의 강철 외장을 벗겨냈고, 그 안의 전선도 난폭하게 뜯어냈다. 그 재료들은 최초의 동맹 시장을 건설하는 데 사용되었다. 이때부터 도적들은 부를 쌓으며 이상을 설파했고… 곧 오래도록 이어진 기만이 시작되었다. 서로를 향한 속임수와 배신, 독재자와 배신자의 싸움이 지하에서 황야까지 번져 나갔다.\\n\\n이 피복이 벗겨진 전선은 굉장히 오래된 물건이다. 하지만 도적들은 이것을 사방에서 바람이 새는 대형 오프로드 차량에 연결하고는 저 먼 곳에 있는 수원지를 향해 달렸다.\\n\\n배신자의 전쟁에서 살아남은 생존자의 최우선 과제는 탈리아에 남아있는 수원지를 찾는 것이었다. 그들은 초라하고 형편없는 차량을 타고 유리 파편투성이인 사막 위를 하루에 수천 킬로미터나 달렸다. 그들의 차량 행렬은 먼지와 연기를 뿜어내며 서로를 쫓았다. 그리고 때로는 아무런 거리낌 없이 사람을 차량이나 다른 장소로 내던졌다. 생존의 압박 속에서 다른 생각할 여유 없이 그저 전진만이 그들을 혼란에서 벗어나게 해주었다.\\n\\n이 피복이 벗겨진 전선은 굉장히 오래된 물건이다. 그것은 또다시 어떤 도적에 의해 차에서 뜯겨나가 마을 간판에 설치되었다. 전선이 너무 낡았던 탓에 불빛은 자꾸만 깜빡거렸다.\\n\\n처음에 「네일스크랩 타운」을 세운 것은 「보안관」을 자칭하는 어떤 늙은 건달이었다. 그는 폭력과 악랄한 수단을 썼지만, 특유의 카리스마로 폐품창을 제대로 관리했고, 마을도 조금씩 떠들썩해졌다. 괴짜 엔지니어들은 폐자재로 가끔씩 이상한 기계를 만들어내었고, 목숨 아까운 줄 모르는 황야인들은 지하 투기장에 들락거리는 것을 오히려 즐겼다. 그러고는 심야의 바에서 휘발유 맛이 나는 포도 주스가 든 잔으로 건배하며 또 하루 살아남은 것을 축하했다.\\n\\n탈리아에 새로운 것은 없었다. 오래된 것은 시대의 변화를 따라 새로운 사명을 얻게 될 뿐이다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 격파 특수효과가 #1[i]% 증가한다. 장착한 캐릭터의 속도가 #2[i] 이상일 경우 격파 특수효과가 추가로 #3[i]% 증가한다", + "ParamList": [ + 0.1600000001490116, + 145, + 0.20000000018626451 + ] + } + } + }, + "308": { + "Name": "생명의 바커 공", + "Icon": "SpriteOutput/ItemIcon/71019.png", + "Parts": { + "33085": { + "Name": "바커 공의 탄생의 섬", + "Desc": "차원 안에 봉인된 것은 바커 공 행성에서 가장 유명한 섬, 바커섬이다. 섬 전체에는 「시스탕」이라 불리는 커다란 나무가 울창하게 자라나 있는데, 이 나무에서는 다양한 동물의 열매가 열린다", + "Story": "바커 공은 몹시 좁고 붐비는 행성으로, 열대 우림과 섬이 곳곳에 퍼져 있어서 왕성한 생명력이 돋보이는 곳이기도 하다.\\n\\n왕성한 생명력 때문에 바커 공의 적도 부근의 열대 우림 햇빛을 차단시킨다. 우림 아래 부분은 늘 해가 들지 않아서 균류와 음지에서 서식하는 식물로 가득하다. 이 행성의 지적 생명들은 모두 회귀선 근처에 모여 산다. 이곳에는 크기와 상관없이 어떤 식물이라도 자랄 수 있다. 과실은 매일 새로 열리고 언제 어디서나 딸 수 있어서 현지인들의 주식이기도 하다.\\n\\n하지만 이곳을 새로운 삶의 터전으로 삼아 옮겨온 이주민은 물론이고 원주민인 바커바커족은 시스탕 나무에서 자라는 동물 과일에 대해 거의 종교에 가까운 경외심을 품고 있다.\\n\\n시스탕 나무에서는 항상 열매가 자라난다. 나무에 맺힌 노랗고 반투명한 구체형 열매는 점차 크고 무거워지면서 가지를 늘어뜨리게 만든다. 가지가 과일의 무게를 이겨내지 못하게 되면 과일은 경쾌한 소리를 내며 땅으로 떨어지고, 과일이 터지면서 다양한 생물이 태어나게 된다. 물고기와 새, 심지어 극지에 서식하는 백곰에 이르기까지… 바커 공에 사는 동물은 모두 같은 어머니를 공유하고 있다.\\n\\n「마왕」이라 불리는 생물 역시 시스탕 열매에서 태어난다. 그것은 깨어나는 순간부터 도끼처럼 생긴 커다란 집게를 휘두르며 바커 공 생태계 전체를 향해 선전포고 한다.\\n\\n하지만 바커 공에서는 60년마다 항상 새로운 마왕이 태어난다. 바커 공 사람들은 이 절망의 윤회에 일찍이 대비해 왔다. 마왕의 각성이 다가올 때마다 그들은 일시적으로 분쟁을 멈추고는 가장 강한 전사들을 모아 다 함께 바커섬으로 향한다. 60년이 지날 때마다 이 작은 행성에서는 약간은 황당해 보이는 이런 토벌전이 계속해서 벌어져 왔다. 마왕은 바커 공에 있어 주기적으로 펼쳐지는 재앙이었고, 문명은 이 주기를 따라 리셋되었다.\\n\\n이 때문에 바커 공의 생명체들은 끊임없이 싸우고 변화하는 것처럼 보이기도 하지만, 실제로는 그저 고인 채로 썩어버린 물에 불과하다" + }, + "33086": { + "Name": "바커 공의 섬 둘레 해안", + "Desc": "바커섬의 해안선에서는 해수면이 오르내리고 파도가 오고 간다. 천 년 동안 변치 않은 이 풍경이 문명의 밀물과 썰물과도 같은 흥망성쇠를 보여준다", + "Story": "시스탕 열매가 땅에 떨어지면 곧 다양한 생물이 바커섬에서 깨어나 울음을 터뜨렸다. 그들은 해안선을 벗어나 바커 공에서 자기가 머무를 곳을 찾아 떠난다.\\n\\n처음에 다른 행성에서 온 외부인들은 약탈자 취급을 받았다. 하지만 부족 특유의 「친절한 환영」을 받은 외부인들은 조금씩 바커 공 문명이 지닌 어려움을 이해할 수 있었다. 마왕이 어떻게 과일 속에서 탄생하는 건지 궁금해진 외부인들은 원주민이 만든 나룻배를 타고 바커섬 해안으로 출발했다. 부족 전사들은 조심스럽게 얕은 곳에 숨어 석기 시대 무기를 움켜쥐고 있었다. 60년 동안의 평화를 위해 그들은 목숨을 바칠 각오가 되어 있었다.\\n\\n전쟁이 격화되면서 외부인들은 「마왕」의 정체가 무엇인지를 알게 되었다. 그것은 이미 과거에 멸종된 우주 곤충이었다. 이 곤충이 우주 한구석에서 다시 모습을 드러낼 것이라는 사실은 그 누구도 예상하지 못했다.\\n\\n처절한 토벌전이 끝나자 얼마 남지 않은 원주민들은 승전보를 전하기 위해 해안선을 떠났다. 하지만 호기심 많은 외부인들은 조용히 그곳에 남았다. 그들은 늘어진 가지를 헤치고 몸의 절반 가까이 빠지는 늪을 건너서 열대 우림 구덩이 밑 깊은 곳에 있던 컨트롤 캐빈을 발견했다. 비로소 바커 공의 비밀이 밝혀졌다. 고도로 발달한 문명에서 개발된 멸종 생물 복원용 기계장치, 그것이 바로 시스탕의 정체였다. 그것은 무수히 많은 생명 방정식을 해독하고 방출해 별의 생태계를 회복 시키고 있었던 것이었다.\\n\\n주기적으로 나타났던 마왕은 단지 방대한 생물 데이터 중 하나에 불과했다. 외부인들은 마왕의 자료를 삭제하고는 아무런 보답도 기대하지 않은 채 바커 공을 떠났다.\\n\\n바커섬 해안가에 파도 소리가 잔잔하게 울려 퍼졌다. 바커 공 원주민 연합군은 정렬했다. 그들은 마왕이 다시는 오지 않을 거라고 확신했다. 그들은 기뻐하고 건배하며 밤이 새도록 앞날을 이야기했다. 그러나 그들이 서로에게 작별을 고하고 각자의 고향으로 돌아간 직후, 두 부족은 바커 공 전역을 점령하기 위한 전쟁을 모의하기 시작했다. 마왕이 사라지자 그들의 맹약은 빈말에 불과했다. 그 조그만 행성은 두 부족의 갈등을 견뎌낼 수 없었고, 짧은 평화는 곧 산산조각이 났다.\\n\\n바커섬 해안가는 마치 아무 일도 일어나지 않았던 것처럼 고요했다. 인간과 바커바커족이 사라지자 바커 공은 마침내 평화를 되찾고, 생태계도 복원되었다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 에너지 회복효율이 #1[i]% 증가한다. 장착한 캐릭터의 속도가 #2[i] 이상일 경우 전투 진입 시 즉시 행동 게이지가 #3[i]% 증가한다", + "ParamList": [ + 0.05000000004656613, + 120, + 0.40000000037252903 + ] + } + } + }, + "309": { + "Name": "뭇별 경기장", + "Icon": "SpriteOutput/ItemIcon/71022.png", + "Parts": { + "33095": { + "Name": "타이키얀 레이저 구장", + "Desc": "차원 안에 봉인된 것은 타이키얀에서 가장 뛰어난 설비를 경기장——타이키얀 경기장이다. 경기장 안팎은 사람들의 함성으로 가득하고 오색 깃발이 날린다…. 흥미진진한 모터볼 경기 대회가 수많은 관중 앞에서 성대하게 개막한다", + "Story": "타이키얀성은 예전에 컴퍼니의 난파선 항구 행성으로, 손해사정인이 파견돼 옛 선박의 잔해에서 잔여 가치를 찾아냈다.\\n\\n손해사정인은 「타이키얀 파견」을 돌아올 수 없는 유배라고 여겼다. 이 작은 행성에 산처럼 쌓인 탄소 섬유와 스텐은 거대한 선박의 퇴역 전 윤곽을 보여주고 있다. 철근 더미에 비치는 공허의 그림자에 소환을 갈망하는 마음은 더욱 커졌다. 수년 전, 파견된 자들은 갑판 밑에서 고사양 부속품을 강탈했고, 추진 장비를 장착하고 침몰한 선실 통로에서 서로를 추적했다. 그렇게 그림자 속의 「지하 규칙」을 만들어졌다…. 그러나 갇힌 야수들의 바람은 이루어지지 않았고, 결국 누구도 돌아갈 수 없었다.\\n\\n갇힌 야수들의 「지하 규칙」은 언제나 감시 대상이었고, 그들의 영상은 컴퍼니에 전송돼 고위 임원들의 안줏거리가 되었다. 「전통프로젝트부」에서는 생각 끝에 여기서 「유흥」이 될만한 거리를 발견했다.\\n\\n계획에 따라 은하 전체에 최초로 타이키얀에 「타이키얀 모터볼」이라는 경기 항목이 생길 것이다. 여러 행성에서 개조한 기계들이 이곳에 와서 버려진 우주선을 남김없이 파헤칠 것이다. 조용한 작은 행성은 「모터볼」로 인해 뜨거운 관심을 받는 스포츠 성지로 거듭날 것이다. 「그때가 되면 황당한 원래 모습은 잊고, 순수한 스포츠 정신과 고액의 비즈니스 계약만 남을 것이다」\\n\\n추진기 보호구를 장착한 선수들, 변화무쌍한 입체 트랙, 불꽃 튀는 몸싸움… 「모터볼 대회」가 세상에 나오면 곧바로 은하의 관심이 집중될 것이다. 저물어 가는 타이키얀성은 이로써 환하게 빛을 발할 것이다.\\n\\n경기장 안, 홈팀과 원정팀의 공방전이 치열하게 펼쳐지고, 열광하는 관중들로 좌석은 꽉 차 있다. 그들은 팀 이름과 행성 이름을 외친다. 엄청난 갈채 소리가 오랫동안 끊이지 않는다. 경기장 밖도 소란스럽기는 마찬가지다. 시장에서 중계 권한, 스폰서 허가, 광고 계약 쟁탈전이 벌어진다. 지하 세계의 로또식 내기도 성행하며 희비가 교차한다…. 먹물처럼 어두었던 야경은 레이저 보드가 되어 휘황찬란한 경기장을 돋보이게 해준다.\\n\\n타이키얀 경기장이 탄생한 이후로 밤은 낮처럼 환하다. 과거의 어둠을 기억하는 이는 아무도 없다" + }, + "33096": { + "Name": "타이키얀 아크라이트 트랙", + "Desc": "타이키얀 경기장의 트랙은 일반적으로 부드러운 콘크리트를 덮은 금속 구조와 원목 바닥으로 되어있다. 경기를 한 눈에 관람할 수 있게 대량의 투명 폴리카보네이트 소재가 투입되었다", + "Story": "「전통프로젝트부」는 스타피스 엔터테인먼트의 스포츠 전문가를 소집했고, 그들에게 야만적인 모든 요소를 제거하고 타이키얀의 「지하 규칙」을 「돈 되는 경기 대회」로 개조해 달라고 요청했다.\\n\\n재료 전문가가 먼저 「모터볼」을 선보였다——직경 35센티미터에 무게는 약 30킬로그램이고, 탄소 섬유와 스텐이 혼함됐다. 이 모터볼은 끊임없이 위상의 불꽃을 쫓으며, 불규칙적인 움직임으로 경기를 예측 불가능하게 만들었다. 스포츠 장비 전문가는 이 설계에 따라 모터볼 표준 추진 보호구 개발해 첨단 스포츠와 의료 기업이 그들의 실력을 충분히 입증할 수 있게 했고, 안정적인 수입과 안전한 경기의 지속 가능성이 확보됐다.\\n\\n이로써 타이키얀 모터볼 협회가 정식으로 출범하며 최초의 ≪타이키얀 모터볼 경기 규칙≫이 제정됐다. 양 팀에 각 7명인 경기 제도도 이렇게 정해졌다.\\n\\n지식학회의 트랙 제작자는 「경주」 개념을 입체 원형 트랙에 구현했다——표준 길이 2.91킬로미터, 트랙 중심 직선 구역 넓이 5미터, 양측 곡석 구역 넓이는 2~14미터… 모터볼 선수들은 넓고 환한 트랙에서 한 방향으로 여러 바퀴 질주할 것이고, 그들의 거친 숨소리와 충돌 소리가 경기를 완성할 것이다. 실제 텟트에 따르면, 트랙에서 고속으로 달리는 과정에서 연결되지 앟은 점 형태의 광원이 선수 시각에서 선으로 변하고, 희미한 루멘들이 원형의 빛나는 트전용 트랙을 만든다. 스타피스 엔터테인먼트는 거상들을 초청해 그들에게 확실한 언론 노출을 약속했다. 이어서 리그 클럽이 생기고 가장 뛰어난 선수들이 모여 준비를 마치고 기다리는 중이다.\\n\\n스타피스 미디어는 경기 중계 방송을 독점하고 초원격 감지로 경기 실황을 세계 각지에 방송할 것이다. 정상급 선수들의 감각 체험도 전부 녹화되어 집에서 관람하는 시청자들도 속도와 충돌, 숨소리, 원형의 불빛을 직접 느낄 수 있다. 난파선 항구였던 이곳이 관광 함선으로 가득찼다. 시끌벅적한 인파가 불빛과 광고로 꽉 찬 거리에 모여 천천히 경기장 안으로 들어갔다. 그들은 좌석을 확인하고 사방을 두리번거렸다. 경기장은 온통 포스터와 깃발, 몰트 거품으로 가득하고, 빛나는 트랙이 조명을 받고 조용히 놓여 있다.\\n\\n우뢰와 같은 환호성 속에 첫 번째 경기가 시작됐다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 치명타 확률이 #1[i]% 증가한다. 장착한 캐릭터의 치명타 확률이 #2[i]% 이상일 경우, 일반 공격과 전투 스킬이 가하는 피해가 #3[i]% 증가한다", + "ParamList": [ + 0.0800000000745058, + 0.7000000006519258, + 0.20000000018626451 + ] + } + } + }, + "310": { + "Name": "부러진 용골", + "Icon": "SpriteOutput/ItemIcon/71023.png", + "Parts": { + "33105": { + "Name": "인스머스의 고래 낙하선", + "Desc": "차원 안에 봉인된 것은 탈라사의 인스머스 자치구다. 선주 「대여」가 이곳에 떨어짐으로써 인스머스의 문명이 시작됐다", + "Story": "「옛날 옛적에, 신들의 궁전이 하늘에서 떨어졌단다」\\n\\n처음엔 대기권 밖에서 까만 형체만 보이더니 이윽고 대기와 마찰해 빨간 불빛에 휩싸였고 마침내 그 모습을 드러냈다—— 웅장한 궁전, 온 인스머스의 장인들이 팔을 걷어붙이고 매달려도 만들 수 없을 것 같은 크기. 궁전은 하늘에 맺힌 이슬처럼 천천히 하강했다. 인스머스의 바다가 넓긴 하지만 하늘 높은 곳에 자리하고 있던 선궁까지 품을 수 있을진 확실하지 않았다.\\n\\n「어떤 이들은 도망갔고 어떤 이들은 해저나 육지의 촌락에 남아 신의 강림을 기다렸다」\\n\\n추락하는 선주 「대여(岱輿)」의 잔해가 탈라사 행성의 표면과 충돌했다. 이로 인해 인스머스 해역 중앙엔 커다란 물웅덩이가 생겼고 일곱 행성은 충격에서 벗어나는 데 시간을 필요로 했다. 바다 위에 고고히 솟은 폐허는 신의 유골처럼 처량하고 장엄했다. 해저에서 여생을 보내고 있던 인스머스 사람들은 경탄을 금치 못하는 한편 애석해했다. 아늑한 집이 하늘에서 떨어진 선궁에 의해 산산조각이 났기 때문에. 하지만 「신의 추락」 이후 「대여」의 잔해가 새로운 집이 되면서 그들은 안도의 한숨을 내쉬었다.\\n\\n생존 조건이 개선되면서 인스머스 사람들은 더 많은 시간과 에너지를 생각에 할애했고, 드디어 그들은 하늘에서 떨어진 웅장한 폐허에 대해 중요한 문제를 제기했다. 「저들」은 누구지? 「저들」은 어디서 온 거야?\\n\\n당시 인스머스 사람들은 금속 제련 지식은 물론이고 문자도 없었다. 그래서 상상력으로 부족한 지식을 보완하고 이야기로 모든 걸 이해했다. 그렇게 「전설」이 생겨나 입에서 입으로 전해져 「신화」가 되었고, 이는 인지를 구축해 「문명」을 탄생시켰다. 하늘의 별이 자리를 옮길 만큼의 수 세기가 흘러 탈라사는 선주 연맹의 무역 상대가 되었다. 인스머스의 물의 주민들은 처음으로 「선궁」에 발을 들여 선주를 인식했다. 이로써 그들은 「신의 추락」의 진실을 깨달았다.\\n\\n좋은 교육을 받고 자란 인스머스 사람들은 늘 자신을 「대여」의 존속이라 여겼다. 「대여가 따르는 이는 우리도 따르고, 대여가 싸우는 이는 우리도 싸운다」. 그들은 과거를 이야기할 때 지금도 이렇게 시작한다——\\n\\n「옛날 옛적에, 신들의 궁전이 하늘에서 떨어졌단다」" + }, + "33106": { + "Name": "인스머스의 해진 밧줄", + "Desc": "추락한 선주 「대여」가 타지에 정박한지 오래되었으니 이제는 밧줄을 풀고 귀항할 때일지도 모른다", + "Story": "문명의 발달로 계몽된 인스머스 사람들은 더 이상 침몰한 배의 조난자들을 추락한 신으로 여기지 않으나 그들을 향한 존경심은 여전하다. 인스머스의 시인은 이렇게 읊는다. 「바다는 인간을 삼켰지만 영혼은 영원하리」\\n\\n인스머스의 역법에 따르면 매년 조소월의 두 번째 휴일은 「신이 떨어진 날」이다——물의 주민들은 경문을 읊고 약초를 삼키며 물살을 따라 괴상한 춤을 춘다. 자신은 추락해도 인스머스는 비호해준 「신」을 기리기 위해. 현대에 이르러 「신이 떨어진 날」은 조금씩 종교적 의미를 잃었다——이제는 경문 대신 노래를 부르고 약초 대신 미식을 즐긴다. 괴상한 춤만이 문화유산으로 전승되고 있다.\\n\\n지난 수백 성력년 동안 인스머스는 독특한 문화를 외부와 공유하는데 인색하지 않았고, 신이 떨어진 날의 형식도 조금씩 바꾸고 있다.\\n\\n인스머스의 육지 도시는 젊음으로 가득하다. 신이 떨어진 날을 지내는 동안 도시는 밤새도록 악기를 연주하고 노래를 부른다. 이 축제를 즐기기 위해 다른 도시에서 온 관광객들도 속속 방문한다. 그중 선주 사람들은 불꽃처럼 뜨겁고 해일처럼 거센 열기와 사랑에 빠져 이곳을 찾는다. 물의 주민들은 사춘기가 지나면 폐가 조금씩 수축하고 목에 아가미가 생기며 손과 발, 눈이 해저에서 살기 좋게 변한다. 이를 두고 시인들은 이렇게 읊는다. 「인스머스 사람들은 떠들썩한 청춘은 뭍에서 보내고 차분하고 엄숙한 노년은 바다 밑에서 보내네」\\n\\n선주 천구상회의 추진으로 신이 떨어진 날에 치르는 의식이 하나 더 늘었다——바로 침몰한 배 「대여」에 들어가 선주 사람의 유골을 찾고 이를 별뗏목에 실어 탈라사 소속의 항성으로 쏘아 올리는 것.\\n\\n인스머스 사람들은 「대여」의 역사를 접하는 순간, 추락의 비극도 함께 알게 됐다. 선주 대여가 산산이 부서지고 모든 게 돌이킬 수 없게 됐을 때, 대여의 수장인 청죽은 결단을 내렸다. 장렬히 희생해 역병 저주의 오염을 막아내겠다고. 선주 연맹은 추락한 영웅들에게 걸맞은 위령제를 지내길 원했고 재앙에서 벗어난 인스머스 사람들은 이에 화답했다.\\n\\n신이 떨어진 날, 밤이 무르익고 열기가 식을 때쯤 되면 청년, 아이, 선주 사람들은 바닷가에 앉고 연장자는 수면 위로 올라와 경건히 수평선을 응시한다. 이어 몇 척의 별뗏목이 물살을 가르고 나와 해저에서 항성을 향해 날아오른다.\\n\\n인스머스 문자로 곱게 새긴 한 구절과 함께——「익사한 선원을 위해 밧줄을 풀어라. 울지 마라, 내가 죽으면 네 항해는 평안할 테니」" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 효과 저항이 #1[i]% 증가한다. 장착한 캐릭터의 효과 저항이 #2[i]% 이상일 경우 모든 아군의 치명타 피해가 #3[i]% 증가한다", + "ParamList": [ + 0.10000000009313226, + 0.3000000002793968, + 0.10000000009313226 + ] + } + } + }, + "311": { + "Name": "창공 전선 그라모스", + "Icon": "SpriteOutput/ItemIcon/71026.png", + "Parts": { + "33115": { + "Name": "그라모스의 철기 군단", + "Desc": "차원 구체에 봉인된 그라모스 제국의 유명한 철기 변형 칼집. 무수히 많은 백은 기갑을 실은 전함이 은하계 가장자리로 항해하며 깊은 우주에서 온 악랄한 곤충 떼를 막아 낸다", + "Story": "창공의 제국 그라모스는 수만 광년의 광대한 영토를 누렸고, 야심만만하게 멀찌감치 은하를 바라봤다. 제국이 가장 강성하던 시절, 그라모스의 지존 여황제 티타니아는 문명의 과실을 모든 미개한 변방에 전파해 제국의 자비를 전하고 이를 통해 변방을 통일하겠다고 맹세했다. 그리하여 그녀는 웅장한 함대를 창설했다.\\n\\n그러나 원정은 결국 실패했다. 하늘 저편에서 곤충의 후예들이 끝도 없이 몰려들었다. 그라모스의 군대는 반격했지만 계속 패배하고 말았다…. 식민지는 전부 흩어지고 자랑스러운 강철 함대는 잇달아 함락됐다. 겹눈과 날개가 있는 괴물들의 포위 공격으로 그라모스 백성들의 외침은 절망에 묻히고, 창공은 산산이 부서졌다.\\n\\n그런데 어느 날, 기계 갑옷을 입은 기사들이 하늘에서 내려와 세상을 뒤덮은 곤충들을 섬멸했다. 이때부터 은백의 철기군은 제국의 여러 행성 구역의 만신창이가 된 강토를 넘나들며 은하계를 전멸시킨 재앙에 맞서 싸웠다. 그들은 곤충 떼에 대항하기 위해 태어난 전사 같았다. 철기군의 가면 속 모습을 아는 사람은 아무도 없었지만, 그들의 강림은 신의 은총처럼 창공에 다시금 빛을 되찾아주었다. 여황제의 통솔 하에 그라모스의 철기 군단은 하늘을 질주하며 적들을 막아냈고, 제국은 이로써 잠시 숨을 돌릴 수 있게 됐다.\\n\\n하지만 이 철천지원수와의 끝없는 전투를 벌이며, 제국은 점점 자신의 적처럼 변해 갔다——곤충 파도가 습격한 그날처럼, 늘어나는 철기군은 온 세상을 뒤덮었다. 사람들은 여황제와 기사들을 곤충 떼를 대하듯 두려움 가득한 눈으로 바라봤다. 어쩌면 언젠가 제국은 원하는 승리를 거둘 수도 있다. 하지만 그날에도 그라모스는 인류가 안식할 수 있는 낙원일까?\\n\\n전쟁이 끊이지 않는 그라모스의 변방, 철기 군단은 최후의 방어선을 구축했다. 전함 위에서 말없는 기사들은 사명을 짊어지고 온 제국의 희망을 품은 채 별들을 집어삼키는 적에 맞섰다" + }, + "33116": { + "Name": "그라모스의 적막한 묘비", + "Desc": "번성한 「제국」 그라모스는 먼지가 됐다. 과거의 영광을 증명하는 것은 하나도 남지 않았다. 진공 속을 떠다니는 우주의 먼지와 기갑, 함선, 곤충 떼의 잔해만이 마치 몰락의 기념비처럼 참혹한 전투의 원래 모습을 지키고 있다", + "Story": "지식학회의 사학자는 그라모스 공화국이 곤충 파도의 재앙에 파괴되었다고 여긴다. 그라모스 공화국이 강적을 완전히 뛰어넘어서 파괴되었다고 보는 견해도 있다.\\n\\n곤충 떼의 무시무시한 공세 하에 전세를 뒤집기 위해, 집정 의회는 모든 것을 걸고 전쟁에 적응하기 위해 인간의 본질을 뒤흔드는—— 「전쟁을 위해 사는」 병기를 창조하기로 결정했다.\\n\\n이렇게 해서 탄생한 것이 바로 「티타니아」였다. 아무 권력도 없는 여황제는 텔레파시로 그녀와 연결된 기사들을 지휘하고 통제한다. 엮어진 꿈 속에서 티타니아와 그녀의 「제국」을 수호하는 것이 이 전사들의 유일한 존재 의미이다. 짧은 삶에서 그들은 배우고, 싸우고, 여황제의 명령을 받아 두려움 없이 적과 싸우다가 명예롭게 죽었다.\\n\\n이 거짓말이 언제 탄로났는지 아는 사람은 아무도 없었다. 그라모스 영토의 옛 인류가 일정 비율 미만으로 떨어진 그날이었을까? 과학자들이 여황제가 구금에 저항하기 시작했다는 것을 발견했던 그날이었을까? 아니면… 곤충 떼의 공세가 완전히 사라졌던 그날이었을까?\\n\\n사람들은 이 철기 군단이 존재하지 않는 「제국」을 위해 헌신했다는 것만 알고 있다. 수십 년의 혈전 끝에 기갑과 곤충 팔다리 잔해는 파편이 되어 그라모스 천체 곳곳에 흩어져 「죽음의 강」을 이뤘다. 남은 곤충 떼가 더 이상 위협이 되지 않자, 의회의 지도자들은 평화의 종을 울리고 만민에게 그들이 창공을 뒤덮은 재앙을 물리쳤으며, 공화국에는 다시 여명의 빛이 찾아올 것이라고 알렸다——그러나 찾아온 것은 밝은 낮이 아니라 또 다른 어두운 밤의 시작이었다.\\n\\n그 후, 그라모스라고 불리는 문명은 사라졌다. 사람들이 오랫동안 갈망하던 영원한 평화는 주인 없는 천체에 강림했다. 우주 먼지와 잔해는 기나긴 강이 되어 별 사이에서 고요히 흐른다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터의 속도가 #2[i]/#3[i] 이상일 경우, 장착한 캐릭터가 가하는 피해가 #4[i]%/#5[i]% 증가한다", + "ParamList": [ + 0.12000000011175871, + 135, + 160, + 0.12000000011175871, + 0.18000000016763806 + ] + } + } + }, + "312": { + "Name": "꿈의 땅 페나코니", + "Icon": "SpriteOutput/ItemIcon/71027.png", + "Parts": { + "33125": { + "Name": "페나코니의 그랜드 호텔", + "Desc": "차원 안에 봉인된 것은 페나코니의 본체——「레버리」 호텔이다. 이곳에 묵는 손님은 달콤한 꿈나라로 떠나 전능한 대도시에서 호사스러운 연회를 즐기게 된다", + "Story": "종업원들이 획일적인 미소를 띠고 허리를 숙이며 음악에 맞춰 또랑또랑한 목소리로 손님을 맞이한다. 「축제의 별에 오신 걸 환영합니다! 아름다운 꿈세계가 당신을 기다리고 있습니다」 손님들은 미소를 지으며 탄산이 가득한 음료를 받아 단숨에 전부 들이킨다.\\n\\n경치가 점점 무르익고, 비단에 의해 들어 올려진 것 같은 감각을 느낀다. 타지의 손님들은 중력을 거슬러 벽 위를 걷는다. 기이한 장난감이 살아나 거리를 노닐며 경축한다. 샘물이 일렁이며 거대한 고래가 되어 광활한 건물에서 헤엄친다. 창문을 열면 멀리 보이는 것은 깊은 우주의 별들이 아니라, 거대한 종과 극장의 끊이지 않는 메아리를 들어 올리는 도시의 흐르는 빛과 그림자다. 손님들은 그 순간 마침내 자신이 지금까지 깨지 않았고, 꿈속에서 페나코니의 본모습——시간이 영원히 머무는 꿈의 땅을 보고 있다는 것을 깨닫는다.\\n\\n모든 사람들은 「가족」의 통치 하에 페나코니의 대문이 모든 별에 열려있다는 것을 알고 있다. 초현실적인 체험을 위해, 영감을 분출시키는 자극을 위해, 고민과 상처를 달래기 위해——최고의 귀빈들이 잇달아 찾아와 고통과 안녕을 맞바꾸고 좋은 술을 마시며 꿈의 바다를 유유히 거닌다. 이곳에서 잊지 못할 휴일을 보내고 흡족해하며 떠나는 자도 있고, 가무의 축제에 빠져 이곳에 정착하는 자도 있다. 별이 가득한 호텔은 꿈을 짜는 자의 보물이고, 꿈을 만드는 자의 왕국이며, 꿈을 좇는 자의 낙원이다.\\n\\n먼지 쌓인 역사를 아는 손님은 드물다. 꿈세계를 짜는 실은 현실에서 만들어진다. 오늘날 페나코니의 벨벳 같은 매끄러운 화려함은 짠내 나는 녹, 무거운 족쇄, 박탈된 자유에서 탄생했다. 축제의 별은 과거 컴퍼니의 감옥이었다. 셀 수 없이 많은 죄수들이 이곳으로 끌려와 기억의 정원의 넘쳐흐르는 기억 거품을 건져냈다. 사람들은 몸이 납처럼 무거워질 때까지 힘든 노동을 반복했지만, 그들의 영혼은 거품처럼 가벼워졌다. 언제부터인가 협소한 감방이 현실과 단절되었다. 그러나 사람들의 의식은 꿈속에서 연결되었다. 한밤중의 종소리 속에서 그 공유된 꿈세계는 현실 같았고, 현실은 너무나 가짜 같았다.\\n\\n그러다 「파멸」이 컴퍼니의 사슬을 녹여 끊어내고, 「개척」이 변두리를 뭇별들과 연결하고, 「화합」이 초대를 받고 와서 평화의 씨앗을 뿌렸다. 자유가 마침내 땅을 뚫고 나와 싹을 틔웠고, 최초의 좋은꿈에 새로운 이름——「페나코니」가 더해졌다.\\n\\n이제 무너진 감옥은 흔적도 찾아볼 수 없다. 꿈세계 속에는 무수한 빌딩이 우뚝 솟고, 황량한 사막은 번영한 대도시로 변모해——부와 기회를 찾는 자들에게는 신대륙, 환락을 추구하는 자에게는 유토피아가 되어 주었다. 「축제의 별」의 과거는 우연히 수납장 바닥에 떨어진 사진처럼, 분명 존재하지만 아무도 관심을 갖지 않게 되었다.\\n\\n이제 꿈의 땅은 흥겨운 노랫소리로 가득하고, 과거의 잡음은 흥미로운 잡담이 되어 소리소문도 없이 코미디 공연의 막간이나 만화의 에피소드, 잡지의 구석으로 밀려났다" + }, + "33126": { + "Name": "페나코니의 꿈을 좇는 궤도", + "Desc": "페나코니의 꿈세계 도시에서는 빌딩 사이를 에워싼 복잡한 궤도가 방문객들을 태운 스페로이드를 지탱하며 눈부신 꿈을 하나로 잇는다", + "Story": "페나코니를 방문해 본 사람이라면 「좋은꿈 위에 세워졌다」는 말이 과장이 아닌 정확한 표현임에 동의할 것이다. 이 축제의 별에서 호사스러운 호텔은 빙산의 일각에 지나지 않는다. 「투숙해 잠자리에 들어」야만 페나코니에 정식으로 발을 들였다고 할 수 있다. 이때부터 12편의 꿈세계로 이루어진 꿈나라가 손님들의 눈앞에 천천히 펼쳐진다.\\n\\n이곳을 처음 방문한 손님은 광란의 무대에 적응이 안 될지도 모른다. 그러나 놀라지 말고 위를 쳐다보자. 빌딩 사이를 교차하는 금속 궤도와 그 위를 빠르게 굴러가는 「스페로이드」를 볼 수 있다. 이것은 이 꿈세계 도시에서 가장 눈에 띄는 교통수단으로, 손님들을 도시 곳곳으로 안내한다.\\n\\n중앙역에서 시작하는 얽히고설킨 스페로이드 궤도는 대도시의 혈관 같다. 「여명의 순간」 지하 통로든, 「뜨거운 모래의 순간」의 광활한 벌판이든, 「별의 순간」 눈부신 경기장이든, 알록달록한 구체가 끊임없이 구르며 사람들을 안전하고 편안하게 여러 역으로 정확하고 효율적으로 수송하며 페나코니의 꿈세계에 잠들지 않는 활력을 불어넣는다.\\n\\n꿈은 모든 것에 얇고 부드러운 질감을 드리우고, 견과류 같은 「스페로이드」는 꿈의 땅의 탈것이자 장난감으로 여겨진다. 극소수의 사람만이 「스페로이드」가 원래 「감옥」이었다는 것을 기억한다. 좋은꿈으로 향하는 탈것은 원래 죄수를 수감하는 도구였다.\\n\\n아주 오래전, 컴퍼니는 엄청난 수의 죄수들을 아스다나 은하계로 보내 재앙이 퍼지는 것을 저지하려 했다. 사람들은 이곳에서 기억 물질을 회수하고 점차 현실과 환상 사이에서 흐리멍덩해졌다. 진공의 구체 작업 캡슐은 죄수들의 잊을 수 없는 「기억」이 되었다. 견고한 곡면 내벽, 견디기 힘들게 뒹굴던 경험, 끔찍한 일상——아마 이런 고통이 너무 심해서 자유를 되찾은 사람이 황폐한 꿈세계를 일굴 때, 스페로이드도 함께 왔는지 모른다.\\n\\n하지만 이제는 과거와 다르다. 평화와 자유는 낙천적인 정신을 탄생시켰다. 떨쳐낼 수 없는 악몽을 거듭 파괴하기보다는 색을 칠하고 이를 받아들이고 포용하는 것이 낫다——그리하여 과거의 「감옥」은 오늘날의 「스페로이드」가 되었다.\\n\\n현재, 페나코니의 도시에 깔린 빠르게 움직이는 알록달록한 스페로이드와 그로 인해 전해져 오는 가벼운 진동은… 꿈세계 도시의 화려한 빛에 조용히 숨겨져 있다. 웅대한 야망과 즐거운 웃음소리가 하나로 어우러진, 시간이 영원히 머무는 꿈의 땅처럼" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 에너지 회복효율이 #1[i]% 증가한다. 장착한 캐릭터와 같은 속성의 파티 내 다른 아군 캐릭터가 주는 피해가 #2[i]% 증가한다", + "ParamList": [ + 0.05000000004656613, + 0.10000000009313226 + ] + } + } + }, + "313": { + "Name": "주인 없는 황폐한 별 츠가냐", + "Icon": "SpriteOutput/ItemIcon/71030.png", + "Parts": { + "33135": { + "Name": "츠가냐의 지모신 침상", + "Desc": "차원 안에 봉인된 것은 츠가냐-Ⅳ에서 가장 살기 좋은 지대——적막의 사막 「지모신의 침상」이다. 세 눈의 지모신은 말이 없고 소박하며, 거대하고 무거운 몸으로 말없이 츠가냐의 모든 산 자와 죽은 자를 아우른다", + "Story": "컴퍼니의 「시장개척부」 부장인 오스왈도•슈나이더를 언급할 때면, 사람들은 특히나 그가 취임 후 세운 3가지 업적에 대한 이야기를 좋아한다. 이 젊은 광신도는 겨우 2년 만에 혹한, 난치병, 죽음을 초월해 개척부가 수 앰버기원 동안 해결하지 못한 3대 난제를 해결했다. 츠가냐-Ⅳ라고 하는 삭막한 별이 그중 하나인데, 그곳의 척박한 사막과 대를 이은 씨족의 원한으로… 문제가 끝없이 일어났다.\\n\\n츠가냐-Ⅳ는 3대 은하계의 접경지대에 위치해 있는데, 오랫동안 여러 항성으로부터 항성풍의 영향을 받아 은하에서 「폭풍의 눈」으로 유명하다. 행성 표면의 생존 환경은 극도로 열악해 수많은 문명이 다른 은하계로 이주하거나 자연재해로 멸망했다. 지금은 극소수의 지혜로운 종족만 남아 있는데, 지식학회의 학자는 이들을 츠가냐 사람이라고 통칭한다.\\n\\n실제로 츠가냐 사람은 많은 씨족으로 나뉘는데, 대부분은 유목민이고, 그중 소수는 꽤 큰 규모의 집권 정치체제를 수립했다.\\n\\n그들은 공용어를 사용하는데, 공감각 비콘으로 통역한 결과, 「카티카」는 가죽을 벗기는 칼이라는 뜻이고, 츠가냐 사람 중에 가장 피를 좋아하는 야만족을 의미한다. 「에브긴」은 꿀이라는 뜻이고, 일부 고지식한 자들은 그들을 도적이라 부른다. 그들은 앰버기원을 뛰어넘는 대를 이은 원수로, 검은 옷을 입은 천외의 방문객이 하늘에서 내려오기 전까지 끝없는 황야에서 약육강식의 피비린내 나는 복수를 반복했다. 츠가냐인은 앰버의 빛 아래 잠시 하나가 되었고, 끝없는 자연의 순환은 마침내 일단락되었다.\\n\\n그 후, 우주의 거대 기업의 지도 아래 츠가냐 사람은 ≪헌장≫에 따라 츠가냐 연합 수장국을 세우고, 문명의 우주를 향해 첫발을 내디뎠다.\\n\\n아쉽게도 이 단결과 발전은 에브긴 사람과 카티카 사람에게는 해당되지 않았다. 츠가냐 사람 중 악한 마음을 품은 일부 기회주의자들은 에브긴 사람의 계략과 교활함을 두려워했고, 카티카 사람은 절대로 개화될 수 없는 식인 야수라고 폄하했다. 그들은 「보존」에 대해 잘 이해하진 못했지만, 누군가의 희생이 필요하다는 것은 알고 있었다. 그래서 부패한 자들은 매우 선진적인 의사규칙에 따라 두 씨족 사람을 끝없는 사막으로 추방했다.\\n\\n그들은 사과의 뜻에서 결의안에 「에브긴 사람은 영원히 자치권을 누린다」——는 성명을 밝혔는데, 이는 앞으로 두 씨족이 또다시 분쟁에 휘말리게 되면, 그들은 합리적이고 합법적으로 방관할 수 있게 됐다는 의미이다" + }, + "33136": { + "Name": "츠가냐의 윤회 매듭", + "Desc": "에브긴 사람이 섬세하게 다듬은 터키석 운석을 금실과 푸른 비단으로 꿴 것이다. 그들은 몸을 지켜주는 매듭이 절대로 모래에 묻히면 안 되며, 「카카바」의 밤에 죽음에서 다시 태어난 성체처럼 찬란해야 한다고 말한다", + "Story": "에브긴, 츠가냐어로 「꿀」을 의미한다——오랜 세월에 걸쳐 불려 온 이 호칭은 오늘날 우주의 기나긴 역사 속에서 완전히 사라져 버렸다.\\n\\n아니 땐 굴뚝에 연기나랴. 에브긴 사람은 천성적으로 뛰어난 외모와 화려한 눈동자를 가졌다. 거기다 타고난 사회성으로 낯선 사람의 호감을 사는 것에 무척 능했다. 그러나 이러한 천성은 사람들의 시기와 증오를 불러왔다. 질투로 가득 찬 소인배들은 끊임없이 그들을 비방하고 모독했으며, 이는 온 은하에 빠르게 퍼졌다. 군중의 입은 쇠를 녹인다는 말이 있듯, 변방 행성 출신의 에브긴인들은 고충이 있어도 말할 수 없었으며 그저 사람들의 시기와 의심을 묵묵히 감당할 수밖에 없었다.\\n\\n에브긴 사람들은 복잡한 무늬의 직물을 좋아하며, 보석——특히 츠가냐 터키석 운석——으로 만든 액세서리를 좋아한다. 이유는 아주 단순하다. 이런 보석만이 그들의 신화 속 지모신이 죽음에서 돌아온 성체에 필적하게 아름답기 때문이다.\\n\\n그들의 지모신은 「펜고-비요스」라고 불리며, 출산, 여행, 계략과 관련된 모든 것을 관장한다. 에브긴 사람의 신앙에서 그녀는 종종 태생적으로 눈이 셋 달린 왼손이 있는 것으로 묘사된다. 에브긴 사람은 보통 구두 기도로 그녀에게 경의를 표하며, 그들은 지모신이 츠가냐의 산맥처럼 침묵하고 소박해 조각상 제작과 찬가는 자신을 그녀의 비호로부터 멀어지게 만든다 믿었다.\\n\\n에브긴 사람은 지모신의 성체를 통해 세계를 인식했다. 대지와 산이 망라하는 모든 것이 지모신 성체의 일부이며, 이 성체는 매 역년의 마지막 날 죽음을 맞이한다.\\n\\n마지막 날에는 빛의 신성이 밤하늘로 날아올라 찬란한 오로라가 되고, 다음 날에 다시 탄생한다. 그래서 에브긴 사람은 새 역년의 첫날에 「카카바」라고 하는 제전을 개최하고, 「윤회의 매듭」이라고 하는 제기를 짜 모닥불에 던져 넣고 지모신의 탄생을 축하했다.\\n\\n시장개척부의 사고 보고서에 따르면, 그 끔찍한 저항은 바로 「카카바」의 밤에 일어났다고 한다. 그날 밤에는 폭풍우와 안개가 하늘의 오로라를 집어삼켰다. 원래라면 나쁜 징조로 여겼어야 할 에브긴 사람은 전에 없이 흥분했다. 그는 한 씨족 소녀에게 이유를 물었고, 이런 답을 들었다——\\n\\n「빗물은 지모신의 은혜예요. 이건 그분이 무기를 들고, 자신의 미래를 위해 싸우라고 우리를 부르시는 거예요」\\n「비는 오랫동안 우리와 함께하고, 우리를 보우할 거예요. 우리는 빗속에서 영광스럽게 죽을 거예요」" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 치명타 확률이 #3[i]% 증가한다. 적이 처치될 시 장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 최대 중첩수: #2[i]", + "ParamList": [ + 0.0400000000372529, + 10, + 0.0400000000372529 + ] + } + } + }, + "314": { + "Name": "이즈모 현세와 타카마 신국", + "Icon": "SpriteOutput/ItemIcon/71031.png", + "Parts": { + "33145": { + "Name": "이즈모의 재앙신", + "Desc": "차원 안에 봉인된 것은 단칼에 베인 과거와 미래의 이즈모다. 이즈모는 말로 표현 못 할 만큼의 생존 전쟁을 겪었으며, 호화로웠던 찬란한 시절도 겪었다…. 지금은 거친 땅을 찾아볼 수 없고, 오직 과거가 묻힌 검의 무덤만이 남아있다", + "Story": "두 행성은 서로의 비참한 운명에 얽혀있고, 검은 태양을 맴돌며 영원의 춤을 춘다.\\n\\n최초에 그중 한 행성에서 인류가 탄생했고, 그들은 고개 숙여 발밑의 땅을 「이즈모」라 부르고, 다시 고개를 들어 하늘의 세계를 「타카마가하라」라 일컬었다. 역사에 기록되지 않은 어느 날, 「팔백만 신」이 타카마가하라에서 내려왔다. 신이라는 이름의 사악한 괴물들은 하늘을 뒤엎고 바다를 불태웠으며, 대지를 무너트렸다. 사람들은 흉악한 신이 통치, 지배 또는 약탈을 위해서 침입한 게 아니라 단지 사냥을 위해 왔을 뿐이라는 것을 경악 속에 깨달았다.\\n\\n존속과 멸망의 경계에서 이즈모는 「신을 베는」 길에 오르고, 나라의 총력을 기울여 대재앙 「{RUBY_B#都牟刈神}츠무가리노카미{RUBY_E#}」를 베어, 그 짐승의 몸으로 최초의 「조도(詔刀)」를 만들어냈다. 그의 수법으로 그에게 되갚아주고, 칼몸에 담긴 진언을 읊음으로 칼을 가진 자는 타카마가하라의 신업을 손에 쥐어 악신에 맞서 세상을 구할 수 있다. 이로써 기나긴 정벌을 시작한 이즈모국은 헤아릴 수 없을 만큼의 희생으로 신명을 하나씩 몰락시켰고, 수천수만 개의 검을 부러트리며 12자루의 「호세조도(護世詔刀)」를 만들어냈다.\\n\\n잔혹한 생존 전쟁 속에서, 이즈모국은 조도의 힘을 빌려 열 앰버기원도 채 되지 않는 기간 만에 아직 개화하지 않은 어두운 세계에 불을 밝히고, 찬란한 무지개의 도시를 세웠다. 과거 머나먼 곳에 있던 타카마 신국도 손쉽게 얻을 수 있는 지척에 있었다. 하지만 역사는 여기서 갑자기 멈추었다. 두 행성의 존재는 하루아침에 연기처럼 사라지고, 그 흔적도 찾을 수 없게 되었다.\\n\\n오늘날 변방 행성인 「이즈모」의 과거는 우주의 일언반구 속에서만 찾을 수 있다. 그것의 소멸에 대해선 학자들도 의견이 분분하며, 누구도 그 수수께끼를 풀지 못했다. 이즈모의 역사는 기나긴 강처럼 이어졌어야 했지만 단칼에 끊어졌다. 갖가지 과거와 미래는 모두 텅 빈 저편으로 사라졌다. 그것은 존재한 적이 없고, 하나의 허황된 이야기에 불과했을까? 애초에 일어난 적이 없고, 원인과 결과가 뒤집힌 해변에 좌초된 것일까? 「원시 박사」의 또 다른 참담한 실험일까? 아니면 「탐식」이 은하 끝에서 돌아오는 전조일까?\\n\\n오직 그 검은 태양만이 답을 알고 있다. 하지만 그분은 침묵하며 말하지 않는다.\\n\\n발생한 모든 것은 반드시 끝을 맞이하며, 끝난 모든 것은 반드시 다시 발생한다. 우주는 그분의 그림자 아래서 영원히 회귀한다. 이즈모는 그저 줄임표의 한 각주에 지나지 않는다" + }, + "33146": { + "Name": "이즈모의 종시일도", + "Desc": "이즈모 사람은 장식용 술을 이용해 날카로운 검을 허리춤에 맨다. 그들은 세상을 걸으며 검으로 신을 사냥하고, 신의 유해로 검을 만들었다…. 이를 계속 반복하며 이즈모는 번영을 향해, 환멸을 향해, 공허를 향해 걸어갔다", + "Story": "두 행성은 서로의 비참한 운명에 얽혀있고, 아마노이와토에는 죽은 노래가 흩어져 있다.\\n\\n그 노래는 시작과 끝이 없고, 흔적조차 없다. 그 누구의 입에서 흘러나온 적도 귀에 들어간 적도 없다. 가사에는 이렇게 적혀있다:\\n\\n타카마가하라는 아득하네. 마치 이즈모처럼. 그곳은 원래 모든 것이 조화로운 극락정토\\n하늘과 땅이 변하고, 검은 태양이 일으킨 조수는 마치 밀어닥치는 신들처럼 거세구나\\n팔백만 재앙신이 나타나 무자비한 도륙을 행하다가, 도리어 무상의 권능을 빼앗길 것이라 어찌 예측했겠는가?\\n이즈모국은 7만 33자루의 검을 부러트려 열두 호세조도(護世詔刀)를 만들었다네\\n\\n첫 번째는 「{RUBY_B#真}마코토{RUBY_E#}」. 「{RUBY_B#都牟刈神}츠무가리노카미{RUBY_E#}」를 베어 만든 것으로, 인간이 법리를 살피고, 만물을 분석해 기적을 재현하도록 한다.\\n두 번째는 「{RUBY_B#天}텐{RUBY_E#}」. 「{RUBY_B#天常立尊}아메노토코타치노미코토{RUBY_E#}」를 베어 만든 것으로, 높은 하늘을 담벼락으로 만들어 재앙신들이 들어오지 못하게 막는다.\\n세 번째는 「{RUBY_B#鳴}메이{RUBY_E#}」. 「{RUBY_B#建御雷神}타케미카즈치노카미{RUBY_E#}」를 베어 만든 것으로, 번개로 하늘을 가르고, 유성처럼 빠르게 천벌을 내린다.\\n네 번째는 「{RUBY_B#嵐}아라시{RUBY_E#}」. 「{RUBY_B#志那都彦}시나츠히코{RUBY_E#}」를 베어 만든 것으로, 맹렬한 바람으로 대지를 부수며, 그치지 않는 거센 비바람을 일으킨다.\\n다섯 번째는 「{RUBY_B#霜}소우{RUBY_E#}」. 「{RUBY_B#天之冬衣}아메노후유키누{RUBY_E#}」를 베어 만든 것으로, 시간의 순서를 얼리고, 끝없이 얼어붙은 땅으로 순간을 영원히 만든다.\\n여섯 번째는 「{RUBY_B#命}이노치{RUBY_E#}」. 「{RUBY_B#石長比売}이와나가히메{RUBY_E#}」를 베어 만든 것으로, 황폐한 무덤에 꽃을 피우고, 생과 사가 끝없이 맴돈다.\\n일곱 번째는 「{RUBY_B#烈}레츠{RUBY_E#}」. 「{RUBY_B#迦具土命}카구츠치노미코토{RUBY_E#}」를 베어 만든 것으로, 화염으로 속세를 불태우고, 타오르는 불꽃은 들판을 태운다.\\n여덟 번째는 「{RUBY_B#覚}카쿠{RUBY_E#}」. 「{RUBY_B#八意思兼}야고코로오모이카네{RUBY_E#}」를 베어 만든 것으로, 수경에 비친 지난날로 앞날을 보고, 오랜 세월을 바라본다.\\n아홉 번째는 「{RUBY_B#礎}이시즈에{RUBY_E#}」. 「{RUBY_B#大山津見}오오야마츠미{RUBY_E#}」를 베어 만든 것으로, 열도를 하늘에 걸고, 땅을 가른다.\\n열 번째는 「{RUBY_B#千}센{RUBY_E#}」. 「{RUBY_B#大己貴命}오오나무치노미코토{RUBY_E#}」를 베어 만든 것으로, 무수한 사람들을 연결하고 무수한 그림자의 물결을 이룬다.\\n열한 번째는 「{RUBY_B#束}소쿠{RUBY_E#}」. 「{RUBY_B#久那止神}쿠나토노카미{RUBY_E#}」를 베어 만든 것으로, 갈림길을 묶어 악령과 악을 없앤다.\\n열두 번째는 「{RUBY_B#喰}쇼쿠{RUBY_E#}」. 「{RUBY_B#八十枉津}야소마가츠{RUBY_E#}」를 베어 만든 것으로, 세속을 부패시키고, 신귀의 분간을 어렵게 하며, 사혼(四魂)을 둘로 가른다.\\n\\n그 후 유세(幽世)는 일소하고, 치열한 싸움은 막을 내리고, 열두 자루의 차가운 빛이 모두 부서졌다.\\n남은 황혼(荒魂)의 기세가 울려 퍼지고, 검은 태양이 환하게 빛나자 마침내 세상을 짊어질 칼 두 자루가 탄생했다.\\n하나는 「{RUBY_B#始}하지마리{RUBY_E#}」, 또 하나는「{RUBY_B#終}오와리{RUBY_E#}」. 사람으로 시작해 귀(鬼)로 끝났다.\\n끊어진 소리는 그치고, 떨어진 꽃은 시든다. 패자는 무(無)로 돌아가고, 승자는… 공(空)이 된다.\\n\\n절뚝거리는 승려는 곡조가 맞지 않는 노래를 부르고, 신의 힘을 지닌 자들은 신으로 타락한다.\\n태양이 지켜보는 곳에서, 한때「이즈모」라는 이름이었던 땅에는 인간, 신, 귀(鬼)… 그 무엇도 찾아볼 수 없었다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 전투 진입 시 장착한 캐릭터와 운명의 길이 같은 동료가 최소 1명 존재할 경우, 장착한 캐릭터의 치명타 확률이 #2[i]% 증가한다", + "ParamList": [ + 0.12000000011175871, + 0.12000000011175871 + ] + } + } + }, + "315": { + "Name": "질주하는 늑대의 도람 왕조", + "Icon": "SpriteOutput/ItemIcon/71034.png", + "Parts": { + "33155": { + "Name": "도람의 궁륭 금빛 장막", + "Desc": "차원에 봉인된 것은 청구 보리의 궁륭 금빛 장막이다. 보리인은 은하에 남긴 야만스러운 평판과는 달리 비범한 생물 기술을 가졌다. 늑대들은 위대한 소부 도람 곁에 모여 하늘의 별들을 목축 삼아 그사이를 질주한다", + "Story": "여우족과 보리인의 오래된 노래는 전부 「청구의 별」의 비옥한 땅과 쾌적한 날씨에 대한 그리움으로 시작한다. 하지만 그 가사를 잘 읽어보면 그것이 「전쟁」이라는 영원한 주제의 도입부라는 걸 알 수 있다.\\n\\n여우족은 농사와 장사의 재능으로 물가에 번영한 도시를 건설했고, 늑대의 후손들은 오로라가 펼쳐진 드넓은 하늘 아래 초원에서 사냥하고 방목하며 별처럼 늘어선 취락을 만들었다. 상인들은 목자의 야만스러움을 비웃었고, 목자는 상인의 교활함을 멸시했다. 하지만 그들 모두 순환하는 자연의 냉혹한 고문인 「여우의 여름」과 「늑대의 겨울」을 마주해야 했다.\\n\\n여우신이 하사한 풍작의 여름에 두 종족은 전쟁을 멈추고 각자 원하는 바를 얻었다. 그러나 늑대신이 서리를 내리면 북쪽에서부터 설선이 퍼져 기근이 양측을 끝없이 싸우게 만들었다.\\n\\n노래에서는 청구에 태양이 서른세 번 맴돌아도 끝없는 늑대의 겨울은 물러나지 않는다고 했다. 결핍과 굶주림이 몰려오면, 배를 채우기 위해 토템 속 숭배의 대상인 동물이라도 잡아먹을 수밖에 없었다. 곳곳에 백골이 널린 결말을 예견한 한 구세주가 세상에서 가장 높은 산 정상에 올랐다——여우족의 신화에서 사람들은 그녀를 「도산」이라고 불렀고, 보리인의 노래에서는 그를 「도람」이라고 불렀다. 그 구세주가 불리는 이름과 상관없이, 그는 장생의 주인에게 사람들이 살아갈 수 있는 물자를 달라고 소원을 빌었다. 그러자 산 정상이 갈라지고, 그 틈에서 천상의 음료처럼 달콤한 「적천」이 솟아났다.\\n\\n적천의 물을 마신 사람들은 섭취한 고기로부터 힘과 민첩함, 강인함을 얻었다. 그들의 핏속에는 짐승의 야만스러움이 들끓기 시작했고, 짐승의 외형이 갈수록 두드러졌다——그렇게 세계는 변했고, 더는 예전 같지 않았다.\\n\\n적천을 매개로 새로 태어난 견인족의 모든 물자는 그 속에서 만들어졌다. 밭에는 농작물이 아닌 시육을 심었고, 섬유 직물이 아닌 포의로 몸을 가렸다. 청구 문명이 극도로 두려워하던 눈이 쌓인 추위 역시 더는 두렵지 않았다. 견인족은 극지에서 얇은 생물막을 배양해 따스한 장막을 만들었다. 그때부터 늑대의 겨울은 더 이상 고되지 않았다.\\n\\n이후 청구의 격변은 모든 단명종이 장수종으로 바뀔 때 겪은 것처럼——인구가 폭증해 생태계가 붕괴되고 내전이 일어났으며… 견인족이 장생의 주인에게 아무리 기도해도 다시는 응답을 듣지 못했다. 그리고 그들은 마침내 깨달았다. 장생의 주인께서는 이미 충분히 하사하셨으니, 더 나은 삶을 살고 싶으면 스스로 쟁취해야 한다는 것을 말이다.\\n\\n위대한 소부 도람의 곁에 모인 견인족들은 장생의 주인이 군림하고 있는 하늘을 바라보았다. 별들이 반짝이는 것이 마치 질주를 기다리는 초원 같았다. 그들은 그 별들의 문명에 「늑대의 겨울」을 가져다줄 것이다.\\n\\n오랜 시간이 지난 후 숙적인 선주 사람은 그들을 「보리인」이라고 불렀다. 보리는 청구어로 「늑대」라는 뜻이다" + }, + "33156": { + "Name": "도람의 기계짐승 고삐", + "Desc": "고삐이자 족쇄이고 가죽 채찍이다. 키가 전투 짐승의 다리보다 큰 젊은 보리인이 처음으로 배우는 것은, 고삐를 꽉 쥐지 않으면 자신이 혹사당하는 가축이 되거나 심지어는 사료가 될 수도 있다는 것이다", + "Story": "보리인의 언어에서 고삐의 또 다른 명칭은 「아사•치타」로, 「살아 있는 책」이라는 뜻이다.\\n\\n사냥단의 주술가는 두 개의 달이 만나고, 밤하늘의 빛이 가장 밝을 때 도람의 자손들에게 고삐를 성인식 선물로 준다. 이 텅 빈 고삐는 평생의 전투 경험을 기록하는 책이 된다.\\n\\n성인식이 끝난 뒤 보리인은 곧바로 무기 목장에 가서 유전자 주술의 선별과 개량을 거친 「기계짐승」 중 자신이 전투에서 타게 될 첫 번째 짐승을 선택하고 훈련시켜야 한다. 피정복자를 사료로 삼는 기계짐승은 놀라운 민첩함과 잔혹함을 가지고 있지만, 미래의 주인에 비하면 순한 양에 지나지 않는다. 달빛이 몸속에서 솟구치는 야만스러운 피를 불러일으키면, 젊은 보리인들은 기계짐승과 서로 쫓고 싸운다. 어떤 이는 짐승에게 물려 죽는데 그것은 약한 자의 말로이고, 또 어떤 이는 동포를 죽이는데 그것은 맹수의 분배 법칙이다…. 젊은 보리인은 마음에 드는 탈것을 골라 쓰러뜨리고, 신경을 찌르는 가시 채찍이 달린 고삐를 그 목에 건다. 그리고 그 가축은 미래 주인의 텔레파시에 겁을 먹고, 채찍을 몇백 번은 맞은 것처럼 온순해진다. 녀석이 먼저 주인을 태울 때 어엿한 보리인 「소르야」(무사, 기수)가 탄생한다.\\n\\n그렇게 보리인들의 고삐는 전투 경험의 서술자가 되고 고삐에는 긁힌 자국과 매듭, 장식물이 늘어나기 시작한다.\\n\\n충분한 훈련을 거친 소르야는 「욘다」(통솔 백부장)의 인솔 아래 해파리 같은 포의 갑옷을 입고 우주를 누빌 수 있는 수함에 올라 여러 세계를 향해 출항하며, 도람과 장생의 주인의 이름으로 뭇별을 목장으로 만들겠다고 맹세한다. 고삐의 옅은 자국은 죽인 적의 수를 뜻하고, 매듭은 겪었던 큰 전투를 뜻하며, 줄에 달린 장식은 약탈 시에 얻은 인간의 치아나 지능 기계의 실리콘 칩 같은 전리품이다…. 그것들은 정복당한 자의 분노와 슬픔이자 보리인 개체의 힘을 보여주는 훈장이기도 하다.\\n\\n가랑이 아래 탈것이 전쟁에서 죽거나 보리인이 벌을 내리고 싶을 때는 고삐를 풀어 다른 생물에 걸기도 한다.\\n\\n보통 그 대상은 혈통 선종 계획에서 종족 밖으로 배척된 노예 계층의 여우족이다. 그들은 약소하고 교활하며, 노동과 계산 따위의 일만 할 수 있다. 간혹 여우족 중에 전투에 능한 개체가 있으면 늑대 머리의 주인은 그들에게 먼저 고삐를 묶어 전쟁 노예로서 선두에서 돌격하게 한다.\\n\\n노예가 죽거나 다치고 무기가 부러지면, 고삐 끝에 묶인 날카로운 가시를 채찍으로 쓸 수 있다. 그러다 채찍이 끊어지고 이와 발톱마저 부서져 전장에서 목숨을 잃는다면, 그 고삐는 보리인의 잔존하는 비석이자 기념품이 될 것이다……\\n\\n「숲에서는 사냥꾼과 사냥감의 위치가 늘 바뀐다」는 옛 속담이 있다. 우주라는 이 어두운 숲에서 선주 사람과 수천 년을 싸운 후 늑대족의 채찍은 셀 수도 없이 끊어졌다. 결국 수많은 사냥단의 연결고리는 「수렵」의 화살촉에 의해 끊어졌고, 보리인 역시 내란과 쇠퇴의 구렁텅이에 빠져 과거의 영광을 잃었다" + } + }, + "RequireNum": { + "2": { + "Desc": "아군 캐릭터가 추가 공격을 발동하면 장착한 캐릭터는 [공훈]을 1스택 획득한다, 최대 중첩수: #1[i]스택. [공훈] 스택당 장착한 캐릭터의 추가 공격으로 가하는 피해가 #2[i]% 증가하고, #1[i]스택까지 중첩 시 장착한 캐릭터의 치명타 피해가 추가로 #3[i]% 증가한다", + "ParamList": [ + 5, + 0.05000000004656613, + 0.25000000023283064 + ] + } + } + }, + "316": { + "Name": "겁화 연등의 연마궁", + "Icon": "SpriteOutput/ItemIcon/71035.png", + "Parts": { + "33165": { + "Name": "연마궁의 연등 심지", + "Desc": "차원에 봉인된 것은 주명 선주 공조사의 소재지 염륜연마궁으로, 주명 선주가 세양의 선조인 「수황」을 중심으로 지은 천체급 구형 구조다. 천재 장인들은 그 속에서 에너지를 흡수해 기발한 아이디어를 형상화한다", + "Story": "고대 국가의 출항 이래 주명 선주는 팔천여 년 동안 별바다를 항행했는데, 시공을 넘어 선체의 변천을 관찰하면 그 과정이 무척 낭만적임을 알 수 있다. 거대한 배는 푸른색의 항성을 삼켜 낡은 껍질을 층층이 벗기고 꽃망울을 부풀려서 마침내 연꽃을 피워냈다.\\n\\n우주에서 보면 주명 선주는 금실로 짠 연등과도 같다. 빛나는 거대한 「연꽃잎」이 「등 기둥」을 중심으로 점차 퍼져 나가 옅은 푸른색 빛에 물들어 그야말로 「배지만 배 같지 않고 연꽃초의 불빛 같은」 광경을 선사한다. 중심에 있는 「등잔」 부분은 천체급의 구형 껍질 구조인데, 푸른 태양 「심지」를 감싼 채 쉬지 않고 돌고 있다. 이 거대한 구조는 주명의 공조 요지——「염륜연마궁」의 소재지다.\\n\\n과거 주명의 대가 양적은 이름이 실전된 어느 고대 황제로부터 무기 주조 틀을 받아 출항의 증표로 삼았다. 그 후 수천 년 동안 장생의 격변으로 귀항은 기약이 없게 됐지만, 장인의 전통은 결코 끊어지지 않았다. 주명 선주에서 장인의 공예는 곧 최고의 학문으로 꼽힌다. 역대 장군은 모두 공조사 백야라는 공적이 있었다. 밖에서는 천군을 지휘하고, 안에서는 망치질에 전념하니 더더욱 사람들의 존경을 받았다. 선주 수렵에 필요한 병기의 6~7할은 전부 주명 공조사에서 단조됐다. 그렇게 염륜연마궁은 은하의 기술 성지가 되었다.\\n\\n단조는 문명의 척도이고, 불은 문명의 기점이다. 대부분의 초기 문명에서 가장 큰 골칫거리는 에너지원인데, 사람들은 문명을 더 높은 곳으로 보낼 에너지원을 찾기 위해 고심했다. 주명 선주는 그 벽을 뛰어넘었는데, 장인들은 세양의 선조 「수황」을 가두어서 아무리 써도 고갈되지 않는 에너지를 얻었다. 염륜연마궁은 널리 뻗친 가지 구조의 레일로 항성을 최대한도로 둘러쌌고, 무성한 가지와 잎에는 수신과 전환 장치를 널리 분포해 태초의 불꽃 「수황」이 온갖 기술 창조에 에너지를 제공하게끔 했다.\\n\\n수많은 장인이 「가짜 태양」을 삼킨 주명 공조사를 최고의 전당으로 여겼고, 신기를 단조하고자 하는 학도들이 문전성시를 이루었다. 쇠와 나무는 다양한 기물로 가공되었고, 염륜연마궁에서는 장인들을 위해 그들이 필요한 모든 것을 준비했다——\\n\\n여러 세계의 학도들이 연마궁에 모여 동문으로서 기술을 겨루었고, 보물을 찾아온 이방인도 장인에게 신병이기를 단조해달라며 큰돈을 주었다——하지만 오랜 세월 동안 수많은 수습생 중 극소수만이 「장인 중의 장인」 회염 장군의 가르침을 받을 수 있었는데, 그는 말과 행동으로 후세에 공예와 무예를 전수했다. 그 문하의 수습생은 거장이 되어 「백야」라는 칭호로 청사에 이름을 남기거나 연맹에서 이름을 날리는 운기군이 되었는데, 그중에서도 「염륜팔엽」이 가장 유명했다.\\n\\n「용광로에서 천 개의 별을 제련하고, 직접 영혼을 불어넣네. 별빛으로 군사력을 드높이고, 시퍼런 날로 평온을 지키자」 주명의 장인은 공구를 받은 그날부터 반드시 이를 마음에 새겨야 한다——그들이 밤낮으로 두드리는 것은 한낱 쇠붙이가 아니라, 수렵의 화살촉이라는 것을 말이다" + }, + "33166": { + "Name": "연마궁의 염륜 비단", + "Desc": "항성처럼 위대한 세양의 시조가 끝없는 꿈속에 잠겼다. 그의 단잠 속에서 주변의 원자와 분자가 충돌해, 화염으로 연마된 껍데기로부터 끊임없이 흩어져 나와 마침내 형형색색의 비단 띠의 형상으로 나타난다", + "Story": "깊은 우주를 항해하는 주명 선주는 늘 특이한 빛의 띠를 동반한다. 이는 초고온 핵융합 반응에 의한 에너지 산물이자 「수황」이 여전히 타오르고 있고 죽지 않았다는 증거이기도 하다.\\n\\n「수황」이 내뱉은 숨을 따라 흩어진 오로라 입자 가장 바깥쪽에서 신생 세양은 속도를 늦추고 배회한다. 주명 시왕사의 엽화 판관은 아무 감정에도 물들지 않은 어리숙한 세양을 잡아서 따뜻한 꿈세계를 이용해 화염의 미성숙한 마음을 훈련시킨다. 그리고 판관들은 무해한 세양을 공조사의 세화 감옥에 보낸다. 후자는 세양과 각종 도구를 조합해 주명의 촛대, 탈것, 어디서든 볼 수 있는 다양한 풍경으로 만든다…. 하지만 진실을 모르는 화외지민이 보기에 말하고 걸을 수 있는 그 기물들은 「동천 곳곳에 정기가 존재하고, 도구는 시간이 지나면 요물이 된다」는 소문을 증명하는 것 같았다……\\n\\n특이한 빛의 띠를 따라 계속 깊이 들어가 연마궁을 지나면, 가짜 태양으로 이루어진 초중력장에 도착한다. 보통 사람은 그 정도 항성 밀도를 견디지 못한다. 그것은 안쪽으로 무너지는 일종의 교란으로, 이러한 구역에서 태연히 다닐 수 있는 건 「리보」의 장인뿐이다.\\n\\n작열하는 항성 폭발과 비정상적인 천체 현상은 호기심으로 가짜 태양에 접근하는 자들을 막는다. 이 공간에서는 우주의 모든 기본적인 물리 법칙이 더욱 강렬해진다. 이런 중력 이상의 공간에서 살아남을 수 있는 건 키가 작고 튼튼한 리보인뿐이다. 뛰어난 장인으로 태어난 그들은 연마궁과 가짜 태양을 오가며, 시간 감각이 일반인과는 다르다. 그들은 약속대로 기술을 연마해 함선 대포를 만들고, 깊은 잠에 빠진 가짜 태양을 감시한다. 주명 선주는 리보를 충실한 동맹으로 여기며, 그들의 강인함과 굳건함을 존중하고 그들의 사심 없는 공헌에 감사한다.\\n\\n특이한 빛의 띠를 따라 기묘하게 뒤틀린 중력장을 뚫고, 가짜 태양 깊은 곳까지 들어갈 수 있는 사람은 없다. 그곳은 감정이 있는 존재가 발을 들여서는 안 되는 구역이며, 「수황」의 무궁무진한 꿈세계다. 주명 선주는 세양 시조의 무한한 위력을 깨울 수 있는 모든 감정적 파동을 경계한다.\\n\\n종종 경고를 무시하고 멀리서 가짜 태양을 주시하는 사람들이 있는데, 자칫 잘못하면 자기도 모르게 정신 중력장에 빠지고 조수처럼 끊임없이 쏟아지는 환상에 정신을 빼앗길 수도 있다. 온화한 허상과는 달리 그 「푸른 태양」을 응시하고 있으면 태고부터 억눌려 온 분노만 느껴질 뿐이다. 「세양은 영웅들에게 천지를 불사를 힘을 줄 것이다. 그리고 모든 사명을 마친 후, 영웅들은 세양에게 단련된 육체로 보답해야 한다……」 오래된 맹세가 어떻게 이루어질지는 아무도 모른다. 그리고 끝없는 꿈세계에서 「수황」이 언제 깨어날지 역시 아무도 모른다.\\n\\n연꽃등의 심지 속에서 지금까지 단잠에 빠져 있는 가짜 태양이 무겁게 탄식한다. 선주는 천천히 하늘을 가로지르며 특이한 색의 궤적만을 남긴다. 주명 선주는 계속해서 이와 같이 불과의 맹세를 지키고 불과 동행하며, 불과 운명을 공유할 것이다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 속도가 #1[i]% 증가한다. 장착한 캐릭터가 화염 속성 약점을 보유한 적을 명중하면 격파 특수효과가 #2[i]% 증가한다, 지속 시간: #3[i]턴", + "ParamList": [ + 0.060000000055879354, + 0.40000000037252903, + 1 + ] + } + } + }, + "317": { + "Name": "바다에 잠긴 루샤카", + "Icon": "SpriteOutput/ItemIcon/71036.png", + "Parts": { + "33175": { + "Name": "루샤카의 물에 잠긴 도시", + "Desc": "차원에 봉인된 것은 해양 세계 루샤카의 수몰된 도시다. 해수면이 끊임없이 상승해 도시까지 잠겼으며 거대한 「선방」만이 선원들을 태우고 바다를 가르며 다음 항해 방향을 찾고 있다", + "Story": "액체 상태의 물이 부족한 행성들 사이에서 루샤카의 푸른빛은 프레즈스미르 항성계에서 특히나 눈에 띈다. 그녀의 바닷물은 해양의 어머니의 요람 같고, 만물은 여기서 태어나고 성장해 그녀에게 얽매이고 틀어잡혀 옥죄인다…. 도망칠 곳이 없어질 때까지.\\n\\n아침이 밝아오는 순간, 「선방」의 일등항해사가 선장실의 문을 가볍게 두드린다. 선실에는 구시대 37구역의 군도 생태가 붙어 있는데, 이는 육지를 향한 사람들의 그리움이다——천외의 운석이 어떤 고집스러운 소망을 좇는 듯, 해양을 루샤카 행성 전체에 뒤덮고 있다. 끝없는 파도가 고향 전체를 깊은 물속에 묻었고, 남은 건 쪽빛뿐이다…. 일등항해사가 단잠을 자고 있던 선장을 깨웠다. 바다는 황금빛으로 반짝이고 「선방」의 새로운 항해는 또다시 시작됐다.\\n\\n광장 중앙에 다다른 탐사선이 한때 쇼핑몰이었던 수중의 대형 건축물을 향해 닻을 쏘았다. 닻이 창틀에 단단히 걸리자 다이빙 벨을 내리기도 전에 놀란 물고기 떼가 쇼핑몰의 진열대에서 우수수 튀어나왔다.\\n\\n오후, 학자들은 다이빙 벨에서 나왔다. 그들은 조금도 멈추지 않고 서점을 헤엄쳐 지나갔다. 이미 오래전에 잉크가 번져 알아볼 수 없었기 때문이다. 그들의 목표는 셸락이나 플라스틱 매체로, 조금만 닦아내면 옛날 정보를 얻을 수 있다. 이러한 심해 고고학은 정말 만만치 않다. 청소부는 날카로운 이빨을 가진 포식자들이 접근하지 못하도록 쇠창을 휘두르며 보초를 섰다. 사람들은 가끔 심해의 물의 정령과 마주쳤지만 각자의 탐색에 집중하느라 서로를 신경 쓸 틈은 없었다——청소부는 찌그러진 깡통보단 씨앗, 조미료, 술을 더 찾고 싶었다.\\n\\n산소가 떨어져 감에 따라 철두철미한 수중 조사가 끝나갔다. 물속을 돌아보니 커다란 고등어가 도시 한가운데에 와있었다. 물의 정령은 깜짝 놀라 즉시 숨을 죽이고 벽에 바싹 붙어 밀실에 숨었다. 그들은 수중의 강철숲을 이용하는 법을 훤히 꿰고 있었다.\\n\\n저녁 무렵, 비가 그치자 곳곳의 선방이 고동을 울려 주변의 해적새를 쫓아냈다. 그들은 오늘의 수확을 갑판 위에 올려놓고 선방 사람들이 각자 필요한 것을 가져가게 했다. 원류가 넘실대는 밤, 빛의 탑이 영롱하게 빛났다. 루비안인은 불타는 장대를 둘러싸고 춤을 추며, 다가올 내일을 잊고 뱃노래로 오늘의 영광을 노래하며, 바다 노래로 과거의 아름다움을 한탄했다. 선장은 항해 나침반을 꺼내 바늘이 가리키는 방향을 바라봤다. 그는 그곳이 낯선 곳이 되어가는 고향이며, 그곳엔 아직 가족의 귀환을 기다리는 사람들이 있단 걸 알고 있다.\\n\\n한밤중, 거대한 배가 모든 불을 끄고 조용히 바다 위에 떠 있다. 그들은 진정한 평화를 얻었을까? 아니면 웃는 얼굴로 바다에 녹아버린 눈물을 숨기고 있을까?\\n\\n오늘 밤이 지나도 이 검푸른 빛은 변하지 않을 것이다" + }, + "33176": { + "Name": "루샤카의 쌍생 항로", + "Desc": "끝없이 펼쳐진 수평선 위에선 아주 작은 흔적만으로도 이 정적을 깨뜨릴 수 있다. 항로에는 선원의 역사가 담겨 있고 물의 정령은 수로에서 희망을 찾고 있다", + "Story": "물의 정령에게 수면 위의 세계는 낯설고 위험한 곳이었지만 그것도 이젠 오래된 인상에 불과하다. 수면 위에 있던 것들은 이미 다 검푸른 빛 속에 잠긴 지 오래니까.\\n\\n루샤카 육지 생물과 물의 정령은 친밀하면서도 낯선 관계다. 그들은 심해 조사 중에 물의 정령을 만나는 것을 행운으로 여기고, 그들을 아름답고 신비로운 생령으로 묘사한다. 물의 정령은 짙은 남색의 날개막과 검은 수정 같은 두 눈을 가지고 있으며, 특수한 성대로 자연의 천뢰 같은 소리를 낸다. 심해 조사원에게 구전되는 이야기에 따르면 이러한 생령은 늘 해룡 곁에 붙어있으며, 심해의 은백색 도시에 살고 있다고 한다——진실과 전설 사이에 있는 물의 정령은 여유롭고 생기 있는 모습을 보여준다.\\n\\n그러나 바다에 잠긴 과거에서 그녀들을 묘사하는 단어는 「에다르인, 심해의 흉수」다.\\n\\n과거, 에다르인과 육지 생물은 치열한 생존 경쟁을 벌였고 붉은 바다의 화려함은 누구도 무시할 수 없었다. 처음엔 에다르인의 아이가 어획물로 여겨졌고 다음엔 육지 생물이 에다르인의 노랫소리에 이끌려 바다로 들어가 익사했다. 그들은 넓은 수역에서 서로 사냥꾼과 사냥감이 되어 날카로운 칼과 닻으로 충돌했고, 바다짐승과 화포로 격돌했다. 수면 위아래의 전쟁은 암초가 불길에 부서질 때까지 오랫동안 이어졌다. 한참의 시간이 지난 후에 선방의 학자들은 만계의 암이 일찍이 루샤카의 미래를 약속했음을 알게 되었다——하나 그 약속은 고향을 잃은 물의 정령이 바란 것으로, 그녀는 악몽의 원흉에게 무언의 저주를 내렸다.\\n\\n먼지 쌓인 과거는 강철과 콘크리트로 이뤄진 심해 산호초 군도에 묻혀 연기처럼 덧없이 아무도 알지 못한다.\\n\\n그 후, 도시와 육지, 분쟁과 피, 역사와 문명이 바다에 잠겼다. 심해의 수압을 피하고자 물의 정령들은 위쪽 수역으로 올라가 육지 생물의 도시였던 곳으로 이주해 웃음과 눈물 어린 기억을 엿봤다…. 그녀들은 바다 위의 목소리가 얼마 남지 않았단 걸 알고 있다. 쪽빛은 이미 서로의 것이 되었지만, 이 정적은 너무나도 버거웠다.\\n\\n선방의 가수가 항로 사이로 물빛의 날개를 힐끗 보곤 아름다운 바다 노래를 부르기 시작했다——\\n\\n「그녀들은 항적을 따라 빛의 탑과 폭풍우를 쫓네. 오직 순수한 파랑을 되찾기 위해」" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 에너지 회복효율이 #1[i]% 증가한다. 장착한 캐릭터가 파티 편성의 첫 번째 캐릭터가 아닐 경우, 파티 편성의 첫 번째 캐릭터의 공격력이 #2[i]% 증가한다", + "ParamList": [ + 0.05000000004656613, + 0.12000000011175871 + ] + } + } + }, + "318": { + "Name": "기묘한 나나 낙원", + "Icon": "SpriteOutput/ItemIcon/71037.png", + "Parts": { + "33185": { + "Name": "나나 낙원의 중앙 광장", + "Desc": "차원 구체에 봉인되어 있는 건 어느 과학 연구 단체의 실험실 중 하나로, 밈 오염으로 인해 정보의 진실과 거짓이 이미 완전히 섞여버려 구분하기가 어렵다. 현재는 인지에 의해 「나나 낙원」으로 재구성되었다", + "Story": "「깊은 저 밀림 속 대낙원」\\n「길쭉길쭉 바나나밥!」\\n「길쭉한 얼굴에 노란 피부」\\n「길쭉길쭉 바나나밥!」\\n\\n「둥둥」 소리가 두 번 반 울리더니, 바나나들이 깊은 잠에서 깨어났다. 그들은 바나나 나무에서 벗어나 새로운 하루를 시작하려고 한다! 어떤 바나나는 깨어나자마자 힘이 넘쳐 두리안을 파이로 굽고, 숲속에서 즐겁게 뛰어논다. 어떤 바나나는 비교적 차분하고, 코코넛을 발라 향기로 자신을 꽃단장한다. 원숭이는 생기 넘치는 풍경을 만족스럽게 바라보고는 바나나들을 향해 달콤하게 외쳤다——\\n\\n「바나나들, 준비됐나요?」\\n「네, 원(猿)장님!」\\n「잘 안 들려요~」\\n「네, 원(猿)장님!」\\n\\n「둥둥」 소리가 세 번 반 울리더니, 매일 열리는 「커뮤니나나 클럽」 시간이 돌아왔다. 바나나들은 긴장하기 시작했다. 어떤 바나나는 크게 소리를 지르고, 어떤 바나나는 몰래 눈물을 흘리고, 어떤 바나나는 몹시 절망했다…. 원숭이들은 건강한 바나나에게 하나씩 질문했다. 큰 바나나 잎에 있는 문제는 언제나 변하지 않았다——「바나나 이외의 시간을 기억하는가?」\\n\\n간단한 질문은 언제나 씁쓸한 대답으로 돌아온다. 바나나들은 슬픈 감정이 대체 어디서 오는지 이해할 수 없었다. 그건 마치 바나나가 외부의 압력을 받으면 과육이 산화로 인해 검게 변하는 것처럼 당연했다.\\n\\n「만약 여기저기 탐험하는 게 네 소원이라면」\\n「바나나 나무를 두드려서 원장님에게 길을 안내해달라고 해 봐」\\n\\n「둥둥」 소리가 일곱 번 반 울렸고, 「동기부여나나 게임」이 시작할 시간이 됐다. 이 밀림 낙원에서 모든 바나나는 충분한 노력만 기울이면 영원히 바나나가 아닐 것이라는 약속을 받았었다. 바나나들은 모두 꿈을 품고 위대한 원숭이가 되기 위해 끊임없이 노력하고 있다…. 숲이 양쪽으로 갈라지고, 원장님이 중간에서 걸어 나와 바나나들에게 부드럽고 겸손하게 예를 표하자, 바나나들도 예를 표했다——원장님은 새로운 게임을 가져와 새로운 이야기로 「바나나꾸었다」\\n\\n「둥둥」 소리가 열한 번 반 울리고, 원숭이는 바나나들을 나무로 데려갔다. 바나나들은 흔들거리며 꿈나라로 들어갔다. 푸른 햇살이 반짝이며, 쿨쿨거리는 소리가 낙원을 가득 채웠다" + }, + "33186": { + "Name": "나나 낙원의 밈 케이블", + "Desc": "실험실 곳곳에서 볼 수 있는 광케이블. 사람들에게 알릴 수 없는 비밀을 달성하기 위한 실험 데이터를 수집하는 데 사용된다. 「바나나들」에게 있어, 세계를 인지하는 방법이 바로 이 안에 숨겨져 있다", + "Story": "바-77 연구소의 폐허는 천휘자리-ψ에 위치해 있으며, 어느 밀림 세계의 지하에 숨겨져 있다. 한때 급진적인 레인저가 이곳을 파괴했고, 현재 남아 있는 케이블은 여전히 의미불명의 신호를 보내고 있다.\\n\\n「그 빌어먹을 연구소는 숲속의 나뭇잎처럼 찾기 힘드네」——겹겹이 쌓인 나무껍질 아래, 나무 뼈대가 입구의 형태로 이루어져 있었고, 레인저들은 기나긴 나무 구멍을 통과해 겨우 목적지를 찾았다.\\n\\n이 연구소는 「실험실」이라기보다 일종의 「미술관」 같았다. 복잡한 케이블이 공중에 얽혀 있었고, 설계자의 의도대로 이색적인 빛을 발하고 있다. 관객들은 한 명도 빠짐없이 이마를 짚으며 어지러움을 느꼈고, 이내 기이한 환각이 눈앞에 펼쳐진다——샛노란 극한의 공간, 사라져 가는 초상화들, 커튼 뒤에 숨어있는 괴물의 그림자……\\n\\n레인저들은 이런 수단에 익숙했다. 이 시설에 계속 머무르면 나중엔 헛소리를 하거나 이리저리 날뛰는 증상들이 나타날 것이다…. 경쾌한 총소리가 부딪혔고, 젊은 레인저가 통증과 어지러움을 이용해 생각의 미궁에서 벗어났다.\\n\\n또렷해진 시선 속에서, 레인저는 가장 깊은 곳을 향해 나아갔다. 바-77 연구소는 무너진 조각상과 훼손된 벽화, 화려한 색감의 장식… 그리고 여기저기 파손된 용기들이 가득했고, 이로 인해 지형이 감옥처럼 느껴졌다. 레인저는 가장 깊은 곳에서 하나의 보고서를 찾아냈고, 건물이 무너지기 전 수없이 진행된 「인지 실험」을 상상했다…. 어느 무의식의 순간, 갑자기 뒤를 돌아본 일행은 자신들이 이미 숲속 낙원에 있다는 것을 깨달았다. 나뭇잎은 그들을 향해 끊임없이 손을 흔들었고, 나무 위가 얼마나 아름다웠는지 기억하는지를 물었다.\\n\\n「난 바나나잖아? 근데 우린 왜 이곳에 온 거지?」 젊은 레인저는 나무로 돌아가려고 했다, 더 이상 「초조함」을 느끼지 않기 위해.\\n\\n그러나 눈이 먼 레인저는 문제를 깨닫고, 모든 것을 돌이킬 수 없는 상황이 되기 전에 젊은 레인저를 데리고 억지로 그곳에서 벗어났다.\\n\\n「나나——저 원숭이들, 가서 바나나나 먹으라고 하지!」" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 치명타 피해가 #1[i]% 증가한다. 장착한 캐릭터가 소환한 목표가 있을 시, 치명타 피해가 추가로 #2[i]% 증가한다", + "ParamList": [ + 0.1600000001490116, + 0.3200000002980232 + ] + } + } + }, + "319": { + "Name": "고요한 습골지", + "Icon": "SpriteOutput/ItemIcon/71042.png", + "Parts": { + "33195": { + "Name": "아이도니아의 무명 비석", + "Desc": "차원 구체에 봉인된 것은 앰포리어스의 아이도니아다. {RUBY_B#죽음의 티탄}타나토스{RUBY_E#}를 믿는 백성들은 설원에 거대한 비석을 세우고 그들을 위해 죽음의 축복을 가져다주는 성녀를 기린다", + "Story": "아이도니아——눈발이 날리는 죽음의 나라. 한때 눈보라 속에 우뚝 서 있었고, 눈보라 속에서 침묵하기도 했다.\\n\\n오랫동안 이어진 황금기 동안 대부분 사람은 따뜻한 땅에서 장수의 기쁨을 누렸고, 극소수만이 정체되는 밤낮의 교체에 염증을 느끼고 생명의 귀로를 찾기로 했다. 「생명은 왜 태어나고, 어디로 돌아가야 하는가?」 고행자들의 수장 엘레우시스는 생사에 대한 질문을 읊조리며 달콤하면서도 차가운 긴 꿈을 찾아 고행자들과 함께 북쪽으로 나아갔다. 로브를 걸친 고행자들은 적막한 북쪽 변경의 황야에 정착해 장엄한 도시 국가를 세웠다. 일 년 내내 눈보라가 휘몰아치는 그곳을 사람들은 「아이도니아」라고 부른다.\\n\\n황금기의 결말에 대한 기록은 이미 오래전 사라졌으나, 앰포리어스 「최초의 망자」는 아이도니아 출신으로 여겨진다. 그는 「{RUBY_B#죽음의 티탄}타나토스{RUBY_E#}」에게 죽음의 축복을 받았는데, 그것은 자비이자 최고의 영예이다.\\n\\n아이도니아 주민들은 오래전부터 살을 에는 추위에 익숙해져 있었다. 흩날리는 눈도 「{RUBY_B#죽음의 티탄}타나토스{RUBY_E#}」의 고요한 신앙에 물들어 땅에 닿자마자 생명의 온기를 앗아가려고 했다. 아주 먼 옛날, 멀리서 온 여행자들은 아이도니아에 들어서자마자 길가에 얼어붙은 무명의 시체들이 「{RUBY_B#죽음의 티탄}어둠의 손{RUBY_E#}」의 품으로 돌아간 모습을 쉽게 볼 수 있었다. 북풍은 울부짖었고, 망자는 이정표가 되어 눈보라를 헤치고 가는 여행자들을 인도하고 경고했다. 아직 숨이 붙어 있을 때, 여행자들은 아이도니아를 서둘러 지나갔다.\\n\\n후에 아이도니아인은 황야에 추모의 비석이 세워져 있는 걸 발견했다. 누군가 생명의 순환과 소멸에 한때 축복을 바친 것이다.\\n\\n비석 아래에는 이름 모를 소녀가 깊은 잠에 빠져 있었다. 그 주변은 그림자 같은 죽음의 영역으로 둘러싸여 있었는데, 죽음의 숨결을 마시는 피골초마저 말라 있었다. 소녀에게서 「{RUBY_B#죽음의 티탄}타나토스{RUBY_E#}」의 자비로운 손길을 느낀 아이도니아인은 그녀를 도시로 데려와 성녀로 받들었다. 죽음의 티탄을 경애하는 신도들은 성녀를 본받아 긴 여정과 오래된 삶의 끝을 위해 황야에 거대한 비석을 세웠다——삶과 죽음은 여정이며, 이곳에는 여정을 기록하는 경계석만 있을 뿐이라고.\\n\\n비석은 멀리서 온 여행자들에게 누구도 그곳에 멈추거나 잠들지 않았다는 것을 알려주고 있다…. 망자 또한 여행자이니, 그들은 북풍이고 흩날리는 눈이며 복잡하게 연결되어 있는 실이다" + }, + "33196": { + "Name": "아이도니아의 저승 뼈사슬", + "Desc": "짐승의 뼈, 화살촉, 마름쇠는 아이도니아인과 망자의 세계를 연결한다. 황야의 고행자는 자신의 영혼이 차가운 강을 건널 수 있기를, 자신의 메마름과 나약함 때문에 신을 알현하러 가는 길에 길을 잃지 않기를 바랄 뿐이다", + "Story": "한때 한 어리석은 호사가가 아이도니아의 신도를 조롱하며 앰포리어스에 죽음을 경애하는 신앙이 있는지 의심하며 물었다——「당신들은 {RUBY_B#죽음의 티탄}타나토스{RUBY_E#}를 그렇게 추앙하면서 왜 창으로 자신의 가슴팍을 찌르지 않습니까?」\\n\\n아이도니아인은 그를 경멸하는 눈으로 바라봤다. 「궁핍한 영혼은 저승의 강을 건널 수 없습니다」\\n\\n아이도니아는 건국 이래 앰포리어스 전역에서 생명을 가장 중시하는 성지였다. {RUBY_B#죽음의 티탄}타나토스{RUBY_E#}의 신도들은 저승의 강이 뼈가 시릴 만큼 차가워 보통 사람은 절대 건널 수 없으며, 세상에서 오랫동안 단련한 사람만이 강인한 영혼으로 차가운 강을 건너 {RUBY_B#죽음의 티탄}타나토스{RUBY_E#}를 알현할 수 있다고 믿는다. 「죽음」의 축복을 좇는 건 생명을 경시한다는 뜻이 아니다.\\n\\n따라서 죽음을 종착지로 여기는 아이도니아인은 대단한 용사지만, 남쪽의 풍요로운 땅을 빼앗으려 한 적이 없다. 그곳은 영혼을 단련할 만한 땅이 아니었기 때문이다. 아이도니아인은 편안함에 빠지는 것을 하찮게 여겼다.\\n\\n고행은 아이도니아인의 독특한 문화다. 매년 눈이 그쳐 시야가 트이는 며칠 간의 맑은 날은 채골절이라 불린다. 아이도니아의 사제들은 팀을 꾸려 성밖으로 나가 황야와 늪지에서 깊은 잠에 빠진 짐승의 뼈를 찾는다. 수 광력년 전에 죽은 선사 시대의 거대 짐승의 뼈는 최고의 제물로 친다. 그 뼈를 두들기면 둔탁한 소리와 함께 {RUBY_B#죽음의 티탄}타나토스{RUBY_E#}의 속삭임이 들리는 듯하다. 저승의 강의 한기가 밴 것 같은 짐승의 뼈는 잇달아 성으로 옮겨진다——살짝 파손된 뼈는 주민들이 매일 착용하는 장식품이 되고, 상태 좋은 뼈는 사제가 직접 장례용 검으로 다듬어 축제에 제물로 바친다.\\n\\n어느 채골절 날, 아이도니아인은 황야에서 한 소녀를 만났다. 그 후 「소녀의 손길이 닿으면 저승의 강을 넘어 곧바로 죽음을 직면할 수 있다」는 소문이 빠르게 퍼졌다.\\n\\n「죽음」을 믿는 사람들은 {RUBY_B#죽음의 티탄}타나토스{RUBY_E#}의 대리인과 만나기 위해 앞다퉈 성전으로 몰려들었다. 소녀의 신앙이 사그라들고 있다는 것을 예리하게 눈치챈 아이도니아의 사제들은 그녀를 독전 성녀로 받들고 평민과의 접촉을 금했다. 오직 세상에서 단련되고 삶과 죽음을 경애하는 고행자에게만 소녀의 품에서 저승으로 돌아갈 자격이 주어졌다. 소녀는 사제가 준비한 로브를 걸친 채 두 손으로 형을 집행하고, 포옹으로 입관했다.\\n\\n아이도니아인은 「궁핍한 영혼은 저승의 강을 건널 수 없다」는 말을 진리로 받든다. 하지만 저승의 강은 영혼의 무게를 따진 적이 없고, 그저 조용히 흐르며 모든 산 자의 종착지와 합쳐질 뿐이다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 HP 최대치가 #1[i]% 증가한다. 장착한 캐릭터의 HP 최대치가 #2[i]pt 이상일 경우, 장착한 캐릭터와 해당 캐릭터의 기억 정령의 치명타 피해가 #3[i]% 증가한다", + "ParamList": [ + 0.12000000011175871, + 5000, + 0.2800000002607703 + ] + } + } + }, + "320": { + "Name": "사색하는 거목", + "Icon": "SpriteOutput/ItemIcon/71043.png", + "Parts": { + "33205": { + "Name": "깨달음의 나무 정원의 사색하는 거대한 가지", + "Desc": "차원 구체에 봉인된 것은 앰포리어스의 깨달음의 나무 정원으로, 「분열의 가지」 {RUBY_B#이성의 티탄}세르세스{RUBY_E#}의 성체는 이곳에서 사색에 잠겼다. 「최초의 학자」는 사람들을 이끌고 숲속에 화원과 정원을 세우고 지식을 공유했는데, 그렇게 나무 정원이 탄생했다", + "Story": "「최초의 학자」 탈레수스는 네스티아의 신앙 속 영성의 의미를 찾기 위해 성인이 되자 고향인 연안 도시 국가 미라바타에서부터 앰포리어스를 돌기 시작했다.\\n\\n순례길에서 마주친 여러 이상한 일과 특이한 광경 덕분에 그는 자연현상과 세계의 기원에 대해 새로운 생각을 갖게 됐다. 여정이 끝날 무렵 「분열의 가지」를 알현한 그는 거목 앞에서 자신이 세상을 이해하는 방법론을 완성했다. 그 이후 탈레수스는 거목 아래에 정원을 조성해 사람들이 깨어나서 지식을 탐구하고, 진리를 깨달을 수 있도록 「깨달음의 나무 정원」이라는 이름을 붙였다.\\n\\n{RUBY_B#이성의 티탄}세르세스{RUBY_E#}의 생각은 두루마리에 기록되거나 조용히 풀이 되었다…. 그렇게 나무 정원이 떠들썩해지기 시작했고, 교류와 논쟁 속에서 다양한 학파가 탄생했다.\\n\\n학파 간의 연구 방향은 달랐지만, 교집합이 없는 것은 아니었다——거대한 나무에서 분열된 가지가 뻗어나가다 보면 결국 만나게 되는 것처럼 말이다…. 치열한 논쟁, 학식과 이론의 대물림 속에서 「최초의 학자」가 남긴 깨달음은 지금까지 전해져오고 있으며, 일곱 현인이 이끄는 7대 학파 위주의 사상의 흐름으로 발전해 왔다.\\n\\n「세상의 모든 지식은 나무 정원의 잎이 되어 그늘을 만들 수 있도록 무성하게 자라고, 거목이 번성할 수 있게 도와야 한다」 나무 정원에 지혜를 구하는 도시 국가는 등가의 지식을 바쳐야 한다. 그래야 수많은 생각이 양분이 되어 무수히 많은 새싹과 어린잎이 자라날 수 있기 때문이다.\\n\\n오랜 세월 동안, 나무 정원의 길목을 통과하는 상단이든, 아니면 나무 정원의 항구를 지나는 상선이든… 지식이 기록된 두루마리가 발견되면, 국적과 언어를 불문하고 모두 나무 정원의 소장품이 된다. 나무 정원의 학자이자 「강도」는 거금을 들여 매수하거나 사람을 고용해 베끼고, 심지어 약탈 등의 방식까지 동원해서 나무 정원을 「앰포리어스 최고의 학교」로 만들었다. 나무 정원 학자들은 토론을 제기로 삼고, 사고를 경건함으로 삼아 지고지상한 이성에 경배했다.\\n\\n식물에서 탄생해 나무의 영혼으로 돌아가니, 이슬 맺힌 심장은 세상에서 흘러온 지식을 모은다. {RUBY_B#이성의 티탄}세르세스{RUBY_E#}는 나날이 시끌벅적해지는 학술 정원의 소리에 귀를 기울이며 언제나 깊은 사색에 잠겨 있다" + }, + "33206": { + "Name": "깨달음의 나무 정원의 지식을 잇는 잎사귀 길", + "Desc": "금실과 덩굴은 나무 정원의 지식망을 연결해 학파 간 성과를 공유하는 생명줄이 된다. 뿌리에서 유입된 정보는 맥을 따라 흐르며, 한 방울의 이슬이 되어 우애의 관의 연못에 녹아든다", + "Story": "깨달음의 나무 정원의 생각은 거목의 가지가 되며, 맥락은 끊임없이 확장되어 가는 가지처럼 수많은 논조를 끌어낸다. 가지는 서로 독립적이면서도 얽히고설켜, 결국 거목을 무성하게 하는 수관이 된다.\\n\\n그중 한 가지는 자신을 향해 뻗어진 채 얽혀있다. 나뭇결과 꽃잎 자체의 신비함에 매료된 「로토파고이 학파」 고행자는 식물뿐만 아니라 온갖 형상을 손만 뻗으면 닿을 수 있는 분명한 존재로 묘사한다. 그들이 전념하는 고행은 세상 만물을 조화롭게 하는 실천법이고, 그들에게 고행은 자아를 포기하는 일이 아니라 자신을 알아가는 지름길이다.\\n\\n그중 한 가지에는 열매가 주렁주렁 열려 있다. 「카프라 학파」 학자들은 환수에 대한 연구, 번식, 보호에 능하다. 키메라의 사랑스러운 모습들은 그들이 온갖 생령을 탐구하는 과정에서 보여 주는 작은 실천이다.\\n\\n그중 한 가지는 완벽한 비율로 정확하고 우아하게 얽혀 있다. 「노두스 학파」 학자들은 「만물은 숫자」, 다시 말해 모든 실체는 숫자로 표현할 수 있다고 주장한다. 나무 정원에서 최초로 결성된 학파로서, 그들은 「기하학을 모르는 학자의 출입 금지」를 요구하며 학부의 진입 장벽을 고수하고, 수학을 {RUBY_B#이성의 티탄}세르세스{RUBY_E#}가 세상을 다스리는 수단으로 받든다.\\n\\n그중 한 가지는 아주 굵고 단단하다. 「헬코리토 학파」는 가입하려는 학자들에게 슬링을 휘둘러 둥근 돌을 지정된 범위 밖으로 던지게 하는데, 이로써 단련과 사고의 변별, 경기 활동에서 「궁극을 추구」하는 것을 입증시킨다.\\n\\n그중 한 가지는 때로는 아래로 처지고 때로는 위로 솟구쳐서 감각에 순수한 미감을 전한다. 「에리트로케라모스 학파」는 예술과 감성에 대한 탐구를 논리적 사유의 근원으로 여긴다. 그들은 감각 기관으로 얻은 정보가 가장 정제된 것이라 여기며, 그것으로 달관한 세계에 도달할 수 있다고 믿는다.\\n\\n무성한 수관 위의 경건하게 경배하는 가지는 제사 의식에 가장 적합하고, 그 모습은 거목의 줄기에서 비롯됐다. 「베네라티오 학파」는 티탄 의식에 대한 이해도가 높고 신의 기적 활용에 능해 「앰포리어스 정치가의 요람」으로 불린다. 그들은 나무 정원의 제사 의식을 주도할 뿐만 아니라, 앰포리어스 곳곳에 깊은 영향을 미치고 있다. 그러나 새롭게 생겨난 날카로운 가지가 그것과 맞선다——\\n\\n「누스페르마타 학파」는 「최초의 학자」의 영혼 학설을 이어받았다. 생명과 사물 간의 전환과 차원 상승 이론에 정통하여 가장 늦게 창설됐지만 논점은 가장 날카로우며, 이들의 주도하는 학설은 모든 생명과 물체의 근원을 지향한다.\\n\\n7대 학파의 일곱 현인은 각각의 학문 영역을 관장하며, 원칙적으로 위아래가 존재하지 않는다. 이성의 거목은 일곱 현인의 수장이라는 허울뿐인 직함을 가진 채 끝없는 토론 소리 속에서 학식과 이성을 가지처럼 펼치며 세상에 전파한다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 속도가 #1[i]% 증가한다. 장착한 캐릭터의 속도가 #2[i]/#3[i] 이상일 경우, 장착한 캐릭터와 해당 캐릭터의 기억 정령의 치유량이 #4[i]%/#5[i]% 증가한다", + "ParamList": [ + 0.060000000055879354, + 135, + 180, + 0.12000000011175871, + 0.20000000018626451 + ] + } + } + }, + "321": { + "Name": "꿈을 엮는 요정의 낙원", + "Icon": "SpriteOutput/ItemIcon/71046.png", + "Parts": { + "33215": { + "Name": "비밀 미궁의 평온한 꿈 나무집", + "Desc": "차원 구체에 봉인된 엘리사이 에데스의 「비밀 미궁」. 황금빛 밀밭을 헤치고 깊고 깊은 나무 구멍으로 떨어지면… 어라? 수많은 요정이 나타난다. 「1, 2, 3, 4, 5, 6, 7」? 땡! 그게 아니라 「도레미파솔라시」야!", + "Story": "「허허, 얘들아. 비밀 미궁에 또 풍작의 계절이 찾아왔구나. 뭘 준비해야 할까?」 촌장이 흰 수염을 쓰다듬으며 허허 웃었다.\\n「미주 축제요!」 요정들은 환호했다.\\n\\n처음에 비밀 미궁은 황폐한 땅이었다. 엘리사이 에데스의 남자아이와 여자아이가 바깥의 씨앗을 가져와 요정들에게 심는 방법을 알려줬다. 씨앗에서 싹이 나고 꽃이 피자 요정들은 그들이 하는 대로 포도대 주변의 털보애꽃벌을 따라 꿀을 채집했다. 꽃이 지고 열매가 여물자 수확의 계절이 다가왔다. 요정들은 한데 모여 축하의 노래를 부르며 한밤중까지 연회를 즐겼다. 그다음에는 뭘 했을까? 올해의 꿀을 담은 병을 땅에 묻은 후 꿀이 성장과 겨울을 치유하는 묘약이 될 때까지 발효되기를 기다렸다.\\n\\n매년 열리는 미주 축제는 늘 이렇다.\\n올해 축제에서 촌장은 흰 수염을 털며 말했다. 「레라미가 어디 갔는지 안 보이는구나」\\n\\n요정들은 한참 찾아 헤매다 나무집 입구에서 「레라미」를 발견했다. 단잠에 빠진 레라미는 신나는 꿈을 꾸는지 침까지 흘리고 있었다. 호기심 많은 「미라미」가 다가가 잠꼬대를 들었다——「파이, 키레, 작년에 묻어둔 가시열매 음료를 마시러 오기로 약속했잖아」\\n\\n꿈속에서 「레라미」는 자신이 「거대한 레라미」로 변해 비밀 미궁으로 향하는 나무 구멍을 꽉 막고 있는 꿈을 꾸고 있었다. 작은 파이와 키레는 들어가는 길을 찾지 못해서 세모고랭이로 「레라미」의 귀를 간질이고, 「레라미」의 배에 올라가 뛰고, 큰 소리로 그의 이름을 불렀다. 하지만 「레라미」는 너무 깊이 잠든 탓에 그 소리를 듣지 못했다.\\n「이런, 내가 길을 막고 있어서 파이랑 키레가 미로 미궁에 못 온 건가?」\\n「레라미」는 심장이 쿵쿵 뛰었다.\\n\\n「에——엣취!」\\n「레라미」가 재채기를 하며 잠에서 깨어났다. 다행히 길을 막고 있는 「거대한 레라미」로 변한 건 아니었다. 그런데 왜 요정들이 주위를 에워싸고 있는 것일까?\\n「파이랑 키레는 왔어?」\\n요정들은 고개를 저었다. 파이와 키레 없는 미주 축제가 벌써 몇 번째인지 모르겠다.\\n「레라미」는 다시 시무룩해졌다. 이럴 줄 알았다면 꿈을 좀 더 오래 꿀걸.\\n작은 「레라미」는 그 감정을 어떻게 표현해야 할지 몰랐다. 굳이 따지자면 매년 여름의 마지막 날, 유리병 속에서 날갯짓하는 반딧불이를 놓아줄 때와 비슷한 기분이었다" + }, + "33216": { + "Name": "비밀 미궁의 소원 피리", + "Desc": "점토로 빚은 피리. 요정들과 두 어린아이의 약속을 상징한다. 남자아이와 여자아이가 피리를 불면 「미?」하는 소리와 함께 요정들이 미궁으로 향하는 나무 구멍을 열고 두 사람을 맞이한다!", + "Story": "「우리의 약속을 기억해 줘! 너희가 피리를 불면, 아무리 멀리 있어도 우린 그 소리를 들을 수 있어」\\n\\n그날은 엘리사이 에데스의 남자아이와 여자아이가 처음으로 비밀 미궁에서 요정들을 만난 날이었다. 그들은 정원에서 친구들과 숨바꼭질을 하다가 실수로 수풀 속 나무 구멍에 빠졌다. 나무 구멍은 끝이 보이지 않는 미끄럼틀처럼 깊었다. 바닥에 떨어졌을 때, 눈앞에 별이 보이리라는 예상과 달리 그들 앞에는 요정 떼가 나타났다……\\n「1, 2, 3, 4, 5, 6, 7. 강아지가 진짜 많네. 아니… 토끼인가?」\\n「아니, 그게 아니라 도레미파솔라시야. 우린 도라미, 솔라미, 레라미… 라고!」\\n\\n아이들과 요정의 우정은 천 개의 유성처럼 빠르고 눈부시게 피어났다. 그들은 즐거운 하루를 보냈지만 이내 작별의 시간이 다가왔다. 더 늦었다간 부모님이 걱정하실 게 분명했다.\\n「오늘 헤어져도 또 만날 수 있을까?」 남자아이가 슬퍼하며 물었다.\\n작별… 재회… 요정들은 이해하지 못했다. 비밀 미궁에는 작별과 재회가 존재하지 않았기 때문이다. 그러나 아이들의 표정을 보니 분명 슬픈 일인 것 같았다. 보라색 「레라미」는 잠시 고민하더니 입을 열었다. 「파이, 키레, 잠깐만 기다려 줘. 너희한테 줄 게 있어!」\\n\\n남자아이와 여자아이의 손바닥에 「레라미」의 선물이 놓였다. 그건 요정의 귀처럼 생긴, 「레라미」가 직접 만든 피리였다. 피리를 불면 7개의 구멍에서 도, 레, 미, 파, 솔, 라, 시 소리가 맑게 울려 퍼졌다. 「레라미」가 진지하게 말했다. 「또 비밀 미궁에 놀러 오고 싶으면 이 피리를 불어. 자고 있든, 노래하고 있든, 나무집을 짓고 있든 우린 그 소리를 들을 수 있으니까. 소리가 들리면 미궁으로 오는 나무 구멍을 열어 줄게」\\n\\n「요정을 깨우는 비밀의 피리네!」 여자아이는 장난스럽게 웃었다. 「약속, 도장! 꼭 돌아올게」\\n 그날 이후 「레라미」는 피리 소리가 들릴 때마다 몹시 기뻐하며 외쳤다——들었어. 내 두 귀로 똑똑히 들었다고!\\n\\n훗날 엘리사이 에데스를 떠난 파이와 키레는 어린 시절의 모든 것을 기억했다. 녹슨 양철 장난감, 곡식창고의 팔이 떨어진 병정, 코바늘로 뜬 꽃 펠트, 내리지 못한 비, 말라버린 피, 불탄 밀밭….\\n하지만 흙 속에 묻힌 피리와 다시는 지키지 못한 약속은 잊고 말았다" + } + }, + "RequireNum": { + "2": { + "Desc": "파티 내 현재 필드에 있는 아군의 수가 4명이 아닐 경우, 아군 수가 1명 많을/적을 때마다 장착한 캐릭터와 해당 캐릭터의 기억 정령이 가하는 피해가 #1[i]%/#2[i]% 증가한다, 최대 중첩수: #3[i]/#4[i]스택", + "ParamList": [ + 0.09000000008381903, + 0.12000000011175871, + 4, + 3 + ] + } + } + }, + "322": { + "Name": "즐거움에 취한 바다의 일각", + "Icon": "SpriteOutput/ItemIcon/71047.png", + "Parts": { + "33225": { + "Name": "노래의 해안의 암초섬 등대", + "Desc": "차원 구체에 봉인된 영원한 환락에 잠겨 있는 스틱시아. 언제나 빛나는 등대가 우뚝 솟아 끝없는 곡을 연주하고 있다. 노랫소리를 따라 안개를 뚫고 가던 배는 암초에 부딪혀 침몰하고, 파도는 그 잔해를 집어삼킨다", + "Story": "파도는 영원히 끝나지 않는 춤이다. 쾌락을 좇는 항구에 싫증 난 선원들은 항해도를 펼쳐 직접 여정의 종착지를 선택했다. 흔들리던 나침반 멈췄고, 바늘은 해변에 우뚝 솟은 영원한 환락의 도시, 운명으로 정해진 그들의 무덤 「스틱시아」를 가리켰다. 하지만 죽음을 몰랐던 사람들은 개의치 않고 환희에 취해 돛을 펼치고 신나게 파구사의 무도회장으로 향했다.\\n\\n선원들은 조수와 달의 위상의 음률에 따라 고래의 등에 갈고리를 박았고, 뱃머리로 오랜 빙하를 깨뜨렸다. 그들은 안개에 휩싸이고, 등대에 가까워지고, 암초에 부딪힐 때까지… 노래를 불렀다……\\n\\n암초에 부딪혀 침몰한 배는 바다 깊이 가라앉았고, 불멸의 인간들은 파도 속에서 되살아났다. 암초 위에 선 선원의 몸에는 해초와 소금기가 가득했다. 등대에서 연회의 들이켜는 자들은 허리 숙이며 오랫동안 기다려온 그들을 끝없는 잔치에 초대했다. 그들은 음악 소리를 따라 긴 둑을 건너 암초 사이 서 있는 새하얀 등대에 올랐다. 스틱시아의 등대는 고래기름으로 불을 밝혔는데, 그 차가운 불꽃은 수정으로 조각한 렌즈 속에서 흔들리고 있었다. 등대 자체가 거대한 물의 오르간이었던 것이다. 방문객들은 계단을 오르면 벽돌 틈으로 유리관이 바닷물을 빨아들이고, 바닷물이 파도에 따라 오르내리는 걸 볼 수 있었다. 테라스에서 연회의 들이키는 자들은 손에 손을 잡고 등불을 에워싼 채 음악 소리에 맞춰 춤을 췄고, 등불은 그들의 그림자를 수평선 너머까지 비췄다. 그곳에서 선원은 그토록 바라던 종착지, 영원한 환락의 도시를 보았다.\\n\\n그때는 부패가 존재하기 전이자 고통과 슬픔, 죽음조차 생겨나지 않았던 시절이다. 스틱시아는 파구사의 총애에 흠뻑 취해 있었다. 팔뚝 같은 해안으로 파구사를 감싸고, 그를 위해 꿈처럼 다정한 자장가를 불러 주었다.\\n\\n초조한 선원의 입술이 떨렸다. 앞에는 연회의 들이켜는 자가 초대한, 환락을 함께 나눌 수 있는 도시 국가가 있었다. 뒤에는 회색빛 바다가 끝없이 펼쳐져 있었다. 암초 사이에는 배의 잔해가 가득했고, 익사한 자들은 말미잘과 산호에 뒤덮여 파도 속에서 넘실거렸다. 그는 물에 빠지던 순간을 떠올렸다. 물결에 휩쓸려 끝없는 바닷속으로 끌려 들어갈 때, 세이렌의 차가운 손이 그의 뺨을 어루만졌다. 어렴풋한 부드러운 노랫소리에 정신을 차린 그는 반짝이는 수면 위로 밀려갔다.\\n\\n한순간 망설였을 뿐인데, 흘끗 봤을 뿐인데, 더없는 행복으로 향하는 문이 닫혔다. 연회의 들이켜는 자들은 미소 지으며 스틱시아에 들어가게 해 달라는 선원의 부탁을 완곡히 거절했다. 취기 풀린 그가 진정한 환락을 받아들일 줄 모른다는 게 단 하나의 이유였다" + }, + "33226": { + "Name": "노래의 해안의 노래하는 길", + "Desc": "스틱시아인은 세이렌이 전설처럼 자신의 육체로 이곳의 평화를 지켜 왔고, 언젠가 등대의 끝없는 노래에 이끌려 이곳으로 와서 영원한 연회를 보상으로 받을 것이라고 굳게 믿는다", + "Story": "고독한 선원은 예전의 방문객처럼 바다와 도시 국가 사이를 배회하며 속세와 환락의 문턱에 머물렀다. 그는 좌초된 고래의 상처에서 흘러나오는 기름을 닦고, 밤의 장막이 내리자 등대의 불을 밝혔다. 그리고 등불 앞에 앉아 물의 오르간으로 지금껏 연주되지 않았던 노래를 연주하기 시작했다\\n\\n등대에서 건반 소리가 울려 퍼지면서 온 스틱시아가 음악에 잠겼다. 때로는 느리고 때로는 빠른 곡조에 스틱시아 여왕은 환락에 대한 끝없는 상상에 빠졌다. 선원이 마지막 쉼표부터 거꾸로 연주하자 곡조는 경쾌해졌다. 그러자 흰 배가 곡예사를 태우고 쉽게 강을 지나갔다. 차려입은 남녀들은 금박과 깃털로 장식된 가면으로 얼굴을 가린 채 강가에 모여들었고, 여왕도 그 속에 섞여 라일락과 아몬드 향기 속을 거닐었다.\\n\\n선원이 박자를 바로잡자 음표가 빠르게 변하며 고조됐다. 그렇게 도시 국가 전체를 무대로 하는 연극에서 해적을 연기하는 시민들은 검은 깃발을 휘두르며 무방비한 성벽을 함락했다. 미주와 금화를 약탈한 그들은 꽃으로 장식한 교수대에 귀족들을 올려보냈고, 도시의 거지들에게 왕관을 씌워주었다. 피날레에서 사람들은 고탑을 불태우고 오르간 소리에 맞춰 미친듯이 춤을 추며 거나하게 취했다.\\n\\n넘실대는 파도에 악보가 젖으면서 부드럽고 느린 음표가 번졌다. 여왕은 등대 앞 안개 속에서 새로운 대본으로 발을 들였다. 그녀는 인어 꼬리 같은 푸른 드레스를 입고 파구사의 권속——세이렌들의 여왕을 연기했다.\\n\\n이야기 속에서 세이렌들은 바다 깊은 곳에서 속세의 상상할 수 없는 고통을 막아내라는 명을 받는다. 그들은 피와 살로 칠흑 같은 재앙을 충만의 잔으로 끌어들이고, 그 대가로 스틱시아의 영원한 환락을 얻는다. 약속한 시간이 되면 세이렌들은 등대의 불빛과 음악 소리에 이끌려 둑길을 따라 스틱시아에 들어간다. 스틱시아인은 그녀들의 손을 잡고 영원히 끝나지 않는 연회에 함께할 것이다.\\n\\n스틱시아 여왕은 물속으로 들어가 상상 속 죽음을 누렸다. 달의 위상조차 파도를 속박할 수 없는 밤, 바다 깊은 곳에서 세이렌들의 공허한 눈물이 거품처럼 떠올랐다. 그녀들은 이번 생에 보지 못한 달빛을 엿보길 바라고 기다리다가 피와 살점이 녹아내렸다. 하지만 안타깝게도 그날 밤에는 달빛이 없었다. 늘 그렇듯 등대만 깜빡일 뿐이었다——눈물이 세이렌 대신 반짝이는 해수면 위로 떠올랐고, 떠다니던 거품은 물결 속에 사라졌다.\\n\\n외로운 선원은 마침내 소원을 이뤘다. 연회의 들이켜는 자는 이제 스틱시아에 들어와도 된다며 행복의 눈물을 글썽이며 그를 축하했다. 노래가 처음 울려 퍼지던 순간, 죽음으로 시든 날개가 영원한 환락의 도시 국가를 덮고 있었다" + } + }, + "RequireNum": { + "2": { + "Desc": "장착한 캐릭터의 공격력이 #1[i]% 증가한다. 장착한 캐릭터의 공격력이 #2[i]/#3[i] 이상일 시 가하는 지속 피해가 추가로 #4[i]%/#5[i]% 증가한다", + "ParamList": [ + 0.12000000011175871, + 2400, + 3600, + 0.12000000011175871, + 0.24000000022351742 + ] + } + } + } +} \ No newline at end of file diff --git a/data/sub_affixes.json b/data/sub_affixes.json new file mode 100644 index 0000000..6f4c5d8 --- /dev/null +++ b/data/sub_affixes.json @@ -0,0 +1,298 @@ +{ + "2": { + "1": { + "property": "HPDelta", + "base": 13.548015594482422, + "step": 1.6935019493103027, + "step_num": 2 + }, + "2": { + "property": "AttackDelta", + "base": 6.774007797241211, + "step": 0.8467509746551514, + "step_num": 2 + }, + "3": { + "property": "DefenceDelta", + "base": 6.774007797241211, + "step": 0.8467509746551514, + "step_num": 2 + }, + "4": { + "property": "HPAddedRatio", + "base": 0.01382400095462799, + "step": 0.001728000584989786, + "step_num": 2 + }, + "5": { + "property": "AttackAddedRatio", + "base": 0.01382400095462799, + "step": 0.001728000584989786, + "step_num": 2 + }, + "6": { + "property": "DefenceAddedRatio", + "base": 0.01728000119328499, + "step": 0.002160000381991267, + "step_num": 2 + }, + "7": { + "property": "SpeedDelta", + "base": 1.0, + "step": 0.10000000149011612, + "step_num": 2 + }, + "8": { + "property": "CriticalChanceBase", + "base": 0.010368000715970991, + "step": 0.001296000787988305, + "step_num": 2 + }, + "9": { + "property": "CriticalDamageBase", + "base": 0.020736001431941983, + "step": 0.0025920008774846792, + "step_num": 2 + }, + "10": { + "property": "StatusProbabilityBase", + "base": 0.01382400095462799, + "step": 0.001728000584989786, + "step_num": 2 + }, + "11": { + "property": "StatusResistanceBase", + "base": 0.01382400095462799, + "step": 0.001728000584989786, + "step_num": 2 + }, + "12": { + "property": "BreakDamageAddedRatioBase", + "base": 0.020736001431941983, + "step": 0.0025920008774846792, + "step_num": 2 + } + }, + "3": { + "1": { + "property": "HPDelta", + "base": 20.322023391723633, + "step": 2.540252923965454, + "step_num": 2 + }, + "2": { + "property": "AttackDelta", + "base": 10.161011695861816, + "step": 1.2701259851455688, + "step_num": 2 + }, + "3": { + "property": "DefenceDelta", + "base": 10.161011695861816, + "step": 1.2701259851455688, + "step_num": 2 + }, + "4": { + "property": "HPAddedRatio", + "base": 0.020736001431941983, + "step": 0.0025920008774846792, + "step_num": 2 + }, + "5": { + "property": "AttackAddedRatio", + "base": 0.020736001431941983, + "step": 0.0025920008774846792, + "step_num": 2 + }, + "6": { + "property": "DefenceAddedRatio", + "base": 0.025919999927282333, + "step": 0.0032400002237409353, + "step_num": 2 + }, + "7": { + "property": "SpeedDelta", + "base": 1.2000000476837158, + "step": 0.10000000149011612, + "step_num": 2 + }, + "8": { + "property": "CriticalChanceBase", + "base": 0.015552000142633917, + "step": 0.001944000832736492, + "step_num": 2 + }, + "9": { + "property": "CriticalDamageBase", + "base": 0.03110400028526783, + "step": 0.003888000966981054, + "step_num": 2 + }, + "10": { + "property": "StatusProbabilityBase", + "base": 0.020736001431941983, + "step": 0.0025920008774846792, + "step_num": 2 + }, + "11": { + "property": "StatusResistanceBase", + "base": 0.020736001431941983, + "step": 0.0025920008774846792, + "step_num": 2 + }, + "12": { + "property": "BreakDamageAddedRatioBase", + "base": 0.03110400028526783, + "step": 0.003888000966981054, + "step_num": 2 + } + }, + "4": { + "1": { + "property": "HPDelta", + "base": 27.096031188964844, + "step": 3.3870038986206055, + "step_num": 2 + }, + "2": { + "property": "AttackDelta", + "base": 13.548015594482422, + "step": 1.6935019493103027, + "step_num": 2 + }, + "3": { + "property": "DefenceDelta", + "base": 13.548015594482422, + "step": 1.6935019493103027, + "step_num": 2 + }, + "4": { + "property": "HPAddedRatio", + "base": 0.027648000046610832, + "step": 0.0034560004714876413, + "step_num": 2 + }, + "5": { + "property": "AttackAddedRatio", + "base": 0.027648000046610832, + "step": 0.0034560004714876413, + "step_num": 2 + }, + "6": { + "property": "DefenceAddedRatio", + "base": 0.03456000238656998, + "step": 0.004320000298321247, + "step_num": 2 + }, + "7": { + "property": "SpeedDelta", + "base": 1.600000023841858, + "step": 0.20000000298023224, + "step_num": 2 + }, + "8": { + "property": "CriticalChanceBase", + "base": 0.020736001431941983, + "step": 0.0025920008774846792, + "step_num": 2 + }, + "9": { + "property": "CriticalDamageBase", + "base": 0.041471999138593674, + "step": 0.0051840003579854965, + "step_num": 2 + }, + "10": { + "property": "StatusProbabilityBase", + "base": 0.027648000046610832, + "step": 0.0034560004714876413, + "step_num": 2 + }, + "11": { + "property": "StatusResistanceBase", + "base": 0.027648000046610832, + "step": 0.0034560004714876413, + "step_num": 2 + }, + "12": { + "property": "BreakDamageAddedRatioBase", + "base": 0.041471999138593674, + "step": 0.0051840003579854965, + "step_num": 2 + } + }, + "5": { + "1": { + "property": "HPDelta", + "base": 33.87004089355469, + "step": 4.233755111694336, + "step_num": 2 + }, + "2": { + "property": "AttackDelta", + "base": 16.93501853942871, + "step": 2.1168770790100098, + "step_num": 2 + }, + "3": { + "property": "DefenceDelta", + "base": 16.93501853942871, + "step": 2.1168770790100098, + "step_num": 2 + }, + "4": { + "property": "HPAddedRatio", + "base": 0.03456000238656998, + "step": 0.004320000298321247, + "step_num": 2 + }, + "5": { + "property": "AttackAddedRatio", + "base": 0.03456000238656998, + "step": 0.004320000298321247, + "step_num": 2 + }, + "6": { + "property": "DefenceAddedRatio", + "base": 0.04320000112056732, + "step": 0.005400000140070915, + "step_num": 2 + }, + "7": { + "property": "SpeedDelta", + "base": 2.0, + "step": 0.30000001192092896, + "step_num": 2 + }, + "8": { + "property": "CriticalChanceBase", + "base": 0.025919999927282333, + "step": 0.0032400002237409353, + "step_num": 2 + }, + "9": { + "property": "CriticalDamageBase", + "base": 0.05183999985456467, + "step": 0.006480000447481871, + "step_num": 2 + }, + "10": { + "property": "StatusProbabilityBase", + "base": 0.03456000238656998, + "step": 0.004320000298321247, + "step_num": 2 + }, + "11": { + "property": "StatusResistanceBase", + "base": 0.03456000238656998, + "step": 0.004320000298321247, + "step_num": 2 + }, + "12": { + "property": "BreakDamageAddedRatioBase", + "base": 0.05183999985456467, + "step": 0.006480000447481871, + "step_num": 2 + } + } +} \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d24db9f --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +services: + srtools: + build: + context: . + dockerfile: Dockerfile + container_name: srtools + restart: unless-stopped + ports: + - "3006:3000" + networks: + - srtools-network + +networks: + srtools-network: + driver: bridge diff --git a/i18n/request.ts b/i18n/request.ts new file mode 100644 index 0000000..bb494e3 --- /dev/null +++ b/i18n/request.ts @@ -0,0 +1,11 @@ +import { getRequestConfig } from "next-intl/server"; +import { cookies } from "next/headers"; + +export default getRequestConfig( async () => { + const locale = (await cookies()).get("MYNEXTAPP_LOCALE")?.value || "en"; + + return { + locale, + messages: (await import(`../messages/${locale}.json`)).default + } +}) \ No newline at end of file diff --git a/messages/cn.json b/messages/cn.json new file mode 100644 index 0000000..62f020d --- /dev/null +++ b/messages/cn.json @@ -0,0 +1,177 @@ +{ + "TabTitle": { + "title": "Firefly Tools", + "description": "Firefly tools by Kain" + }, + "DataPage": { + "skillType": "技能类型", + "skillName": "技能名称", + "character": "角色", + "id": "ID", + "path": "命运", + "rarity": "稀有度", + "element": "元素", + "technique": "秘术", + "talent": "天赋", + "basic": "普通攻击", + "skill": "技能", + "ultimate": "终极技", + "servant": "仆从", + "damage": "伤害", + "type": "类型", + "warrior": "毁灭", + "knight": "守护", + "mage": "博学", + "priest": "丰饶", + "rogue": "狩猎", + "shaman": "和谐", + "warlock": "虚无", + "memory": "回忆", + "fire": "火", + "ice": "冰", + "imaginary": "幻象", + "physical": "物理", + "quantum": "量子", + "thunder": "雷", + "wind": "风", + "hp": "生命值", + "atk": "攻击", + "speed": "速度", + "critRate": "暴击率", + "critDmg": "暴击伤害", + "breakEffect": "破甲伤害", + "effectRes": "效果抗性", + "energyRegenerationRate": "能量恢复速率", + "effectHitRate": "效果命中率", + "outgoingHealingBoost": "治疗增强", + "fireDmgBoost": "火元素伤害增强", + "iceDmgBoost": "冰元素伤害增强", + "imaginaryDmgBoost": "幻象伤害增强", + "physicalDmgBoost": "物理伤害增强", + "quantumDmgBoost": "量子伤害增强", + "thunderDmgBoost": "雷元素伤害增强", + "windDmgBoost": "风元素伤害增强", + "pursued": "附加伤害", + "true damage": "真实伤害", + "follow-up": "后续伤害", + "elemental damage": "破甲与超破甲伤害", + "dot": "持续伤害", + "qte": "QTE 技能", + "level": "等级", + "relics": "遗器", + "eidolons": "虚数形态", + "lightcones": "光锥", + "loadData": "加载数据", + "exportData": "导出数据", + "connectSetting": "连接设置", + "connected": "已连接", + "unconnected": "未连接", + "psConnection": "PS 连接", + "connectionType": "连接类型", + "status": "状态", + "connectPs": "连接 PS", + "other": "其他", + "freeSr": "FreeSR", + "database": "数据库", + "enka": "Enka", + "monsterSetting": "怪物设置", + "serverUrl": "服务器 URL", + "privateType": "私有类型", + "local": "本地", + "server": "服务器", + "username": "用户名", + "password": "密码", + "placeholderServerUrl": "输入服务器 URL", + "placeholderUsername": "输入用户名", + "placeholderPassword": "输入密码", + "connectedSuccess": "成功连接 PS", + "connectedFailed": "连接 PS 失败", + "syncSuccess": "已成功与 PS 同步数据", + "syncFailed": "与 PS 同步数据失败", + "sync": "同步", + "importSetting": "导入设置", + "profile": "配置档", + "default": "默认", + "copyProfiles": "复制配置档", + "addNewProfile": "添加新配置档", + "createNewProfile": "创建新配置档", + "editProfile": "编辑配置档", + "placeholderProfileName": "输入配置档名称", + "profileName": "配置档名称", + "create": "创建", + "update": "更新", + "characterInformation": "角色信息", + "skills": "技能", + "showcaseCard": "展示卡", + "comingSoon": "敬请期待", + "characterName": "角色名称", + "placeholderCharacter": "输入角色名称", + "characterSettings": "角色设置", + "levelConfiguration": "等级配置", + "characterLevel": "角色等级", + "max": "最大", + "ultimateEnergy": "终极能量", + "currentEnergy": "当前能量", + "setTo50": "设为50%", + "battleConfiguration": "战斗配置", + "useTechnique": "使用秘术", + "techniqueNote": "启用战前秘术效果", + "enhancement": "强化", + "enhancementLevel": "强化等级", + "origin": "来源", + "enhancedNote": "强化更高可解锁额外技能", + "lightconeEquipment": "光锥装备", + "lightconeSettings": "光锥设置", + "placeholderLevel": "输入等级", + "superimpositionRank": "叠加等级", + "ranksNote": "更高等级提供更强效果", + "changeLightcone": "更换光锥", + "removeLightcone": "移除光锥", + "equipLightcone": "装备光锥", + "noLightconeEquipped": "未装备光锥", + "equipLightconeNote": "装备光锥以增强角色能力", + "filter": "筛选", + "selectedCharacters": "已选角色", + "selectedProfiles": "已选配置档", + "clearAll": "清除全部", + "selectAll": "全选", + "copy": "复制", + "copied": "已复制", + "noAvatarSelected": "未选择角色", + "noAvatarToCopySelected": "未选择要复制的角色", + "pleaseSelectAtLeastOneProfile": "请至少选择一个配置档", + "pleaseEnterUid": "请输入 UID", + "failedToFetchEnkaData": "获取 Enka 数据失败", + "pleaseSelectAtLeastOneCharacter": "请至少选择一个角色", + "noDataToImport": "无可导入数据", + "pleaseSelectAFile": "请选择一个文件", + "fileMustBeAValidJsonFile": "文件必须为有效 JSON", + "importEnkaDataSuccess": "导入 Enka 数据成功", + "importFreeSRDataSuccess": "导入 FreeSR 数据成功", + "importDatabaseSuccess": "导入数据库成功", + "getData": "获取数据", + "import": "导入", + "freeSRImport": "导入 FreeSR", + "onlySupportFreeSRJsonFile": "仅支持 FreeSR JSON 文件", + "pickAFile": "选择文件", + "lightConeSetting": "光锥设置", + "relicMaker": "遗器制作", + "pleaseSelectAllOptions": "请选择所有选项", + "relicSavedSuccessfully": "遗器已成功保存", + "mainSettings": "主设置", + "mainStat": "主属性", + "set": "套装", + "pleaseSelectASet": "请选择一个套装", + "effectBonus": "效果加成", + "totalRoll": "总次数", + "randomizeStats": "随机属性", + "randomizeRolls": "随机次数", + "selectASubStat": "选择副属性", + "selectASet": "选择套装", + "selectAMainStat": "选择主属性", + "save": "保存", + "reset": "重置", + "roll": "滚动", + "step": "步数" + } +} \ No newline at end of file diff --git a/messages/en.json b/messages/en.json new file mode 100644 index 0000000..5ab99e6 --- /dev/null +++ b/messages/en.json @@ -0,0 +1,178 @@ +{ + "TabTitle": { + "title": "Firefly Tools", + "description": "Firefly tools by Kain" + }, + "DataPage": { + "skillType": "Skill Type", + "skillName": "Skill Name", + "character": "Character", + "id": "Id", + "path": "Path", + "rarity": "Rarity", + "element": "Element", + "technique": "Technique", + "talent": "Talent", + "basic": "Basic Attack", + "skill": "Skill", + "ultimate": "Ultimate", + "servant": "Servant", + "damage": "Damage", + "type": "Type", + "warrior": "Destruction", + "knight": "Preservation", + "mage": "Erudition", + "priest": "Abundance", + "rogue": "The Hunt", + "shaman": "Harmony", + "warlock": "Nihility", + "memory": "Remembrance", + "fire": "Fire", + "ice": "Ice", + "imaginary": "Imaginary", + "physical": "Physical", + "quantum": "Quantum", + "thunder": "Thunder", + "wind": "Wind", + "hp": "Hp", + "atk": "Atk", + "speed": "Speed", + "critRate": "Crit Rate", + "critDmg": "Crit Dmg", + "breakEffect": "Break Effect", + "effectRes": "Effect Res", + "energyRegenerationRate": "Energy Regeneration Rate", + "effectHitRate": "Effect Hit Rate", + "outgoingHealingBoost": "Outgoing Healing Boost", + "fireDmgBoost": "Fire damage boost", + "iceDmgBoost": "Ice damage Boost", + "imaginaryDmgBoost": "Imaginary damage boost", + "physicalDmgBoost": "Physical damage boost", + "quantumDmgBoost": "Quantum damage boost", + "thunderDmgBoost": "Thunder damage boost", + "windDmgBoost": "Wind damage boost", + "pursued": "Additional damage", + "true damage": "True damage", + "follow-up": "Follow-up Damage", + "elemental damage": "Break and Super break damage", + "dot": "Damage over time ", + "qte": "QTE Skill", + "level": "Level", + "relics": "Relics", + "eidolons": "Eidolons", + "lightcones": "Lightcones", + "loadData": "Load data", + "exportData": "Export data", + "connectSetting": "Connection Setting", + "connected": "Connected", + "unconnected": "Unconnected", + "psConnection": "PS Connection", + "connectionType": "Connection Type", + "status": "Status", + "connectPs": "Connect PS", + "other": "Other", + "freeSr": "FreeSR", + "database": "Database", + "enka": "Enka", + "monsterSetting": "Monster Setting", + "serverUrl": "Server URL", + "privateType": "Private Type", + "local": "Local", + "server": "Server", + "username": "Username", + "password": "Password", + "placeholderServerUrl": "Enter server URL", + "placeholderUsername": "Enter username", + "placeholderPassword": "Enter password", + "connectedSuccess": "Connected to PS successfully", + "connectedFailed": "Failed to connect to PS", + "syncSuccess": "Synced data to PS successfully", + "syncFailed": "Failed to sync data to PS", + "sync": "Sync", + "importSetting": "Import Setting", + "profile": "Profile", + "default": "Default", + "copyProfiles": "Copy profiles", + "addNewProfile": "Add new profile", + "createNewProfile": "Create new profile", + "editProfile": "Edit profile", + "placeholderProfileName": "Enter profile name", + "profileName": "Profile name", + "create": "Create", + "update": "Update", + "characterInformation": "Character Information", + "skills": "Skills", + "showcaseCard": "Showcase Card", + "comingSoon": "Coming soon", + "characterName": "Character name", + "placeholderCharacter": "Enter character name", + "characterSettings": "Character Settings", + "levelConfiguration": "Level Configuration", + "characterLevel": "Character Level", + "max": "MAX", + "ultimateEnergy": "Ultimate Energy", + "currentEnergy": "Current Energy", + "setTo50": "Set to 50%", + "battleConfiguration": "Battle Configuration", + "useTechnique": "Use Technique", + "techniqueNote": "Enable pre-battle technique effects", + "enhancement": "Enhancement", + "enhancementLevel": "Enhancement Level", + "origin": "Origin", + "enhancedNote": "Higher enhanced unlock additional abilities", + "lightconeEquipment": "Lightcone Equipment", + "lightconeSettings": "Lightcone Settings", + "placeholderLevel": "Enter level", + "superimpositionRank": "Superimposition Rank", + "ranksNote": "Higher ranks provide stronger effects", + "changeLightcone": "Change Lightcone", + "removeLightcone": "Remove Lightcone", + "equipLightcone": "Equip Lightcone", + "noLightconeEquipped": "No Lightcone Equipped", + "equipLightconeNote": "Equip a lightcone to enhance your character's abilities", + "filter": "Filter", + "selectedCharacters": "Selected Characters", + "selectedProfiles": "Selected Profiles", + "clearAll": "Clear All", + "selectAll": "Select All", + "copy": "Copy", + "copied": "Copied", + "noAvatarSelected": "No avatar selected", + "noAvatarToCopySelected": "No avatar to copy selected", + "pleaseSelectAtLeastOneProfile": "Please select at least one profile", + "pleaseEnterUid": "Please enter UID", + "failedToFetchEnkaData": "Failed to fetch enka data", + "pleaseSelectAtLeastOneCharacter": "Please select at least one character", + "noDataToImport": "No data to import", + "pleaseSelectAFile": "Please select a file", + "fileMustBeAValidJsonFile": "File must be a valid json file", + "importEnkaDataSuccess": "Import Enka data success", + "importFreeSRDataSuccess": "Import FreeSR data success", + "importDatabaseSuccess": "Import database success", + "getData": "Get Data", + "import": "Import", + "freeSRImport": "FreeSR Import", + "onlySupportFreeSRJsonFile": "Only support FreeSR json file", + "pickAFile": "Pick a file", + "lightConeSetting": "LightCone Setting", + "relicMaker": "Relic Maker", + "pleaseSelectAllOptions": "Please select all options", + "relicSavedSuccessfully": "Relic saved successfully", + "mainSettings": "Main Settings", + "mainStat": "Main Stat", + "set": "Set", + "pleaseSelectASet": "Please select a set", + "effectBonus": "Effect Bonus", + "totalRoll": "Total Roll", + "randomizeStats": "Randomize Stats", + "randomizeRolls": "Randomize Rolls", + "selectASubStat": "Select a sub stat", + "selectASet": "Select a set", + "selectAMainStat": "Select a main stat", + "save": "Save", + "reset": "Reset", + "roll": "Roll", + "step": "Step" + + } +} \ No newline at end of file diff --git a/messages/ja.json b/messages/ja.json new file mode 100644 index 0000000..34fddf7 --- /dev/null +++ b/messages/ja.json @@ -0,0 +1,177 @@ +{ + "TabTitle": { + "title": "Firefly Tools", + "description": "Firefly tools by Kain" + }, + "DataPage": { + "skillType": "スキルタイプ", + "skillName": "スキル名", + "character": "キャラクター", + "id": "ID", + "path": "運命", + "rarity": "レアリティ", + "element": "属性", + "technique": "秘術", + "talent": "天賦", + "basic": "通常攻撃", + "skill": "スキル", + "ultimate": "アルティメット", + "servant": "サーバント", + "damage": "ダメージ", + "type": "タイプ", + "warrior": "破壊", + "knight": "保護", + "mage": "博識", + "priest": "豊穣", + "rogue": "狩猟", + "shaman": "調和", + "warlock": "虚無", + "memory": "記憶", + "fire": "火", + "ice": "氷", + "imaginary": "幻影", + "physical": "物理", + "quantum": "量子", + "thunder": "雷", + "wind": "風", + "hp": "HP", + "atk": "攻撃", + "speed": "速度", + "critRate": "会心率", + "critDmg": "会心ダメージ", + "breakEffect": "破甲ダメージ", + "effectRes": "効果抵抗", + "energyRegenerationRate": "エネルギー回復速度", + "effectHitRate": "効果命中率", + "outgoingHealingBoost": "回復増加", + "fireDmgBoost": "火属性ダメージ強化", + "iceDmgBoost": "氷属性ダメージ強化", + "imaginaryDmgBoost": "幻影ダメージ強化", + "physicalDmgBoost": "物理ダメージ強化", + "quantumDmgBoost": "量子ダメージ強化", + "thunderDmgBoost": "雷属性ダメージ強化", + "windDmgBoost": "風属性ダメージ強化", + "pursued": "追加ダメージ", + "true damage": "真のダメージ", + "follow-up": "追撃ダメージ", + "elemental damage": "破甲および超破甲ダメージ", + "dot": "継続ダメージ", + "qte": "QTEスキル", + "level": "レベル", + "relics": "遺物", + "eidolons": "エイドロン", + "lightcones": "ライトコーン", + "loadData": "データ読み込み", + "exportData": "データ出力", + "connectSetting": "接続設定", + "connected": "接続済み", + "unconnected": "未接続", + "psConnection": "PS接続", + "connectionType": "接続タイプ", + "status": "ステータス", + "connectPs": "PS接続", + "other": "その他", + "freeSr": "FreeSR", + "database": "データベース", + "enka": "Enka", + "monsterSetting": "モンスター設定", + "serverUrl": "サーバー URL", + "privateType": "プライベートタイプ", + "local": "ローカル", + "server": "サーバー", + "username": "ユーザー名", + "password": "パスワード", + "placeholderServerUrl": "サーバー URL を入力", + "placeholderUsername": "ユーザー名を入力", + "placeholderPassword": "パスワードを入力", + "connectedSuccess": "PS接続成功", + "connectedFailed": "PS接続失敗", + "syncSuccess": "PSへのデータ同期に成功", + "syncFailed": "PSへのデータ同期に失敗", + "sync": "同期", + "importSetting": "インポート設定", + "profile": "プロファイル", + "default": "デフォルト", + "copyProfiles": "プロファイルをコピー", + "addNewProfile": "プロファイルを追加", + "createNewProfile": "新しいプロファイルを作成", + "editProfile": "プロファイル編集", + "placeholderProfileName": "プロファイル名を入力", + "profileName": "プロファイル名", + "create": "作成", + "update": "更新", + "characterInformation": "キャラクター情報", + "skills": "スキル", + "showcaseCard": "ショーケースカード", + "comingSoon": "近日公開", + "characterName": "キャラクター名", + "placeholderCharacter": "キャラクター名を入力", + "characterSettings": "キャラクター設定", + "levelConfiguration": "レベル構成", + "characterLevel": "キャラクターレベル", + "max": "最大", + "ultimateEnergy": "アルティメットエネルギー", + "currentEnergy": "現在のエネルギー", + "setTo50": "50%に設定", + "battleConfiguration": "バトル構成", + "useTechnique": "秘術を使用", + "techniqueNote": "バトル前に秘術効果を有効化", + "enhancement": "強化", + "enhancementLevel": "強化レベル", + "origin": "由来", + "enhancedNote": "強化レベルが高いほど追加スキル解放", + "lightconeEquipment": "ライトコーン装備", + "lightconeSettings": "ライトコーン設定", + "placeholderLevel": "レベルを入力", + "superimpositionRank": "重ねランク", + "ranksNote": "ランクが高いほど効果強い", + "changeLightcone": "ライトコーン変更", + "removeLightcone": "ライトコーン解除", + "equipLightcone": "ライトコーン装備", + "noLightconeEquipped": "ライトコーン未装備", + "equipLightconeNote": "キャラクター強化のため装備してください", + "filter": "フィルター", + "selectedCharacters": "選択されたキャラクター", + "selectedProfiles": "選択されたプロファイル", + "clearAll": "すべてクリア", + "selectAll": "すべて選択", + "copy": "コピー", + "copied": "コピー済み", + "noAvatarSelected": "キャラクター未選択", + "noAvatarToCopySelected": "コピーするキャラクター未選択", + "pleaseSelectAtLeastOneProfile": "プロファイルを最低1つ選択してください", + "pleaseEnterUid": "UIDを入力してください", + "failedToFetchEnkaData": "Enka のデータ取得に失敗", + "pleaseSelectAtLeastOneCharacter": "キャラクターを最低1つ選択してください", + "noDataToImport": "インポートするデータがありません", + "pleaseSelectAFile": "ファイルを選択してください", + "fileMustBeAValidJsonFile": "有効な JSON ファイルである必要があります", + "importEnkaDataSuccess": "Enka データのインポート成功", + "importFreeSRDataSuccess": "FreeSR データのインポート成功", + "importDatabaseSuccess": "データベースのインポート成功", + "getData": "データ取得", + "import": "インポート", + "freeSRImport": "FreeSR インポート", + "onlySupportFreeSRJsonFile": "FreeSR JSON ファイルのみ対応", + "pickAFile": "ファイル選択", + "lightConeSetting": "ライトコーン設定", + "relicMaker": "遺物製作", + "pleaseSelectAllOptions": "すべてのオプションを選択してください", + "relicSavedSuccessfully": "遺物の保存に成功しました", + "mainSettings": "メイン設定", + "mainStat": "主属性", + "set": "セット", + "pleaseSelectASet": "セットを選択してください", + "effectBonus": "効果ボーナス", + "totalRoll": "総ロール数", + "randomizeStats": "ステータスランダム化", + "randomizeRolls": "ロール回数ランダム化", + "selectASubStat": "サブステータスを選択", + "selectASet": "セットを選択", + "selectAMainStat": "主属性を選択", + "save": "保存", + "reset": "リセット", + "roll": "ロール", + "step": "ステップ" + } +} \ No newline at end of file diff --git a/messages/ko.json b/messages/ko.json new file mode 100644 index 0000000..da89338 --- /dev/null +++ b/messages/ko.json @@ -0,0 +1,177 @@ +{ + "TabTitle": { + "title": "Firefly Tools", + "description": "Firefly tools by Kain" + }, + "DataPage": { + "skillType": "스킬 유형", + "skillName": "스킬 이름", + "character": "캐릭터", + "id": "ID", + "path": "운명", + "rarity": "희귀도", + "element": "속성", + "technique": "비기", + "talent": "탈렌트", + "basic": "기본 공격", + "skill": "스킬", + "ultimate": "궁극기", + "servant": "서번트", + "damage": "데미지", + "type": "종류", + "warrior": "파괴", + "knight": "보호", + "mage": "박학", + "priest": "풍요", + "rogue": "사냥", + "shaman": "조화", + "warlock": "허무", + "memory": "기억", + "fire": "화염", + "ice": "얼음", + "imaginary": "환상", + "physical": "물리", + "quantum": "양자", + "thunder": "번개", + "wind": "바람", + "hp": "HP", + "atk": "공격력", + "speed": "속도", + "critRate": "치명타 확률", + "critDmg": "치명타 피해", + "breakEffect": "파괴 피해", + "effectRes": "효과 저항", + "energyRegenerationRate": "에너지 회복속도", + "effectHitRate": "효과 적중률", + "outgoingHealingBoost": "치유 강화", + "fireDmgBoost": "화염 피해 증가", + "iceDmgBoost": "얼음 피해 증가", + "imaginaryDmgBoost": "환상 피해 증가", + "physicalDmgBoost": "물리 피해 증가", + "quantumDmgBoost": "양자 피해 증가", + "thunderDmgBoost": "번개 피해 증가", + "windDmgBoost": "바람 피해 증가", + "pursued": "추가 피해", + "true damage": "진실한 피해", + "follow-up": "후속 피해", + "elemental damage": "파괴 및 초파괴 피해", + "dot": "시간 경과 피해", + "qte": "QTE 스킬", + "level": "레벨", + "relics": "유물", + "eidolons": "에이돌론", + "lightcones": "라이트콘", + "loadData": "데이터 불러오기", + "exportData": "데이터 내보내기", + "connectSetting": "연결 설정", + "connected": "연결됨", + "unconnected": "연결 안됨", + "psConnection": "PS 연결", + "connectionType": "연결 타입", + "status": "상태", + "connectPs": "PS 연결", + "other": "기타", + "freeSr": "FreeSR", + "database": "데이터베이스", + "enka": "Enka", + "monsterSetting": "몬스터 설정", + "serverUrl": "서버 URL", + "privateType": "프라이빗 타입", + "local": "로컬", + "server": "서버", + "username": "사용자명", + "password": "비밀번호", + "placeholderServerUrl": "서버 URL 입력", + "placeholderUsername": "사용자명 입력", + "placeholderPassword": "비밀번호 입력", + "connectedSuccess": "PS에 성공적으로 연결됨", + "connectedFailed": "PS 연결 실패", + "syncSuccess": "PS에 데이터 동기화 성공", + "syncFailed": "PS에 데이터 동기화 실패", + "sync": "동기화", + "importSetting": "설정 가져오기", + "profile": "프로필", + "default": "기본", + "copyProfiles": "프로필 복사", + "addNewProfile": "새 프로필 추가", + "createNewProfile": "새 프로필 생성", + "editProfile": "프로필 편집", + "placeholderProfileName": "프로필 이름 입력", + "profileName": "프로필 이름", + "create": "생성", + "update": "업데이트", + "characterInformation": "캐릭터 정보", + "skills": "스킬", + "showcaseCard": "쇼케이스 카드", + "comingSoon": "곧 출시", + "characterName": "캐릭터 이름", + "placeholderCharacter": "캐릭터 이름 입력", + "characterSettings": "캐릭터 설정", + "levelConfiguration": "레벨 구성", + "characterLevel": "캐릭터 레벨", + "max": "최대", + "ultimateEnergy": "궁극 에너지", + "currentEnergy": "현재 에너지", + "setTo50": "50%로 설정", + "battleConfiguration": "전투 구성", + "useTechnique": "비기 사용", + "techniqueNote": "전투 전 비기 효과 활성화", + "enhancement": "강화", + "enhancementLevel": "강화 레벨", + "origin": "출처", + "enhancedNote": "강화 레벨이 높을수록 추가 효과 해제", + "lightconeEquipment": "라이트콘 장비", + "lightconeSettings": "라이트콘 설정", + "placeholderLevel": "레벨 입력", + "superimpositionRank": "중첩 등급", + "ranksNote": "등급이 높을수록 효과가 강함", + "changeLightcone": "라이트콘 변경", + "removeLightcone": "라이트콘 제거", + "equipLightcone": "라이트콘 장착", + "noLightconeEquipped": "라이트콘 미장착", + "equipLightconeNote": "캐릭터 능력 향상을 위해 장착하세요", + "filter": "필터", + "selectedCharacters": "선택된 캐릭터", + "selectedProfiles": "선택된 프로필", + "clearAll": "전체 지우기", + "selectAll": "전체 선택", + "copy": "복사", + "copied": "복사됨", + "noAvatarSelected": "캐릭터가 선택되지 않음", + "noAvatarToCopySelected": "복사할 캐릭터가 선택되지 않음", + "pleaseSelectAtLeastOneProfile": "프로필을 최소 하나 선택하세요", + "pleaseEnterUid": "UID를 입력해주세요", + "failedToFetchEnkaData": "Enka 데이터 가져오기 실패", + "pleaseSelectAtLeastOneCharacter": "캐릭터를 최소 하나 선택하세요", + "noDataToImport": "가져올 데이터가 없습니다", + "pleaseSelectAFile": "파일을 선택하세요", + "fileMustBeAValidJsonFile": "유효한 JSON 파일이어야 합니다", + "importEnkaDataSuccess": "Enka 데이터 가져오기 성공", + "importFreeSRDataSuccess": "FreeSR 데이터 가져오기 성공", + "importDatabaseSuccess": "데이터베이스 가져오기 성공", + "getData": "데이터 가져오기", + "import": "가져오기", + "freeSRImport": "FreeSR 가져오기", + "onlySupportFreeSRJsonFile": "FreeSR JSON 파일만 지원", + "pickAFile": "파일 선택", + "lightConeSetting": "라이트콘 설정", + "relicMaker": "유물 제작", + "pleaseSelectAllOptions": "모든 옵션을 선택해주세요", + "relicSavedSuccessfully": "유물 저장 성공", + "mainSettings": "메인 설정", + "mainStat": "주 속성", + "set": "세트", + "pleaseSelectASet": "세트 하나를 선택해주세요", + "effectBonus": "효과 보너스", + "totalRoll": "총 횟수", + "randomizeStats": "속성 랜덤화", + "randomizeRolls": "횟수 랜덤화", + "selectASubStat": "부 속성 선택", + "selectASet": "세트 선택", + "selectAMainStat": "주 속성 선택", + "save": "저장", + "reset": "초기화", + "roll": "굴리기", + "step": "단계" + } +} diff --git a/messages/vi.json b/messages/vi.json new file mode 100644 index 0000000..06ad3ae --- /dev/null +++ b/messages/vi.json @@ -0,0 +1,177 @@ +{ + "TabTitle": { + "title": "Firefly Tools", + "description": "Firefly tools by Kain" + }, + "DataPage": { + "skillType": "Loại kỹ năng", + "skillName": "Tên kỹ năng", + "character": "Nhân vật", + "id": "ID", + "path": "Vận mệnh", + "rarity": "Độ hiếm", + "element": "Nguyên tố", + "technique": "Bí kỹ", + "talent": "Thiên phú", + "basic": "Đánh thường", + "skill": "Kỹ năng", + "ultimate": "Tuyệt kỹ", + "servant": "Phụ trợ", + "damage": "Sát thương", + "type": "Loại", + "warrior": "Hủy Diệt", + "knight": "Bảo Hộ", + "mage": "Tri Thức", + "priest": "Trù phú", + "rogue": "Săn Bắn", + "shaman": "Hòa Hợp", + "warlock": "Hư Vô", + "memory": "Ký Ức", + "fire": "Hỏa", + "ice": "Băng", + "imaginary": "Ảo Ảnh", + "physical": "Vật Lý", + "quantum": "Lượng Tử", + "thunder": "Lôi", + "wind": "Phong", + "hp": "HP", + "atk": "Tấn công", + "speed": "Tốc độ", + "critRate": "Tỷ lệ bạo", + "critDmg": "ST bạo", + "breakEffect": "sát thương kích phá", + "effectRes": "Kháng hiệu ứng", + "energyRegenerationRate": "Tốc độ hồi năng lượng", + "effectHitRate": "Tỷ lệ trúng hiệu ứng", + "outgoingHealingBoost": "Tăng hồi phục", + "fireDmgBoost": "Tăng sát thương Hỏa", + "iceDmgBoost": "Tăng sát thương Băng", + "imaginaryDmgBoost": "Tăng sát thương Ảo Ảnh", + "physicalDmgBoost": "Tăng sát thương Vật Lý", + "quantumDmgBoost": "Tăng sát thương Lượng Tử", + "thunderDmgBoost": "Tăng sát thương Lôi", + "windDmgBoost": "Tăng sát thương Phong", + "pursued": "Sát thương thêm", + "true damage": "Sát thương chuẩn", + "follow-up": "Sát thương phản kích", + "elemental damage": "Sát thương kích phá và siêu kích phá", + "dot": "Sát thương theo thời gian", + "qte": "Kỹ năng QTE", + "level": "Cấp độ", + "relics": "Thánh di vật", + "eidolons": "Tinh hồn", + "lightcones": "Nón ánh sáng", + "loadData": "Tải dữ liệu", + "exportData": "Xuất dữ liệu", + "connectSetting": "Cài đặt kết nối", + "connected": "Đã kết nối", + "unconnected": "Chưa kết nối", + "psConnection": "Kết nối PS", + "connectionType": "Loại kết nối", + "status": "Trạng thái", + "connectPs": "Kết nối PS", + "other": "Khác", + "freeSr": "FreeSR", + "database": "Database", + "enka": "Enka", + "monsterSetting": "Cài đặt quái", + "serverUrl": "Địa chỉ server", + "privateType": "Loại riêng tư", + "local": "Cục bộ", + "server": "Máy chủ", + "username": "Tên người dùng", + "password": "Mật khẩu", + "placeholderServerUrl": "Nhập địa chỉ server", + "placeholderUsername": "Nhập tên người dùng", + "placeholderPassword": "Nhập mật khẩu", + "connectedSuccess": "Kết nối PS thành công", + "connectedFailed": "Kết nối PS thất bại", + "syncSuccess": "Đồng bộ dữ liệu với PS thành công", + "syncFailed": "Đồng bộ dữ liệu với PS thất bại", + "sync": "Đồng bộ", + "importSetting": "Cài đặt nhập", + "profile": "Hồ sơ", + "default": "Mặc định", + "copyProfiles": "Sao chép hồ sơ", + "addNewProfile": "Thêm hồ sơ mới", + "createNewProfile": "Tạo hồ sơ mới", + "editProfile": "Chỉnh sửa hồ sơ", + "placeholderProfileName": "Nhập tên hồ sơ", + "profileName": "Tên hồ sơ", + "create": "Tạo", + "update": "Cập nhật", + "characterInformation": "Thông tin nhân vật", + "skills": "Kỹ năng", + "showcaseCard": "Thẻ trưng bày", + "comingSoon": "Sắp ra mắt", + "characterName": "Tên nhân vật", + "placeholderCharacter": "Nhập tên nhân vật", + "characterSettings": "Cài đặt nhân vật", + "levelConfiguration": "Cấu hình cấp độ", + "characterLevel": "Cấp độ nhân vật", + "max": "Tối đa", + "ultimateEnergy": "Năng lượng tuyệt kỹ", + "currentEnergy": "Năng lượng hiện tại", + "setTo50": "Đặt thành 50%", + "battleConfiguration": "Cấu hình trận đấu", + "useTechnique": "Dùng chiến pháp", + "techniqueNote": "Bật hiệu ứng chiến pháp trước trận", + "enhancement": "Cường hóa", + "enhancementLevel": "Cấp độ cường hóa", + "origin": "Nguồn gốc", + "enhancedNote": "Cường hóa cao mở thêm kỹ năng", + "lightconeEquipment": "Trang bị nón ánh sáng", + "lightconeSettings": "Cài đặt nón ánh sáng", + "placeholderLevel": "Nhập cấp độ", + "superimpositionRank": "Bậc chồng kỹ năng", + "ranksNote": "Bậc càng cao hiệu ứng càng mạnh", + "changeLightcone": "Thay đổi nón ánh sáng", + "removeLightcone": "Gỡ nón ánh sáng", + "equipLightcone": "Trang bị nón ánh sáng", + "noLightconeEquipped": "Chưa trang bị nón ánh sáng", + "equipLightconeNote": "Trang bị nón để tăng sức mạnh cho nhân vật", + "filter": "Lọc", + "selectedCharacters": "Nhân vật đã chọn", + "selectedProfiles": "Hồ sơ đã chọn", + "clearAll": "Xóa tất cả", + "selectAll": "Chọn tất cả", + "copy": "Sao chép", + "copied": "Đã sao chép", + "noAvatarSelected": "Chưa chọn nhân vật", + "noAvatarToCopySelected": "Chưa chọn nhân vật để sao chép", + "pleaseSelectAtLeastOneProfile": "Vui lòng chọn ít nhất một hồ sơ", + "pleaseEnterUid": "Vui lòng nhập UID", + "failedToFetchEnkaData": "Lấy dữ liệu Enka thất bại", + "pleaseSelectAtLeastOneCharacter": "Vui lòng chọn ít nhất một nhân vật", + "noDataToImport": "Không có dữ liệu để nhập", + "pleaseSelectAFile": "Vui lòng chọn một tệp", + "fileMustBeAValidJsonFile": "Tệp phải là tệp JSON hợp lệ", + "importEnkaDataSuccess": "Nhập dữ liệu Enka thành công", + "importFreeSRDataSuccess": "Nhập dữ liệu FreeSR thành công", + "importDatabaseSuccess": "Nhập cơ sở dữ liệu thành công", + "getData": "Lấy dữ liệu", + "import": "Nhập", + "freeSRImport": "Nhập FreeSR", + "onlySupportFreeSRJsonFile": "Chỉ hỗ trợ tệp JSON từ FreeSR", + "pickAFile": "Chọn tệp", + "lightConeSetting": "Cài đặt Nón Ánh Sáng", + "relicMaker": "Trình tạo Thánh Di Vật", + "pleaseSelectAllOptions": "Vui lòng chọn tất cả tùy chọn", + "relicSavedSuccessfully": "Lưu thánh di vật thành công", + "mainSettings": "Cài đặt chính", + "mainStat": "Chỉ số chính", + "set": "Bộ", + "pleaseSelectASet": "Vui lòng chọn một bộ", + "effectBonus": "Hiệu ứng cộng thêm", + "totalRoll": "Tổng lượt lăn", + "randomizeStats": "Ngẫu nhiên chỉ số", + "randomizeRolls": "Ngẫu nhiên lượt lăn", + "selectASubStat": "Chọn chỉ số phụ", + "selectASet": "Chọn một bộ", + "selectAMainStat": "Chọn chỉ số chính", + "save": "Lưu", + "reset": "Đặt lại", + "roll": "Sô lượt", + "step": "Bước nhảy" + } +} diff --git a/messages/zh.json b/messages/zh.json new file mode 100644 index 0000000..62f020d --- /dev/null +++ b/messages/zh.json @@ -0,0 +1,177 @@ +{ + "TabTitle": { + "title": "Firefly Tools", + "description": "Firefly tools by Kain" + }, + "DataPage": { + "skillType": "技能类型", + "skillName": "技能名称", + "character": "角色", + "id": "ID", + "path": "命运", + "rarity": "稀有度", + "element": "元素", + "technique": "秘术", + "talent": "天赋", + "basic": "普通攻击", + "skill": "技能", + "ultimate": "终极技", + "servant": "仆从", + "damage": "伤害", + "type": "类型", + "warrior": "毁灭", + "knight": "守护", + "mage": "博学", + "priest": "丰饶", + "rogue": "狩猎", + "shaman": "和谐", + "warlock": "虚无", + "memory": "回忆", + "fire": "火", + "ice": "冰", + "imaginary": "幻象", + "physical": "物理", + "quantum": "量子", + "thunder": "雷", + "wind": "风", + "hp": "生命值", + "atk": "攻击", + "speed": "速度", + "critRate": "暴击率", + "critDmg": "暴击伤害", + "breakEffect": "破甲伤害", + "effectRes": "效果抗性", + "energyRegenerationRate": "能量恢复速率", + "effectHitRate": "效果命中率", + "outgoingHealingBoost": "治疗增强", + "fireDmgBoost": "火元素伤害增强", + "iceDmgBoost": "冰元素伤害增强", + "imaginaryDmgBoost": "幻象伤害增强", + "physicalDmgBoost": "物理伤害增强", + "quantumDmgBoost": "量子伤害增强", + "thunderDmgBoost": "雷元素伤害增强", + "windDmgBoost": "风元素伤害增强", + "pursued": "附加伤害", + "true damage": "真实伤害", + "follow-up": "后续伤害", + "elemental damage": "破甲与超破甲伤害", + "dot": "持续伤害", + "qte": "QTE 技能", + "level": "等级", + "relics": "遗器", + "eidolons": "虚数形态", + "lightcones": "光锥", + "loadData": "加载数据", + "exportData": "导出数据", + "connectSetting": "连接设置", + "connected": "已连接", + "unconnected": "未连接", + "psConnection": "PS 连接", + "connectionType": "连接类型", + "status": "状态", + "connectPs": "连接 PS", + "other": "其他", + "freeSr": "FreeSR", + "database": "数据库", + "enka": "Enka", + "monsterSetting": "怪物设置", + "serverUrl": "服务器 URL", + "privateType": "私有类型", + "local": "本地", + "server": "服务器", + "username": "用户名", + "password": "密码", + "placeholderServerUrl": "输入服务器 URL", + "placeholderUsername": "输入用户名", + "placeholderPassword": "输入密码", + "connectedSuccess": "成功连接 PS", + "connectedFailed": "连接 PS 失败", + "syncSuccess": "已成功与 PS 同步数据", + "syncFailed": "与 PS 同步数据失败", + "sync": "同步", + "importSetting": "导入设置", + "profile": "配置档", + "default": "默认", + "copyProfiles": "复制配置档", + "addNewProfile": "添加新配置档", + "createNewProfile": "创建新配置档", + "editProfile": "编辑配置档", + "placeholderProfileName": "输入配置档名称", + "profileName": "配置档名称", + "create": "创建", + "update": "更新", + "characterInformation": "角色信息", + "skills": "技能", + "showcaseCard": "展示卡", + "comingSoon": "敬请期待", + "characterName": "角色名称", + "placeholderCharacter": "输入角色名称", + "characterSettings": "角色设置", + "levelConfiguration": "等级配置", + "characterLevel": "角色等级", + "max": "最大", + "ultimateEnergy": "终极能量", + "currentEnergy": "当前能量", + "setTo50": "设为50%", + "battleConfiguration": "战斗配置", + "useTechnique": "使用秘术", + "techniqueNote": "启用战前秘术效果", + "enhancement": "强化", + "enhancementLevel": "强化等级", + "origin": "来源", + "enhancedNote": "强化更高可解锁额外技能", + "lightconeEquipment": "光锥装备", + "lightconeSettings": "光锥设置", + "placeholderLevel": "输入等级", + "superimpositionRank": "叠加等级", + "ranksNote": "更高等级提供更强效果", + "changeLightcone": "更换光锥", + "removeLightcone": "移除光锥", + "equipLightcone": "装备光锥", + "noLightconeEquipped": "未装备光锥", + "equipLightconeNote": "装备光锥以增强角色能力", + "filter": "筛选", + "selectedCharacters": "已选角色", + "selectedProfiles": "已选配置档", + "clearAll": "清除全部", + "selectAll": "全选", + "copy": "复制", + "copied": "已复制", + "noAvatarSelected": "未选择角色", + "noAvatarToCopySelected": "未选择要复制的角色", + "pleaseSelectAtLeastOneProfile": "请至少选择一个配置档", + "pleaseEnterUid": "请输入 UID", + "failedToFetchEnkaData": "获取 Enka 数据失败", + "pleaseSelectAtLeastOneCharacter": "请至少选择一个角色", + "noDataToImport": "无可导入数据", + "pleaseSelectAFile": "请选择一个文件", + "fileMustBeAValidJsonFile": "文件必须为有效 JSON", + "importEnkaDataSuccess": "导入 Enka 数据成功", + "importFreeSRDataSuccess": "导入 FreeSR 数据成功", + "importDatabaseSuccess": "导入数据库成功", + "getData": "获取数据", + "import": "导入", + "freeSRImport": "导入 FreeSR", + "onlySupportFreeSRJsonFile": "仅支持 FreeSR JSON 文件", + "pickAFile": "选择文件", + "lightConeSetting": "光锥设置", + "relicMaker": "遗器制作", + "pleaseSelectAllOptions": "请选择所有选项", + "relicSavedSuccessfully": "遗器已成功保存", + "mainSettings": "主设置", + "mainStat": "主属性", + "set": "套装", + "pleaseSelectASet": "请选择一个套装", + "effectBonus": "效果加成", + "totalRoll": "总次数", + "randomizeStats": "随机属性", + "randomizeRolls": "随机次数", + "selectASubStat": "选择副属性", + "selectASet": "选择套装", + "selectAMainStat": "选择主属性", + "save": "保存", + "reset": "重置", + "roll": "滚动", + "step": "步数" + } +} \ No newline at end of file diff --git a/next.config.ts b/next.config.ts index e9ffa30..aca80d4 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,42 @@ + +import createNextIntlPlugin from "next-intl/plugin"; import type { NextConfig } from "next"; + +const withNextIntl = createNextIntlPlugin() const nextConfig: NextConfig = { - /* config options here */ + reactStrictMode: false, + output: 'standalone', + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: 'localhost', + pathname: '**', + }, + { + protocol: 'http', + hostname: 'localhost', + pathname: '**', + }, + { + protocol: 'https', + hostname: 'api.hakush.in', + pathname: '**', + }, + ], + }, + eslint: { + ignoreDuringBuilds: true, + }, + async rewrites() { + return [ + { + source: '/api/character/:id', + destination: 'https://api.hakush.in/hsr/data/en/character/:id.json', + }, + ]; + }, }; -export default nextConfig; +export default withNextIntl(nextConfig); diff --git a/package.json b/package.json index b9ad8f2..2fa3337 100644 --- a/package.json +++ b/package.json @@ -9,19 +9,31 @@ "lint": "next lint" }, "dependencies": { + "axios": "^1.10.0", + "framer-motion": "^12.12.1", + "next": "15.3.2", + "next-intl": "^4.1.0", "react": "^19.0.0", "react-dom": "^19.0.0", - "next": "15.3.2" + "react-select": "^5.10.1", + "react-toastify": "^11.0.5", + "socket.io-client": "^4.8.1", + "zod": "^3.25.67", + "zustand": "^5.0.5" }, "devDependencies": { - "typescript": "^5", + "@eslint/eslintrc": "^3", + "@tailwindcss/postcss": "^4", + "@types/jest": "^29.5.14", "@types/node": "^20", "@types/react": "^19", "@types/react-dom": "^19", - "@tailwindcss/postcss": "^4", - "tailwindcss": "^4", + "daisyui": "^5.0.27", "eslint": "^9", - "eslint-config-next": "15.3.2", - "@eslint/eslintrc": "^3" + "eslint-config-next": "15.3.1", + "tailwind-scrollbar": "^4.0.2", + "tailwindcss": "^4", + "ts-to-zod": "^3.15.0", + "typescript": "^5" } } diff --git a/public/icon/attack.webp b/public/icon/attack.webp new file mode 100644 index 0000000000000000000000000000000000000000..73328b235d006c5c7845287f46b6ec052612d92c GIT binary patch literal 958 zcmV;v13~;!Nk&Gt0{{S5MM6+kP&il$0000G0001g004gg06|PpNK^v=00EE%*|upr z^S#)%ZQHhO+qP}nwr$(CZ9BQC`Ek!#=iZ%lz7r7>fdADD2pc1Dx*Ube*KgZ|JQ|hcadt&L7kLK=+qtju74#!t1D-AxHP^Dcaol2rnTAF+|nMUi4 zx|mX-q%`_U8ikgabv=VVacTDLO!~|;?0!~tqInE^lwF;1H2hgEZNmRF?NwfF2GR7l z`IQOz#kdcJl<7|6KNr;{=v(u?mei#+&Hr9TmuLR~tENhrbRN z4x&j_I{jQ3*XZ9z4WR3FCp!{jB>g)oEOaeR`Jc8xV)}JmI{fniPR_{=qy@0oA16ye z!6FAjiwaWQ699_Q_b*#Q#UZ>HNpehbGCREQ`)+a+=y;pF71u61g~MRkiN4;F6-s6y z$)_o8cH3Pp0L$<{e0077)Ew=_k6A4W&~|bVSTCSYKXihk4=nh*h}RseyCqb_Rf+i69K}($V)m zfl#(O<%8jLAe}Bv40W@=MHx3qa#H$tXeg*1 z>Zpu|LfT!HtWE{hx5#)Qid93}A1e;+7t44jzE@(}K5YUQoFe1%)BsX_u^JZP zWbE!5fv4#`4aoLM#$j%;o7PK#)X!y{>JF=Ezbydq@5s2+4Q5e#JPe{-ka4SiQz*Y2 z9U%|Ncr>(jbow9Vz4UG8@aVc9|8pE7wYyyDsyt%Uq?*U@K*=%Ir-U9l6Y~M`fOV7c+uLquZQ_ zm;km)!xUL$u2Xa+lnai0xJAYo+Z^!65)l;^>j(N93vCGi*hOZ908lP4s!F(xh^U}U z1$yTd7I_L$Zz!xrl@J}p#29;BlDiDUD5OPE@Cu536NTmTi|OPT2-^zD6hcG*4k^=^ zJ2x2-kshc!7TnafK1*W_@!*e6Y3_Gp5)EHl8`K*QAFZ3tn7@xrH0Kt5*hu)#Zk&iH z9uZ*$5ydOP)CL6!fMZh$MMIJ@8ud|51UHR9bSLrP=)?Rw5o%@{!b}jLstMUmhA&!( zh+@41lvy+ptpoUmKCBb~JB1)#2hgt(^3y;y!Ak&2v2Fq|RwJcU;3az^Rsf($BNU{9 zH!LEGcoG2S5s}IQfW36$q=T@Oq!PoCPSXj6=>SgDeNsJ!D_yRYYFcpP2|KDLJ*W@H z*v!=6n-_Hb$lEa_$iEY(8AmwMSYJ%n}~SJkEX-P8(yBR$~Q7@?_H zuE6SAp$;L^!%}{N3QMGM|EOB@LiLq_rAs5;lXil-T{D%H61SBxc22~enlUr7j4}39 z#6DVKjNO$Dj5Wso9^nv?R+=-?X|yBqDBZ9(ve9oWiR#qOf^49vOJ5XbqqZXIbp4dG z5m!TI);je=ZsA!OJ6=QNXX^+Zm9ll9j_Bh|EzT9ukS5Edm{B`qYIjoS=I8)n5CpYa z&G-E$dU|?X*R5WesjYHGWO>N>21GP^y*v?FUatP1BYjoPNpz!^qu)j{#wdVGM3f(* zlAoK8nB)U)&WIMioRb%$VCRkVg?+iWJ4R^cDB1~faD~KQ27s~#*qCydxlTo&RMP=t z^DfNVo{G8@>VfeMZqHV;G#WZ#j5T>#GNm;D2vOGuqmrMQfTV2|kL!fUela7S;&4TW zUWo7fVkWAJ3lwIKC{@n+$-id6Ciz(as8XIRyHqOKw&Rq`RoC@AzgGL?lTY6GI|G(9 z^bY_5<*Ly|PD7I00H85nL{>S-g{L?jKnLZ5BAIgYOTWpSs3>YeREXu0h~~y&jPG>S zCmAbA7DR>ebBFJkaX9B~XFQiBQ*v=U_o;GYiVKmHhid;ceR^wm|+;)vdivM->-}YDffoa zuL2NyWh<6JM8x^H2HUAz)%|#H-zVRH|NC#hg<-v~@8u_YDrKgLvHel+5CRB;M=m{a-yNG*pE-NF)w=x_4Ks%g(2aWQYwJRYc=3f00%6TPx^0rlv~89u zy0H<}mSXEInsd&Hh!|tcFbty@R!tXH zP&gn;0000m1pu7^Du4ih00000C8fKC(m+cGmc2e?@utt=6Fy||rqMB`(JfXu?FJh3 gdkzepKmh*#``exk@Eg$&>c)c>m#N<=3Ftro023fb00000 literal 0 HcmV?d00001 diff --git a/public/icon/crit-damage.webp b/public/icon/crit-damage.webp new file mode 100644 index 0000000000000000000000000000000000000000..7d5156f3ace824c4c1323509ea0bdc0079288dce GIT binary patch literal 1398 zcmV-+1&R7nNk&F)1pok7MM6+kP&il$0000G0001g004gg06|PpNDKu400E#yZJQxU z`l^kwZQHhO+qP}nwr$%s8|$$>?fxz*BC;wf>UK{=OaT7x?8X;~+}jTFzRis#yh@UX zER3z?MzV)cxJ1S4FnPSTyD0OO(qXcccW8gLrCVrC)mEZ>|55t5o44_XQN5yF^)Rab z7+|=av>G4iLiLEohWpn_S70L5@27_06TDFRR0>#2^`ky8euf_kL0RB;is~!j4ok`| z#Y6f>R38KP*h;hoDDsx-9pEm9+06jzM^pJ{CAiO}WN)B1)&I&3ce=MHFoWthlfvC@ zq557MfK2Wr&Sk1E1b{U$v%K6!mLRGR1(0YT$!B%lM5#|yZvg-YDcqCM9Wh zZK};`ePMBr5@SXis=P{ULjZZ&s-#yV?^ZRE?VaphQ2+%$bDg&g%Po+bQWyy9C6Chs zwq}te9~YM;jI_e{9Szi2bUF}#?G=UnC75K1JX6#-al-7@L)c%$gNa4H->i`{ybXiH zBqu@a^Hs!us|e8B5qw_PFkQ&5kWZJ8lLUC-2y$;mqvU?q42mfgcs7$=Gso~}Ka=>S zg7QuUerXH6u_+^FRZ=6DIN@E%o?HeGG&bdUZ6>V7;1~C{CDGbxedMT2(MoCasDa2}gCxZKg6BMQ1b< z9_bUFR1jFVRMx}+HiNX*=Ubq_?+f|+W9Y4uJ623zUC{&{@3eX2E5J@Fe#vhFjL|04 zCK{-)6J|^prOQKzYs(hFlxualCdnrm3B6OL35b(8ea^z=YBp}$WAM0Xi`MKoQBRar zms64yk%ErUyx2K1B8nC_h;TxagOWJkNk-Oy_DM#*qvf-b@|tXw_@kR0kNK(`>Ju@cV@T1=IcqJ3JI0lEb#{3XEz zEk;Q?2`;%1Fhs_Vk|fbO43Ml5u!ActRrr=bgpE3M6WLyi!VsQB5}H6GLYrgV_{C(l>8 zMgNJ*_FR1SDco8qyX=uFT;~#N>Byf`5{Z-pQsl4Fa^R%pdoKljjt~?9ko_&y%ep{U zI{3qc)RvS3Qx>S!dc@R3K&`K|_$7gM1?c#&HRT;A&#{@-$LbdF)(IpZOekb?Mup8( z{QdIU?zzKTm(Q3&x07^w$b$B1ZI1A-F!eEoS5{2wRkvUgAGqd3Y8e%}ePYM*S>pNF z0C>kqU%JEOBOfVG4Ogy3onwEz4t?@C=*9OaTFmH5DZ{jKd=6K7Onq04xE*bv?X({C z<6X#|a|bsqnL6yK(!&}6GW6c^!7zi#u&@6NyhzcWG9mRGxJ4{cI37RG9>+ zf3@j%qYYBMOx9#^yx{O^vQveip0UrikEU>T4$-^zaG-yU>GxyI7x=?&V=_28bKf1G z42P%W{c3P(K+TyCV#!>_3gS3um}SV`9Hz4Mr~*wrP4&N00aj2rAUps70Pq9=odGI< z0Du4h001SWyM@v~O9z&{K4kHx(J`jcF{aTmrqMB`(J`jcF{aTf0092~``exX00000 E0OU!gaR2}S literal 0 HcmV?d00001 diff --git a/public/icon/crit-rate.webp b/public/icon/crit-rate.webp new file mode 100644 index 0000000000000000000000000000000000000000..02a30a0d0c7daf33fef6614523f82057ff81b4ab GIT binary patch literal 1308 zcmV+%1>^csNk&E#1pok7MM6+kP&il$0000G0001g004gg06|PpNTUP*00Hm>ZQCMA z`TyNlWa8F|yH*YE6z(MMkn|3huEBN$HMldjL%Ifc=}FunaqsScohI(qk;v=sn{h4b z$>+{_^67YYL_|!0{3T^r|GyS>y0g=~U@;A?w984?qU3wPdBIxu^*h0Aubj@>5hg z)bZ1ZONpPJcd6^6U?sXd+e@>Y$Z}KarAa3crG^O~&7g~Y0Q5q#vc^idlL11W8Ima6xDzXS& zs%Mx|4e#&*(4l=Fz~`!`MFc>L`lrJX0Gc-2ZWe%;>g`QqHSoQ)eUMuX2LLkFq!?Od z9sFUt=Ebxub_@cbL-oO?v3mIDKCS^+HUdx;EU=i^NJN4lRg~o?7zkUeJrU=Uykk{V zy)YyLD^Zo0?yHZ9bF;{<#V{*J#Td*{O~KG&{R>;pJwY;Ex+1OUNkySL-*jJnU2z;h zL6Ug~gX@!IS(b^22mqW#?Pn`su*F)-vYgsm-0RTX9oX`VfvFu(^_3=F0mcXG8gEGh zx)n@U01!Svj<-;CB$Zv5TmP+T6lg-fil6KTgyF>x02Z&=O>|KCU`-=vMs7i#69Rx# z0v%fS12Kndv&OQVilvbN?H`I1sZEhUs&1=gyag{X?^s2&%-XP6n{|!?jVTml&t|s8 zRe;THb)1a`t^KNok3;|l7B4FD7-G8<^+gP6EC9^bFpo_a(ws)HJ6xAVXc&@0LG}zU znq~qD>FUrpv@;FU6-8v#n@CRX80aut!?a1&vo-u;&oBf|`}=)TCoonjcyZV~#D#*q zCnjxv>G*-W`gETJ;Z?niz1@y>!T2d!4^!JKS6Oo2h zo>aB2SRZ__)cpd@vmxHxV$v`yZYDHl9e5-R`y_7*-54qc@&xcpcsjob9a%_{qeJ4C z!QD3(2LZ$+vz=wS22ij_Ak$dJeuU|)o5#R(w#?DX$X~Ao09H^qAW8rL08j-0odGI< z0Du4h001SWyM@v~O9z&{K4kHx(J`jcEmk<~22UDQcD+56%TGN)lg3y80RI2`+nxdC S0RDIpFSZ@%D#Q2y0002W6J!_w literal 0 HcmV?d00001 diff --git a/public/icon/defence.webp b/public/icon/defence.webp new file mode 100644 index 0000000000000000000000000000000000000000..e17bad1c0ec5eaee7bdab8e6437bc1f44dfa0883 GIT binary patch literal 1444 zcmV;V1zY-3Nk>1pok7MM6+kP&il$0000G0001g004gg06|PpNIC@o00E#zTida@ zIfF0GICg5=wymk#QEl6{Z9AN(Ml`4y*8Wm!aQ%4i_j$kXdEW1DS42zz|MR-+oO8+w z*$UVHDE)Z-3WaKmCl&kT7KLcXsdApSW1-pMB_)1oheERXH05;K=7nO_XO;73S1knP zH!80;mZ#o-4J?dH#NSCJ7X01y2+U~^e z{#pXHZk9?{DdEez;JnMrZqk+Mv+7K_&)fxjnPm*vWu}{Eu97lM9de$3AolwAOZTsD zz=89f)X|hCB@fH}(w>+*Hp^_@(V*w0PSV3Asj*_aoF}h}x%=yKe0}!_tUB3A?JK6l z9)HO-dno1(uPNbcJ4E2ntc(8IJr&NB^SBX2*PEmqPFgR*h;c5`X(@2GT>onzT6LRp zd|NfqhW}i2S7=2Orgq3HxXhKm?{pZN_4x-C9E3eJV6TRIhQf>!1ZSLG=4njxYBHI9}c!577H%2YuQvfZ`T8K2P)xd3*=a=N;5i?B6&!J^_%K zDzB$z03LVHIPb2N_s(AA;5Qv~$;Pyv3} z4=8%a;dIaD#>}e*n5`gZ160q8nLE(4(_#(;GEXSbCo;eRF{k1A=$Ko8ofPa&z|AqE zePg!uO9n=EhSE6_GQU`}@%|)By8`1w84v6x`(*!y$22Br z82^+(&)=-q3Gir3djije@f@(H?4v^%*kwHh>=VX5z*AP&zz~>j{n;0K{T{*}y`j&a z)^vibvs4Q_7Q$mdt?armDm$$4z^)K+V5-}v?oFr?dhnqYUcbOLarZ#M!b$lfiS z(yY}2tmE4{K#P?v4TpOyEd$K+YaXzS?0X1!vzQBk3;enexG-k3kodxy2aNS=DPW%U z1wmhJX#?ObpWXsCkbQMntH#_3H2Ty8+!?cKSiEaxGf@7YKmS!gY1Vp|z)!ZcC-9^{ zPXT+%J~^}@-PUAaOMkWmCdUj3jj5J~0*icE1PqlumEdb*&H~Q!<$U0*nA-4q{$|Yw zhWauLm}mXoGd%9KvcWZz8+t{3wRu)ZJb1JB2-od$ejbq@q)`tTMoT=oZ~ z;whFc1IBdauX_w|Wy}fbP}61o-V@k9f7=5+f44fT(t&3zJqEDp_xbsLQ-H^0KTS$* z9HUbKhBfD-c^JT{irqLZ_$WrF5v~0!SD)1qJx#G6lbVOe>8=Q+Coasz!V^o0-l_P* z)1xFCrB*>!R~k~DqGMPD`< zklE(CkED;T+a`nE^rc+iB2}xtagp9{D2_zeScBN&hWF+CO;x%u<|`*@!8xO>_)+I9 zko#9-NZaA4<~&~9!VhS{d1O&EPu}XO8iI(seH(iB$8$xfBZ}( zUvda(J@VOPxqWsdDZaz({LS8hlt1Xb{JeJ%1@Mrz+_fD_f!u3aZl>);0bTEoB}tat zu^t7sqH%`HjK&HI@e1d+N7^q~fx^AU)mN{<|GWlPP&gnw0002+1OS}@Du4ih00000 yC8fKC(m+cGmc2e?@utx+rqMB`(J`jcF{aTmrqMB`(JBA{{{Q>io&W#<0002#_|kU( literal 0 HcmV?d00001 diff --git a/public/icon/effect-hit-rate.webp b/public/icon/effect-hit-rate.webp new file mode 100644 index 0000000000000000000000000000000000000000..ae710450593052edfa51cae731ab03defd645fa1 GIT binary patch literal 1044 zcmV+v1nc`!Nk&Et1ONb6MM6+kP&il$0000G0001g004gg06|PpNSy-!00E%9{hu01 z`F(c_w+VJ~NDuDaxD(tV*k72pyL~AJFfF9)z8Fjg zgOVe?(0>U>J;!SRF68K!Ddn>ZY2z}VCA9N7e+_8sja~wP&#ciA;H8xI{OG41Ez*-- z%B|9YhkCU8G63*QYT4HwDlOwt-WkyLd%Sa%b)}fm=-xBdF&rZD!$L!L>ZR^3Q_A#67Zb`8btEse&{}J<%0e+?!1mRl;!^-|R<$XT0MZn-D+2Ki z5JVSdFO=1_?0w5x? zpbaks;D>@_+F4wZx^I#f+A#J+!Fm~YvezP#)VgmPE8DQ=g@TRwF72+HnlkCWLBgs{ z>4Sp9UZxZP)Br?paLB*=07T^AHhcmA+$uQyn#!-LZ%W5U^S6_f8jQYbot6U@C^WUK|E+ zDlHF837ePhC2o!VVOau0P&JgXxDDjA`wf_%rTM0{0mpi@d}mWkV=(}n%PhMQ#-OT| zF^rCtc2%pJa+16wfEOyeB8Z3}B3TR|UPNhC4pYS{27HlN6_^TU0sMi?q6CInWdx%i zMC7a&NNO8bigBG&*A(AkaA7vz#?a(r0FaRbz^coC;|Bm%P&gn+0000m1pu7^Du4ih z00000C8fKC(m+cGmc2e?@utx+rqMB`(JE-3;KVHTe*qF>O`>B;fB^pg``exX68GBi O=<{#@MWUBw0002I8{1I; literal 0 HcmV?d00001 diff --git a/public/icon/effect-res.webp b/public/icon/effect-res.webp new file mode 100644 index 0000000000000000000000000000000000000000..95599b742df79ae644936309d3f923bb7c9225c0 GIT binary patch literal 1350 zcmV-M1-bfCNk&FK1pok7MM6+kP&il$0000G0001g004gg06|PpNX7&J00E!`ZT}ic z`F}ORWjeU5@ATq6!JWqC6x=l?c+=4q~sa@O&?mgcj^8e?TY;mI^ zVgl6vE{1jnrDq-k?y*DNFpA@+o*D^!*Rf|RjvpqyUa!Z}X%x7vnZufwyibyP*XfiJZbKH(Ex}HGMp)cMR?C{S)xoEn ze)?g%4)&XXS0Y`s763dJ`+zD90CT(7PakFBcaI+3Mt&v>Z17V7V*qt%v)F}RJNS~? zVMhy-rx!4&M^dyU^!$`Y!$BR4nO;Dr4n7OFw6xZZX?oPxvBpdkUW(I?VRIx1mY{4kZrvl>@>YhO*+kL1?8SxQPzZ9JVDn%pHPOK$)qQlh>6L z<|NQ+Q|gI2=;qLtvjB4)RT=<>#iXq=S)@4!%Q-kFgw{NNiJ_LP9=FLr<8grlK>DAWiEwYhmyN`>u1=OVKdt@ z;E9U#)LR)(hMTz$1_DuufxR=Kj3Cod+CW!SI)`3gO7cs~k`R$hP`5wkHZV+*D~U)+ z22Hd{W={zYNp@=YgHPC%EW zXQnMGFf!01e_TgENYXKbL{i5Hz9+e}fSCNHWkM-+y`Z$Ej66p2NC64?1`KT^XhfO0 zl;n_rlzhmPnl7hf=wOl;$+*PW-eO{9XgiWORi{XvWX$?R%7&)aBYC@wgUoF$BvPhU z5b_wgk2&jh8Md)0B=;1s8M#XZ)+Z8N7#l~vxIlG4LeH2|Y9Ou7hq)=F2MIpARVb&j z02QoG+9GTwmB2}>ISEy4!3ZJ{u^P0a3jWyEs$^HX5|mPF(y0dUM@L7^JiP>}iX^reh5OfHh`1IXr(K04S?9W~s^ctjPDiA*TX>8Kve}Oo>H*e+6Tv zlVmzIr!dEfnDr`<48Yuk>CBHDoq&a2v-N+(l0m7>6PENEz$^e*3%tkDiHrP!ds%+B z=IVcsx?wxxQ`>E-dEcW!A5KhzZZpmM7L6t}>o$-z$Ey^*4FELEs}$a8oJT2rbg*Hr zrMw^P2I=dY$~wl#HpKj_r{5r9O*pnOrm(ITG{zaVNgCs>+R$!_>t=eJ)+R(#AgD<^ zpK40LjcSniPz?eo@c{lq{J&jRP&gn`0001x1pu7^Du4ih00000C8fKC(m+cGmc2dv zYuEGK^$@3)y*^>H)8-pJJoJl^%$_vbCN$Z&0RI2`+n%c^4Y6Ztz>MSQ5DFbZBCIeD I&42&^0Q+io4*&oF literal 0 HcmV?d00001 diff --git a/public/icon/energy-rate.webp b/public/icon/energy-rate.webp new file mode 100644 index 0000000000000000000000000000000000000000..e911bee16c5a78c51be5998be553332a8b1ba2a9 GIT binary patch literal 1464 zcmV;p1xNZ)Nk&Gn1pok7MM6+kP&il$0000G0001g004gg06|PpNIC@o00Hnu+uGX5 z*|r_KtuR?(hKd#D*d1nvIZ>Fgs)H9_>WjI27ej+CW~!ku zpE-V<#|ic+kC9&)5itSuybodh++4e4R%&+g{Q4*Y&|vf9OBc?s)oK7RQYI~!Sc!=-crz&z5JHq5Jak)h`WGuIZp9~dW7aRZ_&+@}W1jOuL>3yZ_ z-U=YRe;K|kqyswUK9}37V2b5(Oy~||{XQEhm)$C$`K+NyLNSP$T5W~PuTTMfmM0)2 zJixn%8tmF3A_9Pb+AObtG~usk5z!K-R7lg1`i9t$d&^@GHP|^8@-m1xd1VkltfUq+0GF`)iWo#h01|ee zfIh~097ZY?FumWc1DJ9TiExjQhA}C1Eq>?n-}7OSuzLYicMG0NyCgP&h9% z^(-Fj#twvzTUj@}QtAb?z)&wOn2WXx+J#Gx3@;4tg@!geb~kcB{6&Y%v>?2NhDjG* z-v&%N#+5QD)r8?*X(pgI8GhuX)RYSv%Pr<$dQEtXrJdM=n%m0(xbYFgw8aOcseryN zUFBtV8>h=m;}$(B3jmM`h+Q}4H4zyBAc`*g85^J8n?wMGlp=&u;6x}qJhYd?vEO3L zwPZ?IELuUV5Xx9f*yG8ORnlea_gJLTia3alkVBvFa9w1Tm27{eMOW$|h*TISA|Q9` z5D`I6f6tCjZDpv{elI+IX&A9ECX`M&EZQsBc{Q2lvlNGc70kSbv=+PeVM=oL_$rG< z(lP`x!OR~NGM6$o#2xl}yhSOE2SG&JDy345dM-x*h@vPO|1*0np#i{4S>A?1omMK= z>g;$qg!6yKo^y**$|=~UnuV4+ygJfa-(v3*rZ=-ZKOD?W3sZKVk0N0EDIQ>Ah@X<~ zuZ2UGUP=J)YpYozLRRts3kXC#mfHx3NE>6@f7OXD?ejpph6$GY2=6AVZRxb-iU*rY zO*XbF;8PZl?;1@jHKc^Jn)}D%vmlsq|kw;GX3)hJcN@{X=qUe zyxd|qPZQcKXQ+b7;d*#Wp(Ev}0HU*asCz_2zzX4~s0LaxRGAR7UTj$vv}l-`LaG%p zDr1A~uDEZF8jga5E;ILIRELhe?)+FW1YHOPb52zYy_MzVfF^{5IiqR zbjmiWi->63>)*NlSwDSf^U?$r!g{O$o(P&gn^0001R1pu7^Du4ih00000 zC8Q`|z@<&1V>J03$=2nX<)g?0#+yXOXTtn@4h)_&+9ovGCNjVP{{Q>io&@v&nt%$z SfkGq70K>SEZRK+S0002O=%7OY literal 0 HcmV?d00001 diff --git a/public/icon/fire.webp b/public/icon/fire.webp new file mode 100644 index 0000000000000000000000000000000000000000..ad5b7f755ab7fcd3e99637e4eee1445a8bd0345b GIT binary patch literal 744 zcmVB`>Nd~p`<_iAS&VgmFZUi&mVl$$2w>0yk5 ztuUv6XJLE=*dD?#&c+a|2nzl@fN3os4a@{CNHa_X)DPT~^p(+o#=w-W*kH^b45Acx zsNPi~e)1J}2C$@b749$$arWgYgYq z+)2BqXuy^XUR%IKMzf&QlMEnED>$uYX%*tV-3NZ@2P|H!lGa+VBA?^H)&gEh!xv@% zPWjP^S!m4HMIuiqz*=Kg2Z;P#!LHGg!}!#$z~NR!u0o7oKCgcr09H^qAcg?|0I&!E zodGH!03ZN9Z8DWdq#~jrC04ioBd)!^@+bfD1OLWU{~1&MBwo-f5T#@KzRZ*Aq${ne z-szCKJ&fs>DW|Wwlt4%GZS)knds=D(L&34LWDlHZZGxmg=ICGRsogt88 z@BH4iRgCN83qc&*Nqj3)`-VpNVoJ6^wWwrCWM80a=r&UDHkYiZ${^qn&+Ef)_;vg4 z3GDL5yh=UFS+WArScW0)S~nw*?R#T>(Tp^t@bs+K6g+Qh5d`7i>zuA$B$L%%)z>pn z-B*E76P?+-f!kM_g)xEpAn*5E@x4E1I@M8{$4*&v6Hu{*$W;SOlO}rpn%)qs4psTm aDl#Uu#GOpHa%4$&unt8eHwxwg$N&H%?qy~G literal 0 HcmV?d00001 diff --git a/public/icon/healing-boost.webp b/public/icon/healing-boost.webp new file mode 100644 index 0000000000000000000000000000000000000000..904094a22f17dfd1783b212254f7d3818a03b442 GIT binary patch literal 372 zcmWIYbaTsLWMBw)bqWXzu!!JdU|}OKk$*7eEC-4 zo1&;?`pmCa2!7byT=zyce)m>(o_Gx?VQa&!bXo!Kd7#RNj|9yKN18Wk8 H6i@>I)e@-b literal 0 HcmV?d00001 diff --git a/public/icon/hp.webp b/public/icon/hp.webp new file mode 100644 index 0000000000000000000000000000000000000000..24060d10cba0d6bc9ee8d45efab2b1693d4b2625 GIT binary patch literal 1296 zcmV+r1@HP&Nk&Ep1pok7MM6+kP&il$0000G0001g004gg06|PpNTmb-00E!{+qP-D z8n2>@if!ArZQHhO+qTVnE4FRhxw)~;@v+xjd!Mz>vm#;w@W2268XdmL@@Evk-$S~s-?YBnXD%08yk+oHHE>1}$jyH0m{@ODyHC45eg_LKV3qt6q%C~Oct+(6ZU9)1|sJ-cZ8 z$HRl0H|)LpMPM>ZGKydB>|MY4!2KV#xXU%2Xm@?<#GwHoWXu{Htr0T> z0EA4`dc7TXa!DN8T$&!*KFzL^WPPAMNnUT}3+?nvZ7{Yw*69V8fb9@NNCpGJB!`56 z?GnLyfv!kH?F+HtWF?Xr(vz$NCu5)2Vmddh)VdKC&K4)vts{%W*|0aXR=Oa@Po0mk zpc}tx_W@n&rwauDO-ZsDtkFug=`)~ZZeI<=`l$0WhIyT+TNRp(4t}FDXi{bX+sGXN z&}hdeDxc2GB%!JfJDGPxXFKHFC#gL@EaH<1fO40pJyODUog>CYr*1N-Htk+ZfU{?T zfwa3TjF3!+F-)tj69}<9?LYL*QUpC{f4_hLo$98I(8(*r`tAU?0y*jA6d{k!2-5;J z?m*m4M~mR9Bh0SCEsemihMm%wAQYstfhFkdNnxVKspN(QX;c&TIrQ9}yt zxO%GNQczCAPD>|LVV)V+U3Ee_o!qbh>6$9s2jd2*u1W#^h7FV6`78Wi8`oFi_eL5H z!z)Tmqxj{Pajg_-C|5Eq(s!wz0^5x%qNpoW zwiVV8&!qfi=o1%2#v3{eJT$J}9X`ksyaALs{|x z<@tW_isgd^a=Zf3w>t5)7L?;D2bYJpjJ8(d(bN`TpuLOfU`>6L^4e(dq76O@{9I3g z%Aain_`+K6GsTY$;9XPf5yMdt~eJelG={JQoOG<)IKwz{1f`1Q^4 zT<2vj{2C{|CS6a4U*`x%R7WD>S9`r>J$}vSk@N8DK7T&`>pcKgP&gnw0002+1OS}@ zDu4ih00000C8fKC(m+cGmc2e?@utx+rqMB`(J`jcF{aTmrqMB`(JBA{{{Q>io&W#< G0001cEOg%h literal 0 HcmV?d00001 diff --git a/public/icon/ice.webp b/public/icon/ice.webp new file mode 100644 index 0000000000000000000000000000000000000000..37dadaf2cfe2db84282c004b279f4b4a2d86043a GIT binary patch literal 918 zcmV;H18MwHNk&GF0{{S5MM6+kP&il$0000G0000V0018V06|PpNNE8800EG5+qN;w z8#?bbBHOlYWtBF6z>D7KyrS;d9on{S+qP}v)A;J172L0Gbs-`qKuYb0J9$b$z5ICa zHZN&_5&4L%KY7?e;*^})9bZw=MMRpR5qM}75$RdEeqZ&ZW&kE$-*V$&fc0CdoXsep zRg&ZefbJGaTO&lSD!@9)p72~A{i=j9!EX5hV8rnnfC}`~a6F-4uW+e>s?oo&-uNfb zf2u|i=c`-#pALXi#=8srI@0XKAvakQ0K9n*Prm~En;|*I*jqC2_l(7_99oXv8Uels ze?w4z@!*DT{MVyX(9@oggM6Fin)m0%;gtABnBa>&2LfbkwXd~ zJ}h%KRlwkrljL>=pkB7nVvoo`01>%?{V7XF)$sePhf_Q5K5y;YQ+@H{*FPhTt0&d# zQ$_5SXapWwUF;hDvpDV`akBjX*!m-ROj{%JAs)Pyyr!UDe&oX)DRcl|LeyZ;QIFrEv>`nYH zh%cGH?R$WK9{#KUAFscm&+G!(oo`EZjHMV~S}mK5l*yqYZ!sD}do|kzp0DlP0092} zpd*((7?tML@n=3e#dxTZLpi1!@GHI9EFScIV^z+>1?|R{EGh~r77g2Ru?#c?X8w;Z zo6XiPxBvJjLcdl`Ge`!6#+3W;v*`pI|EM!95pOLI;UWKvDS~qTttm;Am=wGJ#HMg* zsKtl4*qoMxf6ViiYr+dv9$f@J;|1osaWUi~-2R*yX_TWW-)dj-8Q~>Xn2chUDCYv{Br1|*!(BKe! z-v$4yvX=T7q8=h-V94fp1Sc&XGm*+4>cNI2veVA^2k9t&5W+tu zN`^x?nmMP2jUv)61p(3BZN$-7@#HAKrI_P3<5ap3DhAz`{Cv!_v60oA7g*EVuGAFn s!`U)zR;SJV#&xdm3r{~aIMctY2@2+DsWHD=&J7kvi_rMhv0(u}2zjI=y_>GL!# z*niB1C3gh#ffI?f1_EGPGOeX-!#P}1y+kSsl z&B(~e&Q*#(A^Qo!pd=>U zK6%J}_`-0Dj)zL06t|Xkwv5;p_m2$Kn6s%08W{$5C`K2 z4AM{=z#GKUZFp=IKpqRf!*3n)8Pmc3@6aFoZzLZk|Ec!?{zLr}{RdrN)DK~=)0VjF zQKMNk-BP+l!VpDZ8%gBZ1WusoXt_iFS~vgz{`^O8;^ay{pm16nkDDJFo2x#1q1MT= zu)sd04nerq-m)Gv3$Al)>@`}_EqiiO|Mlqo z(==;7{Y@#4wSz37Pncpre=4Op{h$98_9|EXN(AP7F^ykpA2gF49lM|R;#=7#v)}hl zg4KlcA+N@=z4qbP|EM~3W)o3nTO4-5-INOXGiCEJcCBRi#1slY?6G-y(O`HHo`v_P zbHsn}ul&_owKRT%$Le$-901x@dnCc><{U8&6_=n7`*W_U@#W^Ad-ubq0#(txBD~=l>t(rsnjMU$>yoTA^hP~A!sHklE81M1b9xFYV*3K3@ zTFqc02PHkORDPETr)A0C!q{*!rqeH>1`OAK4>WlwXiE6UbKogkRsy zmiD+<{IOLd7y(;sJ}OFzHHY2ffZu8=#AjOebZ{@|<&6g+7?sLgo4eAe`hBv#cd1dO z06ULWl7oS`DN5u45Hpxj%Z?Y1D#EIlJ`AW8_e8n`tdPK)9gofVT$0R8XtM#X6!^oYwUfPryX z1xe{JFlOuFA5Id?_SY(Xv7~S00!|SJBpo>BDGVbt&j{ce_$uv%!(N_(a|>(;g#rF; z0k(M2Wg>sCm{^=X@t{rQdU-b@$|WZ(5&1}-n-=4ms-#!d4HtWpr&UCiw2`P4z37u2 zaQP<%T}*Du^A7ly4e;nZK*1lF9py&S?=OEKTtkfn;WdpSUvWCtY^uv+;sfwC{z z3T7(zoe6yP(FOQ(0Mhfbi(yM1I6hX}IT!DwJGk1(7dEBj*6>zO5?nDO0{3tvRq+-% z5B7zi@D%h_Y!|`-0Dj)zL z06u9dkVT{-p_m2$Kn8@gfC#65fc${T^LPVU&8RG9dY1mb{~yQ~;@{Cf*L#5f7ye`Z zH~SawKlopgUsE22AFHi#)}xPYnl*@J9sjN=e+|ItE+ z?c*+D1M}aZJyD_!KjJmk9rw1Eem$?Yd$R~=g2z8M6a1! zz6et!xpKZzMY)Z*hfCgmE&YyEv;9i1w=2r|$a#mc));_}`&hFUHYr_m+{^HW8~^LV zeT|#eL>F6KFW>GB%GA9S7;7*eq5q_A5r~+;__GF-P95SjEt5f`##zXc0)53#FsP@_ z9(TsYpWM3SYYVb%yM7UAxSp)~T8ti74Va@&z`4^A4D2Td?dh%iiklk^d%i?n`Z=<)Dph|X%FJC0001*5a@#d literal 0 HcmV?d00001 diff --git a/public/icon/quantum.webp b/public/icon/quantum.webp new file mode 100644 index 0000000000000000000000000000000000000000..0a4a3dd8bde076634a19d1649d21de80952462f2 GIT binary patch literal 710 zcmV;%0y+IsNk&G#0ssJ4MM6+kP&il$0000G0000V0018V06|PpNW1_500Dqn+t&2t z77(8*qVY74KA1|N06YqdMdDFd{5-2M^PG3Yd;k0XZ>52Vm;e<|zErn|Rr+UB3D&zc zs5JnrLXX(`Eg9Lf7H%lCqAS90VB??!Z%h0jSmewZjcZ3IMZ6N2VC%M-iv|ghh%@g| zr(quLCvKyIhD~&u=sJT2;%-8YB?#;UJ_BX%-C{s|iN8z9vF&ew!3m)X9gJbIB~)>c zRg3SbrP{r2*s7vCSEW7GQmxNw+Og?#5mrz*Alv}}0PqR`odGH!03ZN9Z7h>UBqE`q zC=F164T)#~oic=ZpPAfNa1F2=`nqD<$Q6@NKzKm&dCc3=KENNy|D*n{aE|_{9sBwO z#_knlU)A|auvgCa|LN0092|oE9rvQ5oZ-B_Fc=DGdtAG-;_{98UQt zDO|m^R21i-)C{(bf9vU>u`hZ&9?w)(*M11LQUlDR=ua5-1bp9=0#CyT4LOcK3 zS^WxqC4WMnfJfx`VFiIP#Yjb69Hc?#F^!tW8Kf{6|EyUbOHUw84DTMT0?ZCqutc6J ziS)MzYb+Y?Q1b~Rukjzhp5Ppl`u~3yz1woR$J$RIS1Cr;;j2Ds9`a6|FOc98eXph+ zz(rp9!~Y*$zo)}T$(XXn-`1^fo1dzn&8?>&87VieKYMmm^S#{RCZ#ZY$oI65pUMl~ zngJ;ss^@~Sl?pWES2>&e^W literal 0 HcmV?d00001 diff --git a/public/icon/speed.webp b/public/icon/speed.webp new file mode 100644 index 0000000000000000000000000000000000000000..e342cf63bbbe34a01c0f854f876d9856083333c5 GIT binary patch literal 984 zcmV;}11J1aNk&G{0{{S5MM6+kP&il$0000G0001g004gg06|PpNM{2800E#y{r?%w z`F&6RTVrzey{eHHwe2>w+kb7ZZCnm&x2erZ-`ckAuI)|joZm$znanT0IeWJ!A|`-V z${4w>aCvrI5We!tD`8OUw@axFeefS={^iLLo3|OuIlgkT;{ZUL2=ZW_+P{rN`7nQM z+lA%)L$^J=+yb8I15j_3kE19*=6-F!DV0jz&VIk@gR^ttntmCL+4QWde`<~c-Ox1A zURO+Mh64cYgb4QICb*`a>w2B8n+33+XXAdF?OK0-@jw6k!yHX{_2!GZQ(y*X<6ZQk zm$}K0t2;LUdS1`8WG!QiPNk?BX0H1UfLa!QN-fK|hMf)2FAJZiRXrc(aSdRzaEC$w zN`K_V&#h|=5uKH#SEmy=|IfSxP0ql3tMpI{c!8HN4`=vZqtf54;05a?%z`vNO(Dyz zor0tvr%eH%P1qt16L>U@tvYVhD(;tXGfYv(a_c(*;D$7|%1~Xv8;QOdK31j_31ADr z3DbBNT`WtSk~kzopi5l@_X8X!O5>6m0Ng)h%rFLc+w3om_5jM0H6g8KaQLl838Q7xj`x z9?RZZp|Y^qJ0n$(`NEiAs#;eSpT);<9KSNIQ;&O#!OX9mr2>FRUdAc?kSvtmGwe92be-0f1t` zdnwzLNE(kV9xyh;$DMF?y)=>)y9&VTP3Z(2$LU*@^=Q!=@B2#PYXFq=o)^U2NHL6UA!0&wlgS!j>X09H^qAVL5D05AmrodGI<0Du4h z001SWyM@v~O9z&{JvxU6mVSshGGG`)nA2#O(`cB}XqeMzn9`sC{{Q>io*6NZN&uh$ G0002V^UC1> literal 0 HcmV?d00001 diff --git a/public/icon/thunder.webp b/public/icon/thunder.webp new file mode 100644 index 0000000000000000000000000000000000000000..95d76fa59432abe935905cbcf9f42bdaa2a3cef6 GIT binary patch literal 872 zcmV-u1DE_#Nk&Fs0{{S5MM6+kP&il$0000G0000V0018V06|PpNM->500EG5+qSX2 zy7$M}wr#U=Qkk7?JC*Iqwr$(CZ9C6%SMfLzF#-DDlU0an`|YTHeT*oP`&A+-G=_QO zUq^6j%Tb2M*`Gt(LzV9gRC}I=)R{YiR?<~2g_0fA9;!>SI24A(Qr(6ul4?ShK*_%G zL;8a)Cu|RL6WE(34*qHQ_gupPd##Tw<351(%M|Sh{DH(azYXxSpIdqhsL}{@ALj;1 zIs&l4CGIGgEEcr?^`<)@m7OaYc;CiFnhyq;)llu>vNVh4`o>xLH1N`*z4QeNN#{A4 z9VYpC4Vub6B?B%}V6jHQLW+*6DP&gpe0RR9{3ILq} zDj)zL06uLll18K=p`j=ZP=F1IWB{Eq)j%(%-Rq11>;|wjRQbw$(dO^ze_#*OuSH)t z4`V;p1HXS7GHvT5>i@tkuV&z(KnPzmAV>%Z-0za5Zh!#(`)K{{FNyDc9f_;CSlik< z!|Zzv60Xq8PUNA0ul9T&GORFZoE(a^edD`={lNR3x7^W<9TTEW()r1q910zYvScR4SHKD@ zQyzW2(EQp_!T1wysLHqBej5gCF1BOi4WAiUjzeY1E0>9U{31&I9Z^XmJ*Ol9lRRZl z+pjCI_g6)-EHpD_J&qGgaAW0NE%u;&pXMwLsZ7<6;K;|y61a5neu!8sxu+mVhCY%7 zCW~h&OUxV!SIaWwa!$)_=y9cpk}64leCa>z%qstNUX4FD5!=ovNk&Fg0{{S5MM6+kP&il$0000G0000V0018V06|PpNKXL(00EG5TidZm zR~1)Z8J8(-I~f~os^Jf??asD6)7rLe+b>S>Jm2#T`-qqT{hK4dt;^BhmGb8EZ&C&i zev_`zKeo2f%`S=fu}u67Ja>>s54XEm{VzYi-t1^R;Iz{l+*eAv&TE(3057&~{9>b* z^vY>6a3@2OhMoOsoRC89IE1i3D%p8vQ;KvG7@&P{dV8vEAFP({VEz~`c%(t_W2skS z3wSU6BS2i_HE4o*Z8r{_}UI zW!;F`-{qrWW?LQ`^W?fUT85DecthoWB_w>^e1W@?288fUF~=2161+R{2B0Q3`(5nI z^vhox;R^l6_TxAArs}^609H^qAl?B001yfQodGH!03ZN9Z7!2Wq#~iAFc=5`fDMUi z0G%>~a5t)-hzQU^0pQQgGc&(UdjNi{b$I=9_5l53TiWHlYPXI&rRry0D|J0Qzn+9H zF>&z7@lD_KU;qIA{HUxf*j=Q}sN9`Hf0)02(kVW|cI8%SMo;FYOdF5RwnMvzm&@KA zGqzyeU?r!&Rj<=%@6(nm7f(n&Ol$xAg4)tD`7#|QhG996|Hv`AFB*G)xw$RZg(%L^4&Pb-MOq@aKnEzOve5&|!$#DAE(hg0>^_^X zG=<)1h@hYQcC&9!lrIaa?H#+SEb{XGM3*KB$6{Uju%Eji4Rvt m*}w`6J%fN};UE#3z$)VOP95n@~^!7Uo3Zt;gkR)Z#@ zMhaq#OB4!3jmlQz9@&h5i5j8S#6QL#R^yUrP;iNg62XdSAhHy2!Jy#zxaT_5|mOGkM?wQ#KP9O2o*)AV{DVViKX@JHeI!ncJjdOdgKZ2&4fU0A1oR|ncu zEBkA^+u)R^5vB>(<|$xa1~^=Jv+x0gl}-bn83|{QM}_l+e<24{Vt}+c&OUEI<;r*S ze($6G>=G{0YkN|jFDpjm;Q_V6yHT0)A+Vo&g)5brqP+&VT6nbZb>U9Ec8aiHpzV9Y z&xGH>1v_H9@Cf~#&(sJn7G4m0*6#TR=q!xka5H<>1 zW9^E@gmOKAk@+s+MX~FQ*3ED!i-J#r8_hOUzHs5QH0o&md%Jh9AEMMsa3CfM&lEnT zvXq2U4M1h;g}1_uY#g;J5DhQ{&QKKMQ?wskIPK7%U%+`-oxU>;4$LtsBfT(nF;$8I zsQhd=0~BjRp_r-|1gF3m;RWFrV$UOao^c*7(Kd&8!q8|;Sq=K)6Oj!*hT9WB-$B^QkSUfMDDFK52cE4~Ic?)@Cx zf{c;BPoSS_m5FPYf(2X107=F6QcMXzV@(WG1)*E^To&S68G@E`+)VuG4Lq zMdqpk%qBx(ZAR(4#;Ht{Egtj?l$W}t8sKv{%U37dYu5YB453^M6_iteBgZsG1I!L6 zK!glHW#%Aq*(nLnLS>-Q8&$UR;W9`ZZ7P2OLI$84)#ytNbgw4i!*CHCNRHG7f5fQ> zJ%UEK7B0sd{2l!x4{-#3o295%!MO-Pm{Nr!~kk*$E?ge%r+Eg+3KLWS=oB@}4 z7%Zpi{UhNS*Y^Or(HL#WCG9jst2yXTrka^>mTuAep{=jg_MrE-crRV3&oa>36rzBW z5N(qQTN_wkNpWN?qN&0*EWt5F-vj3bocERjDGR68a=YdmV1jnAN0ncxowI`(i1O^A zh=LA{awiI1txY>`MpV*b!E>T#1S&;WovnX2#FVn-cdg!IUyK3uD2z=TRR#;nvk)2e z5`A~0zSr)L)IRnzKr^C%0<{t!7!VWApPP-U46R)Qw-tR6Zj|d)iC)?-H#1z@`$dho z;!s5y@olu5v|WStf0OsFC*X=PA=x-!kHHNr2Xu_;W&^YjG=S~L=j%@@JsQzA)CZMi za9rbEYf>7h@XUa6T(Ny9d8!88~`+z1UwSDxTL z;9KFK653XyxFR7ig>FDPZ23%YOH`f+8Nll9OX1el6!c}3c2w00w^1s^0F~eyxb1Bk zC@W>QoWB$a=LyBO!#s>&l;y(W&k_avMK(*TWU(|3IY9gVwZ!K16mFha0NIt)D6Jr} z3*}=Y@&o%W=QKHW;PN;b`dN8GPW@(zkOA6t{w^-cWiRV~SsP%J_ML_Uel|!Uxq%vt zY_VSZ&J=kVfE$r@$R6uZcsP;?^7=j?kFPs&`C=pw1F%TBJBNOEqxczPMd6BpP=Mg)1clP~3rpPk}G%8t=VgZCDv9$8GfrSzts<0Sp+gLk(+lma4hXFY1 ztRq;la-otQaXs9pECUms&vYn6h-C+kU7eO4*NEMt2YYV z?D0IfgG?%AC3P!pFOey4UzPC4txo!*;(hg6(n)p2$a@_?!C9zev2z)mS5VnI;FP~b z+b!1Xba5WI^7p3ol^{}Qe`wJK|2^Dw~g!Vi?E!<`(B)qB1nh9g;N+xT$W zJPY?_NG`}b2C#_9I=y`{!c1V_0)=4zJHTK$7w!Abuq1TUW{8T=2vmv%Q+_=XKU8H9 zd=ld00000NkvXXu0mjfsy92~ literal 0 HcmV?d00001 diff --git a/public/relics/FOOT.png b/public/relics/FOOT.png new file mode 100644 index 0000000000000000000000000000000000000000..e28719316eba9964f966d863adce1b52e82c6595 GIT binary patch literal 1676 zcmV;726Op|P)jcx z&N(@IE}J7~KlnJibI#np`RAYi%vfbF-6%Oa0-)sR2!N8KBLGT{ECi@5a6fIJ zk!$%`SwNrgQsG|w&yeL57!j@(-X{DF*`ubUMNA4OgvZhrnzaw;m(coZxeiw&cMG2tz95`(o^N%|+UNg8bLR<8y$^&3 zMflrUkJRt`jL7=(Tm_a2pAjFK$G1ld{y{O4&_tqcZC-srvGV|0H+F<2+tPYulxzdlYau^&5y$PinMXV za^ZQxY2hitb2Qzq7)|9bW+Zs7@FpceF|NwEj%$Ul>*ubZ2ih&b&k^@hujvt(3cFFH zcY(>psI=VzoE&j)3faTP1joZ3D3S$~ehU1UW7(lgVvz(mj{Hz)3z*Ss9zMXLUe^N< z|5c#~0uXt2J`zO{;6%>l7k(8ewFNLl{XOS8D$YJZVcrGWi9)XeM5(91q9O|cxQ^%f zBLh2k=_~$0vNq=)2QZEw6ZR*}U&SIJD*-r%*TV>~OSl5r;|7>5@GZhKvnn*L08a=% zhS|*_Xa(;GpA+8FLOB=2c!nZB0weH!!h4Z{5J?1BqF0XgcKtjmd>E#Ye+V}T$A$Y~ z%zL31o#oEwh0X$5$Kx<(4%?J-;9Qq^&b>gMBm4>DqpDfQ0X=Bm=DtI?K{y~hplP%Q z?)-9JZg_$6s!De`>=nKNvy)65(K7eyb0p6jUKZ{^LjRLg05;5bT>QQtMvTocj*)ab z|EcgI7z^3v<>%q*gqPOmeeTnI6k$-)SqJ?O#itN0O^YM~?AFGHf#-Lh3wcyE7I2>p zwj<|`Fs~Eda~$O$p(z4K{6-kdASepA)(;2Nxh$-)Nd$OLcnO+E#|78w)6h7b;XWXb z$T$_)p?%s|c8~|DpTSJ2TZKbjS?t{Eka{>pc&0!p}+O}Nigw4;FdU% zM1V1+HOHX2N2h4d=stoG%!0@0D`2dEg3uD4f)Sw~%~taj!UZ6@H80ECqG>@VPN8u| znq`oq!@0+icu;t~Q_=f+y$;Qtx1ewwZ3=MINvCDdgs1iUcQM;Szq3r+;DRT|^f^1i zGA0#(9c9NU0!^7tk0VM)L^13JXOyq7`Q6cB{%PksV~iJtf5DvhU4ih?r1j80-RY#A zukG6t)`&O)`0Fyy{ki7zobPRzfW$hiA*J=iL0jE+5AavL*7VBJ^PMIw;2!6DRiCE? zSsygx+^2uC^Zl?s`-|`zgrF4*pu#kzUMFph(stag<8~YR5R7HGc?fpY`UqM{Q0Id% zg@zBRX?xr$W>=AZG=!ySTQPrn%p#5eRC+hUy*|Maq4`n-nwu4X*R?Q?ucjS%6UKs| zX*&_z`4MgO88Bi^!gP?L9@EdOVCFv^;R!9D7O=r9tA-Fn32+un5VH~SK&3e%6yp_` zpT_*4jSV{W?a`~>d6vUy(l&ZVpY74Kr(t}@kmluz^A?&r9TYnRf&v7^-ZrXA@|wy# z_BR0Z5s#q}tXQno>v%w3j_k!wTF@F!YothACTRg&Nk;V^1*7Ozz%E1_yZIJCmG>aR zWLkvv5for{WsrB3RT8Xl6i2*g=_kf9-(N(5LNSn{lXIiUgD`_=;fL6Ba0Ote8Otw4 z_ONk0cVzCu{Lb?pf7+6CV}$L#3=PN14l|~p2o!%XBwv#N`;q_74C4j=$5IsjK+3wA zmzKZ|Tc5I7X<-94rp>()y8=YU%qd{kX@;t!-aR(>d8CU-ZJTMi6w(*j?q9qnyj=J# z%!bV@+=|yD{YZo%sPkMcLPOLP;PhH4dDkSNJV7f1RCt{2n`x|FQxwP7qeO_d)Q5f$s%<0)p&COFQz=SlAF35J zqU8w^f~OCO7^>xip|n~Om7uDsNYv2jgGfw`IWhF{kVwprh?LN4{odZIci(;Yx%b?$ zmFJ(VckexCpL6zFd(Hd2A%%bbk->~1GRX120A!G(9Rld6a=sv25$)E1@k)0pbt!F> zZ2;{SzyfhXcuQ%Xr>%;13gA+4%!A?LG@(;zhSJBfmC$+t6bfeJ2Mqk}=-3>b9jEk> zQjgMI{#bZ^;0~>vUOP45N~IT-o)D)2A?AqFhRc=SZsVNV?gL&{8mqKO9K#_FReDpL zUzpvl3AI`PyC}V#A(9~N{jt57&}K?gdi%!zJcQ> zN(;52l>%6hI5yNDXT>oCTUl0mnbLA`42Kx&=|3faS>iMx3ouD0$O6}o#5JGN=uZE6_-Oi-^fH;A%KzMV)}Mf#-Z-4`nlo+VcPJB(kn_=iwloG z2G@{F!0>4Q`#Et!3$>#rpU?^c5XOeqFdlP2BM`z0f9xBjYZ7CL5Tm1GXb@Ubmx(l6 z029S|`g(vikP*(UFy=C)J(Z3Nj-g2i;bbW_m0W1H0PfE@?suifJ-tz7EGBY-IOhLQ zI!j#mJR}%{5MEU}OzHC)=GznjSlq{6$L1JsRbanV2WGL*fB!{XPVk$!2(l`A9zr0~ z93S1gqEBd+28@x?n4bb(f4XF=Da`EcKSzmUBn*kzf1kLJ$-Pb!S5}9)1O5R`z#Q@j zxM>1dP~|)h3P)v=f=QS=SX{W|_i(8Ww1KFAv)t(KNmST57=z#*_UEdi83G{YpIG7i zieNG@y0FUlN<^jw(@5TB}(qc5zws_oS3h`VXBPp$X>k3ujk(7L36>n$jo5RSog0 z($9YEf#ULlja~?=qdAlbyH)|r5SN!{!Qydu#$+#Maygj?0?3N_ zI3Bz?B`eMd^`jtpNQ!aSo&od6OYIo$pN&I%O6gs3%o7ogQRc6b@-Sc+C4hK8|5i!I ze9B+cd`CYK%h`#$8`L)02iV@*e64Dq1q5+K4dYpahWY_8er@77DrG7@EE)szr-%!6 zG$>M8AZkgzfL*>OwsG2AnBS;~Y63v@cZ!bTSi-$K;{7oHy*CH**37UMBwF>FTCT2B zB>~v3OpLDJ#*8uBCig#D9P`UEuKi5ubSW}VWI0HhkBW{jM413|1@QsIQ;V5lea}rT z&&NC%gUz$@#ym;LnTcl+hr?DCRoW~me;=UQenK8Bl15r$$^=zY9P`P>dOEhe?=WB< zj3M_XvFZ2Ci4^m3OAHN(%htty+zh2jQa^Ipz9A(5R5zX+nql=l8e--F^VoB*XMT#5 zBW#J;ZcuCD&4}h@^dJTL3DduTM-4I+y zTpkyVVKc?d3e%e}_2YG^@x`l@28@Y*uh&Vzh~)>^7jb`JJ4(+{V5D|~x}@lcQvE>N z8sEaaI05Y|wZVJ{P8d^ccyEvn%&g$1VQ00|69PeHNrqzPW5#M>KCU21vvG=*Dp0%M zX;Opg8&U$GYU}fpg3+IYNm{q3#~+I~L%5E*z*>uoS`@_^O-hG)Rg(#;%G>r<2+Ckoew{Q4c?E#ov;9pjFiq0lmOdbUB1~-=NBJ7Q84mMt zqBYmsy`fWz?+zKh(lHZMKy}-D3V8%TTwNp?#YLe|AWU^@2{FeXvRpo{`T#3h#=KIG ztvr1M{r+Td9-D{hBlUQ{H2K}(X6z1k2Fx3>n2+rldk>>ZXT&@}>rRzAVtgJnEC6Lb z-uX!}k7=Zs57j>9Jh64U!YyGQG(!XWr1(xCOj{$;&@JWLV=?oXMH%yI4wF%TpjN0E`WljB;7y==srP^EPH#DW4 yXodhP&A3;p7b;uwf_5_x{{PQW8RQuB0{9o~l7;m46>9VV0000G;bwEdA+?4=N#tDnQvy! zIp3MN#PxxPnQ#BT=e+NEm-%LJUtb>vG6rLSW4izt;7B1r!C4;UEN^p`M+zqj575iM z2v-X?cwR5*q}6B(*i|@Lc$)ALs0W=OTmEJSYJc3l|7CqX9@Mz)r%eg>#@rG6fEV5@I%#2(*&lkPtBf6f)Lvq?ZXt zqjC-~7^Jx^V_UCq2jO2;j-{X!;R@j_DEBbPH7BI70GjKwXbyH4E{C#&jua=%E5JEu z-ox9VHE>So%zL6d0x*m{h5iHQ21bk5^PD7)0GyO|MgmAZLjT_?99k$85P&CzhoL+| z1kDMt0?_YIMgL{87k{tAuY0Kh1d_ zhR7*UE*Xp%0j@=UJb_YXI7|G#6)L~zjXd9tXp#VX3C~166ouDV%M{{}oabc5NXuLu zdSIvklY~1WAHK*~_Z9Mk1y{ob$UFKr_7Ls|70XkAktsMD_y}MJ=2H*}iS?`jdd1(( zHJ=ua6&@}8Nw51C@t_;976~e$Lo9$7h^_J%qCU2kZxx=bzcZCSNq?sh?+cHOybgN} z4HF;$dQ-)Tk5GWNMy z_^$9(;Sa*=g-ar?6>K@7E|3MgzNe{wE9`-Kkd4B*g;Iil7E~zBI{p&jOZq!oW_v^R z8CZ1D^;%Hh1rI_XLIl_!%8b9$pGE!oy|5dlR5YvMVQ|0jbW}zY9y`NXcTdLg6o5T} zR;UTje2znDj-pV%!V@6^9E0q9yIKdR8ZHxlf^tik0>50I`>=+f;3nqVf>VUQLvAKS z0QUxs+O7J+w2%?PJ)z<|C$SMMb;SeDmG5iyahsqz#c%0l_7Lp^hGzesz8+oZ4=AhS zs1}9a=ug|~3}}(b%VCZ%ANES9hh_cE)ODoK1+@FW2$e%H6f)m`M|hpEO?bDpJFl}; z-&cz!QLXs;2TG7Hh3oa_n^10PP*V_J3*e~SiFoV+6`l^a*3B0_?(D}dPe@%bL^wv% z;C4+f_zIAs&CQ#90IGFvu*Le$RMwpcV-VD(@)aP<+}XlnxHA*eaHtu2c#ZSS6uvBc z#aYieWMQ3qV9WexeXU_o^9=`Ph_l}?1i(iC&a(6)PE_kOIg6Xj&h;@sK(HS0ah22Bo7CmPfgrMeu69(}PD@T;h)8jafCPUyFl#9Rz?{@a(a>&D9E_}>c z*Mb1}<^fsF`f9a-Yl6L+XF$bjI|HQu+L_#i!mr_vu^H=vepqPc8zP*&Sr)IVvYiRh zhiEdI{fZ1jAUi=*o%J;RIT7dEnD>VI;~k-oP$@vQ5Z7=tTL304H#qA!$FMlM1-Dc6XWA zccJz>JMJ%3>y7Fa|Ofj_sc_uPMc#yb9*%nH)ig(?s$0DJYU+dp&GPY5^%<9^7EXN^7^tZR@1F#>GW zpPxg;;^(bxhk6`u{QWifk3Ql4ILn62BJ}gS!ZdgO)P09urc1Cb)#GvOpHL$D!gc|= zk54zME>fhz42$f{n8?79T8s2BEji{SlT)2ERV`pg28PMh0vP}2Oy7otf1XGofQh{n zfxpW!S+Vo?6#wxt2@ppqcROD{0ArzLnU9_Tfdw!jB+}Ux? z%$b?@vatJyKl8pb@0>a3f1dN4=R9ZLVLd%PGLSJ$1~>);yv1_+^XzQeyaRX`FXV}S5^Sb^$_L1%Ds{Ehbu3)JXiWQ zI13Xj8|?QVl_Dyz&m^PelqTBEUhB&x`HxGUYkS4a$3! z$BOa%abO`IDYuC6^1GFLlq1Ag6M~+qJWEUiL+Ut3d7|=KF}`SD?0Rb4P{sltd!gdTMt{xioyVa-uD7hV+Wz!({tBMA(w25k&<^a&}iK zmn&}*;}52aX~0IyP;^@&qtU!huv;64 zX|-#+R?2}QEYa%^NNs=!x&XPywXX> zXnA*u@j1R>dA*oAMi)?h>JuUWQyEjnwXI7Fq( zeFcOF;HDjd8s=G?(0Y6B2{8g-5w%(e#DRZ$O_GNKQR_4*AplF==)8*vnAD|WEP-If zB`)fTr^Fv9F)b2RewK7&k^s>`e1>vV?D`nxBVr;hfVvx`zMvBr2D9YAHXSV{mI)Rh ziVHmFu>ck=--yZ7d@uC}QRghrwMm}ynF5^VInRRTcl-G(?hlQ3*d%847>BPNi2_9DN#BiMNUs3>Wpk0bdQ2};H|HQ7mH&kL{gki#>>1U}wf^q;+gd{}zKo>hb8t=1AcDc7p?6Fnqk0TS# zrLIPcT0nfNL4^Jwz=*sz6cRvyPQS$di}~N*FKx{Q{SvPDIvP;9D_`X^Na1YLA#33DWuY zJ7PU<`J|Wx1rN`)R~LY!d7b^pQId?eB&PsT@YV?Y53c3_^5Jb>Ndv+eImQz61m zsV=72=lHND?dFg;0H;O+lXiP~Lj(b)+VAu@xjE+~*&!mMyjiM);r97H=f_TTX#r@| zOOh;r*z;6kVdVGp2$3O{@UHT1W9+KdM^#Sn~O91i+fR}Hz5BGsejT5tX5WNp;z*G_8 z2IVVaEP>&H7({AEDQAiim|=w_Bnj|>r0)&`EH>z!guII(tbj!6%#`0yIpPDR!)R3K zHd&X5nYYO!jE-Dq`|4#e+g%&wz=-lfG3oee8FeHe3+jCkB0zi$vEPPw_c=vC?~#gL zt1HK6Boa~TQev0%-Ekf&y|D$>#m0+!?+~!5ai?;&@`#MOA{>5UuLPpVa+r!SKG`Nq z6M^2nP8-Yy$~qN-xPXv!hoo<#(FleC!-epcTtimF-F?(+yW~L8gotxeSt0-$Gh2nA z2i;pEgwI`KUZ8Njk6`1JXWBBIvmGkgaE>^m$|qX0dfW*_gYouteN)uoAu*=S>oYT?`ruhhqyo8zO8#Gf zy*b|IUZCS0GjEj2gSY`_y0lUSR^ty7Eh++2880+5JkAsICTUTSk6=l=)*f@`{?kwi z0s6!VHe1a2TxIG0F>;DM@*Z)>KSsV*ekmq&uG$M2wfM_S{8ib!f10XlQg!f8Q!>C& p3jy+)a82Jg7_1FSS z5R#9|pa{EdCax|iVCV%ZO{w;<&k*3-o zyJJqMsi|rInx6y3A>v8m0P$e)0AIF6T(8GB>)KxPe3$mKzORS{j1WJyazUGe#BpM? z*diV-9%@ebIJQb&gm04~T6JA1{t@!RA_^EK9wEMM#emSGBnU!}_RNcc(KC8}hB*a1 zAg;>WKv5rXoi(n2GsN-w@N+Co=z170OBky*Z_wXQ<$0hH1w>=CO?*Z~^Gj;V<6|y9 zCeIZoi{s5%P^pmcef{@*D>5v0)~jE{0)7zx5$E|Awb!rSF|MbH^mzZA@7N%27k}}; z@drnlGyN>g6(^W;mZ>PB0KD?g=A6|F;uV&xgh+6%eE5DT?cuyW5Wf)DnCro<=9F9u ztmYVVmN%}>_qF))m+J{pL;-l^A^va1FiOBDtgfjuR$L?wPiX^%y=6{tW)zh0TdYoe z2w`~)Kdf%Lc(2$urG1o8x&opxb%JR z?wdsX$)J=v56kLS)U?x3J^moK)?bv9)kOIYzzOIHX>(hXJ)cpr0pv}8^L zv&@|#4W}vKUvn`z!Aeq;*6Obh`VV7>#1)ZyO`ZbUyI4G1Jk_#?-vZC=AumZ&zz)k7 zp5koo&~=5(4hPv%TV~-nP@JST&(akR_siRQz{)zlp@H`$Dj;ag`gxYc$yMf(5U2Yh zqO<>!9!a=I?@snSPHhgz@oE%|(2t9otU;8S75-AZR(!+KSATIZo*6>*d`TP#&g`D5cx|8dAE9xLsguRY)8q6u0@LHGtwL0_GsMSZ{s=ox!jm`5 z6Gh_DiQy5vky#`dRd0>W^J{@DAb8~1zOrsaRSLid;N-IM{UlYFnG?ROs4)md_6C!H z<70Um_4+Q`GYh=SU-1+4c$@7-lx+d56S7Pm|FFO+^6H@|s(_K^oEs@ABEMDg`p4@! zSz~{0tnOBpsk&e4JYE!yDqy07nW^hY2{hE-W3@<%`%!Ve%G*>%PM&4!O20z+ejp2bvn%vnzlWPu3xD`S1n(YbER=y=fk^-^ui(+ct^AU=LEX~Nt0%|(S{{Qd9DB{hDsa#8PW z@o1lGyu>;cuq#%7wd&k$DSL%Qj>xbKrk7ux5z04Xo_>^}FunH^97J%C9@=Yz@ug0=V@<3%<133N!s*KUpFPPR0v z00dj?U!IihjkeR7HjDTI&LMKD4CgjA_AX9{FO@=;SOFBV0JO~h|E;n6Q6R$3E*l~D zn>!B}?cdd#7U^aD3PQ8TIKevi8Y5tF9Mj<(z&6{Fng2{?{S1BNx}(n4o%}5Hd-~u>FT12t+96NJiXE5vG4x| oD`>Mv<^8j;&jPHMqt`3of11;(1aM-oMF0Q*07*qoM6N<$f@XNg)c^nh literal 0 HcmV?d00001 diff --git a/script/auto-gen.bat b/script/auto-gen.bat new file mode 100644 index 0000000..4816957 --- /dev/null +++ b/script/auto-gen.bat @@ -0,0 +1,13 @@ +@echo off +echo [INFO] Create folder src\zod if not exist... +if not exist src\zod ( + mkdir src\zod +) + +echo [INFO] Start convert file .ts from src\types to Zod schemas... +for %%f in (src\types\*.ts) do ( + echo [ZOD] Chuyển %%f -> src\zod\%%~nf.zod.ts + npx ts-to-zod src\types\%%~nxf src\zod\%%~nf.zod.ts +) + +echo [DONE] ✅ Done diff --git a/src/app/api/[locale]/characters/[id]/route.ts b/src/app/api/[locale]/characters/[id]/route.ts new file mode 100644 index 0000000..f5f12f3 --- /dev/null +++ b/src/app/api/[locale]/characters/[id]/route.ts @@ -0,0 +1,18 @@ +import { NextRequest, NextResponse } from 'next/server' +import { loadCharacters } from '@/lib/characterLoader' + +export async function GET( + req: NextRequest, + { params }: { params: Promise<{ id: string, locale: string }> } +) { + + const { id, locale } = await params + const characters = await loadCharacters([id], locale) + const char = characters[id] + + if (!char) { + return NextResponse.json({ error: 'Character not found' }, { status: 404 }) + } + + return NextResponse.json(char) +} diff --git a/src/app/api/[locale]/characters/route.ts b/src/app/api/[locale]/characters/route.ts new file mode 100644 index 0000000..78f8b0f --- /dev/null +++ b/src/app/api/[locale]/characters/route.ts @@ -0,0 +1,20 @@ +import { loadCharacters } from "@/lib/characterLoader"; +import { NextRequest, NextResponse } from "next/server"; + +export async function POST(request: NextRequest, { params }: { params: Promise<{ locale: string }> }) { + try { + const body = await request.json(); + const charIds = body.charIds as string[]; + const { locale } = await params; + + if (!Array.isArray(charIds) || charIds.some(id => typeof id !== 'string')) { + return NextResponse.json({ error: 'Invalid charIds' }, { status: 400 }); + } + + const characters = await loadCharacters(charIds, locale); + + return NextResponse.json(characters); + } catch { + return NextResponse.json({ error: 'Failed to load characters' }, { status: 500 }); + } +} diff --git a/src/app/api/[locale]/lightcones/[id]/route.ts b/src/app/api/[locale]/lightcones/[id]/route.ts new file mode 100644 index 0000000..fde0212 --- /dev/null +++ b/src/app/api/[locale]/lightcones/[id]/route.ts @@ -0,0 +1,18 @@ +import { NextRequest, NextResponse } from 'next/server' +import { loadLightcones } from '@/lib/lighconeLoader' + +export async function GET( + req: NextRequest, + { params }: { params: Promise<{ id: string, locale: string }> } +) { + + const { id, locale } = await params + const lightcones = await loadLightcones([id], locale) + const lightcone = lightcones[id] + + if (!lightcone) { + return NextResponse.json({ error: 'Lightcone not found' }, { status: 404 }) + } + + return NextResponse.json(lightcone) +} diff --git a/src/app/api/[locale]/lightcones/route.ts b/src/app/api/[locale]/lightcones/route.ts new file mode 100644 index 0000000..83b52a5 --- /dev/null +++ b/src/app/api/[locale]/lightcones/route.ts @@ -0,0 +1,20 @@ +import { loadLightcones } from "@/lib/lighconeLoader"; +import { NextRequest, NextResponse } from "next/server"; + +export async function POST(request: NextRequest, { params }: { params: Promise<{ locale: string }> }) { + try { + const body = await request.json(); + const lightconeIds = body.lightconeIds as string[]; + const { locale } = await params; + + if (!Array.isArray(lightconeIds) || lightconeIds.some(id => typeof id !== 'string')) { + return NextResponse.json({ error: 'Invalid lightconeIds' }, { status: 400 }); + } + + const lightcones = await loadLightcones(lightconeIds, locale); + + return NextResponse.json(lightcones); + } catch { + return NextResponse.json({ error: 'Failed to load lightcones' }, { status: 500 }); + } +} diff --git a/src/app/api/[locale]/relics/[id]/route.ts b/src/app/api/[locale]/relics/[id]/route.ts new file mode 100644 index 0000000..137485c --- /dev/null +++ b/src/app/api/[locale]/relics/[id]/route.ts @@ -0,0 +1,18 @@ +import { NextRequest, NextResponse } from 'next/server' +import { loadRelics } from '@/lib/relicLoader' + +export async function GET( + req: NextRequest, + { params }: { params: Promise<{ id: string, locale: string }> } +) { + + const { id, locale } = await params + const relics = await loadRelics([id], locale) + const relic = relics[id] + + if (!relic) { + return NextResponse.json({ error: 'Relic not found' }, { status: 404 }) + } + + return NextResponse.json(relic) +} diff --git a/src/app/api/[locale]/relics/route.ts b/src/app/api/[locale]/relics/route.ts new file mode 100644 index 0000000..b91fe6f --- /dev/null +++ b/src/app/api/[locale]/relics/route.ts @@ -0,0 +1,20 @@ +import { NextRequest, NextResponse } from "next/server"; +import { loadRelics } from "@/lib/relicLoader"; + +export async function POST(request: NextRequest, { params }: { params: Promise<{ locale: string }> }) { + try { + const body = await request.json(); + const relicIds = body.relicIds as string[]; + const { locale } = await params; + + if (!Array.isArray(relicIds) || relicIds.some(id => typeof id !== 'string')) { + return NextResponse.json({ error: 'Invalid relicIds' }, { status: 400 }); + } + + const relics = await loadRelics(relicIds, locale); + + return NextResponse.json(relics); + } catch { + return NextResponse.json({ error: 'Failed to load relics' }, { status: 500 }); + } +} diff --git a/src/app/api/config-maze/route.ts b/src/app/api/config-maze/route.ts new file mode 100644 index 0000000..54a603c --- /dev/null +++ b/src/app/api/config-maze/route.ts @@ -0,0 +1,11 @@ +import { loadConfigMaze } from "@/lib/configMazeLoader"; +import { NextResponse } from "next/server"; + +export async function GET() { + try { + const configMaze = await loadConfigMaze(); + return NextResponse.json(configMaze); + } catch { + return NextResponse.json({ error: 'Failed to load config maze' }, { status: 500 }); + } +} diff --git a/src/app/api/main-affixes/route.ts b/src/app/api/main-affixes/route.ts new file mode 100644 index 0000000..d166f0f --- /dev/null +++ b/src/app/api/main-affixes/route.ts @@ -0,0 +1,11 @@ +import { loadMainAffix } from "@/lib/affixLoader"; +import { NextResponse } from "next/server"; + +export async function GET() { + try { + const mainAffix = await loadMainAffix(); + return NextResponse.json(mainAffix); + } catch { + return NextResponse.json({ error: 'Failed to load main affix' }, { status: 500 }); + } +} diff --git a/src/app/api/proxy/route.ts b/src/app/api/proxy/route.ts new file mode 100644 index 0000000..2450d75 --- /dev/null +++ b/src/app/api/proxy/route.ts @@ -0,0 +1,73 @@ +import { NextRequest, NextResponse } from 'next/server' +import axios from 'axios' +import net from 'net' + +function isPrivateHost(hostname: string): boolean { + if ( + hostname === 'localhost' || + hostname.startsWith('127.') || + hostname.startsWith('10.') || + hostname.startsWith('192.168.') || + /^172\.(1[6-9]|2[0-9]|3[0-1])\./.test(hostname) + ) { + return true + } + + if (net.isIP(hostname)) { + return true + } + + return false +} + +export async function POST(request: NextRequest) { + try { + const body = await request.json() + const { serverUrl, method, ...payload } = body + + if (!serverUrl) { + return NextResponse.json({ error: 'Missing serverUrl' }, { status: 400 }) + } + if (!method) { + return NextResponse.json({ error: 'Missing method' }, { status: 400 }) + } + + let url = serverUrl.trim() + if (!url.startsWith('http://') && !url.startsWith('https://')) { + url = `http://${url}` + } + + const parsed = new URL(url) + if (isPrivateHost(parsed.hostname)) { + return NextResponse.json( + { error: `Connection to private/internal address (${parsed.hostname}) is not allowed` }, + { status: 403 } + ) + } + + let response + + switch (method.toUpperCase()) { + case 'GET': + const queryString = new URLSearchParams(payload as any).toString() + const fullUrl = queryString ? `${url}?${queryString}` : url + response = await axios.get(fullUrl) + break + case 'POST': + response = await axios.post(url, payload) + break + case 'PUT': + response = await axios.put(url, payload) + break + case 'DELETE': + response = await axios.delete(url, { data: payload }) + break + default: + return NextResponse.json({ error: `Unsupported method: ${method}` }, { status: 405 }) + } + + return NextResponse.json(response.data) + } catch (err: any) { + return NextResponse.json({ error: err.message || 'Proxy failed' }, { status: 500 }) + } +} diff --git a/src/app/api/sub-affixes/route.ts b/src/app/api/sub-affixes/route.ts new file mode 100644 index 0000000..0c7dafb --- /dev/null +++ b/src/app/api/sub-affixes/route.ts @@ -0,0 +1,11 @@ +import { loadSubAffix } from "@/lib/affixLoader"; +import { NextResponse } from "next/server"; + +export async function GET() { + try { + const subAffix = await loadSubAffix(); + return NextResponse.json(subAffix); + } catch { + return NextResponse.json({ error: 'Failed to load sub affix' }, { status: 500 }); + } +} diff --git a/src/app/eidolons-info/page.tsx b/src/app/eidolons-info/page.tsx new file mode 100644 index 0000000..2c1bc01 --- /dev/null +++ b/src/app/eidolons-info/page.tsx @@ -0,0 +1,12 @@ +"use client" +import Image from "next/image"; +import EidolonsInfo from "@/components/eidolonsInfo"; +import { useRouter } from 'next/navigation' +export default function EidolonsInfoPage() { + const router = useRouter() + return ( +
+ +
+ ); +} diff --git a/src/app/favicon.ico b/src/app/favicon.ico index 718d6fea4835ec2d246af9800eddb7ffb276240c..b8133f5cdd7ee70e2f1c169abe602ba18b1a2b68 100644 GIT binary patch literal 199760 zcmeEP2bfjWxg}94(|hl|56ldmVd%X`@4Z)15v2(tB2`c@iUBKvT~Tac!5U+U(P$D= z%u7$+d+G1JRI}b%d*6NUnahA6Z9x1y-<`S4z31$I|Gli;q{&yBv}h6))r7BEO=e%* zq{-KsG-;BQWPe}ZqDhl~^S!Jr`}+g@yLAywnzU@``#rx&lZwnHO}cckzZZ3D(&W26 znl$Ot$M^Z+{QSBmO(swF{rwJp{)bJPtX}Q=`{rM1QnBbOP4u7c|BvlWnvA^Wt4)gd zJ8#8z?E8Fa(uB_u{NF_vH-Y!Mwsdc!1{X`VCN=JFeTokv-G~e-g&!K;B&S!2_or#;a%|?1=G~&|2(56=j!eW|! z?m8|eJ)1TA3X+qZN0_X5%ch>{Nh| z$V(vF1h3cquFsf@f72rDV&s&h;K~(avHR|8kdhgNknoF-dT%{*^A=x4i;#?z8w*h7>e|)80^}84MvQt z<#&JesQahS$HcTiNog8VQsdFBdn^8&jPQtyF?&v5EV+6(BBPp;7aQgwJ-_x{m;NR^ zqA6lxTOgb?8$PlFZr;8C#l^|o*RMi<>uA={tNvZjqwmr)SJz}?{G>r#eL()IH` z@BPl^q^D?_kdla~Sn@Dwd?KHB&ykoEi?Yf>BTIVEdymiiS?h?43q|{mg=nGs2Yo(R zADrm#(lb8!H7v+(5Y_)I`pYPWv6_^rAI*b(OOP)PyG8EeF;jdQn3HPa?F_18)-Q)NH2&( zS%(~SAJG~KnUT0e^g6*cX#cc!>8JR_5Zt(NDmLFV3rQ*Ah@ifXNNA3BealeTIvtlZ zw{m?fdNlNJZjZGGqsP|az%v_BT$+mL_!h`0PC%cr9g&a~Y4+hn>7)Dk_kebuZps0H^%e{;OgEPKP>DL@?j1-bt*CTIKLnpbLI^~%c^wRz>DY~HbZUaB0Tl< zb+n5m)J;vTK0S(kcHga6FMY(5T8rpZUXg~5^mAlmqvM*PZToz@@Zu)iaN|@Ya(|>_ z4G-}w5rO$hD|fD>85$8tV}oh)qMX6=pXTt?q%-B zS9iY<>dFrEIp@qBgsYZJ$IMxMQCyN}o=NL(=$Vh_J>AdjKWQO4B_>6px?K%Y(#S)! zX~)Y$$GVr+5=K2Fzoi*zm6)E2$e0MqKvVO({{2{=Kc0Wn8jM}!-Xy0cqPU`zJU|)X z? zhkn)AeEFVw4(YyAK@Y=!T$^k{4DEVZWd>e*V<&FjaRn;dW}~!q77ALXBQ-w`kqIr( zJc9cnA6WD_1#~d?=X#7!AKx4m?bC7JgID5>Z*IlFF&)r#a22`_YlD8{Yter~Ey^kT zVR6)rKL1$H5WJ@+^1HjgWG#~ZYg%?BX3gu#J-8KJx|bS%Cz|VyNeM-EMKT6W>5Nug z3k)4BPn_KS^{mp*&6>%^T!dKawQjx2@!`k27>oC(z799`Q@(Y0d@~fb$w0q}9qB_- ze;Zyn1@|WnwHEP!e2x5q1Uz+MEq2{`HL`Nz5JNeL#D^d4 z!MY8z&}~p_%)DkK*H7M$rSB*I-Y0)2!s`wFt?_ZR|CB-bA7S+S;}SxUUzCVP9$STX zKe!hQnb#_#E{LKWC@#?7Y3+LMhQ9Oj-qStxS;?+0-McCIU+W5|zKdgw(W*l}_B^}> zzxvJ77&xpglG7t82hEvl)7nowc5=_8`zc?iT#?nIcHR13#bxolPuD?hFnj4}EMGej z|NXlsOIL|culsopeP0DxpC+-yffynn1J?uDh&-1 z7|)lt%)m>BZ^Ms2eG2{h*HA7(4S(AGKe4^n+MU0ydrQ|SZ&*;6i9y5qVaoimv^NEa zBppN_-9MYp_4VCL@XKF4ixn%!(>IDRv6Vh=>>t0=?d#{gIvEq~VwtP#(zO_K=M80^ zt_|j2c^Uc+=*=8Pw2A4IXNYGUs+`8iQJwMqPxfKW^;3;rQtahoqZ8Q!cYi&5S$R4} zjp~5zJ*tqJmVngsWX5%EnS&pP!s0|@2b7DAi>Dk?7vFo|mAGa5EaWgZFB`3R=R|qH z(O;ia?nakl4#few5)vaYV^&Y*yt5Y;M&#G(5h9Ykpu04K64^G;H8Cr zK2i?`p2zGH@6m<6#)5?dv2oKvEMGYvOP7wr1ls=y%FfB&|7g$Sl~d(1vbYCr+m%p8 zx-mbWixkSm7mTku&r^@~|^c?cZBI%DR zFDBotS##EEGBcPfi8l9-p#DCc_cwgXXE66L_VFu>iIP!RTEbX~`6b!FljOgK*6n@I z=?vXR{Fs}cj#-yc59OtNVfpiZ|MC1R`O^I*@9_y?Sh{>9+S4~s&Cu}w3F@HZxu^GU z94~79(tD+4NyuP*&wqbDpZD*Be-26qobg|kr%)VrAi+z6i&5E6^FQuB>s4;z5M_*}bd+G~NZC}2YvzLu!51d?!u6lkwXJS$W zh79YD_dj?MgNJsbUlc=sM>&{F>hqCw0x$94$4uN!Q#d|y{)bt|S&#|c*UGM*|6>31x2nm*>u=tUH{ZG&ZQ2)e z50sB&ZJ%+mv4tiV=JS1If2e=mTF&HtIR1C^xBL^1g5p%%eeY`g{ts_q+{Av&U&M0{ zShJ!p8x~1@L>=B-{#i=1&i)xh3=qESjT1+jM`=Px!6KnA6Prv@Tn7OME(}OZ} zL@oaFzxLyWmv*3Y&vI0;rrnBHCG$7x%SkUvKn#0)l*bEU9?Psl{`4u%Z60ecy!K1J ztnx0g%x@G_Bx1<;cKGmnJMo+Ud>BivABVAXdtua^o)|m74<=nP2-B|_hKZLCLO13m z(~9E}7SEWF`7o1{bbi_C_Dh1|Y56AcsVz|2HW?jy$geteIvO)lmYf(=u)3SbXq7{b!U9Eb~JL?>mXjTdvIo+ zUos#%85>6aRm`sZZ94tK5#u}Ir@z>X*IwU7e{fV49&HMQ44yZ zZfGln@IB@Ett_8@Id;$Q_kqYmiuqF*V^^?`@4z!RPzLs6DC2&`;qj~sOOI*|Nm)^d zP6g7#M5e=He175`@Kn61$(ry(9nqQ1||Phh=yI`!y5 z#_dySixZj8iC`|<@=sQ20^*oosOX%J%hyjpdRe^DtJ0@uz%1Msg37AB#>7K}KmJ7OokO?jzeEB8jo8bdcotEYRQjaXuMf zy&#>>+O=Cbb7v3Yhd+7}z4}zs7RMryycN%yMmqK8%%!6+{_+8c%ZjkPqnti%veQ4O zf)hRO*`w*213HzlnPEJ6cx%F8BOi8CKs^5^IOz`RmtC$G<-NCT{=wH7H{bMrFr*EM7Mqb5@Qf z|0EzXkvVI+^)s>eA-aTgIO|gZ_``uV=sH64@GFlsP?va#qrjdj3rEd*`kt?48<)KmX-0 z?%%%wqi6L(7VWQOKz&rEo+97pH2V$OPyc0}+vm6I`StAFd(~gU=!dG;F_F)gl^>5z zJ<9M3>%qWBxaIbRD5YIUrwpj?$-_TipEiV^qNJr?B@1XnZ*+t6;`pB`& z-KXTnpxfX!xPkm~;H8`J*=GmY-?R~JnLEnl^Q)Gkb%xWHDIU-s>ieBsovK&E-=uFC z?UL$F?zs)mkmk)8`xJTa_&<+3+x(q%)j_O{D0WO7%`oZpZ9^E7_->nGV? zUCaDiJbMGeke(OAzfC%A&+mL>*%R?>oN8Z&=G2vpc|)1+QJ=eL7{&T*0)5O{)`^yF znTxqA$FP?*54ntA`VOpN4e0^)Q8_vxU&UpMmk#UI*d zDbUxG&u5;W_c)b4kE6Zick#Kali0dVR(3o()E1N1!_l8L>aBOJ!d%*#RKrSR-LkYi4fpO@jz9hR9sK+k&tlw!?xwbuz&f+yPCdWAUwd$>y2%XBjUPofUCJaqDYfAI51b5^DQ0P2oqhMc?YQgiE9l#$Aw8WjnQVY$ z*z^3Sf`^>k%C@TCSiM~8>(KLP_97yJbPm@mZEaE%=3h1vZ@s&bK7VJMFXZ!U4dS^t z`O|#X4)opL`_?x6#{WWPV;$gQY_j@?~Acnb^K_B`#Yu+VstI32{t;ek?U?+}Tm!3s>QM{r4^qX&) zfCUSNnCit+5b?}_T_bdy6p-Sl_Qe5_Z;Yi2##1H(tktw9uQ^sf9T=_&STmY1PJ-+}Ch zU_TCZu+ho|4O?YAC2OgHjI@cj2+P|O)6tH#d0=A zI(7P|A^INAd*UDE)71Btq90Hk{w1OGU>NH;lIP_9MKCLJl8T~wTh;bX@m zH7lKKP+wl-;eYr1?$zm5_xz%FQE4`=+q?#oW{?%6%`iUp5%#wcJ%2zJtPiOCg=)rKyA?5}=x5?1*H?L_?eFpIi;)A$vGJLF zHcfs-EaR8-j7SqFcw?{=^?!oefiC=dhAE&vtuDM)^YZs;>5ZWOj)zx1?{B=aEM9kZ zS@}HmWJ@k|sqaQJVA8Al8?SCUQU3b8XF8MrZtbCD$)^jrKF!<74@^yCPBmYBI}!91 zZQqM@ooJx-t4`$C541;T^0`mRy{MDT`h9tSj2x!NhGoe@OeO^=obF{Zs!|yN+e-TX~Rqm|@J3GRMgG z6f>wlME-ZM97vXq_uh@+@7(&myswx-ysp{Pnzlvw##;yQ=wrK3Rg+KK5@+TzO^n39 z^Xmfbzj#Re#7p1X7}ocB&!A_uzF0u-NzbXrO*5yJRk?WPxx4Y}-+Y7-V|q~+kOxx8 z1HK+O`8Y-w`1+3x4SaUl(BTa6@#n4cX#eijeOC4vQ+n24QkH?8Uth_Z@dsGH`6`r@ zXOIV2@1t%|p3W}^CRPr_3od3b{)yyEJkbbgVfWwaaJPQp)0q8FjbcqG1xuDrz(4+Z zh%+a5qC@90)03A-Usrtr%Et=tD!7Nx#oeNV3&Dsi?i{*mH)u{%U)Q58rDTKe<19Dw*qNA84HN*UYo2M(m$SR_%zqV0tMPKT@YQM1#h{ z3ts)F{g*6@r=zIjm7^EdPq&^`%u_#sf8$f;vzKrVE|WFmIOb4U?_eHGSSG6RgsPvE zIVJVYX&zO*XO0%O2glOc$;8>%?<4N%(|;}w)%xZ8s4k%#zSddATIl2Zx3J#%9-cqA z%hVZjnHLwXSv>Q|v8jc6cS>C=lx?8zC{lYSfE^M71zQ~j^$IZYC%6^5$r8N?ZAg~BE2Zi^dIH6OhIK`9(s*w$6l}zSh;;RCbB;`x0)C(DJ^VIo8&<` zP2Nj1Fmcmawh8|A^LdotS6$D{eY1x!Ehhrm1u-aZm4@AS&E@(ZVh`&kbR_;zF7dHa zy*hxsy6VA-W?x7`P9#b@W?}lWAy~0}7D_s1+n&S*ddqbGvnd0z0ahnV2iUrqYS>l> zv|!IfBzuk%apl#6@xTA~1bZg#$FLFYSsP>@HFGWT(torAk?dWG&_x}nKDy}CP$U*a zVcg|?uyEZNB;-X>AE-Z#dcf0{se7Nz_3Pe&^^*t4pQ^LTw^4trFemb<*XAuA#2)57 z`0L-E!IEo+a|S(`vv2GpXFXki=X#mLDeK|10TGn@81^$4v`fdT+h-xaO)7i*+23Pi zfc$S{z~1|8uiwdl;(6l-7(YmU0Q&{lgObfz>vq)fPd~esGVliW>|1H-+NOtP!D=_z}a4ZLo%RzqGTX}c2N6V zQkH^ETV~=j9Kr`5-isc+s~8U@uomv?#n-w?1NGV!vo{fc(o2oPGHh4g50Tv4gS$>giE$k}&Uj_pM?N z_kEOsH?jTJt58W_IGaAAdg;|4Bt59!zZmMir2J@1;JnGo9mMf1PoVy9VSFKPZ?W## zXx8uSfYxv9pp6C8uc8@(Y+^Uow8^>v`_|93i2*cY|-avf)@pW8#XC&oCo4FKW6q$JlPyA#1P;w|6P=Ecl z=T16MJyXJX!zrV4_z2gD5ewPb2ejt4S`GLxH35!+uwI%HRT)k!-{_&4P_~W0R#j@+hVdKsv z*zv$B)DEgdY5_6hsRN^E3)BOles+@!Q9g*e#jU?l$-UWo`)sDB!)MhqE3XwnA1Ips zt^7dgxgzERCQPowZ#fV8*=O(I!%rT^`kjl=u4gf_ILn$u9T>w{NO_@9<%3-QLvr7U z;(k*@_VK*g7xQe4Ny($)RrSd0`Q_JZ-Z+u+pUM9BBKFGmAKDt<`{V)2z^C}&<2~p@ z9Jpf2e+G4+W<``2lP~C>XYuX5z0aA|dEzraZ~NElVje5+hUaDXwC`Fw{eLsdz`a-R zc^vmXIV+mIlZogupbFb|FUOC5_7r{L*O?c66jNvPLMiEz#W*2}>(|_;TffnQ%VgHh+$H%{`xeUm(`;=lXHXKk_MFNTjGo;ecRjHI z*KV7GTX!vFUi?Y?i+Qn|Z&_gCp&ZT#sW(=+GhqZKG8blY!)Iyz{(a~D!zqtimx;T` z>!O3H;j(t49xiiU0Cko0wdU%DZ>d?3WbSD-=eDlhx)8S!gKqfD9%xDIy*Ud8Q2!mE z47|;p$PQvbmzf!oRP~W_{n?z6sUcpI?x~p4(fv&AzwYCYX}G6VUGkC2-erH^n$OQS zH9X3?_+9#1b4SYK#8Z!Dm8W3j%>KCT!Rv9=#;K_4T8Lc6fhELj9z3ia`=0l6{XeD* zyoAZq`Y=XJ<;=e?CqVi|G2RU!P0!}~MR#E$$QCO{Z)V%5GCu8?x8!-3Uu_$Vng(S_$ab{ify2|~L zZ~qS5x^E40*qw;yz}ZaMbL#&X#`tlJ1BLIdyiXbDlWw?i8s~xEVl4DJF-BfuAM~XL zn^E)5!p4*DV0wv3Z{6SNfYZ6}`fexp_BF6}Q{Umb?c5dp8lE*&*QE`gIS1v{C7657 zL@Zo22_1S@vZpwW`Y*!7^Rj`uWY<*}OJ^*oxxKmb2QeS=BEI$Q$MEMrzkeDC#UcG1Rx=+uUerf7B?TPqaJr1#PJX@$u6$T9%h-+3a!Gfz7 zqFv`2)U+?>OfE4-xnB8k@_~dyn!=ez&D@K>6$=d>(iT7a`NR0&JNr0?^Em5-_n<4! zFvw9(guG(vqr9h?sq^8PoNgbW9`BRyCF@$d=2`SS$*k*E5(IJGJLWpo?-fNKPW#8_XD^g!r}H(02`w7RzNgX7D<{~i zPZbWma0~wS_m}Y8!L4Y=`B3G`lrvL5rqzMg21*Aw**sl-K=Aq{dl{LroDu8J*^)Ut z6KX!LA=X0o?mXipi)&4!ZD(K=OG$uFZH{4K(kuP ziIp<;pFFh(e)HQ0h!MP!XGi22oKnp~X--6EX-Nkh(T{qXbbwpGlYOl}g}odttFqW5 zo^19_*n#S0i;kv`!kLN4NY-njnX^oaA-?COc;{R9;m|9qIMZ2SdLfht)f#jeIZ}O` z{SWE1iQ<9L#3ujEZ}-q2x(hRB_uzRGzS;=+MD+6Nz|+3}e!ow==BsCr2Fhn^|HO}m zpV=cXJD_=yurTsC=MSTZ*C(8{8MAuh?e}gZ&go3&dbwH%Y5B9GAbml+n z`vHz8tW21gKz^~$FVr)6=^{F4zeNl6Je$22?~q?414+cFY2B^B!bi}; z7b6)S(a*l$Wy@9PjAM>VXMRZs^y^>AIm`*Tle5%2cVESx!7JG}JRH4ymz(-wwBjr3 z02d3%4{*?Q3Vr+Oh zcI~4o4Oz^*3=kdOJ=}}KUs4FD9+C%99*>&xy_`8sPP`7R+ z=+(OoE*;X3*sVOHWnh(G2CNOR{C}q9|9IEk(BFv`UY_vA75^ z+>PrGHSe2z6L}zkXNClDpBk_HH$(^NDeafmFD(4hc9|w;tX=`#JA3-ckDxvk7j4)oc+_QrDbDY=dqs6@qvq>?D`cyH)VYw z2Wz*k#@FuM&VK0%lXF%)DSKi3AHy@}_WJAb0CjGc1(s{fo`@bZB31^hVzt~rLeGLr*s zfcHf^ecpZ7iM|HG0bKa?OGW|VMD*dcjh7!MV#tw1I8nYj*55muCtjBy<9vVFc8eLo z9umgGx-?5`a;UyINxDyeZ$ImcCr*O@kM*2q>))JSGkpgpSE8Jud?H_MAu*gaDE3qE zj6Kz$47LXQP!vC^H$n6s3e0mw2{Vt5(a^C zDyqo{m%!2}z(b8`jF_;wm5BzYqPfj=2*UPq^Cms==O<83&_CB~BzyJM@F>U5BVkf7W_bsM_t<~B% zEs(49%bAf~`Yer*HyjO)^=f2`YjCn9dnA6ay2sL|n3xwg?^w>hzF*<4dwJFd&%pBX zkZQk*W4v;v?{hSA@+Mw2dGvFLR^lIPzXGvbefmTjep!6=ME1M9$up@BpjZEP?D-Rh zyLx8W@8GZXG1g&z%=A?IZGNEc<>=&W+{G6+e*7e-e**lYdT@Y$WUul_i&10M5AzuQ z=YL+tqQw(9Gm*~znmG0qsUJc;K^8kjn8?Z@ibe)AgLHCpq23&kp_PxHj>X?+``<(# z``p$>OGZQ=>0QOc!fzL*h%hz2{lQ+!*oWBrz$UbASIGB;;mzJ@@{oG0ggdVJgL-GQ zDc@@HC%znt@j(MIsOY3;INNkM>ivE4<@B?m5B)yTNA)9NC<=3=hV*#yshdfkpW@^1 zJ&*o_I&cP^XLGafQoVP6+!6IwF%PXCbKxs!w%pB|nA|jJ<>edXISNqiEMM%=rw-?90|DMNlZ3r{0bCMG zE9LRk8y=WRv_5xZ<|9WR=^)uJ)zy@5(wwHw7f5G6ie@rr%o;=+|1@VcU&pPtFDH&m z4$t36;yEF)27^~;b|nzoAdY=J!YYX3yhbExCj0`;?CBgJ&FwjUs!t`!Vu)u6nQj)wEx`DPzy!&2N4kQ#sEuaX~*!TRa%EmJY|<6(ccw=}1hu zVhDy#>&e-+YGRu3yl>4la-LW7%%ME9us*&^Kz}<~JE|@?OMXGHk0>2v`dO$;V!5X5 zl33LCE5ek^d*YS1ZX)i{bNH{{J%%+~r(yiOo*2S23HlSCyx;f^7|fr?Ea-#T*N()p zZ8Nau_64|d{S@>a*9lpbNoM9Q+n`dc-7pq^``cdPf;@n$mX1IfaZ<851Dwivi6qLFumIxunn)a-G-3jj)n;SR zw9Z(5i)b|;U5B?uJTX>;m0|hF>LaJK#Y2rvS070qo9|U`X$I*7gWah!`vVIM#q&x7gQwFs}iAv}RY zc=H?EP{%nlojGCXBO9jPN%fFxmPnVdWhkT4KjNFZVXd(F{wq*gn`Q8Iq_d^3-Px(u zmv4MNQGFg#UuB@DPBQ~ZoVCc}yg`ovEwTUk>o{k4kmvpErC(jk{1DGvXJ4xPAkA5- zC*NSMP{(L)PuMFCdnTng7T0W>f`L;zSqvurjURu<<2yDspRqoDY|o);Dv~kz#=;v> zZ*DoyUt7R46Mz55CmD~uj8$tUnZ9G41)~`>OCQa)kuHWl!sg-6)HlMWNh*lOlA9)D z*xYW2}th4X|qNtl4_Dwwd!%I8m;O2eHFmPI}v0n!JNoTT#l4m@#VCNKlJh6u6 z`-BUnS(lld3;*LEpCb>wgWY#tYcMi2AD5z7OmkqAvuNQ0X|9+v;aM${v3%QXT)kx~ zQcL40TRgW!=LH|(BU(Ood)AmD#>d}PzT;ia$?jqP zqotKG*)h#Y(cbAi#RQ$lU6zRXt0rK}o~u#ZG1K5kIo>h0owl+u`-k2=vN4dYXPMp@ z#@mWD)HAHvuvF%Q@|f>v(=MN9>#iq#zQw%RtC%>YubHpS<_wW=Mun-7%yVP1c)sQA zCl^LW_8t2vXs#39F^+fD`@(H)$nZfTe*hREw zHf~qU<;jtqBlWU+`k8wgOdmJLD;p&Yx0<%Oc;F$`eGcOsH3%SK@6q;9x}*vA|1 zx(e0AaZ4e#Q9NTeodFd_du6aaTn^vp9P1A@dcC7Ov~M3xp91M)dUv_c!s}3t%TFKr z$-;H1XqAao*NtJE@f`E6ujBBWx8aGGcVgM*X{fBtK?d<)h5sg;1jVYM{0=Ynld)On z0Ppx?FFvcKk$A`QzwC?fY!pvLF-{fst1w`N|5nyA1Cyq8#c%%e5%SO{`0elBz?IjH zMOCL<CdusUF%9F|4`FV!*1;!MrU4>9z7~Cb=omldXuxNy* z-g!_Bw%v0r?&UejXOJkKWCY3y3D4}($|ead+xX0T4gJgjPCrUu;z z=;QQ?^q_cK@wE6N;BQzPrL(K8JgN3Vy0EqrN_h~jzUni=WJzLvM`wFayK)5Xf9__i zym>b5co|x@%fY@|(#&R=(`s zeUW`X+0S@wwQ$NZh^gMOf4RktB)v>e9A8z>(b<<4tBZ7D-Bdgi!99(Z^@IPIj$dMV7H0si=9Iw2loc(ureaLuqH?f{unmFHK z9Y^zf1AQ<){_)XA&-z8ycru@HvL$ia%=z0Nyb;^?@jUb~?M)n>Oq-oZ9i2=YFYL#B>fzRH^KdtDuRit;Qyvul(psJ9*Z_c$9R=X8c4yn6f54Eo?+%=lOdMb3T>)?AmoxNSoJ*ktrH| zgMC!X4c+p|V>&2NG_u(~ePe3J?8miOVbnA1-&NmEw;rt- zd*>s8y*}m4Tio-+Htc$ABL+;U9f=lt| zzZ}L7fBYhT_q*5e{qH}>ylY$LgjkOW(^04u>WJh_OjI5lHI-;X45^MhPkHc|!I(rGgw|cl(6+9EK5(3oxk&13VM|5I zrpXuLdR5QK5Uv<8dWMheh+qEtQT*uBr->(UKhGU`8Ov9WHdsTM%sCotF~+w6T$%bd z>`e6~czr>mcbp!kPh)E8^l8-Zr5@%u;z`BDhoh{t2qQ)g!{X(Ou=k03F=X^G)OGKO z!qRL*n<(ae+?hg}vn^mvS^7tI$>EN5t}7wV&Mm~8IfU2V*hzo!P290-F|oYTiM__! z5A~YucMV`}oDCi1=wn~4Y)RMHeih{ag`dHGFyaRGAJCC!idQgKk&gi*N8#SRJMs8| z$Ec6`GryD1Sc|cx2b0X;aWQ{WRF%g3AbaUaH-}56oc)4@L-E_+K0{yVAaiDKVdIvC z%%f39GpFyzCgc7nU!vNG=;N2MGhoB&%a)~$bdLB&y*#S#^<{46u6yQD4)*fwrTZ~` z#w6CRa?oSoU|hdxGlq;A%ipue7xA1YpkDQ1mPt>kXG%SEhE9w(WwXUY4!2BopB=Ye zK^=X7{R=PPs;fu)Ylp&ZilbaQ>@G_mM;(75}J@yIqGO)YcZUPDM;+>eM984Tv{lVtG~#an6K!rq|fmaFmwj@m#Z&_=q;> zz6TeYo&?E~_(!~`%h1TD%cOe^?ip=)J7T>(e{ePR^HbRO;1bl<6&gG=*)W59M85Ot zXe(o9hJR$|++J9@w)D{qqSmDK$;L|7#1B?xgo$P^;h{xFS&YcG?Tc{V-mCDlU)_og zo5!-Q!!y2o_F4MFexI)gk2=lZqS2@BR9lGG-`GHm(8uW~?!l_nV@xhzwL|HkhIF)h z<}=|31^i|ks~a9t9gA`%I#~=X*?BvAqxl`z^B?FhW|%5|7HsWW+v z=bw?zqK__z8)s!K!eC={>t1d!Ge7-wH$M7k2R`}1Lp)ol*6@&OL;73!(Rz*mexS_* ziB2ct%Y2c)_2$@*<~zIiBKXz#)TEbYa>QHO>m=&cKK&}Ol6lmMmRW`_(jDpp7k#8} zmETeChRz)7)3+sYMIXld@86B}8>bRu^DrKKcs0)8Jsjt@>yt*>R z`bo@R$Edf1Hc+(o%9wlJGogo^Y#zx=0UfS?Gqhq1>+1eLa#s0oq9p?WOku zdP}ll?byXU2PhHiH;lmp56;7ssr}KTM?0)%eg6FqAL98)t1xEFFm$PFiz}`iN=&%1 zm^`JHIP)?5JnfitG!Dj z$IaUp5+C_aEV^d}jS$&vI5 z_~+sw)5l4_GnIa%FsTO;CvPrsW=Da$Mw zoGtrxGV}=kte20ZPgOh9r5cg-m2B){bCk^YC&ZxNjCnlAq$hJD>^Wqtr#Qyo3ea|$ zSxo9@>yw>3`X`t!-rpVnsP3q`v1YzhHxe%xUQ&)*aUJOpN}6Pqm7}tKEqkKFsc*zL zs-a$la&W9TCv)n^C9qo?D!&(wGNWsG&%rjilH8D?IY@+O@v8mV{4 zVIPKsHRm}IH9R{y+b@Sk_nfElrG0QbBw3SeT&#;c;KcX>?T*4a3fWd>A+s>vRAnX^;qcY|_ z-|SaIbo0_l^l>~SeIz}tykupo3SvwzL3Les#`>IBVGd3<-r)y%_4E0{KVDin-Kw0N zp$~PCctiAwh-}XKY$;Z6S&t=~ZbH{SoWEfGO+JA1kkMC^Pn$z%obi`;tzYD4zs{yU za{S}yBY!!U7z}GS%)`^q-Hru|h8SE5)rurzR-aQQNn5MW&TaeE5dFOLv3%g=ANoj) zH-?XFkGI}tpA65vSKij-p=HC2trKm|WBSmh`Ta)22iDF@eiU;kCM)D@-M)Q1OX!+G zq!)YX6`wLk@}-b3+5CEOzNL?mF~;}e73Jn@YxB^#bH1&GFn@iv^Q#TX!s&Xio{Uje z#2326L#hjjMp5b$W=vvuhq4u%8#DUn6!_0aA|hUR=K=*TP~cQiKscn6c^&5E#~~Fc zY0!VCOVnsVmB`HjsK z>zxAK6#VSx`tM%7Z+*xB{hSZ#&L36YQW&W2((kJO%Et)gECX?$YF3W^vJJY|xlXTB z{rrypqLVJiyQ00dy{;djh3OS9ugoD%LaM>ej870goq8?;d!YW;dNLrt*B2X@JutX^ zjUT)3RMYur-&c?RL4J?)igb+lTxU?GXU1X9{4tm{XO!84wDef|(mFd@{lB)qH6RB8 zIWqMhw+EDg3vv+915WoF{`b+}&-=`gh_^*w%}EH0aOsNKJim1xx^%DMS&pgZ{7bV3 zJR8}`f!7`wdGhI@z`X+ZKN??rS>AUvad`*P%hKQWLW!@{izqDGf}&LBu_h5;?0Zr@@u#7yE(5ATcq!MaDf zrl=$xGv|)rEW%INPyQs&g4bE#8SEM5EH8UT)z@eBkgFjE*#Zy!O)if2Ki2b|&;RyS zuHCEq#h(G*w?3!v@SW~=^dC2|AN$ll;>`Ikh#@x}Evs`)el8`AXUNk=sBh4(hfIyz z=MS+C=a&J`K1lxLmx>q8XL>iZHkUiMK4N|P%Z|#&7d@rl(=uX-Wt@(|L+dz)^9pC( ze$O7cJJG3YC9zi7H=Py7d4hlp=(DDu)%4!kJy89to-HQrC4W{1zkGJt@E+HHr0%zM z_#^3`X0U+Y_=d1?zKb9Kvoq%~sDD7YaM@#DeC&GuT)gf40JjJ3)$YUj887(luhGXx*FVzh@_%v*l2J*0 zFFc>W|3mm$FXNf#ccDv`#-!$`oD{x{_F*epG;heD&i$` zHZ3i~Vs6V9GBTi9eC~m8K!nF-{7z{3BsH{EYZA-@*D#R~StA!je?>%?h``HuUW6YZY>E(J zk*NMhnGnviFd)r7G$0pFFFAYQ_TXIRdGE7(=`S4+puer1N{4H%$;>-*R=0q2Q*GK8 z;_G*=CLYB%N&jzi4(bJr9MhGtfDhwM^J2uNNMIju95EDQSZ|GHeNmW`!UPtMnQ$;d zd4+I4glT55+qne3;`t#ek>Y7Pt&H2Wn@)TsT)}5|B;LMS*2o0_`alqoz=o=BY zQCM=q+7oVUxb}ncp|b}382XY4+KONsAzAS2qVvQid+D$B`D0+lO|I_iu<24cqaZ(o3QJLh53U5l{! zp38C5eT#AP-m8g`!ugE{mt)5RE3x&yWw`Fvg_yHq4El~I1_pZ`QcL0xpUt_T^e}Ty zg0R~|qOFavwt;-#LiD$|A2wdJdvLDX;-k{v*Y{xN8mOmr)?nwG8k0U&gIQlEe^kFi|!$qZu#Er-$&H>L=`u9WhL!ZFg@9aSDepSR`CjXQ7 z(>QZ(;sDJJ)BiN*E79K(PK~gRB6*%i6miL7iN9y|p)3x4C%41>FK)o(s|O;fFxuki z#}ao=XL&d*be})!o?EZyn%?m~ugk;Lv%%6qtF9Bu5nL;>m!WXH2$5i0ThSnY!Jm_{<37j+ zr%?9{o7WZh9J&E5d*&e~GtBr!7WbIG5bdyZkY*Mf{q@}5^_*)zyF8Gie;^JE%EhbL3^bd}U&o!C{ zKW~7StZ$(>z~B`a8Q^>;V^ot1q8>@14$9_vFO@YJ7&EmF2Vc70V4!~X@0ak%?6g$#QY1Uzi4mHmXS;-1~&8$K|(gqVQHI&JDyyP zaf|yPHm4!_%VwQl^!NHfN9N*ucrUcW%0(p7p31i731^$J@Vo^BnUCI2Kj;wtK>V`H z7mq?K<|qo7s}KgKa(BY8FgTos|H<>zJxQF=Eav{%_?Os&(m%um={&q89(r{vYKK>t zvq&O*`X_KETYdgN*X^&9Ri}gOtMh}L9kxB_%0&pPO4xci#KZohMUEe8Xp+ z+e{zydG5hsb7o4P{x#G=8N`jU=f^33YGi;ukjY8&HHJC3IMO$UbG&hy$7Nj6ZDeaa z{`w9Ko>fa(h@wrwJ?Oo?W(V>ul_O zVKb`x79xS~>6|6y;uQZj^PaWji+}y}KTqmm_2U4S3sOy{KK+diCjG1pU_P4XdkK&C zqmTEI{;%`;HV!%X;NMcvS|lqGavfoH+G`$ zly*odinZrB`OZRh`5#vgP#*ex$^Qh~E64kGef9Z2P!CW)w6g(m#?E%?T*5PD(jQ3gO}=GImH{{FcbvPYQKTcB>RjSv(BSy>mClFYb%9@_1tl zbZ(|O*I2bN)x~^u09OwSJm>jgd)+?x;{a3h_R-&;i?B9WahUvh;l5_+{Agk@*R;tc z#?@@<9?}0htc|^gB}*q59Pgqs#$vR?Y21Sp#tq7crWM8^w>lM5uNsC!@9)9v>xT1O zz$E6Mt<8;KOs3job61C9zl6#E`*J^y{(4^b?B~O)*9Vde82#^~zq7#(dsev38LUYb z6tE`QDvLIE0P%U%m+~=d!=DgG{d&g2CG3w&w`YG*4=E>|!E-VS+N4wGjKz!Z@5THZ zMw_!M6LWda75z}fW9EE4lXJ7Rd4Da~V|RsxE}eNk(A}-UOMm%z)&{F49LNQ!CU0uO zv;jJ^Pd;W@MLMy#+Atq|AL;+Dk%70~z90PuwL#08EEF*uYP?L^ zPgyp|@O=tvn(~8mu5`F+kIJ=q^iDnA_r+ZDea;t}yLCvGolhqobNsIv3X_Xt9>`CB z_C<^S%5P>6|GJPipqg>Ob=Oa1U+8nB|Eu`>-(SV%t#is^(^)JPtHf)5Ay#V{Z)??7J$Y5geUT@&pgX_^}XbmRJ>yHDk-Hk_H*}=2Y+ne(r zMSJ0U>1-+0WOPQI`s7T19Q_@KZ>D^>m;UD)?~CuHck1_cQ1|=vzvN$iAfk)-U;1C? zK)Z7&RA1svJ%n zX_rJy(scUuxs0(&i67mrb0OBQpTK^IL$m=uqa6GQ&%Lw-y@ynzszV+MSsTtO;Cbpg zzmIhU)rHj`YI=0l6Y8&V30uha`#8OSF45lU6w$b$%kh)*<;<(^j6~Tx@x7P#rF*2C z#iyc|=oZh~ZZdUGCVlz>`jzEvv(RNgOYGQn4gUA9@00((Px`-skH2>ZMvUo%s&={b zLzxfa->0~`jOfq(4A5WvPkm=}Pf(ui9I?5EuRVFRdNdAtU;7|_*X8uR)-Ilx4v^k4 zv^TuZv*UccFPoXj9@|vn?&p*yp`>*t`i<_0yB^tyZ~fpY{OZ3|lYf!dOY9HbkE?k; zY@7DX$C3ZDNq?OK>T=SuC8ich-DdTV=x_PIUY@g&$6DT*M(aOXf6~y{6Sw&PjWjp< z#%E^@R+ghZ=`J78ob@Q$(=Sx-g8D{8`vlTYw9g{#%RA;^#*&dZ^v(P6*ekbU*3yA^ z>bdJ_e-BUw*dO=Vi`cXGT6FGGVtPkqEBw6?qbJiyF z{;A~QtcnzL8dQaw?plf0K6)6}@0^dW!+4fgk1}lAJ|F-1hv@$lb^)12eUTA}hW(d?CqrL9e*txacdNfCAZq(wt<;Pt!l@Zs$ky`U%0 zRn9|Y+Z?oEthMOMAw2Kvamv8^)Io3a=V#cn&a>5cj+4$mRZT$oYt;nQo03y!=XpugL99!vk3CiWanxmsBchr2iDaEu_Fb~4=aL^_ z^`l+exk7&vD^ll(_sctFA|Wf>=Toqj;-kHxJJ%>2Y2l8C5J$8$o<^Q8?vR7&OGe|s8+T*R^P6$$j5?FY%wk?Gi~pX@tAM;+$y`tGe$~V%_`1o3 z{_C^v^7R9J@SO)RWOzsFpe)-P!MH*Faj~>1rZr*lrD$dA(V3DWblmAO1qu=nUr*vYxy z=ij{#S8ke!mfiD_NxG-emrtcGNn;Kull>66+yfJbbuPxedsdR~-(pY12YmfD&qaG4 zi@ATT+vc)vPaUMQ^-O;p>94*B$sKj3=-MzgEjmI$hjj_}-k;KW2W==VtJfC884QIW2Rbu(3g?RD32eI?<>(O&uTh^?I zJHr{HB-#ROluPKCkLioY;OW=y#|u1Dbl!ENQC63Sbe>JGvypY4Z5(+wj&hF1WKT*}O*ZB(U`_rHPcjesK7RF^Z<79R;|D+7hf!lWtH<+j{QX(db2>MO zx-Y>0*8jKk*LoDEG(Pu zo|wq<2V3_j$DI#v!*_rBI&OP-4f;-?-^iZMH1d3c$(eChh;~!`BkE;PPeVL$2UH74 zXFby8LPwL%|MAmD>4ScV?|giam?>}LZ-09O>(-1HFprajg0dWpp4AUe zy}lcBSB*h6XXrZeOs5>`>v+byG0fSRvx@1HDsQGs{-e$;RxVmIlDX_jk$zDR);sU* zqV0VT?|$nEeDcGm`SaU&>E&C{vv;ML6Ht$?dbw23S58}frbhoO_V(BS$6Jlb1|OmK zjh`TWV=qU0;biMvKk>WHJ{H}DlO*iCl$3b%>)VTcgoQjmv>OHt9f&d0$70~<9w@5L zL6<&lQA%uqc-9$p{A?3>pr$Fb5tM5l=mp}FN^`!ah?8|+^ z^rZajU*8~p(BqgnyEpN(d^Ui(E5V1GqIo}q7oqsuLx1N3H6|T&EZ+Cio;KF?ji_%y zSk&%(<#?X2oRk!UZe8mzdhAF{oH-f0_U_;u<5qO;QHR=Y?TM|?k@l6fS<#+!HuDqW zQ~64a&2)}OR&k=qBdfnnGN67p>2}q_ZoXv>{`s%N_|1PlN8FUP)Il$@N8(k^2~0LN zAfK|5Mw_F4F6FdkgM;a>xJ5mNjm-u)o-ohl;eAJYow4Nl#)S!!KpmZu8bzHG$Nq7x zn|WaJe{EeYMvNPa8#gbirB0rx! z(){}*(qFt`ZE!#b$#;-E8@=k=gT|nP6bsg;f57Jv{iSm(ehFuHsT-tYtLc->p4%HY z+&GQr7GB14=Ek6`tO)r$!)Ng18H`VNGjH}RW-eSn-CV@p@nrVy3sXs$KJrg(okTi9 zb(nDaE76Rd;@C5y9Gbr-!+XiMmwi=V&{a#u;y?fEInw1$c~ z(+47t)VIOZK|cDMJXIr-fg^Ok^2f5bd|vqu@*|?DZzR{noRb(isx9_Ca2a#K578%l z1BVVhiba>tXU(>Zy;0d1FnlCd+^_*NF1vy``cmqU6!I~B{AA9I@+|W>VY?arl#R6Z z+q`lgG@E2RXM^>6wsR3j&|mSE=gE-CC+{g?WE2$jUm1pd#HGhd|_D$^TH|YXUjwX{=G47>~Qw)bV6}ihB;48 zI6zSbU(e zXNt$fDE?s{CYF9+Jo_?J;?SdeXKcH9JzjZzANKLw_AwJUpU#+Az5n8M(Of*LOR}a* zdtmw^NXKNx2RiduGf1WE4Qj{Q<2^k4{oi;F-~HZhEVyg{TJv0F=_t(+XumYq5ksHK z#lf1t6hDdfjh+5xcG}1P%Ik?{bYIsWt#i+_nY$B>J9I3-qmM0N z4E!|nK#%dPl#RHQc3W|R=9sisI$v15?b2s14p!fb+XJt?YYaBn`#k=fkADvW=e!%; zK)Q%F>fMq5uQ(t)objgb{CK_Utfq(v`tv$Ro|w0p+3}b{{q@FM>+q}J-iEyoEa1FX zs?igX{0`Avv63z)2fCNROYzOfWKp-MKev|oxaSY9rXRGQ_IDra^ABS8otL3wry}l; za&hdfc?i!0mxKlU+K9|E4pMWmBcwi)jD5^{8N9(AQau zd>XI4b|d?A@8$I@F1viBCl26@2KUXz!4248+Bj!}wcf^%i}1>T7eBze4`wfXc{lk+ z{!2M%@9+HC?gRBX^}AwZ;pinYN3ELG!YlgWz_TkbZB}o}2WL~L^OZxDo>p(1)j^yS zrVnHMAksfW^rsD0U)F~o-ADSrf}LMqfJYvcE&e9nc=HaP|6XHsl;)Y_uen^PzOM!A zMppmO4v7BbG5;Pkf_z+X46J7h&H=f-(5u#Rtjpx4m9HRO<=;rB3wuDZk^IVzwFQ{X zStDVAhAK}l+LK0p`pXw(|8flDf&|iESOo>l+YK00P2614|KIQ7w%Zr;%;JIgcDlTCS!APK0ovr^!LhqW61{v$HPuW-K(i1QFhI% zZ%?#04ef<}&&r9>Pm~A6(;?gobMa^SSoL%le>eIk=3;d0TY~m|N=$!TisAs~I4jv3 zI&64by!i4B_{;x3#@UR;`2LUXVz2amtYn_G6?=Du86iK^!~x22__P}>F)Qi&4en|GMY^W}7Yvbm3|NB-3BoATi-H+njoba-Qd!n=W z6bpChQbc^F;aIj}2wpn8j=828*!$or&THI;Dbu?1{h=5$rb8eOP@G4Z3-kF{k}>ye zN6`PQ>!A9+fcD^+`(X4_13F8#P1kYBM?iL*-ty}p;{(wKutp%8q5Nhc@oE-bJ^(k} zG>@;ta0@ZuHs7)cS1q4|C0CEZop&$B$dT;~{blb}4~v$s>|}ub1P$fl8ix(2Pk-l^ zDMtB1`{3Ij1^omjGZDRU%aFp=j9R4`wfo*r%Uaoo2!#$r*%4p8qY7WU-gyfV-jVlhYa zhF)bG{FiS}zKD!C`kPnju!i=4bdnv2V6U!p`Q)ixaQ8j4*$XinDaG9dmtI0FDf5izD#jR0!ECi!J6wwVat{oc;JDnsqYtI*Y3591Eyf;h`zY@ zzLj|Fv9;L$1t z=zp%+UoRa`)z6X(%{>RpgM3-jU+RnFO#G%8nsT6=pK@}_2_^C@nPi?NmXaFHymTHW zPa03ZXDDOeWK-wSnR>B2Z_J)y;>&}|_WE?cbe&iCH)j9mRMEVl?=kwxBM&B~AZ@HI z5WQ@SCcW+AXXzu=&|+D~QB5;7Edkwobi;^IBiM&T9IQCj_?Z`1-bwMcJG(@C>F954 zukn!sJfLT3=o!!V_lzuf_rT*1SzBylWZVB@_rd1EIZF`DT1#9c+SGNy#KkL+S6adz zRGtgYdPErW;_44mF0h5JAo?3w^W68#N`LWJyvWed*eG350F-xRT74S zW+nsq3hsr;cQdC)+J>^;6B1fl&3wG} zG?@On|M{+GjGZZ<-DPA#G?tFx9^{mi@!Wte?4gUb zvmk!Cv2$m&1Im$66i1n&Tm|v}m!1CdPn|DhX3j|ec;Xo*=SCX-cRr&xMl-WT&57|K zz0Q3|NJ}R^L^q^nWth23uik3G8ia5OBnRrF59WX4|1^U9=dpP7bpM-^0kaR(|8C~b z%n*}bMKd@1WM%>xM>TE6{&MOgU6C=-C~M39ijq?98TF5!|G7VAkLddw|I^N|UC{sa zb*@(itSnd`U9+R+qQ5Abxt@5<0a|)m`i6#waDJQTNLIDw+*6#-{#w7s`95y{WMeMS zzdrpXU&a^p#AP;jYW*X{2BMj<&$1E9BN%&N>&;=|%{jAF#`9x(@%)|&<~&(jmVGvU z5cQPdeeRz=dx8E(^*1C3(nVgM)X0Nq@7n{bi!A-c+oG|0UTRubVd~V$?1ArT`tc&! z1Ec;J{kxNa3-mvd?~i6%L~lcDU!3IVZ*m7d{uf=v=aJ<1*6ms|KerbBM^8cyWgsDm z_@C?#)A{p?!>rA=cI1No`TTt_vfznPz4R9!OQ)#5FCLGM3FX;gt*~zUHY~V)3#Kkx z!ShY>nJ*$9oMvNLch+7xA4>MaySHEF`1ff1ulMWuMcfOo4G7R*nCcPb z*Kfuv-`Gby*LIxEjx;@zn%y~q{zks6?|Xs%4a-BYUnCiDHaM96X`Hc{LyWRV_pif? zFKxxJ5$(+^lk%X-p?dSrhW9Vf|EPA@D-+fqwR{>(f8`gH8&w~$&Mt4=CL51Eu?(Ml zayv$i<~daC-&Nk)_QBC+`|2+j=-)8Ed+F|e_WD9z`b(E9A7pFA?CD}ZqxugozoHL* z`qLd4%X7fgkE>o#L;v9ZlMDQRT>S5)zhuGbA8Ui<|65E;@wxDHTXMGk=36GRU$orJ zO{o`MJr(Lh_uF3&?e(1(^#9T2LA3Gif%QLaEG2!So)t4E$U39;AdxsX`NW1!=PbQ` zmwqy}UtbKSI9PJz)oT~%e{}jw54qVUCtL$PWuw#mYU0#?+_l0F2#RmnhMZf%_gW54gU5=VKV&yRiRf zl>dYMvZj>FW~w#OXLhph_CAcVZRd4`i9#%4_CqDGH%(VOu?F0Xu)i0IzF;s9_`jFm zubhC@GrnAd~GWFYVUiv6Ee37dmtxD-rNr#&$X>`)V)Vot9*`~&kNA1OYYUja3ibue{E#<3H@tYk4>;ZY z==J@Mw*S`Ob2GiojgC)ZjYBvC9XnUx;0yQj9LJT!ttuogOe$x0St_@$i83(&=9Rm;L)2-2VpbzI=MG?5htwH$U0z|MQ3T@EqIMh)>y<^I~~? zpO}CdmIvzF0{Q})i}cOF2I~OhcY5|;zTlUAe@^%Mo$v2tzo8tTCH*Dsw;CK8s#r;LkfK z*_SiFXG~eY?Ho;Tuet)IrBA{>fNb0`-A_%Lg_DQ3t@t%F3th#&CguY9`JkAGXBklB z2IQEaApZRGLK*n)%Yc}>N1QFk-NN@Oay@d)$1=e9v%X6EJQRCX7=QS9dq-39@pq!s zS&7(>@(eq2pJFa`2n7VXkh7}=VgdtUCsHp*bgZA z0+v%LF8J@ii@(~&{{QjMFNnYJy#??u829mhBDUqs?O6Zqq5s}~4m4_P5A3SG4;%1~ zj-T2_(J>*C4RAm_plk!Mr;+~*-eJZ5glDXjxd87n5%}ZZ@drBq{AF1ca!{Bf_#bnl zT;Gp(t8Dva{r@BWxZManHbBn@>%SfF_4KjBz23IiPk90OKgYe0o78V`d-4fzA}1F! z@Bn@6e#5?b*Z|(W#5REE>DZodK7nO`{~l#Oz%n56LIrGqj6Z)C+JpbO9h7}PfBsAS z#cq!L_%r`=_p+w8agp@k!Cvf0JP$u`mzJ%ZMnPeo*b|MLJ=phTW}yQfAjgA}4d8h` zwgFtjFIXqY~jt z3U-rbK>t|=PGe_y7R59RgKe-S2kcU{z>a=n><8gJ&g?&wZGa>L+^fMe4ahkoCgA=K z`Q8i50>>mQpMs+(u+GI_$uH!y3;2Cf{;)8I_#^)DBmd7fSJpj=`zdODu+tp7aSX@y zpKUqEe;of;aJQh~>K@n;HWk?K#Gbaz^ybZJ8Zx{i`Biqre1sWp1YlP-?lbU?b9o0D z^8oG{;ayc?UK(+sxZMk1z%n5CAowTGhDkTc6h47v0T0WB(0PR~C@2rYCLn)Y7(4vA zO_1LkzpsA>f3a6l;I9RKuP=POUu7qnHoZUY#bnXk#S=_BauO{CE5O-v;`-<=A z@%=+_%aQwMSqAW^z$WBAkOg_JRK$x4nGn80;Tt6Vhb-ggqNhP{+``&&LA%GcQ@ks| zukc>^eHGMyaP+*IKWcx#pKm6a15aDnb~nTTb)o|3=&{AX|0-<26Ue}2T9-MK!fI7S zE&%tNAt%fO`OXj90O1F)*G7Z)cC!rd?gQ`vzE#W*&uy1sIl!Ze+s^VmI$;->C$c;U z{~*~0nJ36HAmSN(C;mRNFW}EYTae!tbA?$*}Kge=WLg5>j(=hIA17tbi?_5w1 z{;5A##$TBO%J_3!Cf(!V{6E+J5d*+~vko(-XKwEdj$a8}f6Vyq*bjdK_=5vL|6jg5 zjoeTx_y8y50xV!FaBma09*r@tVu0PAdb~H@5WD;N9vk+I@ojh^3y=rC8>|MIP{U4c zz9U=~G9k-@D$9fL5o{ZvO5P)c|5*B&bHi=??zTI0nf9g4jt>!!$&(12X03Uup2jfuF#zMNr(^K zz!9u)C&h>?vD4cOcMy%SU)>PLRo(bf@7!P)i@{Ml3S*$J|)Qt3TI}0~%%Rwgc zlE+XZ10l7WRd2#^*`egFBdYqXVcS?x;B9Zk!Enzw*6ZGwf$Hv4I>| z!yjO0pn(-^0v>%!P0!W=s^em&TpD&Y6n`yglJfxIzpyBlGDl7X!@=~?6Mj|FN7rmzo2xao!)-Q}>aTMd4K z<)AdULaq!bxPcrq=5hjjKgq{Qen9GVF7yR*3@GvAA8|nWMux-zv|x+%V4saJ=W8bL z$K6icdiJYgOGAgF7W5YP!g4af12Pc@Zly)bf1@Ge+tSDxU1&;LUz(LMgyyYJqJ^7A z($Z~XDSgLyO5Z-7mf<${qK#u{c1ALdo8OOmk8VfJy49iJ1{KMrsppXklzA)DYD12qE{YQ+& zHCjpkrTySq&^cY~$v1#)HnG+uTNi!u3$~@`mX&DK)b{k`#Twub8}MxxKC|fDm1Q(x zVHfH*z9}UPsY|VTg;PxDAc|@qKy};sQ)FBKMJH6HCf!3Rc2Fes9M_DJ=XRz!kdchN zlWF~-nY3ifcuJhsmFmZbkz0r@nY!weft?oVT4LT4{-HeVfts!gl~LFNDQ=Xwp|Ast zzal13wgLRT|LO67vi=JjAlrYD2LRVbE>^~0%y|NT9q68wn>Gd1v8ATn1F7Gn29z`l zxXo-u$IniM?z0WxyS;1a1n$<=ZyrFtRc*1a(3~7$D{NfA1Dp-W+zDL35pkiTE^cJw zo|iNDp{pKQdK!{_fEjt$w5JHjNY_z~XvW$hwBhJ1O5Zt&dX8>Q{&ii++#PaYt4Z4C zYLYF042ZpN%n6tq3SR&_fVe>R0}}ocAC$iDKidcV41dW6NchY50m{M8>X?*E1WMH`4X zz?3;4^FMGt1Kj84M;~#49v;3?Z-`$rgzsk#z%trNy9=)RW;&!yH zvp!h>dsDt0XO0`j;1RmUxEsL_$AI8>TDT3X4ZE%bAES%kqh|^Eu*JPa{5`DmUbXG0 z`wB84Y2QQ4|Kr!nEP=o zP`kY!?KnS|n)MAQBPWFoKz@Mp##}oPJP>=BRbT^3;*oZ&=HdTO=Kvf7$$3DD6XRVe z=K)cJW&CsVK#E#`HuCoR@Y$yD0aozo4&e25oA}YZY>@{Rw_{NU;9N5M6285uA!Clbe|f$sE*{hd@yYpLmIKcF2pK>O!Z{%$2W_&e zY)YwX2hjMXJ;>5qm$Z-{C&H zd7l#Fubc~Jo#kAx34DMB__`f@djxLQkDeY+dk>DL&tKsKa`w@;@9Sy9reyR4xuGY> zOx(7$!hJ(y+?mwpo)FXm8GlW-`;0j_2G@j@AKr~G%#_^dFs=U8SQAv z_K{>?*;w$v^6(e@|0$h|KXSsb0fqSI`F>@YSM~vtPC#cw4nX37d3WOYP8o86f(OC} z06Qc20CU7~cDUE)3VbUgmpcVA@Zl5Ve}r;qA9{k)sA-EJ^2WYEC*0-b8|%yg4ET2C zPw+3VkO7YA1^#RU5Z|$GGydA(dYlh5_cWkkv*Kv!t}$d^)kKN|3gTZD`d*0tPh;Ib z;IAA9AP*?w0EG?UzD?;a4st>80S1WO%z!1|jCHJFEc|@;o>BDT8?b{0 z4rxJtxanR2_uFmJ55RYp1qa}}fm{Pt*ndg?B^w~@0o#2A2jF}!^FdkvIS**(Z$dNH z4W*fxL&(a{fV2^pa*ZHQ|B(wU3tL|rc24&Hh4w$6Ec}53i1(Af7RWw8nFn$`nD0{= zfWz_4V7>)x?_@w8s0TG{6hId*EkHjI=Yh8)7T8ZqmJO$%YKQ}Ix7H55Bj%g~U>^Vu z!1yz#(q{{eZF!;5d-;B(e_>x3Rzjl=0^q-+V8W@3k6%%Q2_3v)3nA z+$|2R?n;}tjDqfO75@J_?V+P5(x_g;%Gld(MNa4mv*dmdMNe3+4*=fk-~g=mGWU1! zx1`RAO~}GcAJ}7_*a)%$+izea`Tm68VrcK>G^*Ch3w%&Z{2JScf0zIL(`x`S{`?+f zKFptj6Dr36s0HxuQ@I|%K7jAu>!Bye5IoKtJwdjJ?JD3VEOY%SsM&n_vITj-4S2HX z@v}YDwMQfJ^G6&2A7F#uYlfaML+%Gs_yA!8SOydi$9*Qiv|^Yo;yuLnh&Q+=fNMX- zs2fy_aHO>dr_+>-zGNF<3_hSK;zQ;M`QksW2P(&ZO7_1H|2$5ZKMsIA6u@7O1DFFy zJwf1ru-%5R;b!RRVP5BiULS8CYwF%JhF)fKF9^%PHv07W7)`~jK-FMp_y7ys7)DQ+ zA`alYtGPCS{Qw@3|KYd*{7}OX{6NkFa@>bnu(gjd4VV;5`!Ap%tL|3dup`G464DEk0m3zYDed;n|!aseC%a_>Ipf^^Um#CwoUO*M$)ItTQG zczRiY15^bEScW0LC1T1|D^R zKj(pA^MOCt1GpBzb%4kYfpp-~N*XdVmaP4Z5DRLFda!c-S2^~V>wpFGKZW|Qr2hqc z0Q-OW$?FMZ{JAGcss{)T039_3h8E}xW)8p{FSLd$;{Gw&a!kOvK?A8Kq=WoF`+QUM98`*OrPX_;Q~K_4z_=sk%f%i&BNYN|D0x;dI(Bm%wH{m> z`CbFz54bKQVm{PWe#X(01jXdjIkqV3~B)%4*~yEc&>mC zT%>6;2Ot;dDr|%U;zgbhGsirE3Fid)!H-SRQ()<4NUrGl9Fo$B&fnibW0rJ>|FtHr$J8b_M;C~gLS83<2c@z=lCuWD7xgNmtVLTs% znIbbgUC|qA?T#HoVfOUfj9zr%K^Bco>p|`{Y~TwFM4pFzKIa3uHXzRdl#)3gWHjFl z0PMbU-w)3L74C=lvG2==zsLj1`mfjxpwNG14#@M|avn(J0Wk0D$g@Gn^+wjKL`RM; z1n$S-2TtSjJl(v#4ZDMCB2S3EKu>cLHoyse!Kfctxfqe1mnl`M<3dxG45dqtcF{=m zkh|Bg1=lwad_WtuU-tQ&A1upuKeyM1=YUYV%;o&RT@mvs<6r3ae~dlbfPaa#nHWaggoWtQ6Uvn$o5r$e2I6yFJK1`0d|$>sZ*K(0 zd?MawyRWeQh4r4FWB>2sU;0P=K;VEhSfp5Z%LM}Mu-D+#B3<%f;5m5WS=k3dgNgbjA5Ik{UFeHneQue zKKQdjzyEXmm2E%Af%*BL_0)S{LkgHMADwC&Uais>Fq&Xuu8R)Ia|0d$ZP z;G7`)e6bq(Gnzig$si+WPi4xu!6)hN38 z^bjrEF_vnz@g?Ux}|`{<*+kdZz+^e#eZzQZFd?0&=~c`$5_N3;hTFyzj#f zaUJLRxfU>ZSPc5YSAhd?Uoh_q*+u6sFQmQ4SI~`T2WZl=UR152J5@lxhb>}13-lB6 zd>H2e#as~VKG%i0KTHj^$Fd6D&)oq6zc2J2_{*HHkn`u^{3DrXUnt`(_!02tcP7~Z zN%zG&6`Ts#!^X0{G5-Ai%V7rt_iJ(QHs=7D|8q|t=ki$p8Gje_1NjEnP@A|A>;#w( z+;;;1Q?LVP(HC}=F5cZigC@76z$h2;!0&U!oS+rrKvT>K86pp;$NNEG_qis_a>jkZ zWr2SgvG)O(BhOa~a>?;N|6BRieF^k0=Eokp9tv~4`Rt$A_rN-?r0+8J%DW(#PlNHv4#J4f&TlTA1Eruj}9G~0Q~m=|C`_f zFW?W((4v(CDZIWH=Exn%1u=jb49|yhJwO+HpKF4w``i~Mc7;Lq@@zlwhhLI+ zMKb;(Z=L(SBpoQs^GV#7?Y(lJPd@xh$a=&69uIn^1orIrm2{tZ7vsSAvre*ZvX1gz zC(hrSq7TFhyI$ZGUh&wq=xIIa&clP42{@1EIPgD!o}gWH`_4j&jjutKsybko4En-&Mi91x z=gM+t#JCrP^`Ct|7=M}jG5-906yNdh&i8Y1FMw&TPXEb&mvLu(;YY@u zu@^D40(Z`*%08dpxrDvcqbslnHoUt_4}RYen3=%u^L_^h_;Gh&-=J*>rEi=9et(z_ zUsyuVUuQt?w*i0l1Ka7t`;9bqd@N>1osloL#0-HESwVhGq5r&RMjwB++#fF6f0h9$ z_5=1J-wXNVxUV4o`2IiQJ-_;YlYN=cd0E!+DKO3bWGB?#D1r4NiFHfg-kk!y6vd>2^7~m zoKBygfjaO;V84-azHvObi#Bc^PqiYv&=Y`NVdx*WM(&V%0{$=`z%~Fm-*V{jVIIgb zz_Q6X2~`FD#TDP5zb}8+Umfco{re^S;hSOS&!ogUKf01eHS(# zzeo6a;p>%np1@v;t=Z4=doIH<7wm62_ zW-K2;S0C-8b%&-?%f8`MwXPf0iuOfM;3(+-7T~{1$iR2-!Rt3NsCBzA1%J z1y5sJh*>v&#Jn5ciHx`WDfK`|K3@3wg4naY$5R@+-(;T8J6UDy)q#NqxSlreZ$O;S zwR$sfJuAfQZkYXRKd=eyK9wPQHAc+uL?Mkl$ScT>d;%RQ2tA=wQ@f!DU=y&%YzTCp zYXWcIZlw{U+ECRXC-e>@20-43<3}+g2>j*VU`_npo`KvC&>l5HBf$lf_5YuMKgaB{ z-Ots1=({TK>O(E89QGh_J)C==Stj_M2wT9qjz{=+_VIZ5?oxhV&-x_gR3)8REND6J(=*!y4cVM03X2k^P`UWp7PxH0X~vz|M3pkm$9A8#s6<;{|n+T>^bW( z^xeWmhuRIO1AR0Sy-+g#$~SeCaW4(r`C%QBIiBG6%<;gp)D?c7bMHFPdEU>(I&Y5H z&JO$BYBa4(GgpkF3-_{U#qLSeuxqfW+1Y^mTVod33OyaxcL4uAB2Tj6d7`^7_0lgYCbRvnhpNWBkRFPv?tceh)bt{c?DZ z(0ANrQ$s($8e)33^;~PwRQP#aU|@)RteGSHJofx}g*j9A8?>)M>6>QIh5Ng(cPW`_$N7_kzd8E0aQ_=T&=|ap_c|M+2fze< zAm-3vE5viW1Kb1oohpG&(DQhD|AFViP9YbBIskG)+!Jv9MmpjE_yGKyc!tCdz2Ra` zT7SLnUK zUUAozd$%fsZ`W_+FU?y5cXjk|Xrhmkce3lFhHuRL4!GGNFB62=ZS;%*bo#~)+I@Z* zbsEu-Ji_eA6869h^%^7K&T*hVYBu`J5%6$7H}CqhL@$6Hevd1B0Ple4)Q#stR>AHc zMjiM9c7ZaX#W{S&UK{Zi z@8D!xZ;RecU&L%(hP9zRC)U#Chr4O=ih)$Ec}24GH3ttc0uM)x9{R2ataYKMx@@Z< zKU}xt`VGf$yer-YHh||nDk8_zxOp&Lxi%m8@5g?qbC87-*cWvYGO&ww?M^{&a3vBx z0K9>H0M8W}a;|~xQtlm5CH&?55AYZ94me=m`}up||0CTO-%)&5=sxSe(xa^VjJ;&{ z@y^P^&*KiWhI%P6i`%tlG&nYT=^1;>VCtI#dj}(`06lHixh`dFokw?HoS_}37gOwz zNb;*)fozc1XIpQ88Xe=V1Kc?m#5|F6!8)v~__KJw5AS*6T%Hy8g8@%3^aMvl`q6`9`++Z^7jPST!gu25-~wL{(ZWTE z6da0v0PqE#Cl@oK%mL6}zd10}?sUx_EN-u&wMz8~p6`vUfL z@^_X$W$f7}mVvJ?!}cCJUlzElDX^DsdU|;~QM=fNn7=VZ?N)<~EwP)=!34b+-n94Z zD%x{)CAA+GO&-|o>|4#5s)V_b8SFUc{dgabCiI+f=U735V?{i|k8nL0G9davAXB{O zg)!uv4;(%smLmv>Os?uEeql;DBq&Ml$FO#+b%!i*^52`g|&Q_eF3 zf93#UPY~B2IXBJtix@CZ|Nl-L;76RFbzgA40{AobdA6Q+xATov$=yI36Vsm=)b`xy=LAnQC zv0%vv>yL!1E#Bn3XWh?`1pBaDd z3BV)U0C6)6T#om{Fb8O#P?H`%R@>Cjp0ConVCbT{?iK>OUpdQ5g z;=loz0|I~MfIM%+->D$}{0>+KL>^En4)~?hXI7FEcfynl)=s>ozT^P5XA#V@P+}b7UPY$xNfDCXFzc;|PuzhB=K8 z^mXV8z1PJ3AF-PS7%=AL_(48S$N+M(hE^J6gS;@u0PF+go={_OOvwjeHW+!~sOU;` z^5hKI`vdR;`)T#MakORIB-8>9;J+QCgNLV!ny?#UMzJprywpg<016JsIY8JmmUD>% zNI4G9cl`l>yu)9T1Aw~}jQI-seP!$=okwg3-H>|np?}El8L)3RL5&u-yZJFPMsKAd zax><}R5!8?HEGeDTE;e^m1|}oE;|kx$UVlf0Cs>&W@LUM*{c=H#KL9A-&< z@IObJw@s$7n(nYo68;t(1HkX-bDW~!fV_h$7k~7D%K9&CfRg?TfB6gYK+)gB`d=z9 z=T|V^m+@y`FY)@ky=+ECyq8f|>}2!D99FeZ58UhYCLbSH#8sG~H^mK4?}}8V4sN)N z8%mouEk|yC56xOQm+Ci+#Q)C$cv)aiuNG`Md_L@lChkD9pO^9HUL3g>kbCnDaKp_C zJ9>DJ2ls5rb0N$FmxS6bh>V*@Z;qKuW8`-X(T5NGb>KI&fWNriix`Z#h0H5C9^-q?Vs|63;hu2b5y|x$xi_3+ zc-CV()C71>AkT+4Zy5@|zXjM;hV2U_U_LuVKuf_v@jDH@_m3Ojn9gJ&Yx|qS`Jee)>w$-aU(~zO{ z&~yD8_U^1kul-@VckcwP%2-03VcV+)`je>{Vry&g{#vyuu6rLEkUW~|G-`@^jXn4} z^7-b->ze4|&%}-{Bjk1s)FA`t#}zl+^W)Dr2w8v}@U1A$(KAQOoehKC7Pn);!> zIJYZiL(um*U|>@^e<7V7KhA*dm-;~l4{ZS-!Tms}17KgQCGh9{B619<1-ars{||W} zMIKo40eN=wSM&k@8h_r&$~(ESixt@Odx}P$e){xyI(IIWUc5-B`w!;Op~K^8&fEdi zA-*961b85xGKDVb0#DX!P3XEUdHMOGR%eZTE$X(`=2Wd(Ak_>Hr8?k$e*P}l(}Ouo za0dfJmI35@1P9Nv!HmBo11txeUk3k#EO4%de=q<07(2F0Yy)^#sI$liT3}zS8x0!V z6nz16fd3A9@^l4uM@3+6h%xnfh4l+Zjx2*A1l9)CB6;t3Gxx`2lk~az^ZKWvvgLhdvu3Z>xv=oepd|;y_(p zh@o{TdHjTCH>ciPxkV$rx5Ja@xks@-mlCy zmUpr6J`NLbe=7(^53ft8DRX`2P;3aEnxW&J7VB7*gxg70n7tn1H4gRjKdu0 zgGan4WSh|ctleX%MXM@Qk@rKOwrsi1$v)dEi|93*-SsJy~96v0w%h!&%BRE5ATV8%(}{0Nq(E(8|P1;yX6tb zi3fbXJpP+Hcok%V<$&#jg_Qxdi>pgnd*`AqvzZ<}pGh|#Orj|><8aHvT>SZYx!61& zCd+{&1Ck98_u~~dz!(@xHv_OQ82y9Z*cI2cTP@T97b5?&g!)}aZ}0@J`|p(Z~fX zMqkhddip$_K7L#cd6-872gith5Y8JjXJ8w^c>qxh792$40OIe)d*JsW<1g9&ycm$* z->=pW@`wBn;y;c7RZ!#N@5kSjAE~}8y?;p-SRUj@;$~`cJ%H;$ibt*sO0_|j3$_d3 z?T{O79dLHT@_6Uk6jsB97A)>WH}B4df1XKGrnUip!!9n^7h#8$a&dY1OS^(uM_ES1 zo+yq{kVlgCL}?5BebDbUVstEe05KDiv!2eMpGr@jEJ7@}j!v9hM2(wkJ(3(i7N7@mE;#R# zYk`UfbwRmKB*{(Quazy!dG)*+u{OA+K5~dA;1BMo-Sr*NkPaOk4X!>7aa**Q(_`B% za{!J<`0p&O$VIaZvJH^%$L&bO?$WMMa6oW6C)9*}(G!v~wFhoSaWD7=%FG0ZT|WRh zp-em{XyM{vQZ5Lw0NVgj3xEvq?r~)wz;Y-10DdQV_~(}cuBq|9i(iEc6tn?iR|DsP zAlvfy6f&T&1%T%@WIMpTs>H8^KmNV)zdiSp zzY`u&2Uf_svMk6yma+bKKP7v>enjH){9en$wzHk(dmkLfb03BsdP3X8R-@sg;;`q* zT*!;8e|$5N_pkELg%3iE#&=ybQ6J*o5M9U-_k~!ZZ;W}JKjPEnD+Yl3@l42BTE2WZ zHHfK1^B4BVtk6kOBi?^tGS!Ll5wQUCK<1E)zc&6&ocClKlg9zj4@}%v?>gjB)k^dS8lpbTF(B`Y=RUuNjRR=!{&C1vZ>HaW-+(#6 zE|kRe!B=a5{|>tMU)8NlS2fRmv)ulH6BfW< zwhhXAo%s99bHK`<(tF9%l^@B2kOL88aIY;e$0N;MDLxhPM?QH0{)`9D>8YbPK+^#J zANTv@z96m#GLAl&5A8oN3VpxfxEoaq^}rO|3K~NlI!DsMBQuZ>T8%tFBZ{cwNqzc8 zP+VMy$ORd4pE3A|=m`h@Tm#L;AAdLhTjcK|d;q?`{9b-V{0qh_1!F_y@Ak7F%l4q) zryNuKC$>R;w*^0yWq|E5&zEtYo;f7vD7DZh%6&m{Er9F6UAl%*`pUkT|7eT4WeklP z8%u)|TT&wS1gE8sr1*pgnmD-wt;rljefrcv3?TP|N&P?~*98txj(q@RPH<3xza#^H zNBm`f@SoU&pUH)ce?GYoxf6xY_!Ish&lf7o0n32w1Ee@m;*VUjk$OUq2jp51{5aS4 z-LOBPOV>zBPVPbp9UCJ4Ye45OE~4?%dZ9Mm33=%HG-yyeN}bV@A|t(o-QXC2eE`QK zoD0%K9H7htCH+_6kAJ_!i}J@(1$F9I{`vnGd+<|vQ1}x$-z4M$@*wdj`BO1_#(4;S zl=v3^Sn5xZ^1*DE)kGesq~Pq#-Ayqg=76~{7u5LqlY4!_!z)qan3}-4B|XM0$hN(+ zXxR8s)Uk6MHE&)I{b*IhZh6j0nxd~*xh5>tgcPwL_^QYSE5(8A^9stquZ;JP{_V^U z^F5sFP~r>!E^qiVxyUC23QocD!8SI(46qHrqsRq_J{81*oCD-L!Ckx8M13)q7A;Aj zKK<&FzrPbz@^i)~c0prj^sQSNbm`g(8ar_ajU16kty(rBFE2;bvMunK;*OBN@CD2V zs-aHAeJ`9};#wHX8`~e{JOFdxzdQavl8GPvHz6Y|7kK^*>;LH2AOocobqQGxWIrI? zjx8o~2;9Tps7U~A+|-vYT^fO2l|=Ncbfiw5+fsadTl6mZQFQ&vxEqm%xc>mnnEe|~ zm^czOhe_0|Swm{sq6xJ_pZc`a9(3?PBKn9E(bqPBrq60mwd;DJZc+MA@X!0ctP4MS zH~)nH#&LwaM=aM~{7>b9ZGe!0JUbxa&o)5v1DvPhnz5-_c?u4(qrpRJ)9N){P*WU4 z>FFbA(!_o=JgGDF?$ZSMzhvBwKTk8~j;3ZU8`AWdlWEwnzSO^8H<~eHA}w1sm9ln@ zri&Mn>C~xVv}kcWa)gEW|2O3KhxUQ{kd=Coe`*^F*a2l8z%e@K5jke#{H+<}zz4fT zTDPrCzu}hmxbdxN?b-pD10F_`ro_|4N&Vm_+E8G%0BYAhlD2LeK|6Mi!si&;wk?@9 zZ5{x-(43k#^`Q#RxCN=O{~`w9Jdncw|6Te2e*^1(^=HVkAb7;T<1b`8px}dyfvSQB zl*OJBQBwd{XBlAb&V4G}+iPiwzEJdpg;sY$yjPuK+lN#2Fh8nOw+8k@`orG`(de;T8@A|8Y-;QAuZEbtvkb93wsu|#bEvkGn7w#1xb1FBTX z6E#Bv#EaMsZ_NG3*foGY0G1(XFNBl>lPEN&BxVtK799PHs7U~uOTDM^3<}qz%Hq$Yd9rqOqh9luQ{B$}a2LV~*sCFzh&xc|RpcI4 z3Hy?WF?pY%6l*fy6#K9se{A~;@&D`Wzicyph(GH;W3T85;vIFovt1c~mI1lXpe**4 zsEHm#U<-`PX{uod9cD$_ccI{hEpS($0_IKCp!3-OsnB`39xZlRBJZcl_rLL33Os{l zpb-DR9(!2^lzl+1|HnO6-Y2ZaHyg!nVoCqmKIc7<0i}Kufi3Gc&nIXj9&mOcpWtwE zspyM45aqDvP}X<3mz8xNeJH3iS|AT#?x=?yxFsYTpwNH8N0sb9%d7nFF8uuOyo(>= z58c;9-9M^zAh`rsLO&UQV6Vu{rfyGoRwo-LXV?Z6>DO}gUy=o}51#)n<{9`kz6=F!m+G;3^&*~Y5;xq0ZD9VUz*V&b_KBL4n}0CwN>#)S$TC8X z5=IRc&`(Vzu19{>y z=rLE+{+SOjZxlS>&+%s)Rq)?f`18N+oiN7A*#8KB*$3p>e%N*m4c=i2`;WauQ|HX5 z;S;A)t%L#O9~FaJ)4Yp>?Eu$=PzQny;Qz0{U!ni(TO`@btN-!eU5Ni*hxO0&=tn&R zEEmNYBSrtHZ2Ng0oojrIE$^(Y9OOYGXN;yULy~Ct>_s#+Z3YDddY~UfOY{Sj$6W(4 zkH|R#)_>qHd;rIlN_PPy8H8W>h33G2_C9~L|1QS{%65Qtvp92sg7|YiNZ^ltLFl-v zyCqGT)raP#O`@eM=FzpA>!?ZdAk2g4h+ZJB9n1K0?|Cl%;1d%5`Rz}k{{QdmKg(-D z8^G~^^0i2wf$rvHf_`d9kT`YPD~p6TV;LEb-t9g>(E=lvfoT2{dhqUrSX$$V1GUVN1o}MO{|LBAr zx3e)T79@6E>S3mkXN-ByOwIx1`u|-1Ux@#IqNjh=@BJYMz0- z1p9t?=9hQJG-%*SSy_XrQ6pcm4~Tcd^6qJ#G5FCQu)_H7|6cE9dHN~-%+VAvoA3eP z?egrHm>uG|5zP1TJxD9upQ~9LH)3#agm=R7E;ybs{?QH?u`8>9?PotA|9c8Q|M%Yo z%Yak|$jiy_&y{U}kO9sE%QFMOmvx-6*5N%8d}j(XU;J}<2iPBUpSgbl-Y;{2LfrrN zanF6{Kf}ME4PgA?2ZRiWnE`2+fP80w{lXuySBm{}eSe;u{a@l=r0{=*Z=moE6uyDN zH&FNn3g5s#?hTBIs#~L68KW}z;^lB-C%Q>@=Hi_{DaZqWbQ%bbLDHkVT$kIBjI^Re-*>8~E{dNn4ZNNEk@nnjui4Yz50&?%A6tHWZl?JvE5hc|_~K<_cdDwZx4JiX&~*B29&8Y=;;GT9 zghle8%wr>s7FD!36Jinis>=us)sN0o7k@I%PAXQk*qF^WWP}eH=Ap=H(GN zjXnl6SX!jZ#~s%`KX@Eh_3hCaulH9?Od32buFA2tKF^nY-B$02&aELuB0mSKCT!N# zvb5ROqo{Y{zE&$Xe%)<%+kVKU%!aoHMn29dosv}4;E2WyeF>i6|sfo3UhQH{0&1BT2ArrgZdGcWj{?FmA^F!9S z#5|lA{qfqo>*t0A_WIglTAOJtYZZ;Qifyfy z8*;6A(lkHcdpSL_UzIQJ;a;TpwzpFnmKd*-`<~h+T&H^Id;j-cu75hW zfGSO*Tdy|sxm|Sl^5LqLAL{Q5(~7A%=*8~WA79Sf*TS-Rad(Z#>~Cv#J%0A8%G^>K z$wk|2sudSIbJYCro|A^=JU>$Ie&=iJr!I^RPCnH*Jo()l)$je@RT_Ds^465rDe5O; zTNhC&mSTG|=4M!@WS@$CKCakx{aV9oakRti!};i1!!1HpG}|L8`RYH1Z8JTORe{{+h^z9Ct}`N zs4j0{wePOw#9_ae?HtfExv^t0%PyHw7R3{)-d|Uu_{%J7PrQVq56f>ol=JS~>T|P> zyV{;R^xjiVbxF#Yn>+fyJKicJ%u?4yV};ez15Ntu8=!lt(bJ}%8vU-Ka;}*`^~U1t zjIve_9OIUK>TBCC%tE!=;(_x<&F??A#n+FMT~E}HY@2o|EupPw1q{)$yT9SO-dWyUOy*t*k|V>G2`C4?Hb**WyrG9JvOxI zF}TwFMpx!1WyVi#r$1uZ*W~6UEsJY?^eytmwX_%iBg~h_nkDL#2#GEovbbaF{Yk?{ zRw?!I_w46u-yCuqR`R96yaUVqR8~(emgZ%#%Jy|ky=!fsy>UI0-RH=jB5DsNj$3uM zL*l}o&0WV^s>X&JG%&cHnObA_y8*ME$L;)f-duZah3Lsz=cd_Y&(yuXSiR)2HFvgu z+*PV)ZGLmxtTU%u>D5krblX97v{S?EA@4LNnrs{O@a>E%)AsGJG0DTnJGqut@7dQH zwz^s>{>0mmaj%2A)>g?XQoQKok9R%}zTWqGy~YE&b$h8{(5R(K)RRCMd}>N_J(dN+OEw%?);+lwRxmFj#W zbHvwImG;b9Fl@m%x2ngF)f#m;`{vK;?JZtXy!ck%lD6CuDz}N;fQtf9Uj$tJ+kteXPhy2=!DOH zX;u2n+c-6)@x#l8rZewbTQtkQe5&+~l2vnDj_oOO<6!1|zg-4&-}kD1^;Mk@_Veif zVaA6_`tMcLA^)-BBMr%hoI;1Yn z(CmJrNRzDHqwYPvVBYdc(C^*@$LRHo+#zN_bmRVSZ63H91`;qJGK2{A@vZHmsbn_slZ(u&6h6g#Eb zJNUPw&%txydd^1bS~OWV)vSUWAGOt|*J8zECK->!V{>W1{jbLXUI zZ46y(eX7-*4t*=xT{22_YVd4Yt3{jCAO7AhQT^-6q2FL3vU`4BsOr_?Mb|5v>lbsZ zsdez%zA_z7wMg4mIkJjT`!&|HI&GZUqT~7KGE23lo%?XNBMsOY*!aZlIckYP3;O@Q z_2Y(7OV1Bii+j~=LH(W|Zl{O!URvDq^0gjsDs8##xcg9Lo#bF$#}K0lD(BDp8k(6_ zj|pq?H1x!3n~hVFy=&GR<9TeswPL&VW?gs7ymEW{2is~fcZzQ{9{XjBWpVX8+AiPk zOj!J`QK@p_JN7zN{u+19rD(1GO}_VZ+Oy_HNZGW+Yf+{)H)ie(TN&+?T4sXZq9w(y zy`1ScCb*uvMU%|6-WF*Y-&*Lzez~;dw;cytt5r^n%*g1F85wxiVC#5#H7G@G-jd*@ z;j0ad3>Rzm+dBBAk@b@O85tG4yaH;>UAFOl-|4T9-~8Toj9a_!IqTfs9&WB;w#U9s zrf#cGRX-bLEvme1`mscO+@d{Gf@=A%HdyWLT((z)+sXAC-6vcc zUe`G|-ELcY?Yjq>F8(^Lcquk)ceJf$CbGqd9jq;!UZtO z_SLty&G}yEZQGNn7lsAepK-6B7~3Y`tebW>@0k(Li>@wdG$Lhe-yJoz(mNZJ*UYST z?&-RXSK9WCn;7c&+vSfcy}zggsh&M-{JLn-#h>1|9KG4j9sk6x)0&w~Z}MW>jutiR zbP0A|?B2R_?98;OTGcII)}0gM6o1HZLQJW+YAKmhKE5fY^5zy~sj6e<*sf#O4CueO z)1YB-FUJ(|?zMAg&bye97B^Ou&e>E$d*ni`hRdrLZK@L5CVZ94tR|h^H(aoY*=Mpg zd%?w4&)+9ywBmPT+4f?;OcRsO<^v4Q6c21xrs%p7^OtEo9#Nu7bSa-c9Ri;%dDpZ3 z?YoOC@AaJ;HL`@~VpHcw(`WaN?zDX4vtFH-TKAbZzQtqD#8Rsp;ZM8odi7Xyy{Wym zuQe#Xv53p27T-!XEuFS%p>tWabA7GWmc0D6LSWZTeR?+^QF-{yx*faU{4jtb>)y1D z3SHDXcKNBOtTORa8l3NZ_`r$}kBY9Xe(3J5YE75458iv~eD|08N^VY3{~9*LI}YFd z?&75bR7(_%`8*9M_(9teR`+0#u3-MEf{dn z()x<)lVNLS?Ml+v6O~oVApD$nNlh*LF0)T=?v&l)?SbTSZ6NZevKFY>jo)irTcyje z=U`@^lE+5aKq#h33I>fJKi<1LmNkZ zRU7{)CIjxZ`F@;^2i`w2RekZwYmXki7&|s-jmPT^r;Y70QnYH{Y4utw`HZUNiiRO! zBcI26x6xRpJ0BixUHRaQprG$Z zH|?sX`?}PE-tg)>f;PI`uIX}RTb%KNA$K(UcD-6RapSh#ZJVsSGkV;;{%!+zUcO(> zt4IUYG@Yvs>lO`6ZMu4FnAS+kF|`uBo5uHXu2R;jc5E5P6xXvR zLjh$2l6!o;nUZpLa+`fYvoE!@9CP1iLVK^%51tQh_1x+APIVfrelyG7tV6=k$*qPy z9(Bq1sD-Tji5@#5f$ou|6T zr%fwyu79yM4hE)%K3-Mh5-$yp30QRVX<}59_mDrC$L2cMx~;qO`>TeK`F0K=qj#0=I#2iMG{aAArnW0neQwA2Ijg;`+FjCYc`#zo z?cnd3^m3@?I`YOY$-phSbT*0DCRy&ZzAELFq96E-)UZWeLnK~^>EM_-Ts zUMjonn@2-e>&#oKqTecDOwi0rcWtV7N;REzs_E=DEi~6|Y_9qx`$%!NMRnh-@V(}L zf8XTxS1z7yRIc(Rlg>W3Ta7qA=)<^ISD$sGKJ@88wM9B=7p*pTGkbXDZkLD_%@)lH zSvB=sypLmI^1SCQ-;~IF_0dQ@wT+7H)BY+}*6MrT#&^9~PGieqi#Hyr!CJ4UR@huW zGQQ2z4WT|!OZH^cpVG6Z+t+5Q$vRg%eOjw;*8a;{jo}uF1FPKme!tYGal_t~+x*HT zq--7gdcFN$c20>m^gRu`r7!g z>$=fxm()Ku(&AkEYjO2H*SQqvJu*mj<;60ShJ2|y(fszw52n=;7v9X)I9z(bCyO%2 zZohxhr+L#@l_Ib1dW|j@+Xo^$X^!gT)c2RHD;dv-dvM{i@wL9C#+)$F=}`1jtyyu; zvW$jZY98B5Yv1&o8}C~E=9qHfxpCtr@f&)#8<{o7CwTUmj=uE_1{aC$J3ur0Yt|AE z+R}g6Q`5E9rB0@P&oS)xq2{#U@^|jrJ&zfB`O5yL?m4%nCXH*Ic%q@(jz`gYms9Sk zcGs|47;Sv_T&iB+=g)?ZrguuSO1qjp(*&Vmn>mBJcMf?_y6CI^y`QSLI=SgX`GG~g zH`@XP57+D(H+JpkJzWNm2paJE%kXpK+J1Z0Qv36$E+4yRmkg~pV%xUrT~BQ4|KWYj z-esIjtQsyX9rQ%4SXB9&S?|o6SZ8{b*>dKtZ@kJ2x8lWLduY9_wyWgQ?2D53KcZ%t(SXS*3@>o=wD$=g$Tb* zqjrq7Up(&don2dI1aG~*r}8U?$=ZHsqvo@=b#QrjdQR(1gDjg7lg(Qmj=B}ls`EX~ zTRsEEteuu~*s$F556xzF)oEy8Y;M0Ybo_+z(PKK!-Q9h9YWv?po3yi2bBfx!cxk7{ zAGguQu(G~4*Y+C``Q*Fy#NLNSd%CN|F?bnQLbj*BU6nI`2)e_2~KJrTY8&l$?Ee2lGdx{KxV3U5zGhxm3PkTQc)%}#c zbN9U+YP-xY*YBCrtGLDF?25CDi`VR7uC@2|Yt?!>>wA6eo2Qbz6OIT(ZT^GL;65dD*^sx0bC_)Se)`{JWI^Um9tmyE(+q%n#FAv*!x?F4*yeai&bK8c*==EApFPHD?wRc0K zGUIpNs%p9@tn>)`v-^j22n*ZjBWk5Is$15a?e6cn@7uRx z=e@iv7S221;O*&NQ^+=~PtN`>@0`pZy_qPVegRyjO+#bq&s3 z?_IumVkSg&lw;REOTTTnuyk0XtJQ;-jH@_g(c4SSM?G?m{n%x&TbEL;J|63~Xm_-h zYR$x;@H4?d7R5qJ`=>l{U)XeoR?Mmri$WbnoS7YJ4-R?i+rB9YIbD3??H#XAGO;r< zTGn)}WwoQ<9@JU0V0ZY9j@I=@TsW3oq_x`cT2W3F4|h8nQBiC4v^Xl7l=-ms^{?&= zOEjN>f6!Ma+cS0bM?OCF-M{SetogUkF1S#wRzl|Qr&85pCqA8#|mAD!rtX z`jjxcuM50q&+UJ=`mIkF%P#LbYVzGSX~`>&8do@VLTlso5@T%Ym6_#qV%Vb!wnnQ{ zZFLPZvbQ)v35Skd5b^cQ#G=o&9=EC9$S_h>BRD(zco9v5h}~+%(sVRRHaK+n>h^Z} z@9%2HTC7l0?{&LF;PK5%YSdiSXJ3?ttIO}to_Dic*|4vPe`scANQ+w2^&g)xntf6w zJ#yZI^B>La^@e*-T%p#e|BG2`d!0@XtTx5T>Ag|0#&fqH{k-M&-50CYdJXtctb$8Y zczEden9?>X9Wzqjex9e)BrQzwI^8u~e`8Nh6T%s#p5@rBj7dv!~n)-xRWST~L?yvmI1ZYH7zWSHF10 zyJ}sn(B8vSmW{l2p#5gEtVyGGeNfZCJ#?QT`8Pw$%#*UkuR{p|AmjL&b+Kfl)T<^Fg59LHA7*|&LVW~)nQrcO?r zZ8P7{z@qf<6pLv`+%0Asba-6l@K*ZW-tYCE9%1%AGu>J})u`ZlcJ`dOxHd_uCyzXF zFm>$z{^E>T^LFkH{4_Q2;m2Lyucy@u-LU?^(y85+gx1>B^#1z8RrkLd^0wcA&zmk+ z8uY;=T6N^JK7C(ZKc1a6XmrOuy_fFu9Bv$a&cMv-+Q!r+kzF3%NjGoz>_Nh$5MMw2bSMG3mJ3gDU&qRJlEA(hfDX#HsVkw6Z$zr0AlYbqCvIACFtR zD|G(Sk9GRqcF0=OV0pKz`>IT;d?KsWCzF7QX4Xc=={K9U`M$6EGp}CBJ?7NiaPmQF zr-++7Yi4L6OET+W-1GpK?7*ROO9g&yvMe^JVW-(I^_r%SuRDH2zuP5R4f>MMAfWxD zFXh&>*c!e%I_~uRn46#J=UoTSsfW>~Mei-maS-wdnf#tY_=q zZ|$-Ny{U=()bY*%19i5w8Q-9+|LU0=r}ljRqNHA{LGxUeH0=B0#?kLtJK{Gr^6PWA za_y6LR;nu|j$ik7PtgNM9H#b|Guh$Jvy*ewCXDy+*)?X6x|!XCc6H}fs@-ns-q&X| z0{UgAwOlpXrpua}&08BDJ+r7<=beuo#&-*9R7_`V>W4B;HJ6u7iii%iKhWMf^*xg`18&WkXxFuON;UVG)$4m*HtU$`6td^uv0}&H zmL0D)sh+N7Gv6+cu3cO;cU%9-#$M;=?(RRoL>--xCr+L`KYh5{x3lK%Ln+65cp1lH zQ>KlbwtQ=~4$o8?otpc2wf_9aFFLK=;O;vr#<5oK%T)$G-QDtj&W?IjlT;Q)4o^>B z^=kdzQSX*Cez~x>{-IW713rahOu4^##-4*Yb{`vicQ@>Oxo!8;^ZL&i_CD~N`rr@G zPp^BttCYdjog@6ZT4}1)Ov(sT>tb;K*@Zf;ZmwRQo*_%lFT0p+u|F|rWU}@C23xwd zYtpHy!!H7vaGv;}WI)W7%f$fO|EXz$GP zcb_%0|NPGY!iB9A1HnAVfA};%Z7z*?f$!!Z`WH7PF(F(!PRBq*^T$gC(Jf_ zvfV_ho4g(g!~igKaZJ$f8?htHx_p7*wnJ;?ep)pejS-nBRhDI z={F;doX^j0?y7z?LucyHgG;n$#sN(&vASZnp6H7^6M z?(R~mX+oIYp;=94r<;W}*k5LX_oB1$DHTp-cKfQL*T_F2GBR`H&Jza?O)$B={g=f~x zYg9I^n9GD?*(NDW$ zR7lUK=i(lvr~74PY#Y#P^25FdYE6mKch?Jj5!iclmU`fUZ{KLn^Ypq4ZI)jsU#gzo ztyL4I)Lxz0#MJ+}$;L3tIVDr*xofkJ4eR&)e*nusG`~oSyhY&9Cs#hgtiZ*ll)~d9 zCEXNd8F*`lYsSDRhj22&)XpGz|OV5x~?Zce?QK{@BS%A zzdrce^O2VTDgXJ0eGtBg!fN?Ge$Q>Kyv5GGqIYuZ=egd;s@JOD-vZm)4@lRy@0fgK z*2j-@3_mjSSPH}*K>%UMmV1uywZHiL)W$b3JUl{eWSCce@jRE#oa3>lpXQlA`a{m1 zc!x`GzQN+vD+nQZ_{(4AOMm*O1hrw__|3~q-<+hCbU6IL1MEI}gkXFFDp8z%2b4! zF1y*~&z#}x>#uX=^jUN}<*~1Rg)jfvpE6vjP^s6MSzM%2 zt#Hpn5Ax(QzeRIojM0M!*?#B%(=T4<^`HHm3n$KS{}Z2P$Gyj>MHR+3PB3%+T&DQ; zrs8-!%|qBp#vWA|#g)Gh{Cw0R#gC|b1VVt-OM3leeehS^=lQK1ool1Lz5GLQRTh1I zmjdY${e{wDZXUei!Rp^5ipIo@?gAtR?;n_iU!V<6Ahn~zoz|PhQCrW!cnK3@8@PP( zU0(Y6FIb+QBu&~34UO@sFFwUnfA%K~Pi#W98|*!FkZUJT5sYr&_!mA$eZvM;05Lw! zy`TOxXWn{^q&d&@`3wBy;(4kYC)l_DAf3g$j6LUe!e}y;k72@7I*H$}rEazkP!s1wkMQ zY7ufn4Ox?J_GLP7;O@^=gIT(J}6O;&VLx_y3I1 zEt^O+w6x~n@#DPl>z8=oGoNANp2M`IrYa;WQn3HQ2id%54~>NtWG6wj+pJu=%p2#< zqg9*{e7I|o$Nohr7&kv>a2xk$ARk&4AkRpN+gSa(MI*Gz9^LMKUK-0E`G8A*-d)x@ z>p^Mz=ij|EDkbCkP1h|vWa+sS*{Um~s~!~H`qk&>m9DTW`&m9eITZ0*fAR&CU)#3AV8rR3PV;F7l@OD ztvh!i>O-_q)V1+AMz?S0=!2gks#Pufkg)eFL8V1f(9*5Vl78#{HT2tfU?IBX12F)F zpJQKp+tI zflb(HUrD|1Uh}F8Q_B~C2qpUu9^|q6A7SIzgt!9XA_&ZV zSHg?~$;OwjdH?M*U%?&kpRhwu#OVoU6KHV42ex`$qP@40ee zA5Y@_x|RKU?Tb;qi>dQo1X23DGZuxir!CcqQq4PE*9qxtY$Y|7AP35bL7GMdG)zx zbJw0y%wK-EbA1mBvqccFuGRl8lMf~d=v;lB`vR+OUIKLpk$VmA_bs~Bu%J9b%YkbO z*+Va`cH4?Vh++(Yv^9AtC883tYtJ4cDLHfEBps!5k3g(4_@XPFZaoO4QL#eAI&=5) zszh#Cv+-VDK0*e9ja#;`WzRmekPK^xv?7oJjfGj>c;yvZjfVLiDX9&QFjB1&Ado`S zL=$Qdal-WVNzx>?$DeC;IsVV*0%j+|n(n#o|Hh#EueW>v2EdJdyj98Xm|mCl?(^;M z6Li>j;j;k6#nSF*{Z+pgz(>ez5Qk&nB@EcGZ7WZH}UA*|F8cE<=pxLmSDYC z(ZtsxHOH6=klK_6z3?AO&});Ibj-lgVDeK{_a>WZ-Hk*fQ3a_qIaZeGb3}U;z9i zK%Y!cH_@f55Zu1}qIMYdISJf;*7#P~^Kv+txVeWbC5uW;k zzsCc|@8f&_?%#3hofDb6?2L+gE;M!+2IPw3)LN1A9GaG5l%2RMG(wqwwFCZ8Tz&KZ zBvJ>o+HK-?lTb_$+Vg5?Xe0@78e1nvvTN@?jz0DnX&@QWuxRgPJTuL&zWcY#Pu`%D zBzfbG);LaI_i#l$;TnQ;-Zrhh>z|<|^ySARy7uLbHURr4&k~gi;dJhPdyE zCy6$1MrnvO#DGuAIBub+~(Bl4&NZ9w5U28HUJEGPH4mN5AqF z9{;`HWn{;8LK!l1{sMpVFa8&nZrsdj_@Pd!XKsvx5Z%*^tw|LI?F z<nlLNbWsKrDZPgFR&lU(^II?m zLKKKMh3D!^AqZpuL15f{84yGvVHh&9X(ONc`q%jCpZp=grcKPY6E@UGkjpE4```V0 z-hS!Vq)B21Ui4Yrz>oj&qUcqA!Wx9om@a_8X2#t$6}Ew@>nefP#7T^3Gzk$b>jaG? z1%jwTy*kX^qxZ7o{-a1?IQrXKvjI5q!VA3ho8QoBwuqAsDos#2HB)|_@_EYd-wn$P z`%P$@A6fNc z{NH^S8ZC$wBEgbk+)n3W53j|m_luq(K_AhO#0iUy21`1np%fwr%v_xyV9VaUJn+<0 z)T=`XA&6CqmH`(poa3k8{{c&L^TeHwF=|O_IR2C>VgQu3wm^H~0DZilyUkI5|Kxo! z0JlZvu~y@Zb+cWGUH4K*dN^?<1YY)o(yJQ_)0C%sD!%*MHvrNv=eePpK|mM=L{Wqs z8|A*wKf#y(?9Uk8x1U%@Ix<96G^*9)&1awG2Y>zVXwA=}laxeZRzNT8xz!S2f3gsr z?Xv4Km$q~CTPjg3wAxH{I!GBZ1V|J*4A^$?AfwxN5Q>1dHewPd9&Jwp< zq;X7|q^LAC|EgjLP`LKG2=VUKA7GE}mafM@y5%EL1;~2k`xpV&yyN)r-Fvxmg40A< z+J{CL-2W_>Ac_mV(8YXsp^nem2B1*mmy#d|2r9`Dy8ajzdl_J#&RBE~L)(?XdC4;wC(@=Ko{)gPTXDC}unxst6 zFR;DYVt8nnAwZBKD*>aMHZl~3q(akH3Y6kEzy38Z{OVUUR#xbAI>bq0-2XJq6u*f0 zD+X|G^fyqcgfn!Se>|n*^C7(0<1wzkAP6Nv6jG^F*mCdyzx|K?lH*_c z61rBW5qC(Cv^z0UN*1qN;s<~AuUWi)4UuS6YFTiViIeRCc71=ZS%Bs1=Swl!8FT~{^z&K#M4R2!r~%Y2$VKIoJb4Ou)>zn5o$s+tqrSh>*{rW{@uT2W_pIC)h3M- zbYi*uQ_JPAif~`;{_Dx|TRK<&=J>CBsKLCwxR>G6UB7|5Ro({=VC^Wp*l)jz>+gYR z%*yIhR^|Kgi7xZ9x6Xbj+GeF)c%UgNQQ^5gKHYt2g<~wkdZmyALJ~+x5Jm)*D*KKf z=lA~ef6Sr#?x&t4=(s~$C{|QV5@;%6K&#W_bDw*hSKCeAc=06@^V^l5vXSal4qQk1 zvWQI(xyR(H7o|K)VV^cZr?etXVgidLkXVd^3>mHukqC%|ChT;0<%d7y(z~aL+a1zQ zY+`>G_d8Di60v7~ekG5m)bnp|?i!%K43ypbdJObFlaE9QP?oH9779r<5#(`pp$vz} zGTH*yWTNtwqC^?3`}_-DN=)?rf%U5QXU7x-5K2T8arA-X{PBPGPuaM2EAr9}cJA53 zl$5kO9TF6QlvIRb>(~gtICq9qCr*$iX~xKlJ%@e(wYBH}kpqyrLYdyY0-~H;&Acj& zLeX4YGIIik%xkXlvD|1-PezFZTzdUg-uT6{B+Vu&?vSPlsWKV=O!4sy+A1q?ulwXG z1!WIzAh#zUNdsUc|AB^4NDzh@nPnhDq_;|EtX5Y1AD1x#+K!O2VTaOL0!i8SPd8LU zk}H4j#=h>nfJp%6b^gQm+`~8j;O`N&TBvK+*|upX!O##>aTBd!Ll}`REpY1BFY>d$ z{tsMx`y_F*iB1xfN-X!CvdZC?$8P2FiQdMF{KSf0L9bo~dp$8F$Hww9GEEI<0fuJ) zDQPyF$b|(GrFs6_-(hj;CaTjxC5g@Wr)KDfQgp}u`8~6@Dhmh7GEnq8FCU5lF!A~N zlUlV}m3!{Hm#sT@F}K`cZf=3*(h_mANg8)-Nl9l=SEaRGNp1Y9^I;O$_*!ejhbM$E z@n}Xii7NqQ12f9U(~Ip#N`vp;G(N!-kA9l@tJeuPjIrnFG1T}7mq}<#&6rBL_U2nW z`>k*B=8M0kIkSN7#OT<>$XF&^ZHw61SFLfqipV`b30T<34i|OLjS-bS41xb#3wv#o z1VNe^$N-Z+P-(*KrHh<9agvKC-XZqf{?uLjlJa|OpWU9Amk(SM2iWtvluF0t&#dEm z-YxPW7yw=PcUA0_y-8`@VR>nZM-Lw451#rG!GY~BnSLTLa*Q55mqcYngg6Yro_R-j|}3sR*> z-3&i3+pkws{yQRfAE4)UI+|FWqF0>N`w239%E@~nU+jB`TQ?<^|==~|K?jP z&Pr3RsfcsOa`W5DG-vl z-J#QL;n0|Y)^r3^s#R`YyUxwfy_b)dt_)W&`L90 zuk-LjpJHiwnah_ibNKLK-Z^!W^A|62V_}x-(>IBiSI|j9ni|DVl{Q|A>xxs|O+Wp- zBYy>V1R>s=UErv`E4%|O`H4&y&R8H*5C#NcM5S6KiYlNrsn(=u0tBgsaA=5Xy-JEA z(Tdb%@=MJ)_J9i&jdJgQk0@Xu@1uOU2Ee)2f64ClB3sjAMrmQ?FJCZ3!_=W70Ii0ZfHm z{WncauzTlDHjfXpeLQ5}&h2cN*i2Ohq)D4Z11e>u(WKRG(TUqMR#s@Xn#6HToTely zHIr{s(>t&2m}`?6_g6y-$+6zow+Qs{-TVy2;D9~S;V8`OIpvrIR#`RV)gg8rILIIUum1^Kw{Is+QpR`fq>7{}1&I*UwBW)!Z*%SZ1v)kXs8o`HezekA z{za(#{8Zr_oyU-O2KM?DnJLEHfyTXo34ssG0N@z_WU(nn6qUam*Jj8*%NCv1i;Od#vTsU=#PCF(|Vw(g^AmFaYpjhX7jlg=GmWSAI0GF?q7xFG77YNp zu%H)FZ$1dtfmc^Ip2h+48icaVt*O*>RVu<2QxC8=f)sWW8ELSg1^T-pA)2M9V z?6s@Z>cc!ZJkIuAhiNa*uxIZsmQ|HY*Jfz8ni(L;!H@CVT;2I;cVgX5FxhK8y7V#x zucydH3=g2jX5Y;RJcx7;w4ZREK#+L^K@boI5n)uJQmu3F@KL_@yWgZfJWQ$$7)YZL zN|DOIBuVYDZyX;ds#eT!6VC`B@QhsnW|8Z7sRj7k% zM*JX$6T#7khxzvRf5f||PXmzH<4scwOv0R}zxo>wr`!PJu3f+QKgaTiQbH&#s46g{ zesxT0s}uQ0{LH^SFh}?8LIPXr3j;$~QmIs#*tCUbzVW;4+_RT9f>a2WrJ$)&swt!{ z5hxTDE!nnlGxec5BJhk=`S86n%N-z{{SI6smh07UD9tsy0^R=Ic7AV2`M0U>uE8H` z$@>!myypZ>?_K(tVE3btHiuy7q$OGj<0+&mI!TbRM9BaZv<-iqv`9GHY@^Z?6`O>W zi_-x{M#rfP*J*VcoV_rKm^j5fPkoJ=tTDg5%-Hw_Hf-C?#Nr|whDUhfvB$Z7{RU03 z!r0gtb2GEXpa3$}luey$N$%OzCi-*X2}}Y{MgieyooGXyxY;IIXrWsIiA443S13HU ztFxj0w(P`VNLZ^<8y(}(FMg5xKKqzy@&P)Kd0e6O22u{BW8cSazI{! zQ?IfL=N`i93O`uG?~Hs%!$Cb+!zJrCF(!Lo>Aa3^!96NXNYaEPiAmZW(srA;)ui2Q z&|X=gwX#C1(V*3A(r&fr#4$G#B}0L=@HY3W8x&Sz?>X~7X*Q2t$}-we~M2% z`Wb4qVba-ouAe>4jw5>+-@K7Pz^*;JSz4Ln;>FX%oi=Hj^6KlaGqGtC4?Xk{QRo_( z{8n7=3Y3&|^{XY!ii=sm!zg5QXoQN4vL>c-qObdr)0CUlKOagGRVqwu+s;$J_f0lz z+lJDn&aZ(X;QFa|dFz#z(QyZaAVm`jL83KOtBj0~Lm<{g1Y53otk=z7YmWoDHFZh|g=N;ON1 zi%bTRxZUP~hd;&W_yi~4dY$>pXSja(EXR&N%5Z&{rPdNRCnq^~`ZTS^5?Un8EzI$w zpZtWUzw{J~iwnGS>Lf}h7S(76b~+W%dADDdK3z2gur+ceIQRMq{=5JEe?x1zfk@26 zAAbO5S^2dyLdd)%Cl@ndX;2|1rxeE9fLO zoq)pd0yNO5sKVHWjb`7gICa{8W;yu_vkK@B6ZT0!P5!~&Ypt@BYA?^j4F?@SguCS< z4+ZWi?nmGfYJEyh*?YpHzV0C|Tka2&g`(gmH zQr@j30(EceU1sgc_yfUPv#kf9J;&1b9=w&mA5mroF0;Ux1N-;Wjyqhsc9qH5Y0@-i z%Z5>|U%f&nmAo?lQ?9)IGKY6OsO^xk5VlkvDLfNPYN#wkpYQvvX!CnF)HKZ=7%99 z9YAW$aH_d^^$JPcVeg*3jE#@e(hvzjtj&x76~|0ZPn)Sf^XSAP-%Nf zLB}DOqxpJ23O7ufJOI|+Pi=pM(kT*^ZQn1!nB)J2H?+h+fG0L>q&_li=)NpeH$)>l zZRTcYsaEUUd+%{WajrFiHoQv$$=uB;&YpUgG)_GJg>}^B-L2;qx*i9s`5lw@&j4s; zWBYYja3L)&Ko^FE6t?M61t>p9>%J?FukdBXFZ>ORZ5Sg-70q_XBpK6`*@b!DK6R2- zoN(aaA%ZYuxfye9vBh+wO{XHbHh+_r?hw{O!b(ICg{-tzcn0X(^jc^A1H$^qg-?t882XI@ zGf-UP3UA!B2~i256Pi_4D^#kPnw#cVzkZ%wyLM6=s&j4T24Ov7w5Hj(Z4<%h7~}N@ zix($JmOIE!2bm}q=4Uy7@f=6)Kgye}6`BhRgj%B%q*7(v1DR$!GGPBY*ifd6p}2se zEW&-WEj(kB=R|A*P+AaB6tQL7HmXr2Q^E)sB4B!co>sHTLl582@Wcd5+He}Sw4L75 zSmE8*U#GRQoO1wL9zcgo>^Bx>EgDxwAc?6|5oLFH2@jd}kS^!M)2iRQ7D- z5B}tjIey?MZ(cpakAM0D-ucC^SiU|()JO>1ikTbN85tes$o$TU>jg|o`DHF&P zVqf8A6l4vw=6bBE3@1s(yvUU45;~8j8fF{&1gkW}NhA@b@ z=jbtXAPH^4F+o$&Fn{q9SI?Y9B}qnXl6zQ+ezAP6`29nLBB6WVAI+`)GzVhk<5>kL zi`PHkR|RZZ9Xxf)KH^aLzTyFiN@=!Qqyl8EigNA3Xr!``UX`NIL}7%fNh-EPBivWp z!O=t8cyRk6zIEg%KmOj|GJWDaa0Dvgx6 zYwx4tv@oTxvO!&KZUI720ttAHKzTSYG(612rp*YTDg=Qx!#yLVn32k~yvfq+tT6ydib#C}&>PGJnXUG2<3N!=XnFsWfI5%ij33_rD_t%? zXfkrlzAJ+t|Krw4Ki14&@!N8Jl8Ual(z>=|n>QkchFIxzh*fH^{90j#^%!E0R4Eb+ zSZMC%G~fNZZ*%hIMFIs64(;GS|H2>gzxmJpw>QrOtt!k%+C-_-N{i!E*VQ#1;~*Z*!-pdes$bd0eL6JUWx zQfO)#R2(xmKhMF#_fQ!cK?qG?qm`NvwC83y`PS>S+YRC*Mq7F{p|r(q7~Dgiu+3fl z{Qipk<?eoFTQU^d-ohhV@Y5K9zuWl06YL)h`ZPHWQ!lQF6=6sc>DIzWqI@= ziX}lx<-hDT2}nd3uyN-OYU5+HCMQv8VwB%%p2h%6gw~`gB}@a7#U?-h{tuX)o#PLG z_YZjd_@ivDj`2H(9_PT{-_73~`Vr54|NG3ndjY-JX8QUiwrt%@yRkxhc^RaFBtnn+4I?G=<# z95{4{RG11xjKK(0wcy05Q(U=nnIw+0;UDJsEekVlMnld*q`j%YtCjjpuZLF}?b)ye zF0imT%h;v~=8_I{VgmTm@M;phfbn%4ue|K&LDlqE~WF3|EJ?;1GOF<9> zY}mYov|2%EgPc^_(1p(~EHFMk&gN~~NR&dzfR+UbMXeTZzxE1Ci;IQ@C{lnL6CG=(@ZGxL^GI_EC&qpAPIiC16ai%)-i=5)zJr`0CRjW*F-9{{-rm+AYGUK;(&mK~(kRqT7G||+Q=G2>SbMxj6(j+$Q z#@bMyDf_R(f|%hfcAu_Nqo7w}u&?x}3=8tmY!K()o_yd{fG!&AUfbZ`>+bEd*uLBt zNu2V|uV3c!xpVyHkze!8XTHgU#~$Rj4?oV)ExY;Nz4!9-AAXM;Z=a|v$>@eLhQ}umS`cNo$S7ES!vkq>1r@yaXW1yS|=>l_N86?`O063j?_wx$~^RYl>Kx0$X@Yp3uU> z#ye!6x9AD)Q)}*9c+A6g$N8UvO*?loJ~6=?&%Z$0Zka50*9r!CNz>*9oD1wH!V*JY zu9B3Mr6n$&ewPzxPST7NySDD+fz1c_)IG{7g+L-APT8es~kLflm|cm6hu`v2$4~5j|fQ;1$3mKA|qCS zhJc|s<>epzfRk^%LA%)`?IdQ}lFb9;a}R7qK&z~(TVMoQhb742P`z%gvx5EZ`M^r7 zB_DzTfPzN%eAipzq$vdXY(2-j?6P=bM-_T#w!!YHCXROivpJkI`y9tI&9 zcSc7kszFE-Ly#f}Sh5P+zA?#9zx_8%-@HlOZj*G(Oa+q&wB#(>8GwB5qO#>v18`Dn z$Ndxyfc7u6e}B7vM}0sA1L=|v$pB~&eLWx38gGS_TvTI9pXQtg2UW1Y{-Fn#kK$<8z z%@$WLUFPi*Z?n{1VcV8%9No5$2M^uP#DU#Rix!K^^T^m5A1RR{C<1|yU0y(820+OG zNZa)n$cP{a2`d$b$42?wQ%|$$&;f+dj0;n5RA^#*T`Mx6siA>j7&!mR%e?rD=V&f1 zle7)1Qkt5vXW6JTo!XJ?E&*t90lK94t3ZJLyQeX|PNqUy@*aBrj@IX4-0kuq8320s zy1KXAEtilD4)K4;!XW1e$+-3M&lbfoQ08tO0-(QWP*M zBQ%0#VOH_sPKW1z^g~XcIz^}1%vXOm;51G1NkCZwFz>YV^8=-e=UuxT0b2F|gmxL5 z(r>AIC-2M8_LC+bo&jJT20&m|In$ty3FdjEbl?b=G*Zlc-= zD%GWxL+0P({R90CfJrWje3jOD{EBPYElAk|$bYPPxSEF|Sw>u|Jd8~-;F%<$wbbC! z+4H=8{sd`Na&Y?|9@ut-qsQ(=>=AtK9d%gFO1=lO$nC6~VYLG~fall>sT56?+F=^tF zs-|{4xbpzA)!&X*_v80+{a(HnNX$n@z@ie=g9E~i4hD5!I&`lm(X7PHi8&IMF?cO&Ch=L z1J0Z}MZ47^wu3;mo6nf0Cic(z7nBWsoL2@}dzQcA3y&z(189NDD9&!h0Juc#K-QLz zQ9E$n(kt2t%ryzC39_RR`u3U{%lvbtH}mqM&btb`7<(02HPC0iksjv0z{PL#hN;$Q zsgX)rRw9W^L8Y-_Ac}ABnD$VCI^l14lmi@8|YluiZ1Fi9xjnKv`T0e`-K;DCVG(CWlXb-|F zLrD^Mc>A^2_~lQ2!j1D6NLn4U3fYwuZtn-wohWpf=$xR$A5|twYmrMN7GUYFa!_bY z@{@(#6lN$OF-gM3*;!7VJjKPS>x^&O$kDBP_|)zr>^gRYl_A0W!W>DvV~)zp3m9s# zyc!^+G_JpO|D&kF#P;oc`fJZHG%-P2YlehiTnGXoSk{_(G%X7a4p6-D>MQ*Em%pU3 zv_#x#XZ`;wb#?!=fPpX-kfLGDDi{)EC~P9vTx(}+l{R%2ZF4zg4}i5i0D5dQke>1( z8US+ld5ukcZaW3UNkVgOiG}GoI_(a0jQgAo#b zC7Mf1h*T3;<^Un>;E${vXz9PB+yLx4e1r#|`Vv9CMywShLNcnMtzlZHEW2}+f@Z71 z&wunoF1~w`xM|)0I599_rEC=-EnpzJnt;5!p(7CW067#PDt4ThZ6kI)2xS9M-bd-C zdiSQsHUsG?AFctg@o$#&(+2pGXUIG^Jlh6H?M%NkMJI-@k5p&-%U}lCikv^P=AM%A z$!q+0@o8_Qnd9--MO`NYEP08CJZ3E#BWZ~K-(l>V3B~rCIPF}8pj@flp~*h z6dgpwTCqVuC{x@QYt`jg*h+kt)DxOSDe(SbN863MThkJQX_0Qm^AfdRN(`EU(@l}yRA z6uO@v%0a$>8zzHth%#GS_c1wH+`ejmx#-$|_OJ_i*-z*S5&XY1@1Yx%Ts#g@uw{<# zKzJ|a{qh)iu|pN6DQUCC^(&V+@$N}lGGX7gUEH_n0LPBp%h2vEOm!AnT%I?pu#^a4 zSco0#kPHGUQH7!55gz~2)9g5Mk2w#esYuC+)+}i=e^3ZWFvC{geeG3V{pBxcFE5dF z5|Y@J{&EALGs-lbGXs~--x+`?kQ{#aKK|K1`#-T~|9)Qh`Li@;79lRthPeg8`w?XR zfbgzq@d`6A0PB;Fh5_*Z%{&3$2;}dJEL$WzM?q(+e%95yMiw|X6dq!%M~C6+(}eQ9 z6?zM@OhI|u((sb<*=GjK`YR4RW6#G#1qziUEG^7&^7IKV%v@)9(?;&uyqn`Y53=j% zK^jAn*~JBPt7C_ONJ437$D=SJimGhbxQQ=(?duG0+h&n^f;O5Z6i7)$m>GYmhH59~ z#UK5E^Y5M{Zna4|*7Z;Q)!!!o&9nc7`{3W`C?FJO^w>LZzsG5{%8dR2J{ zU@n7;nN)FqT?SyF{OgsEgaODH0z@I#pD)FD_!_Hdg*DY0f%UBXt4g-8^d90_{@eE& zfPx1=>3L?H{PQX8A=^ecjy#bk261*ym|l9Nh+8eLT)D)FGbd<=ioM(RaPP+b+;iwC zwOyN-ZO+qJUP372$_FyAJpfg$~lr`kTaDLaQeNN_nnuR+mKdfPdI_Hf;ROhZtrAxT+YnCIPh zPjY!~iVa&gb99sO26i0T&vG?oc3}?U*dzgih%kycaQp!tc=GcQL?lAdvgcdXnqeX7 zXk&3l1e|>BRbF`RIa{~9z=wb3x4F@-mg`5RZQG%WT-Shr}Ld4b7;K zq*~KbPz?kjipA*}p8fv!n7MJ?VE>aCm87I;4g_*If0eD=y+Z(SuQ~K1S-CS;d|lAp z@_>}QCg7M+1_t20$Vbxv^h&|M--poiRhtOR{?5IVenueQSMeMQW6E76pk#Q~BscXu zlI)6QID2CVw1TA3=IX^uynE>^jMdn`btm_Y@8rmV!>A3zB$bF`k9>yO$OHif=rb&! zA_NOsQ4x|Ff>;aAoIJrxKmRGsr6tl%C#(CLN19Q8JO+|Z*6VDXeb=&4*P^xt#W zRrfOhrGAgXUjqZM9{Fe(fD(8n|F;dV{3dw%q@TW&J6R0n3!%g8<{5n-2{x zR9@V*%%LCowbi*Y=X?zsfwGmNUcaA#0k{?Uh!}v?#1-W~2$vvtDMiosicWiXsla>c zwFPHAE*@uJo(~k+k6ZNEpAaQO;|z=d*8t>u8wCio(!`A>mo8r5?9Jy}?rw8EfXGuA= zF?2p}fX}m1=Kdex0PdW83=9CJgj%uucDs)?LyWE*L8-_mMAtrw`kN>F*0Nou@|Wi# z%4J2@(32~>$NZCZ0g4PiQJ_2nbdoYVHOuMC7m1^gom+P@T&Xf51T_>0K~pONA(6nc zt+U@a^)9dc>?bsrmPq0lWto4J%6b3r6*p^h_T%_63215jdk?s_JNI5{ZJrGbz@3th zM>k;JDt1S1Ywot+npYuxuhk*?J?%Ekyj}>ST`4bf)(dfd*YsqI3e=_0$B(Psc1jsV zGMEKzN~yw>(S$N|<%viQM?fbfYQ)^Uc%2{p>{+%Qx|ahxce7apObE#`wtruSEUJ`P zNGeIn^;4(lEH9g6pH{X4;YdB$6~!a4F1X za%{@^S-KD=KL_77X8927@nnuq?<-n(Ex&Fy5$GDmv@)P5hYHPmg(*~EoBcb89UVO>gNPK9pTqt$Y2Xvp2h#aeIx&GOvm3kwv$b>o6a>E$wTdmB1Um zi(7St63DQ^<~@5MijW98z>*X!0xL>WMX*CkwjpRV7Kkg#wC#o(8CWWa4+B^_o>@6s?~DD392pD+P*D_dI%MPjsj#DBEkR}h>Wb&0updE>5jW0^Ah~(heuv&Us&_b^jf_0 z>Z?_L(R~etSlz1{$j7A$@PUaaKJ7^~;r=MQ`}q&Pj4brK8U5-(UJ^9MMHDjl{{HfB z&y^`J|M}B?9sj?1Ziqld6cI)tTlengv9Eod+VBt|X5w*88353{fCV9GD@7H>j_MGH zckdzCKF-zU8CK?J(P@J1_(kIpe?ngN%U};BY)7FISoD6ftK(n|z3$8!dR)9+URI}c ztp-w*yEg~WC8Zy1>9uY^N)M!fU!BU5VmgcSU2_W*^8hZxC@k;4>jVUwnxGh3IM9$8 zkm0ormyX}D0tH$SNWtb^yNE`|JVb+K;t>#QMN1nn(1kN6*i^6Z@SX$w@dHn>b>n9K z)5L$^%r9P|lP;4WQ91`6No^7YS_@Kzt$rwk&?up@YKL$WjkAU>FRkjXk4rdaO^yXk`HEs{YLcYcLZoDX9g~kBYgFoeZ3>ys{HgojDywsU zOhBJiy)V_=K>5ouFaYZmmvS>u)KdLE+omiIz>~l4+)^L?=T^P$QQla}Y*8=({-etP z1d>47K_GStP!vUsZrZ}*zx7*e+OdO*lxSfl0aq~WN)4ceVENire)IkBGkM`WC(fK= zR=3%`V<$()c5>k0VcHw(T%Vbw)mSD-6oIAh%Kp>JD+cE6zrvO*bQZ7sZo22L_t4SI ziO-CmNnL4C>a5H@uo}i=U<7;_7=YUm7psdk3_vmX_a&W$LsRef$47TcgXEA7DG`vC zE=g(W25Assv>>8%N{7;25<@_`y9Y>0jLxzB?&tg4AFz9OpXcs5=e*B(y_x%v(rS6U zoGlK_^G+ai`Ue81A0TCxHzmVgBXI7H7V@kdZTrM#omnx_vM@E3RVd!y#V-V2MC}q{-nJIB**LQpI>C3lm=jnp|ViPRZp6EnJ1z@5Tq9k+;@%CuIt zQOGqLkdub{wZA6!kIB}oHt*`Yb4jON?g)#>_VrfXZc}txpKILvqG9s7EKEXh0GVZ^c&CaJ zc|ZY$qI~`l>5~$6o{I)4R4-iE`|-m%A{ktKoKaRr-w}ia7g}s?R7WtZG=4kAxe;dS zGt29eTXs(_Of(_o4DakM<+bDwrJB{_pF--wfb9A1Ebu9#w4v0zE3-+nN?WE z{#~p?iLo4wV7bKlR2=&~SKMZcmA~ZEi3voaBL8s@Eu%?w0}STX`pcM=_Lf@hc`;DP zQ|M{Px3`vRnQngxLx0~5R-Q0nPHTXO*?NA;>sQqup2|tzj4s4RE2;2K+5g!EN%U-h zbW_il1t7o67A#oYn^gWTYCWp5sJa6s%erqu~rr8@{aA=C_5PrqW0_yB$v+E4_n zu&{mMwd&Mb*RWF04X9WcWaTJ?l2d$JMmp!h06BWj7_y~0%`D6F+5n%Gf=>8WIBC+% zY@-bhNvBU2c;dedj%7pXG^1dX5MaWpVr*xGx=qkGo^Qqfz2k_*$%=Qv`v>v8y_%U^ zOW9)XPdx2b#9wa|9>|~-vAfhYJU$cF?9jrEowqpyZ@M4E^BeP&&rT+psX+kN>{y*- zXMEknF1rvdABv;%VI2l)B!ATC#) z3Pm7EsQ;_a(s32lO^6onY#`raO~v@F%yRnT5x%|E6WJ95kG%$@d+)SNEIP0YB9 z#5}#R%*raLNP|x_G9ChDL9l&@U-S&MR`QoQaiBO$;`XY$FE_``G}9{3nJ%?7n!h`@ z!o^>#4U*b^-II+CR^0Tsm}1S=-K6t-wMX?K0$9yF$Rf_!S&HO45dORT^_QUT>XY%g ziR6$r9A;MpJPBftFe)*$ffp!zJad^Ko&Thhu>_$MNhAe3{*zB?HbopM%k1_X=rtp# z9k9Cz58ltN4cC&mXqKl8U6)M0eY<^mH{-*dRn$)6<$5UBd<+{%9hVY*;laEmLJ!+* zU!(PT5phKo{|+8qxqcUl@V1~V(CD7L2mu0I8B{IF)?cm`caWJb;fnO3Fg_)b0x@RN z(lFflaUOT^7u5I>V*-SUX(d}i{-%t?6Hzx1uzfc0ChY7PcTYa5IKdIkmnAc|f{ER zB}3x&@*ZBsmz-~C+bMu{h(KKDAbZ#DveGqoug&wYD)#* zWycaSwT%A!O2LGim+INyM+W88Rex*T8IufXKeyeFC*?Kd_>VPym~4<7dOZM+lM%Pf ze4q{W!qcHbUdKm_dZ7hgd;`bG>me)jmpW{4v{Ba{!gYbdYV-vk-QgwzjdATd2YAR=k5_}$7!R3A zeC}pY^kZU^HmP6>T0uzitC>FpCILVEQ<OH_+$55PVy9o+j>r>eSI{^ zV%^&TG;A6)B*%pj&S`u2_1JZ}Ikm6(xjM5VDF{!8EGcRykpH`k^7O%?s!ZF8w$h!O zQ@5`Y_PdR);l3p`o)oP_DzjA;>cBG&8IF@a#7-XS3FD&o7t~fZM3or~MXbQPQ?XWP zie25i#fY5T_8w{2jfUy*pFKbB;C{g%Pf>WzaHdb2r8ky`;zXIx4>bDSk!OVa&&vl#Vjk= zcHksfs`f9bB*~Fo684K4voL$tRO7db;WLg4ieRBz*_PV883|~4x zww;B$lN{5$6YG_G?r9gt$`r>6h)_OsCB@*mZE%QX@C*19G7Gvuf62PKx9YEI^?(Hy z!lhjj|9x%V{zlgN%G{V*@{jF?WYx31iQIx2=RI~AfnEwN%Kd9CGLd3XR7z?gjKwp>LaYpR_>JShtAG#ANt+(8kgz z+RS5&5L`hE`#Z)L-(6ZCZ@%hygsI2dGu6Z}ocBCi3*{w8?XkugAGq9r&B-XMjhTNm z_h6}U-^Lx5LQaNB1)}&*AM6}2z+v2o6?hdD!wtS}m&Ys+5vuw;Fa2Dc4po-Ve~=AHm>oN0EJko5%60?lTz%ox-MOi4rOJC9mr7c1AK=Gc_3rY z9?~zHSf7H(J_% z0tN{AX?@&vot}_uYa#Ain!|rfMF(GdKJw!!6o+fi~ zP|p&@*9>1$uar~$>lNuJ-~P4KY4`#f@YR1kAVRB1mE&t{vUmilw5*=(cO}`r=y1DE z{12Mm_PU*GtO864&5X?4-TPHSfP%PDu=a^|sV;RUnHm_9RQiEm;FI=c0{7FJc+-)n z&1qv5V~T_1-O(_XgkL)U`;EffSQ#_3UXI|aPe37x=)e-?f0!TmKt(8WvBi^3qoTe$yXhL(PF43YIVMC_ z@ZD=KCB3tH7n?0E--5y{azsV4XQmFUn|DlIY7%i$k>Ot0M;H!pXD8+Ui7 zVwIf28qFe>y4EgwUhJ=mQw*BM_2<7otk0=5L_mYc(J(OHk9a*`Ge5N0g6`?izG3!p zL9K8a7-cs$pj06JG9B7-Z&)wMMW(<Wp`Nmjiaar zpS0{4ePfg7=8Jg`5Js!AllN*XO)wAeIekt2L*G9Fgt;{cJ2}kV!0-xxZQ{)bNX96_lnxk4ueQOtm|eyo$IOV(x4I39TYwvtkHL zNAxN@K`}df_pj>I0;B^^$y0ZUUSave46eLtLuvw}I>)plu-$ z{Rb{8CAbDE_%XAgkttg79K}aJn;GzCOa7WCY=j}HZAsCAnQ)I^>tha<8KsAHSau}> zR%V-k_m3g4%iaSJEkL1-HMph9BA!Gu+#>$(WNB-(O%B1&DgCnu!$3I-tiy*dgKF&Z zA_#f)KW=woN*L^e3zDBTN^&{Z_1-POHfp*q;F+ctyYS$DPK>BwqlD~evbo90@2atc zX02=ujCd$IO11JwfwMK8b<6)C<$Qxc2zTOMF9hwRDvkX*{Y?y&uF=*`B1;ol@JQy; z!ZZS`l0-i;0*7b`XZMkYmu3(=NjDN_CjQ8u zU6;DzHCOy6&tCdRsrng^&L)n+T8FlqT%xidXh#a)o-qkr`%gc`-voY<6pS9SSh4deIrU{-j>)y)}Ew ztT|11RKzfDS=OU=Vs$s42^yWyCU6Te4|Ce^%)n;85K7^DQm$CAf~Q(E*3{r|ha~Ch zmG=%4kU?O54ZaqRnc@}_3c#VoRn+NIxn-^pTG--F4`K$EtZIl`6YLjpQ+sG&D4h5S zJA_0w8Uq(>Rn>nIfuq`!u;};5)&4J9%QJY2KCvT&GdG720Au)Ql*%v z7%h!g&dV8emK7T|U!w;^@oTJ;^4BNlGs9A9G@)J}^Zuaju+8f#sL&Q^)^Sd4dCW=? zi%R(kveC0IzBJfPgwUajaFNHjF#!`fuSPYrJ+B5LhLI#<&(p8jkSXX*fv@) zsSA3jTE6{$HrMjyd}Bd+VqN(gOEg=G2n(81uES)SCZ|D`$P@tWj-pRSY;(Z&`g=4P zWf08DjDe)jDOgzvuV~T2+=#~c3))_b{Wjt*O^ff96#{B1SHn*cYnMe=|H6q)U;F1% zFtHx}Lxm+^3cb5%c5_|)mHM_sg+*nm&+(fo4!^~(?#o#Ur|-72mS4{X1Re{FCT`oI z?JmxDFtzUL$A?=FBne6x`CH~*c{ciA8ZSEs@szY9r$Ik%AD3#wSlJ8Mwvk8I;QYO~ zwiFV}d1XM8RWKn&wot0H_{ii=Coe3wMjgm=wbZy`Te56zsXP7H&JCn7R!tpUl)nD; zMpI;wygp*5qs3N7I;qHLoC`D^N&SGm(ga$c!0WCs=x`Q9gJx3uZe)O8?cQ?z*=%?T z{S0Cs;BGDC1)KU66%pM?Y-ys!kCfEl`l zAP~Y>4=@Wd*%G`9R*@ylD?S<`OK3uECB8`^50+NYVT3xbO7XFP<<(6MpETbL5R*22 ztD7QnU237`6KsT~>DyrTF4D8Mdft)0s5Woffp#Ekfb?k1yGa095VQjQ4VaRqGQrju`7%=pzK6PEAiL#ks zvI9PWj%(YU=C(o$YaWw_XturA?~aLn%cWQ@4%sD)BZymSWYW74utz?Q_pXaVVDN<{ zJF=bRMo@4nw@*?bc`6rl8mr;W(JLJZ609wXrs=J%r3T&?X)jxSUjXt?ln#YX=!xV) z$9+rGliO_^5&&AC+t;5{!jx}00)H5q9$t2_&tFp=C(;QRBt$_UL(5RvW1`_HWGqCr z%CbL}HdZrd8duz=D`A$tTpyI`N)FD}C90zrR5R!^KW6+K_g}wQC3w)u5>d_U@Qhc# zNOq-N>+9z;ok|ppmum%wJ~*WI<+Vz_2{{Bv;;m1-=n0}YtKRKAyL6W$>~ z=f2`zAvyl>L`5A{Rc1pPPN2(X+r2uLZPpc#2=@GrabwRptnB>Y@N zz~fQm%JV$7^!bZ{_??&KR;io!q(Z08A@DOsLg0K~Pi_tILOC4QY=OM|LC7Vk zy5n%O!_MUd5kiG<=a@>|9<{;6J|%$isLWv?;wI$w7L(WI&*yotiRaE1)~rHlBjF|WleygLHa8l>&&8Atwe??8k~aU5j@O)@ z(fn~yx;b2i*)w+$mV;b|xn<~&6SXfttgz<}uR93{z9~E6Fk6L3n7htHy8^%PeY&0m zJUe_hKsKf=iJb9C_;Q1v4K-ZilahX}Z5|ChX{3uML=**ALyrGk@>A{2ucG)(s(YF) z9(+14sO{`1qxMW>St; zt>m#)I0^QZGPK?vX#Fk^cMD`Mf@-s?bJ4t4>3(U~1e{VXSBC^_!x+_D6W9f<(@<)^;8idth1nDDL)V zn`yzCL-B&zCVlMmpm5?0B#Jd(LSnRZ%5#@qeROm*-$pP@E3;FDn%^oD>{xqylO{*} zj&kbK8&1U383-M~W|trCG2PBUGEgT>pbd^d{*bgysPF||EYzIA0A%bd0n`?|nEQG( zdDiE7!Y2u(pBF<~3n>=(E#BGLE$Ki??nEqv&v^uT96-!Beq|CHdG=_D8Bg;`JgNS8 zkJ5yHWQ0Ho)#ew$=rfm36w&1PY#$OMj@ExA6C|etqomxds(g}xAyJPOk*v7gG8+ab z7v`={v9a^>ZXJ`)P5Iv#et^pICvFCN>07?U%iz1tMR%-e|I=B0CXdFx&+FUjw~1dw z|Lo^i_x$jDZm=8Ch@+XQ?xef-T@RMYF;#5Dy~(n`r|##ME8LQwcIeq;)Csa@#ek;4pUCXEbJR7!exNR#(Cy0>V?^tVdbqh3f9!!x}0C86bz z@Y4y9s<~p=+Qgr=Duf^|n!BZ9-opG@#ITtzl)e^cDyj@Dj?JKlEocGK=kdK>^G-1- zQ7aZ@sV#g0^v;(TaOZalPQ;I-H!MQ;B4MsO3xPeZl!?06qeQkfspUQ)ddaf+=1fqT zy>9X>>@YAsdXJ#uw>k0KCGCqj9GQu^HdTucXGTAxp7mAx7vP%mGxW;N^8wj9u^R2I z-m{89s!EN`=M@RP_YZkoSD3bpkrXOqwN}<_lEhEJL|{3ZY4Yd`0VPs`pZLFLfe2q~ zP4S15g~vd|@p4gg{rNVQG|MV9_eXLY=&rY*q=XIiUS;{n5=~BebC8*qFY9>O( z6MNYjo0!qcO~~=&)U&g>vxxXDTV+>I7I*U)PxBTm?~FHV}g5$(`> zBaO~LsyP)xE0uCmRp;dx%6$rwR$HPla&rT;&2&71^$Bk54SrlMAan{&2$9MD{(HW4 zXn7)JWywh1v0-}T`>k*?yOvbM-k~+{n0uHAsq?xN zW;W`7KP0H<2beAc<$Ir4?0<=moI?Sv;4OzqEdl_y= z*$_i{2rNs9dqIcloIOiK1&V_sHz+rtEY_L*=UZb&jGZRoLqg9TsqgJlHU9tkj<&G7 zAo>h>q|_(JhfcGCYAb$ZN2Rw7rQNdOj_wPf5AEi(XDl`h)S{f9SbV}IKMd5@G3)e- zipu0lQFA4z**gz9=}gHepx+*qb03dBO_4D@P)}zLGNzvT(o;ZF;sR^hW)G8%ERE&D z$NHjAvjolN$P3Bx2)Xiabr@j`c^v0KtU&M6J1!6&D)!lZ$B~LV3K~A;>fQto9H6zT zNfX!=Ez07*8)a7Fl9E9gzLwQ_PAIJ=zF6h?DY$T?`_H{`;b=W7I!W;JqW3B3??KKn zk=F#Oob2*0?7#7%c);7Z{m-pOsYy!T)z19e9aOT$^9erw`^Of zA`NCyPZv^Y(K6E?6q#`q9mjhUgNSiv{av>Pi@u%4*L+OofCqhPoZGH}+%nzGLl7vT zyYZJ>B^j+bg%Vt4_26e|>dcmBT%j5GFDaqrZ|cpB%P#oS!_eNgWaPz@a|?{5t{uor z*AVVB!Etoxnd}2b#OLa)bSZe^)Em?3e`L!b# zzC1J~uuC5MS!EqIFMg<6C`0x0Mw=%%GQQtyLe46rLSR2=D`o=@x3dvrutyGyKxCky z`*@OwL|;`TSaoc>P~SoJnfco@?`LcUnor10*z~`REBK!*V`^0hVV7x#Ab_y#efBgp zL&v`#kKy@M!FQQX`>_HyW0CS|lTVuUduAH}7upf+@L&|v@i4i11408bw zJ$T3+Z<+0qyL7TnC-%-#Mu zmr)I^sqdzW{aMG##DX23Puz$ML=@)hNFs;UjZ$`}Q`LFLC+IZt-(LkL`}#Kp?|?%2 zSMtb$CF%t}9SSUUMM4AGN>p8qe zxm@6^J*|-WUlrv(gyNSi#pf-xs2&}pYFLb@vtQKR9|GRIuAa6%3+s=2e%I^%B+4>Z zAZ^H*Q#o5Nr%2Tf)yk)4J^J#ZDOXZb#|Vs=NI^aSnMfDviJ4e>+%jfRBEEVtS%w&0 z6rO0K@uTMSI`5C>u~NseqXKoSV0$hNRy}-Mpe#a`ia({218gPNwa(rKCv`=0bOLm#l1C4SP>Kb(5! z1upV;TWD3zd~;h1QDb5OvgV}9YhiMez*Dh@ENzFK`rSgD*BN|h&MbU}uoR49a$I)i zImZH(G;8|_bBD8GkspvVI)&_kr4DcUAY#Ui+@hPhhXxWdbyZE5{zQ@IMNr+UgZ!8z zVxDqMy9Fg~f~0F*j4X6A^>Fbh{lb~h*;K4lrR3ec{9_sqDM zWBIG<7Vy$BhlywsQok$LJP_g&rfS>H8+4`7G!`npUAWFLSzzEY! zu$H4)edW+jOcq>^@XM2npk+O;%J|+su5XhSl^VFax0jij zXB85X+piYk*Py!UH0}7}pi#2e)720rB5HtRRf{dJRtNw`4QR?2Xc_73U3+Q%{{8#q zYrOFD=Gdyg*^3g*iFM0@iG)snH0}3FTYc`(9mexE5lanb(*9pFhq6V|jZ~JO|FTh$ zpP8M%JWiMt(G(7-p*69_iTO}9Y>bibwJ$?5oh_UtA-}_${3aJ!Vf6aLI?yk_fwo$B zc|rQ24H1P8`ok}~>3nE${K`e!8;>vQjNC^>rSHV8orW&&ot&CHSd+yOPgMaoNyM%p zbOzqhdkF7P^KBfyy~Pa@bKPC6j+i}E0AP#Z-6{9F9tOS2H3aw?n{ z#nUQ8+$WQcm4f4f(&!-2lb@=Ja{BG!14BGD-ZtkFFKW#9mai%_ETH47mm)kP>cv$w zYpRo;xqa%XnV{mzxICT?9HZtj>0xtff43BElYeAk0kd|rf^Sm0H4k+G(;@lC))An0 z#mbn6+*dHXBd>pU(mbTQuT^4%vh@s>>KxUpOsrRBh}(pApk@^#Lp7xzm7fdlI6vIG zJ7|z8nzNAGPf?@MsWK{yClnTukgu}%VNvm>Vu6;9u8_{)=Un;hp|34z=scKqnV&t@ zM#3}u&!5+6X=#q4*}MV*bsZgp(_2!&jW=fVO>2Gmtfz0yLBzo&fn`VgQ8!MdSSn$b zUei7nxAJUc?Mh=Pb-Y@y?wON0QqCTg1|)J)2l4Q!*9>>}*Y)>7{DzbXo`>SvpkynO zNN{cNr5rOYJ*~~eI!37MKR_o|vcy8;GA)svnDD$pyqw;lOfrmUow4VNSDjhp&KSl? zG3nism7FFLo64_rNC0N(cjBKcJbRL7O&TqhzOno8@*C?Mx1Mdu=e3~dXC3?N?H5L0 zkBW}256yaWR^a7S>s39Q=!5|b`&}PaxHz{|y}SR#Yn7I~M3nW)+OLNGxee!eiew&Bz7Q6b zIow~Nj&OTHGQP*@%F2HlJyL$PpCM8^9EfkzFLBP(|00^OL*?JJc`sLoQ^VkbgI&aN?FVP2vU$s(HSwL9vR2D~;;{&xL{719gbqNwWde5du& zbNKDoL<6~GFAvk3+XZ3tUq{117uf1Vl3z1sn+|syEdmqZ(tp2k-6oYwdDCh6irBz}U|Q`Ap=*34E@0Sf@ME#<(U5lf_1xGl`G*M8Z~- zpzkEl<>V5N*I%F%ZwkNcW=jR$N*} zJ5co5@7(q@ zOlLi(C3S8U67AioFj7rgBnCB+n!I>yNq9f<_hZSqfvC$5KF$`XkRF)4?%&pvb6bnB zVak`nyvDeRaJ@Fnyql*d-kF6f`4&Eb+_nST?#9jZnoa>R55!Ew`dMMOXo!AkXCM^q zx*R6D^QhiDcSsH~x(o39GjWDqZ;NTh@eZiAFSaFXX1CBtYe$5#PYbeQvLraS2Aq)- z0DVzfcLvTv&g;W)LfP_*r0h36jrrdJCB%?)f)f`(x&A$QzQh1}nHhdwuB(McQtXo2 zHL5YnJq+)ZB~j9I$vA3i3D`n!c#on-#ijw_O7Ha5ld-IS2X_zuvWUMt$JSK=^xtwy zVg`x9{e4`bxTiF_pIP2TB;<>Dl6xapX|v*^xnNwWP2;~RJDb1pvgM`Hj}8CyK}s=^ z>~fX8!ubK$a%;R%@|0EfpB^{5mV$G7IgIpQRYRZwRttt91Mag%iQYP4L~l;|MWLKP z*^be!O7UGTChwnnK$jeNoF+j7D*(nY;_pM5amh^H;QW&pU2j{ptI-|V19!y;$A^An_)!7;5%CVF3akpi~B`LTv2)3r$ z^-+(+4(-y=>zG{@-fsW{Lh5~Xrzo-`WwV4j}oR(UF_xtdeW=}Yv>zw{fov1b)K58G?tm)>? zW=rrevS{)pDH(${D36&RT6=k z+n*OV>z`~S#{GT$Ymk84>JoEexG!Bl&+r?4bg}|W;RTX@`I7?k&ER~FWa1nh9SxP> zS4E7G<;LUEW3j!7yplQhWp@cl(5$Y5)5az~A&5-D>_x$D+HF0O1mA^0! zDZJ3u)@83dcPct_!ImK|?tv^5Jop%%z_zbYD@%jsTAD#?y;9%L7~tTS$Z-KZG0pJh z2z+#~*r9+30UgyF!jXi`GA@40Uy9QQ`AJ|V#DVCdt#4os2PoKILis+`%o~R5Bj>LE zYxc^_p&I(0K1fXfas0u&n(;IDFTz;PR}>W^|KIAInbI&YZ_W!&nQx=N(Z3|7_W~st zQC&9sD9A=DDJ}l8!NCis+qG{BHBL>!{mB~exR(5%CuJ5G?3DB-lm|kUe{B@0%%tCE%{-K6LfOFYxe$d!d!bZDXwleN|{B5K2PammG#RSR6UOuFkGL_-R^i^qsS0N=^R?2}jEoH}gH{Njkq2!PYdbBB<;H@{g(DaIH`_JQ zy#m$O>*?F3?|MX?pyP&D@cMP+3Q(B71r@h{Vuo~z>#h)uQVcTNUd&e!#(%91mnW@f;XiEFC99=&J$GE ze!TEs!#950>cL{1{(_h=1@aVFQkR&awb-km#1JVsboH+&N?{yVg^bx&mh|<}VkiBZ zswBs^WP(3LV?&A1olPzfu`QWdLTeCiRoC|FVa9z6Rj3!ed+yH*R!}=1)@$BKtPm-I z!RXk_r;}3`zLtODR0rqY2Hk%)#6GWB7{(&(1EwP?S^Vj^r(22y4?!Xr!WB()lKyZx zES9?IMhX!!!XjGAq~f~1Y>sv7k|kzMa$SScasHa~E*x2_sM(Ua`qpKCg}|tj>+U88 zith^R!R!x+oK50+$ngh5Lj3oe)=k#TojWI@Aormjf^PMs-{vQ$9)sDXMuSKKr_%ix zP;~UC#b0ic_?kF!3i!p-gjV(_bKoJWQ}ZV^OBOrH7wYzI7nw~!$9ux~o1YpT4oJ7K z54-*&md+9|3K_889`A9*q0Q>9T0VTAUO$pobz50h(dk9h_Gv2xl7HL6>R*HQwr2G= z>awuvgi0v)e5#r@Pp zBPy8JpL9(@^W9jT8!;1yd~IBl^o>*5rH>`vDzbmRrpU(9Pqf1k~#ZH>4 zd*18;`#MkhjxMyHR1rOmiYoB%xW!SFuGmTICN&+YZ&X=h@MdbH=Bk2NcHPPdbV`{5 z^VRq)x`n#=cXBg)O0wMvEXJynvC&#B4M{sgXbL%PwCiePY-~LJl!V<|9;MeRnl9)p zfEg%yx`3IYuXU1$C|j4%7RlO+yL3B*FNsb5t7rKZ$}0^-=?wC#hr%t3(&nWW@Z~+w z>_r!_1|1~2T9;K_b$0_l&{qIdbyI-^c?M~cME~1j?w!7&!rnzh~~J}#w=vg>xK^WLam=mKKhzR6w_&i{E`t@?!#xJ zR~Kd7g@W%c(yH`%D1qY|Ji48)*nQN)z@gQt&@jiUx_X(@m~nSw9NLi~^I&4`^LTOJ z7PO2(n!@t2(FiKQ{a9tq9_jCPoW8bnD4F0pwB`Z|^-|0p;qyUVtz0-;$l|G{?|_P# zanYldmGJD|NrJG-N(dz(NCsfUkom+%<0x+qc|rBgydShEaP$ddKmGj3`S$nbV=yQc z1+TKq3!8@AdZp8Y*i2y3f72)4ELd&^g?dzqYvfm;V_FT~-io8KW`8USvv2>SF3{PB zIQpK6NN)999?9$}fm zcRyR}-|Td#T zcL{!(s&s{@M>qFJ6Q>t5K?%Q6D*yd_e0NupGaBxN0c_kr`I?)P50FoH`G-V5^~(u~ zNXQmjQltGCE_&jiySv*&Nm?9wA<&B&YV=9vn;po*Kn1}t{1okOC9tqIVC>i45ndiK zVNOGV171Yf7KGxzf3{bPkYASG+D22Z=LY7t*)=Qn+u&4mxhiSEHi9#3?VG&!!LXf0 z@D-)W2oLyJEB(PzC*;Pm?J_;b?prF8c1y$e@87VxXErSq#JuMLlb7+ZkBzUpZp=T* z7gw0hDOXpKJl$u$idrx{_y)f+Y|Om>d`fPLoS{Ni_`s(v zU#`GjW158CP^ky6DZHGQKUi|_uB3+KBbcaxx=hz}9NXkWg@c|Z8Rtv|Bg`cT5>@>T zNM-4%-tlcL#~&i@7X&8FEWqxxyG*IYY3OEwmzIC}nba6%(N1m5Aq7DUy+Lo=aE4K5 z|2vsmhxgW;Lry*tY3FYUUK-w7duch~6F#GTTV)sMa&|r<;JwrHI?0}3E>`vL z;wj3`PS%5oUED((V>{R%LN~s8`?6=eiE;&I{|-}{--~(=G`xj!bdw)p-&_0sp`||V zgcmyQ99ybc+WkUz*}KJhSB>^_C`kBjZ}{p^>L$*?*!V50JG=e4$9IZ*RO(62?cvr5 zPhMHxnZUqfHQpe*{Mz$tw@p6!7&O{}f!BZrK&&pnE1OPW@nNiL%Tcq+kmED!mdNJb z1oFEuyi2`e4h*~mk1$ zTPY0IY38+q=5ID1;`mdGCfcmaC)NRise=<_Ng--X0oa2#Tz0^@4E^ z{QJamNE|r$g5LH~CRgYbbdv9b0XY{l{zNsJqQ{j$Ue)wsMq5}!N+YQhap@qlgJ^4L z%+^d2f2KuFK7y!7IhU0!-$34+qvL0O@lD^qe76QA02J--ts&`6FKAEFPNpy{|rrB8c)|Axc zng+AG`v)Aq5b#7EVWsU+6CN$3-c=TK3p2cWK&{<48@}GDa>kt(A@3igxC3FIds4{J z5T4{vvM7?ANSIrM)f5$1yk-F2l@?7#uD4Of3AXd3e%qqnH7@9R7=Md|DSrK_?mDRW~tF0 zS!vq;wuN5b{UFM#gracr_HQ4T_k6FV*0bvvm{G~Y^dI;&%6y0Og5=+owmjqDfaQOe zt@zi(Q_5wkn{1B1@{JkXyWjpfG=W)Ud8L^t<|o2`VwVw)*=X^2(WzxZZ9?;41`6AJ zN;Alz^uJ~*SHbTQwv7W{Vd}%NG7Z!VoHbw03CwZvJ{%VzR#6K~vu*RAVX!AO-2rez z;18hQF)H6*XmYHx(Gh~_t`pUmcTm@E;d`wy<(;q7=CkM_QyMqH5Epml`wed5wj*## z6+rv=G0w}Y_j~I>LYlEhx2!Z02vb|YFYA8@3K7`VZ}d#tR~L>(-SA4a5J)X5)IWb) xad~$0>L26dqkUeWf%n|2{qu{kbBOLXisYY~QnuPzbr=ZvsJ_-xtd@Tl{(qF@mHz+$ literal 25931 zcmeHv30#a{`}aL_*G&7qml|y<+KVaDM2m#dVr!KsA!#An?kSQM(q<_dDNCpjEux83 zLb9Z^XxbDl(w>%i@8hT6>)&Gu{h#Oeyszu?xtw#Zb1mO{pgX9699l+Qppw7jXaYf~-84xW z)w4x8?=youko|}Vr~(D$UXIbiXABHh`p1?nn8Po~fxRJv}|0e(BPs|G`(TT%kKVJAdg5*Z|x0leQq0 zkdUBvb#>9F()jo|T~kx@OM8$9wzs~t2l;K=woNssA3l6|sx2r3+kdfVW@e^8e*E}v zA1y5{bRi+3Z`uD3{F7LgFJDdvm;nJilkzDku>BwXH(8ItVCXk*-lSJnR?-2UN%hJ){&rlvg`CDTj z)Bzo!3v7Ou#83zEDEFcKt(f1E0~=rqeEbTnMvWR#{+9pg%7G8y>u1OVRUSoox-ovF z2Ydma(;=YuBY(eI|04{hXzZD6_f(v~H;C~y5=DhAC{MMS>2fm~1H_t2$56pc$NH8( z5bH|<)71dV-_oCHIrzrT`2s-5w_+2CM0$95I6X8p^r!gHp+j_gd;9O<1~CEQQGS8) zS9Qh3#p&JM-G8rHekNmKVewU;pJRcTAog68KYo^dRo}(M>36U4Us zfgYWSiHZL3;lpWT=zNAW>Dh#mB!_@Lg%$ms8N-;aPqMn+C2HqZgz&9~Eu z4|Kp<`$q)Uw1R?y(~S>ePdonHxpV1#eSP1B;Ogo+-Pk}6#0GsZZ5!||ev2MGdh}_m z{DeR7?0-1^zVs&`AV6Vt;r3`I`OI_wgs*w=eO%_#7Kepl{B@xiyCANc(l zzIyd4y|c6PXWq9-|KM8(zIk8LPk(>a)zyFWjhT!$HJ$qX1vo@d25W<fvZQ2zUz5WRc(UnFMKHwe1| zWmlB1qdbiA(C0jmnV<}GfbKtmcu^2*P^O?MBLZKt|As~ge8&AAO~2K@zbXelK|4T<{|y4`raF{=72kC2Kn(L4YyenWgrPiv z@^mr$t{#X5VuIMeL!7Ab6_kG$&#&5p*Z{+?5U|TZ`B!7llpVmp@skYz&n^8QfPJzL z0G6K_OJM9x+Wu2gfN45phANGt{7=C>i34CV{Xqlx(fWpeAoj^N0Biu`w+MVcCUyU* zDZuzO0>4Z6fbu^T_arWW5n!E45vX8N=bxTVeFoep_G#VmNlQzAI_KTIc{6>c+04vr zx@W}zE5JNSU>!THJ{J=cqjz+4{L4A{Ob9$ZJ*S1?Ggg3klFp!+Y1@K+pK1DqI|_gq z5ZDXVpge8-cs!o|;K73#YXZ3AShj50wBvuq3NTOZ`M&qtjj#GOFfgExjg8Gn8>Vq5 z`85n+9|!iLCZF5$HJ$Iu($dm?8~-ofu}tEc+-pyke=3!im#6pk_Wo8IA|fJwD&~~F zc16osQ)EBo58U7XDuMexaPRjU@h8tXe%S{fA0NH3vGJFhuyyO!Uyl2^&EOpX{9As0 zWj+P>{@}jxH)8|r;2HdupP!vie{sJ28b&bo!8`D^x}TE$%zXNb^X1p@0PJ86`dZyj z%ce7*{^oo+6%&~I!8hQy-vQ7E)0t0ybH4l%KltWOo~8cO`T=157JqL(oq_rC%ea&4 z2NcTJe-HgFjNg-gZ$6!Y`SMHrlj}Etf7?r!zQTPPSv}{so2e>Fjs1{gzk~LGeesX%r(Lh6rbhSo_n)@@G-FTQy93;l#E)hgP@d_SGvyCp0~o(Y;Ee8{ zdVUDbHm5`2taPUOY^MAGOw*>=s7=Gst=D+p+2yON!0%Hk` zz5mAhyT4lS*T3LS^WSxUy86q&GnoHxzQ6vm8)VS}_zuqG?+3td68_x;etQAdu@sc6 zQJ&5|4(I?~3d-QOAODHpZ=hlSg(lBZ!JZWCtHHSj`0Wh93-Uk)_S%zsJ~aD>{`A0~ z9{AG(e|q3g5B%wYKRxiL2Y$8(4w6bzchKuloQW#e&S3n+P- z8!ds-%f;TJ1>)v)##>gd{PdS2Oc3VaR`fr=`O8QIO(6(N!A?pr5C#6fc~Ge@N%Vvu zaoAX2&(a6eWy_q&UwOhU)|P3J0Qc%OdhzW=F4D|pt0E4osw;%<%Dn58hAWD^XnZD= z>9~H(3bmLtxpF?a7su6J7M*x1By7YSUbxGi)Ot0P77`}P3{)&5Un{KD?`-e?r21!4vTTnN(4Y6Lin?UkSM z`MXCTC1@4A4~mvz%Rh2&EwY))LeoT=*`tMoqcEXI>TZU9WTP#l?uFv+@Dn~b(>xh2 z;>B?;Tz2SR&KVb>vGiBSB`@U7VIWFSo=LDSb9F{GF^DbmWAfpms8Sx9OX4CnBJca3 zlj9(x!dIjN?OG1X4l*imJNvRCk}F%!?SOfiOq5y^mZW)jFL@a|r-@d#f7 z2gmU8L3IZq0ynIws=}~m^#@&C%J6QFo~Mo4V`>v7MI-_!EBMMtb%_M&kvAaN)@ZVw z+`toz&WG#HkWDjnZE!6nk{e-oFdL^$YnbOCN}JC&{$#$O27@|Tn-skXr)2ml2~O!5 zX+gYoxhoc7qoU?C^3~&!U?kRFtnSEecWuH0B0OvLodgUAi}8p1 zrO6RSXHH}DMc$&|?D004DiOVMHV8kXCP@7NKB zgaZq^^O<7PoKEp72kby@W0Z!Y*Ay{&vfg#C&gG@YVR9g?FEocMUi1gSN$+V+ayF45{a zuDZDTN}mS|;BO%gEf}pjBfN2-gIrU#G5~cucA;dokXW89%>AyXJJI z9X4UlIWA|ZYHgbI z5?oFk@A=Ik7lrEQPDH!H+b`7_Y~aDb_qa=B2^Y&Ow41cU=4WDd40dp5(QS-WMN-=Y z9g;6_-JdNU;|6cPwf$ak*aJIcwL@1n$#l~zi{c{EW?T;DaW*E8DYq?Umtz{nJ&w-M zEMyTDrC&9K$d|kZe2#ws6)L=7K+{ zQw{XnV6UC$6-rW0emqm8wJoeZK)wJIcV?dST}Z;G0Arq{dVDu0&4kd%N!3F1*;*pW zR&qUiFzK=@44#QGw7k1`3t_d8&*kBV->O##t|tonFc2YWrL7_eqg+=+k;!F-`^b8> z#KWCE8%u4k@EprxqiV$VmmtiWxDLgnGu$Vs<8rppV5EajBXL4nyyZM$SWVm!wnCj-B!Wjqj5-5dNXukI2$$|Bu3Lrw}z65Lc=1G z^-#WuQOj$hwNGG?*CM_TO8Bg-1+qc>J7k5c51U8g?ZU5n?HYor;~JIjoWH-G>AoUP ztrWWLbRNqIjW#RT*WqZgPJXU7C)VaW5}MiijYbABmzoru6EmQ*N8cVK7a3|aOB#O& zBl8JY2WKfmj;h#Q!pN%9o@VNLv{OUL?rixHwOZuvX7{IJ{(EdPpuVFoQqIOa7giLVkBOKL@^smUA!tZ1CKRK}#SSM)iQHk)*R~?M!qkCruaS!#oIL1c z?J;U~&FfH#*98^G?i}pA{ z9Jg36t4=%6mhY(quYq*vSxptes9qy|7xSlH?G=S@>u>Ebe;|LVhs~@+06N<4CViBk zUiY$thvX;>Tby6z9Y1edAMQaiH zm^r3v#$Q#2T=X>bsY#D%s!bhs^M9PMAcHbCc0FMHV{u-dwlL;a1eJ63v5U*?Q_8JO zT#50!RD619#j_Uf))0ooADz~*9&lN!bBDRUgE>Vud-i5ck%vT=r^yD*^?Mp@Q^v+V zG#-?gKlr}Eeqifb{|So?HM&g91P8|av8hQoCmQXkd?7wIJwb z_^v8bbg`SAn{I*4bH$u(RZ6*xUhuA~hc=8czK8SHEKTzSxgbwi~9(OqJB&gwb^l4+m`k*Q;_?>Y-APi1{k zAHQ)P)G)f|AyjSgcCFps)Fh6Bca*Xznq36!pV6Az&m{O8$wGFD? zY&O*3*J0;_EqM#jh6^gMQKpXV?#1?>$ml1xvh8nSN>-?H=V;nJIwB07YX$e6vLxH( zqYwQ>qxwR(i4f)DLd)-$P>T-no_c!LsN@)8`e;W@)-Hj0>nJ-}Kla4-ZdPJzI&Mce zv)V_j;(3ERN3_@I$N<^|4Lf`B;8n+bX@bHbcZTopEmDI*Jfl)-pFDvo6svPRoo@(x z);_{lY<;);XzT`dBFpRmGrr}z5u1=pC^S-{ce6iXQlLGcItwJ^mZx{m$&DA_oEZ)B{_bYPq-HA zcH8WGoBG(aBU_j)vEy+_71T34@4dmSg!|M8Vf92Zj6WH7Q7t#OHQqWgFE3ARt+%!T z?oLovLVlnf?2c7pTc)~cc^($_8nyKwsN`RA-23ed3sdj(ys%pjjM+9JrctL;dy8a( z@en&CQmnV(()bu|Y%G1-4a(6x{aLytn$T-;(&{QIJB9vMox11U-1HpD@d(QkaJdEb zG{)+6Dos_L+O3NpWo^=gR?evp|CqEG?L&Ut#D*KLaRFOgOEK(Kq1@!EGcTfo+%A&I z=dLbB+d$u{sh?u)xP{PF8L%;YPPW53+@{>5W=Jt#wQpN;0_HYdw1{ksf_XhO4#2F= zyPx6Lx2<92L-;L5PD`zn6zwIH`Jk($?Qw({erA$^bC;q33hv!d!>%wRhj# zal^hk+WGNg;rJtb-EB(?czvOM=H7dl=vblBwAv>}%1@{}mnpUznfq1cE^sgsL0*4I zJ##!*B?=vI_OEVis5o+_IwMIRrpQyT_Sq~ZU%oY7c5JMIADzpD!Upz9h@iWg_>>~j zOLS;wp^i$-E?4<_cp?RiS%Rd?i;f*mOz=~(&3lo<=@(nR!_Rqiprh@weZlL!t#NCc zO!QTcInq|%#>OVgobj{~ixEUec`E25zJ~*DofsQdzIa@5^nOXj2T;8O`l--(QyU^$t?TGY^7#&FQ+2SS3B#qK*k3`ye?8jUYSajE5iBbJls75CCc(m3dk{t?- zopcER9{Z?TC)mk~gpi^kbbu>b-+a{m#8-y2^p$ka4n60w;Sc2}HMf<8JUvhCL0B&Btk)T`ctE$*qNW8L$`7!r^9T+>=<=2qaq-;ll2{`{Rg zc5a0ZUI$oG&j-qVOuKa=*v4aY#IsoM+1|c4Z)<}lEDvy;5huB@1RJPquU2U*U-;gu z=En2m+qjBzR#DEJDO`WU)hdd{Vj%^0V*KoyZ|5lzV87&g_j~NCjwv0uQVqXOb*QrQ zy|Qn`hxx(58c70$E;L(X0uZZ72M1!6oeg)(cdKO ze0gDaTz+ohR-#d)NbAH4x{I(21yjwvBQfmpLu$)|m{XolbgF!pmsqJ#D}(ylp6uC> z{bqtcI#hT#HW=wl7>p!38sKsJ`r8}lt-q%Keqy%u(xk=yiIJiUw6|5IvkS+#?JTBl z8H5(Q?l#wzazujH!8o>1xtn8#_w+397*_cy8!pQGP%K(Ga3pAjsaTbbXJlQF_+m+-UpUUent@xM zg%jqLUExj~o^vQ3Gl*>wh=_gOr2*|U64_iXb+-111aH}$TjeajM+I20xw(((>fej-@CIz4S1pi$(#}P7`4({6QS2CaQS4NPENDp>sAqD z$bH4KGzXGffkJ7R>V>)>tC)uax{UsN*dbeNC*v}#8Y#OWYwL4t$ePR?VTyIs!wea+ z5Urmc)X|^`MG~*dS6pGSbU+gPJoq*^a=_>$n4|P^w$sMBBy@f*Z^Jg6?n5?oId6f{ z$LW4M|4m502z0t7g<#Bx%X;9<=)smFolV&(V^(7Cv2-sxbxopQ!)*#ZRhTBpx1)Fc zNm1T%bONzv6@#|dz(w02AH8OXe>kQ#1FMCzO}2J_mST)+ExmBr9cva-@?;wnmWMOk z{3_~EX_xadgJGv&H@zK_8{(x84`}+c?oSBX*Ge3VdfTt&F}yCpFP?CpW+BE^cWY0^ zb&uBN!Ja3UzYHK-CTyA5=L zEMW{l3Usky#ly=7px648W31UNV@K)&Ub&zP1c7%)`{);I4b0Q<)B}3;NMG2JH=X$U zfIW4)4n9ZM`-yRj67I)YSLDK)qfUJ_ij}a#aZN~9EXrh8eZY2&=uY%2N0UFF7<~%M zsB8=erOWZ>Ct_#^tHZ|*q`H;A)5;ycw*IcmVxi8_0Xk}aJA^ath+E;xg!x+As(M#0=)3!NJR6H&9+zd#iP(m0PIW8$ z1Y^VX`>jm`W!=WpF*{ioM?C9`yOR>@0q=u7o>BP-eSHqCgMDj!2anwH?s%i2p+Q7D zzszIf5XJpE)IG4;d_(La-xenmF(tgAxK`Y4sQ}BSJEPs6N_U2vI{8=0C_F?@7<(G; zo$~G=8p+076G;`}>{MQ>t>7cm=zGtfbdDXm6||jUU|?X?CaE?(<6bKDYKeHlz}DA8 zXT={X=yp_R;HfJ9h%?eWvQ!dRgz&Su*JfNt!Wu>|XfU&68iRikRrHRW|ZxzRR^`eIGt zIeiDgVS>IeExKVRWW8-=A=yA`}`)ZkWBrZD`hpWIxBGkh&f#ijr449~m`j6{4jiJ*C!oVA8ZC?$1RM#K(_b zL9TW)kN*Y4%^-qPpMP7d4)o?Nk#>aoYHT(*g)qmRUb?**F@pnNiy6Fv9rEiUqD(^O zzyS?nBrX63BTRYduaG(0VVG2yJRe%o&rVrLjbxTaAFTd8s;<<@Qs>u(<193R8>}2_ zuwp{7;H2a*X7_jryzriZXMg?bTuegABb^87@SsKkr2)0Gyiax8KQWstw^v#ix45EVrcEhr>!NMhprl$InQMzjSFH54x5k9qHc`@9uKQzvL4ihcq{^B zPrVR=o_ic%Y>6&rMN)hTZsI7I<3&`#(nl+3y3ys9A~&^=4?PL&nd8)`OfG#n zwAMN$1&>K++c{^|7<4P=2y(B{jJsQ0a#U;HTo4ZmWZYvI{+s;Td{Yzem%0*k#)vjpB zia;J&>}ICate44SFYY3vEelqStQWFihx%^vQ@Do(sOy7yR2@WNv7Y9I^yL=nZr3mb zXKV5t@=?-Sk|b{XMhA7ZGB@2hqsx}4xwCW!in#C zI@}scZlr3-NFJ@NFaJlhyfcw{k^vvtGl`N9xSo**rDW4S}i zM9{fMPWo%4wYDG~BZ18BD+}h|GQKc-g^{++3MY>}W_uq7jGHx{mwE9fZiPCoxN$+7 zrODGGJrOkcPQUB(FD5aoS4g~7#6NR^ma7-!>mHuJfY5kTe6PpNNKC9GGRiu^L31uG z$7v`*JknQHsYB!Tm_W{a32TM099djW%5e+j0Ve_ct}IM>XLF1Ap+YvcrLV=|CKo6S zb+9Nl3_YdKP6%Cxy@6TxZ>;4&nTneadr z_ES90ydCev)LV!dN=#(*f}|ZORFdvkYBni^aLbUk>BajeWIOcmHP#8S)*2U~QKI%S zyrLmtPqb&TphJ;>yAxri#;{uyk`JJqODDw%(Z=2`1uc}br^V%>j!gS)D*q*f_-qf8&D;W1dJgQMlaH5er zN2U<%Smb7==vE}dDI8K7cKz!vs^73o9f>2sgiTzWcwY|BMYHH5%Vn7#kiw&eItCqa zIkR2~Q}>X=Ar8W|^Ms41Fm8o6IB2_j60eOeBB1Br!boW7JnoeX6Gs)?7rW0^5psc- zjS16yb>dFn>KPOF;imD}e!enuIniFzv}n$m2#gCCv4jM#ArwlzZ$7@9&XkFxZ4n!V zj3dyiwW4Ki2QG{@i>yuZXQizw_OkZI^-3otXC{!(lUpJF33gI60ak;Uqitp74|B6I zgg{b=Iz}WkhCGj1M=hu4#Aw173YxIVbISaoc z-nLZC*6Tgivd5V`K%GxhBsp@SUU60-rfc$=wb>zdJzXS&-5(NRRodFk;Kxk!S(O(a0e7oY=E( zAyS;Ow?6Q&XA+cnkCb{28_1N8H#?J!*$MmIwLq^*T_9-z^&UE@A(z9oGYtFy6EZef LrJugUA?W`A8`#=m diff --git a/src/app/globals.css b/src/app/globals.css index a2dc41e..72c1c4a 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,26 +1,63 @@ @import "tailwindcss"; -:root { - --background: #ffffff; - --foreground: #171717; +@plugin "daisyui" { + themes: winter --default, night --prefersdark, cupcake, coffee; +} +@plugin 'tailwind-scrollbar' { + nocompatible: true; } -@theme inline { - --color-background: var(--background); - --color-foreground: var(--foreground); - --font-sans: var(--font-geist-sans); - --font-mono: var(--font-geist-mono); +::-webkit-scrollbar { + width: 6px; + height: 6px; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; +::-webkit-scrollbar-track { + background: transparent; +} + +::-webkit-scrollbar-thumb { + background-color: #9ca3af; + border-radius: 0; +} + +::-webkit-scrollbar-button { + display: none; +} + +@tailwind utilities; + +@layer components { + /* .my-react-select-container { + } */ + .my-react-select-container .my-react-select__control { + @apply bg-white dark:bg-neutral-700 border-2 border-neutral-300 dark:border-neutral-700 hover:border-neutral-400 dark:hover:border-neutral-500; } -} -body { - background: var(--background); - color: var(--foreground); - font-family: Arial, Helvetica, sans-serif; -} + .my-react-select-container .my-react-select__control--is-focused { + @apply border-neutral-500 hover:border-neutral-500 dark:border-neutral-400 dark:hover:border-neutral-400 shadow-none; + } + + .my-react-select-container .my-react-select__menu { + @apply bg-neutral-100 dark:bg-neutral-700 border-2 border-neutral-300 dark:border-neutral-600; + } + + .my-react-select-container .my-react-select__option { + @apply text-neutral-600 dark:text-neutral-200 bg-neutral-100 hover:bg-neutral-200 dark:bg-neutral-700 dark:hover:bg-neutral-800; + } + /* .my-react-select-container .my-react-select__option--is-focused { + @apply bg-neutral-200 dark:bg-neutral-800; + } */ + + .my-react-select-container .my-react-select__indicator-separator { + @apply bg-neutral-400; + } + .my-react-select-container .my-react-select__menu { + z-index: 999; + } + .my-react-select-container .my-react-select__input-container, + .my-react-select-container .my-react-select__placeholder, + .my-react-select-container .my-react-select__single-value { + @apply text-neutral-600 dark:text-neutral-200; + } +} \ No newline at end of file diff --git a/src/app/icon.png b/src/app/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..02ef1c8072888437c7acd953c7fd095ef4dcf3d6 GIT binary patch literal 398806 zcmZs?XH=7I6D_Qwpn#xM1p*2xNLL6YG^MvtLg-z3=tAg4M2u2J5G3?YLhntQ2#A1) z5JE9@DWNy%@ZCJmMbc`wP(LpCoVNojl3Wc3uzOXdeOz&AIa(MVuP6poG9eRz)caD zMx4+fL35%xEdi^lJIRgP#Ho>c_Ms$Sy|{7XlI)YKS3{g-Tgm9|iw!S&cf}4mPA`kT zcr!D2#=CSX0}Ys1_>l=`srWU<~g{E|$~QzL2T)M1gp(ooF+ zQ|VkSiG5!Gz_2qMzTa@~WNQC?&(CcKYUy;T(?nZG(+Ne+$vLmME}?=-mZpBAl9s2d z?N4gt@JfjukKV2JC<5nEZo$8W_k6f}`QNiyNZh=EG3yzPme*fmf1`p~dpLNUs(5E; z;6dXx@Tw~szI_;?Qp@I)y2_cL=6#rWX|vCh)_Nj_9|p2xGEev2efP=U_b~PNr)-Yj z2mM0jUG9+X8CeU#%XG2CwiofmS1;bZbN;Cjmdo;3eUG&F&wuG)kFM@1K4!V*DsXW< zGGOq)IOuW@`;f{gmHtxA*#JZ1YLHq$`xWC@0=>l_9y~j)u%6wYmj@>G-m3Pa{>4vNaLC4fN3F|vzAezK%Zl1rMrsct*5&*Yx>X5hr1F!yb%^% zW{ba1Kq2b}@#5hy?~P?4a?q-m5uHg+Lpo1Izl}Wh=<@xDYawkkH!!Tcnxp8ymP<}~ zp}ecgS&%sA6}1C1^)|XJUbHvQyGU>5x~fxpxN#>P&A1R~lN6mBATS;ye;txPDS(BV*mzXmfv zbj!_n;CH}LFCBdM4y@_X9z`rMYMR@a{*u(yH}IbO?Ek;H-xzDs(MPJJv}mt>II>Q8 z5a@nj?YvCix4PYQXy{}JMUJFG(#-mlX^)1yts&uJO3#>7oz&2cARe;L&_%HmjXZxc z%v5SPv$89DU_e*~xX0~Q`Pz-ykMd+FR>#PBUl2_*?`kSLZZm!}{ws0}a&P*R89Pl2 zOs6{N`+9}Vv)JPy_-_2#wxeJAb)$!e$DW?>mgw}v>k!`2q8oKf*WSP}cwP;M$) z8F{Ss=3>7!118}p7x7BHi?jaDZQ&@_NQHui;kC{7i(ge- zalV`!T|Ci4Gb%5s|wgE-;V+r%r>Sd4Kk&fu%_vFzIsVUDb9Mg%7k8dCo%4qdqz4!KUoBiAUGg zYJ%M{^Q)H`Cd)ZJ!*#=g^xo+DKaGd*&GgE$eDBT+);aO4T2Td$YLEF=In~CmM!)fk zi8UtV1UKQaIl-lg8ASq@Yd8VmTJ@dyT@dz9ny_dDpvP>pcaK<;imp(nVIGFmP3Uu%GCuW8X>%xFanRjw8#1JBTK^Bd`3L;sS$ z%=I&Xwm%mdA>XxhFd$Z-%u5#OWhnpQK0R+o>d{SA>y>U7he5vX>xodsObPi^oG_C= zE@5FmuI}|=>V+qR;HMFb&E)wGa)WdQ zc~o6{Q@+xkawxUbMpMzLo8*-=tJI?RDcA>(H6D%HIxn;|4f`wh$d8l%iJEIRt!#mz zefA$r->lY@9r{|7Ztp#oJLpX5ztym)$HNLzs_l8)5JVO*`lm@eme{P_{ZiH<x;N-K#-dloAv4J1x z1ommdIDV@Nt|w)WPE$t|$;#}cgcm(~qA#4_#>nb48MfLWs7?|++v;Ibu=7lqDWZ*Q zLy9e}f1Tm0I|^Q#jgM9DT9MeXqS?Z!?5alf%3}xDh1hYT`=>mvEzSVWxsK}ykn#U} zI^*|%DZ=xS)v%^#I;B;LR&N&)y1_~wp{DAJS)q2L@#8UqIO@>(Y&=QrHs<3g`1GDXI2I90#7$-b8M3!%Xafv`YCh(m|5Gh&j`Q)o2<1ew|)W`;w?(|8hp4o0v>9m9{ zgmQV^!7)kVQF#R^#MC}J%lS&)o`~)3UtiSm!afNk>F9U9tXVs*&#jF33rbz^I!fj+ zc^Fh;;?bqTUGI;l(51QQfnC)z28`JWR3XQ2x7YgmUBRoD*m0p5T;u;ztBZHtDuEPg zmI$v!JBLMe{S>Kz2~`MV)(q0JyF)}h;uAS~ixEr1+u9!GdQwRBhU`PfbY3wdnIZ*F z%matvEahtKiv%6zDsU7>$LR45VY#lEpO;Mf6&@sqlwjR>nbVx*+ynQiRH`Z5ZX@3v zLaXuJq&9rg_r@$mHx}!^Q_XnF-u0CI zZojwgAI~hDQE%h(28xEKz{y%p)Xi38&-!+8toadSNc`#pn^YJ}IG%mhGO@43L^3r z#GEC9u1+5>31$%<4u!lJ#PVUN9I==nCZ=v-g#skk>o(Y`&EpY|xf`s3E02EpuS?Z= z9nhRE%bW^K1TG7dIfD105gfQO=lvRzm@NE57y$uiKx$Ik>3djJ2$D5(oFqfud4$)U zpU~y+2>~7j{)fu~erMr-V`L5%b#eXd@n)|2ToupV$Q!ltg1jfDm>~3hG4Vql1?((l zLYoh{A%V@;h|#JYY!0=x){cjK3_X%F!ne5D4)p`&|$+}O!v z=`Gg|SRJ2iOKdr$kBo`VsuM)nrTdYWHtn;A3sr6qk?`GdL= z``OSI@+@2<`QYw;1C{2WMLSB|q&1Z~kZLku=jIBbkulmP^IhN62S)QRrRf1QLX7;M z`SmX(ASg2Garba8cW^4@W-8cjsX>4>e<0TR47QXe!Ue|9HYhH{5}!`qwDy;^a0F0b zf@wiJTJ}E&fAYkl6$Y^{N`8tpe6ErOlN|$TF9?g3D=$^pT9<$IQv05*Xv0#Jch!aN z#D(4rb#p1>+U@=(a{RR%$bQ0$pDkc0%Es_3{p(Eh19S-fgYh@JJ!FfP0%uA)nB%UPzrRdFKua~LW82XP z-B8s52caIFGG6niK~9va4@j&Ze~qS^ZIlVRv=^`$QBcpXR88L>cFp4Sr;X(H_Sxsj z(|uC3+Wm}yDSL1fKI^qjja4PQD>+^vcDYQ`2nFZtKsTUj8-h#au(y>|4^KODf@>Yy z4RehjF0tcI2yd((-Ysha3J%xOZ9XNQ{}Nj&kl0#tA)`*bt2BtH&#FU)0&z}pdH5Wy z`G%}P|4V>8fI&i3b`^)XU*yTb=(Sv@g!7U9KO8BUb-CvEb2d&=aj>=A74L+Qc%4BnAbn zZULGcoT6L&9=^OI2WkPoU>^v()cI$njYH<}u5{pJQyCZ(Btnr~a`VFL^~xvXxilIr zCyd9N2aImNXJe+}-!_<`b$TQv&TU>S(eOrL6hr|V`qf1OmdYAN#r`Qa?hh?SBM6dp zbxY9;NZ=DM{NFplt~!wb$$Nb2Ue8_fi|3EqD#8xXe142et~-jO`n|q}-HFFHBu**2 z!Wx9!NJ}L&4-U5AETX|t6~l0Q77SHR@@3<}>$mDzOccVN_I1Bj+T8GNiD;DGyRZ{* zG3WtFzwopJw^H&zRfcf#t)If5jyjorPP;kXfA`+@(avcYePLzn#?pwpm_p2Ua6wAK zKwsCkY;C%gcl~nFE!J=P+M*Y!EAotT{Fn(mzqP`E>J!N6H}afR|7K0({To%`^R-U+ zlh+#;)wfyW}tOHCpd`| zsR6}&vrkVSE2Y(YjV(;>)M63GqRw(UDj#uoo`FP!vOS;=N6@UEhk4FS4WtCYR?Jkx zcOgvFwB?<|c2jDpSFVzOZjtNgZ1hq}nue+^&0@(($cqqH%!)||k?wz*_BM~~g2N*6 zWnSr&wC4Ka60Y>u)RmwW9eqp4@b@#RE~A6Us1GIHt(I9pSXzFEf%?Wj7k`cMr*FFnVoV7>Xz{J#=^4A37QL zc$&@(WiPY z!l)o6*_qBnufP&T??y-|#X2x7WQ=?7Tt!Da6cDOKX0M9{WUZ*0#k7f*X{!2HTd!g~@xOqifCe*hS~CHjL%Pplegq zUy_~{bDSl{>k4w?W6~UmZ&_o@fvbyD$O)kv2~!bPQpilIUQBN zI9XJwc8-xY{VhdOzs^^xvd-2S^B#hVsLl4^6VYGplXjK^ANdAf<#M@U;+bBQa0@;} z{@TkF;iG&=KH)#xzrTBSEXtoQPSW@@8XgC4thuhW=L-BwP^YSaup|M+s$_*~jJ9R( ziptQl?0Ko40Zh-fsry?HMaU@tQ+r)12{f1f#VNOKKz?jqgMotEh3hp6F>5CL1qXSa z>p-cU)eqMp&}?a8vs>yP8X8bTZ#srM={Q%r*cudME^AfXwy&3z4m>;A?^+LLlb~Xe zmDAPsVi}>^5kV$c%4u6*$sbp3`jND2lC;Vq)VxNM~$!eL}c93cl1 zzaj_&sR#!T+;Du>sV4wyvfO)Ll|~BFX|k-dX_w7V0Q{Ms^#AZ@=v^F7Zm<&Um(go> zTneuEO4PS3G*LbW%@luS1|;94g4H#(N}7keul*^O6N0`_w9z(2N~4ay+)LX}40ce! zBx6a9b;Ng*X)B}{Z$stuavKn>rMOsqy5rqle0|>G7-xDbcj8M$8z>f|p^OxaZlK3R zD`Ac>nCN~C@RU=ol0dCt$8Ah^=>(uWYpD0U9RH?T*(uw5cVL0-IevX$fHuJyp&sSW zz_?;%Wc(?CsggdjH>*IH0*u$y!PZ^E31^@m1RzWj`tAxr!W&tAZkPwpN!*%jq%N_{ zm~Y@68v4?k``ixyR8cn;Cv3fV!hC&>ZmKWQyhE*DGHOXv`e~)f%PvBTbD9oxX%hGb z7p_Dt)=_m6DC0PDA;kcO8Zmt!MApJaIq#O40lv9>pKF=oAJl(wqfQ$r&Ry%^oJwK} zQ62AZ67`~x1`MD?ga%m*JMLbeWjw@)6W{~twdh0#Zi;Gj_mggG3%b{jgvH+~rTJX) zmf5-SDe`T@a+|j9kP`)KZiJ3}a;}k_244KcxSTf{ezxS@(oUgSo7(_}MKlIW^yEOW z7?+6Mt+h#Z+-i>w0_!>ig-z&RHDLpehDTL?iuhZ5w9$^R!w9j`AVqsTiDS}Yr%0zz z=Aa1c_t3mVu|uZln(#R>qx*cagu)|lJJF4dO;J(q?5~eno(k5Y9kK1vlRK`g$qL%e z*i5QmvFj#-KEer)guggUBKRYEM{c>aEU*S_4|J6+|G4X-uIB*~HYM&CyL&Rzf%c>d zn!5&wcU3uDMW*r0J_}JYGr4wYZMg09)?)o>9J5<8G#ak6=h}7s%h=wB=E0Uws;RbY zU8~f``3+X{9&8@i?CnGm9>3g$nc3lCzrbRoMz!*;(c2zBSqqPIdd#w*@(1=elRXD6 z-t)2O-cU$O2`?@-UK{FRJ=rARFe}x5(;zldiSTK>MPjgJ7S;zIvK&I^K;Bq*tAd>; zdTo6J5{e5pC_(dI1uLv(_uKk|Ui-_OiSOU0O&~M4@U0qxH%%V;5jk(7b6vC*R_xCz z+@lz1d2#(@so&?fXiH}`MS82_kTGoa9bAH{A8V_^fSK2}bl74wi9B{z$1lHs-;!-(XU{H+o@E!Fvz(XH<*v1TI`88NUke$h3u#%|(-19T z5Za~eG7MC;?E3==@5MtJe|w<$b0GWicu~I(^vjg zUKny<0@rVnR0YK$Skvhv?734tu%VqcA#XgOV7$Bzv6fsYF)ZIv>#?|fnB-&Nq1QBn zScYKCq)bEdl;kYbCQ8mfzw&8mR*>@I!_vClph!L4DL7Wpgt1>{SNL@QX9QP&|E6-W z-eIj(dnOmsK%Wl=)en=$mhKg6OlV&HwQ?SWe}wKGasCG&8O#9Bz5an{Jy`A{OV|uZ zR7Tz#p~FNY3T8Pf1KuM}GqsIW1x0w`iOK~JKdWa~WjxfXG`uBuWq*{CDjgEGemch~ z=CjO~LNnoMIucExJNQUO0u?KJaW>nkjD-x^|9i;YR6ADpLcUSxlCRI7g_c%F0m&Fe z_iJ9orGe@iS-DN?~&X(MP5G^ZOJnlSu3-%T^EvuIuvQKCGCQg@!<-KT9&ZC)#eIegmO>hW2| z>DO!D&JC`F>*S!9F`>#}yp}|>a&=Cy`MN~vr}Y0vf8_}y;H%64=6>l$6BCYKFO6=t z%u3u$Bvzpj?}-)&Jwa(6KY_z!o#yt1tVc%o#^O(lnMp-ivTfixN|w(q&5v-ME}>*v zNz4yvcoh`-+%u9$MLBr*c|Q+bk53G@hjWj#xXN^La%yh|nkD2w^10j`b$iVlUyGXg zU2|>z!xSzw=*GM&2y7IT-Y-CeZzjE*+XTN(v4ZKNX`_mag1c4IbJv;T+zNP%_Nbe6K-JFTH7`a*+Fe zevX62*smFvEA9kmkir*=8$K`6dw#(6L4rjNB#+UhhpY8HFCNe=%0s79vyZ%v4Jk<; zLQ*!wJ`J*_Q{|5!;dE(}k=m4F5l7NM@gcKyKj>SXjS3hdGW6{2WTa7QiTu-*)RJ%H zx?-|rcZac;pxUvSqaz7nxk(O^M?L0KuCAX#Y%!Pf^-$wQ?G7T-BO;PSCXK#+F&Gqy zW9?6kjsPn&WDEFmF|A#pVU_avBP!4?R~TwIRh~Zbvgf;|{>|Lo_S|;ZZbDUOzmP!3 zSy%Cbo`)~8#j|}cx@2!ompOncl#O++Q)+3^^;yLqP5b4;74C(n9M#cERlH{!sXr%{ zIk-!K9Q-5ng>tnC`~QkX@en;)-qUnIUUA5;-0f&5RR#C>awQOQ(EdR>!=lJDJ-U+M zc|XK^L~0J?hahXZ!p}l&Zf}MLhfCoX&2gCvTek?6%rPfB*M7O5HT~E!^tvA|U04%J zJeH(XXgjF1+ni`zxAL;QXdbw4neu5{11?2P)mM;*c6#qS-Z_IS^qF6f>1qr%*0%+@o3=PcL1F?;-~x{kpp_V$aUKAkg|{e zn+4#=f$$F(AKHs(ZvDQa+866fV^3U!rZz1(-VEZtfq)8Ge7tQ>s(^*kDRS1O9ey$O zo=y+i4_uMnYV9qS*CN}X!%z*jC}0(^zw>x6*Khzhz3Mak`{RF&F14HQfaf3dC9vb( zY8wrtDa0b8Wj&Id?+j|^poti8v<6wMQxsFYw$)?81z{3&Qb<}iyU^orsm*M@$7Euj zGh)Ov5_8?@F%dM5JKmO7|9e_Hk3jRQZMO7T;uuF)%&h<9*+r@ezf1Q!P;#F&W*bb% z(91J%gZZ1woatYZ_9jdjFjSom$V5asv1lp(Lk-knV%2ZCpeBi!l#NFG1LqUz2ItSt zfBx*t0o@b->J=|;7$^ct+@6AaQx1fim4P`92%~5 z{J5x#O6dOFOKlmjZU!(ur47u{THBBPTlqn8??kb>BOkauyE@X%g02MnogfXWNqe2B zMl&q~w#O$s3Di<=@-nkoht1n-EcaQZ{q{gW1v4lXd??J+L6hPaWe1ngyMf8uaiMXH z)*93_Q0j~70i52T%jsX2`G24N1}6GuT~b4Ee$=391l;36gDSLpC_|!(<|DmIvZve6c)jj`n0(2%ebm4m_k?$ zX?N&tTt?8tJCxK?NxV{uDli6`7+rXahG4bqimK#H&$EOx0okj+&O1G#FB?AP|E1;^ zX#mf0{fL)<0WS|p$)NW<*7$%(<-o=NEKa^%lCO6z9Ml5}`blHVOa!$|q`Ku*-9jo| zeM{VO%Askhc`HxL>2>LV1=G6g6ijrBwhVsKF-pN3a=*5JENJ6(h3V7pr{zEjxqQ}( zMK^zzrgh|2+G!b^yfiJo0>%MEC_e}Vi;71RGX}kHggC1p$CUYE5w|h8qgigXt07Q8 zrS%(3eLQOUFVc(*U(PaYEl>L9&RUqdEoq;?ER~P$daMBLdbVAx4~dTc?QjyGq$W|8cQ6uFZgGp;0Y6#{9MV8)lMQI5o(zERYfFz#hl;Qe615 zKCaAa(oFKS<%~Xmt&tgAc+GUs_m^&N)n(c#@xjujjY|o6cGJdGcpJOzcEK$8#a?lI=h+N+@BOl#C1EygMB~(r$qga&7L8HEtt{U04zhCV;r#{v3vLu>JEx| zZ6&LkEMU@vfR=;q4w~JHQiQvL$ZHujvQ=|Jl@6z%+~B8L#>1V^+EC}8lWll5xS zLTIz@*FUdX6VCO$T#bB||5{;AzJN^~-xCuAU0=Yxb20{37DlK|V>Z_&&n1b6?8P-X zkb?Z-3}%SQWGG@W<*?YsLrX}UGAe4OXVULh`q@1G9pMpGmxrZ2Q^Nd0thR2iS;MQu zv_OW${}Ly9o-4G7aP>~aX)j?xG67RlO34fBh!l`rFpd zWl%QTsLh@~2A>wpDj>N{iBMD9;7iU$Lr~OFk(Orzv-{uonq%ZRUFEtxrhn840OxA> zisd%*J+1Yb*6+8N{zh+b4=0%qiG)|e8{O(G4R0yrDcWpSZ3s5}3fIt~gG6f8vX7YN zKyHTtLczB^a4gZ;Z!)pH`Tv@#c@hbbQYarzyRyO>iWG)L$khw$se$X-MRS7(9RV1g zcV052{Q)jWqU@Co>9Qvr{aDxtD-EV^q+)wfIAHXo$>inyQQh&Tq2ykV`Lp>Mh5aaq zDDNPW_J^?b>(}Lb8`=Sz%#&X-VSHemxu_H@Ym7yYSd^<226yWGs@p_ zHAUGjx=qRTSWhi6J)gC@HQB^0v%jS2z8*^5rYEUE?G0kqt0u>JZ457$&O{{!p#W-q zD~-Bu@5zy%q;yE2QjFEJe(7I(_5D_7<+EIV{7l05p51rabk@381f=#@%zXYB_L?<+ zS(-GK^r5IQ4!IcQWlIlJipH&bx}+e|ZZ&46s^WEU`+_hVI#eNj=@vV6OSz>Y;l> zDW}D4`L;IoygMdTX$~`k=}pv=XPYtQ>l-&mg6`D!sfIaXN>e0aWSV!_Z3RqT=<-@F z>~l$WDOL}+Hc?ByAdtmaU?#o{waJZmA2SFGk>?w@E-?!}4}qq1ijGAnv|wJ>)H*TS$snvZ4B&VJq}i zQ~izvBwQ(IUu^9J)!(iYN;Q4&Q=clmuWmb8@Bz=nK0)o)BT5#DGB$D3_M{l;&(F$V z(R%+18JF>(HjxS)AT&Oza3sHf!E0pnR|y_~@>aH>J&8{T#KMB!evh5xATHRdFdv{^ zYSrF@Jivum*A6!N#xqbLc~=`zaDn9&J{TV?ki@lgYgpEz7>Ieis>U$w-@=3AyxB#L zSrf@O!r7+*6zlur;)isZ!{R5&Oz{r4LmPv5Mk%X4--r%A)bUwSlKI>=+cm9il8kG~gNVl-fe3N=aH8n)=p8ZkGnK8G`MPg4R z7gf@cMA_+{?Z&uH?X?_$zXxwzTtQrEc5W|0fm#i*4`Hj%xog)OHk!O3K0Hkl;cyh8 zIj(vbAX>>#Z1(KbfQtzeYn9=``om{?Bz_MLGxfPX_ganB(H@R17^&nOD*p2PEfw~} z6~O4G+ubyOy&G8!Lv(!F}m2D@41O4&3a9z zIPN5RD16>x`_uY}i@a5NR@2)v!X{ew^B8NPLeF+2;=QeINa^7ZXe!62aEiGoUUkB& zEQbv+-@BzumYo4@pHa%@v%&N!w&pF}eKff#E>l8;TL}Ns_vZ)lPe#|R>RA}_?c5J$ zI6o#Qg=I0naLM>(zoA@0*0O))mv6sRnf>L&g-p!y59IY|+>5;ZkIg<8TYL{6rksvX zYNaJBWy4?NtEP|e5WG*9{$wbU_V}{?-A}4FPZBpLZv+Ci2$T=Hmk6uAB)lvPU zwE|ZEgAa^D4&Ej*4`W?UAHNWlht4#Z8=nMZWr?p;NgaAuRsYd#K0f@d7W5>>1x7eE z;XjkCIoLF#w%4>40^aWnP^j?2WUv4 z&jvl)&<0O7@z!Gx!D`AKbp|78GMU7uAnC}>N56JkPxd>#Pp>upS>+&8(!&oJeC+xh zMqy7E@$oCQrLdLkw&bVX&h(AxNtq|b6RpvNMxa?OhpP#Rd~56~6Xw5u#!F5cXRsqF zEPOqBp}hw2m5E7p+hhO4H8?`l>{N=O6xxmf<~A;2yo#P+IYQ>qh;(*bn}@rv?Q}G9 z*9C7#wpDM7(V+e9=HDalAGWi(ND;Ri;0b3~`W`(Wvab}BewzCujjp9vVif^&Vf^N`d~6M}v`xLa_* z8yS1a3j}$CVmlCV5qGBv@=ay)(04y~~4k(iO zMg7FT_W^~CUuEi}QS<*8&cr#xsf8y)c=4}Q`?@`8wZPUW3PB3r1Y)_Vj?d2K`t(}= zM1%=HDkZZWP8aZep3=;34PWPX$_^h_m=M%5`e-*gjIkZ(XsOYJq z%V~}8x);9^$zR()H!6PFlP}XcUfTTn+b?#e>)~{cf}SKDxe6nF4?K0ltPHN- z98;zreP*;cdeT=uaG}hgINM3w{*av9O5$BNqn4xalgcUwW|^~?voFTMek8bDcC>I_ z;lK;mQI@s`nO+81P)WX*2@NqL8iG(~P)Jw6ig%_#YE&D7dy0*(IynOlWqfq}ZQ$C) z^T24e<+zcYJB}`9kswV=4K^U_Fac?yr00Kt4VtI8y3WFf`&PmzzLb&0X7=IO^M&YO{)p<{Klw z&fRhEAg+n=U*Ib~M~)7G>oe~^{K=IY`+bAa#HHwiTUJmGWVLCS9VaeDGP#@ik#xv} zv;>nWC?4IUL^Tt9GT!gDGh$ii1!~U=`ME>?>Cf_lVBjB0MJO#rWo2Cel2y@#u4XpV zfcKeo-HU-~OM^Zp7pb6IF#!wXZY&gxr6w<*p$o*NOZXTDHeN_bdr+@^I+C`okh345 zGV}dSFL`zxAr^dk>6_a9kzG>J2iwkM{MQ<3uOV;b{s}~A;S-y*1{O#4TIAWv)tO8`z@Rkjh1(=a(|7F+No?;%q#v(v?tf;KiP@Uro$xyW zn@D++YSh1pT(?x#c@%iSZOd5rA|W)kuT2nY&_@dQ;hIxdU%k~{k~+H~MdrV^+VNxY zDgzI=m-j=N7RJiwIcM|XF3Nr5tG2KcWAN#=@qULu@LSFA=5vOlyQ-i*#GPSyIw&{5 zBWKK`?&)o1tW_-02aXG&sw&-SjqrM}v&pY$vfjm)&|S4`>y=p*h^sC{@qghrIQMc-*;=u~kVy6tnAw6HO@9Q-9W0$)~V@CujX{BXncGID5I z5`luXwg>B^1$@#r3^?@^#muj~bo*1)r3%VH4q8>i2s~T7FoK4Bj7tdLgL3~K+a{^= z0fc`>Qu_RCty})Png99Ce!`q@kxEV~JxB~&Xw zPH5jYx6*&B6aQRsH~}#zPe6PYMp{=qczm1Wz=Q!s&DzSRL~S`)l3EuqE%`lNDl{92 z!yj!YxA^DWmws}NGYaOvRkXC?mzvbaE$Ly|B}m7xj|3zL6tU&NuhvV zEV`egYEdQu!IZCX*NMM?lmZ#RqPI19*ha5IqD+2-w()2YCex?Qoy zL%qF~7wPvuCpL#SN^f77XXLK)IpCfMI^r|=O z4>nm_ns2kjcum8gU^M_=qA6A%V{DUL@Cr(7T~Aez0!h(Iy=1;Tz^2zd=xD-?5y<&n zzSqZd{M#T7DSiT6R!t3XU^P7HNO>Y3n zwO_H`HVhzs*PKp>tG%eokgu8Eg)77hwuqrB*#ckq`Lc5Og4!RrS+7&EjJD9maa>Uc z+HKp6{8^U1`*TFfyah(>BK*d_X3)#hfK_In!_mnZ#`i>YBhISzy=Gor!{WBWV=mK%gHWLA>>y`&QqwSe-vjT)Xcgciq9rGfbpv)7xjc(GhrC z3xC$;(+!zt>!))2s}wEm%dVfIj0QtjxeJDzMyM1Dbn7fvg&*ESp8PQpus4}+%&_MJ z=4ZzckclS+hL#71zk@yEB_j1ay4FWLrmxVt!Wh7hBhu3sjVK$!D(`OBD>FHFdF=}g z1@StXBvehi4g5i}tpsd&+*mo=IvDDa28jkle-h?4?m1B&zIkc+T<%JYuZ&aKDE)s>DINH-uWH#(4^^cR7}4~>rdG2(Ug#uvy;;O9&dX4(Hkgp8ggc&5;pnt{JL5$dGkiDK>KsaEC+Ja2n zED6LrKhhhC=r?ccU14!*4AD39 zWla^7dvV!(%NevT(AYW#|a278acG(a@w>B@Uv~jq;ux?hH+$SIIe-CF#^gzRF!+<3;&Q6=+dqcfkk@A%mv@Hf&200C9 z62@CT6fsC>t>}t{Z=FdNCv;S?h4g*tXerkXk9qjHv#Xj=%P!uTEz-c;t z52wg0^4@~tXn!5}uTMyQyv5d`Y(M?}FFYYpY<>n`Lww7Um#HN1UZ9inb|dC-Hx-iYDP z3L&N^v2nPO&T= zu0`zz)h+YxXH{2^w0i!WChYh|p4aM^OcJt3kEAc6?V9}YF4oU|?a|Syxt-ec9l10M zDw_Q!ov8fDw$HzG4WeiiQBW=ol5od1ZznO4z7Ki)v%U-qnFH5)`S~*koU$hD-I|cq zF7EP11L`gsw%UZM($>&RqA3alY}B6s)>wt&9RuPb~OQfoJBTbi!X zGkAufQQ(214;c+25fa^HHjP?Ul)X+D6}_(N+btMiBXS>`pdM)Pm>93hg}GQCOdi+D zVkY1EIjkM7vM)}6J|zHS?P^GqqPMy&U>vY3(S)f=WW<|0M-_Qzl;DU}!9JvNvL}B{(LPe`$e8aF6B%iNSfGp8S*@Ln&dj_-S0LEO!rSw5 z`LK+a`2&K!&z2-9CE9!PghE>KM4E0=cKFUoO=cl~z_{gsZo9Ax8|hZqqaj{0e4d?F z5nS8V;Md!ftbv;4@_@k=CxuJ~J95$S@K;IA7p681rm4HIR>7PcxbUnRv~}qNBM>mr z(_HWlO~g$YzU==1Y)rmQF1mMl`24{CkRG58JKvcsJl~ov&Nb4Nw5GgX@06B36n_YP zCS`J~ZSKpxXjZA$o152!lSL|StDX#(Rl((}jb@+CvB3#%BiS++1cpLBm0f3{4`~7#T zqX_jx9Xr^i%9pMKGUr!rCe(HHN$30Vaa4=FOuUu+;oippDRGfPzNn{m>-!?WLeZu; zt{ce(b1qmZyT!)b{ykNPQ8$JQ_V_q^6VejX|zd|g0IiLolaR?;rSY4azF!<@$% z=sMbxgo3+PcIdg>GWvS`SyX>>1M?Ttzw8*S zN;dLbCfg|OHP-X^CwJ^_#Zt{BKF}lUsR#9Qb|Ls$f*NxJyZWDgIufn?eG}hPx>G=H zH0J1#9zOS+F#l;UMF+Tq$XXtUF~cR}^Hl@}vA55!{-*)H1!Bqjs>4?AE_%ChDc49R zgGaivtElwTG%12LgO+Mwi4M*yR;Sh0EO8> zC*l<9bh5zRpo%2qBWVRxmVkK1poo^}sMf(IsyH)>M|q#`8Xldf13gMRPDk>PT_Dq# zQA-)>{~ek{oRb?rjO`KybG*Wt%bAP!S+qHmWVX>2&q=%6dGK|D|DVsf+Pcz$;*Y{O zl%k(Kd(QbdiP!r_o*%*#4;Telm80k7?`^NZeoVR5nU)&I#mKnXT_1C?|K+mQYBdQV zBi29~-Y)NAe|eiiL0z-IeH%{KLodw27H(OEjtXmFQ49+$5R!TJ8T7{c-QAn68VTyF zRC*?<@UFoY-#do;r@(gaYSjH40Wi*ygwyd_2ofl9%s8JIn*O~5_FR&=jnVjqw9bwP zrKz*!x6~iiu3K_BKJ#>25-Gx1eJ+_xE&(nCFYTvrIP`NpEC>DU zOZx#!f6jy05_rLKP4wp5)REw+J3#Ksx~un<`u8IViO}tZ?^%YW?h7S|>Tpwue7Cs` zOUi}qI=3~ep>GO9-|h=D=?8WR&CilTwf)#wD!>~nuM`CcOl>vm`l6!f{E{?I7x-x zni{<9tqF`mP)3eKXF^a~w7aN&aD&dGU$w~E!_Q5f+)ad&rTHAnY4&uofWtsYh_8e= zGxPB$=Ov;($#&eJr)v|ch3O!6CqR`q_7XDfs8l<woR5z3{2Z+DBJHiNrZku;TrTqC$Z+jlbYo@h^9LT*T zee>qckKZSO6wD#FWWVj~CDbjUDgL=Hb_)(gI+>C8>KoVFSEY) z-13zBH0?BH(*32PZjk(7+rh`@FBQg+r zSgkUR5Ytl$3$b4|wK-o^8F)OtwCA&}8wzEwoBIOye5M z6+LqbhiW76=Zp;72{!1YcSKgsM~Y+{W0>I-y^r=y=^tsa^7nT5i9uf;KA)MJ9$aWI zvi-EZ!np&iwZWa!I);=)_cvzDcY-_)p5eAGje(_qwo(bUZx>6Z(N6MXnrZ_@C-*sEy5IU96AAGYt;?ESDx?U*ecEJ>_=RJs#`-O8A6 z8&-+|KEG@L8C?6xW<}bYH|IS5665@YY_sc@Wx7@LqL zgKQwp+8TM2_tC>r`_h8Ht@CYp1^@h95e9q0-i1}(w zlTA=fivvEB{7q$NEhTDp($wR*<;sb4{6rtZM>~+1w~^~O|6Zezxd7k`3+z_F+1qR! z|8L`e7_UmcM%5WGu~|cXJX-<@dd9eSQJMtuiuJDarKkAF26aWo;6fJ_QZoA_Z?nL# zdRojz2Dzx9oAbI`{gmcK=hv?TF&gI~;YGuna#!z)kW-&4XPmoyd4QSrb{eKq99vro z>NsHjY_7`4sT_g&oReYwewru(De{ahwuE(fc%M|iSm36X{TwhBMd@V>sd9e^c;&)ZL^^7$-ottuZ$qx-+6W^M> zHeZ=i)y?n>3BEWF!@P0dy%eMY(m81SOooIo9TC-=hp4_jR#zL95UJ{+n?f+bZ)z%m z&aY_5lUFp74E<4?y5o{4&0M}w$JIHlP-A)*?cm+(kFP$Wa>Xj9F&;wq^HO;@v2gw> zh987&&HtmB*m$Q~I32c65PJ5Tt~njJEE7Xdxlp6+rcN*=3k!9|ca>7bne@dT?LMRv zzg;&7@}1~3d_?nr$@^ngs<|QK8qZlj(X7p@N#;D6xO(QizG}Zs1r z`-us%%iIXhFX1JT%HWyrb(%l59M_+&KFv$8Bfsh)Me2=>j1`#Gc*?*_4T@*6En-2q z`Z+0^2)um=YwO&#qZlc$%F3+*7@e;F#2VT42(WjOPo>Tp|BW}Gh3!2>?D35c>13<< zn87@R3!Q-2JLQ(S(dU`-0X(96l(clOTJ6>0>w;67v2l6?X@B3>r<}HXbmS2qPgrEZ z_l6^{7tlZiB}Kzks-o1tU?6?-%em6hVofZ}UPDX2x}iv|st|9VB5!*bG~jCzwa#(r zo6S=)#SoEggyX|Sw{=O*Q|<+EAdl~?iv6$WJ_4wN$f#x3@&2dFe#7EuY5JraO&*)f z(kwbd#-BCU=KKejf0A*es!(CnX}w|bqgl7}4r1hocH+#c#M01j)@Z#Q4!qrfd2|b7 z%FEpT39x!MTl3u@vSW~?26cvWKsex0Vy0R&@tiNKcWN|e9=)yUYs{SXVl3bp1!lax zuA+K1(7YnsnG9s$@8_P z`VAON@bdOJ-F^En-KYFGMATj9407_BLJ?`kC%kzb$dJ3)1?S0@_U9&0k^qJTAXTwf zGp55MBVn1j6OvQw@hXt*sP~Yff!EbpI8}VoBk!SPscX(UtJga*Pbym>eQ$O)EMyTFT{Ol1NO_v)BPP3<@;a7gUmsh=8fL= z*Xu=BuS&PK#gL$nHYGcO`)4kGC2{2}`t8cal9G$U?~Cw6-hbU}na9rl2F$gIPy)q_ z%Uw*8d=s7`M+t!u!dReiK^@mNz?hsYoz-GmV+{tgCo)OkAsbejME_J9ax=hxS1+C6 zR9m#;Sc-id*|e5QnXB@wf0k)($pXw2b@_*=)!d!S@1-P9bED?C+q2$Qie4{hEGq-% zrmS)8_ove4#bW_A;6);eIp_YJ84b(I17dyq6JS&UQ!3ru6qf9%g;DNEr~1jV->!LD zM1<7Ia_x&Lz(Ia<2#L_M;Pa(&%|o-mh5h~C1@t)%IjZh%&R+$7?V2+&GwZtD73NBP z28MGbjn%m%DYpnn6R;$&XvVEf2&V1n@L2%VmY{G_os^Y*rtHF`>QqH<`4W3VqodVQ z`sfVe!s0UXm0!@vz-wWrFip*eU-7sFP$e7zl-y|fUsH(kBf7|`opNQE6uvUqb@j*n zefh=+kg6&(5WBt(ZBH|K8?HUw)%^ZV=3>70Nfk`;*$huCYpgVK+}TV(i(ILh0r}FH zn>C)0q#MpFyhHhGMA8EJ{nsy!;rM}1ZA~WO9|sDpXH2-#3bJU^z_H;kTSenk>bn;P zBD!a%%6I@364hBz{g?|;=)n(8{ke;vBX z6yN(JO6}GR1DJ@`XMCu(htbiaCXh(z#1)7PQ$L#$?x$n&JMB1|Hg9HwAg5e4_ZI&u zqx;KRC$Q+~Xg!)iuk-^*6^13Yb44Nq9uH+q{;^rlGd(rZ3gRiUsCwfZh>>Bz1Zc+3 zW~7I%OSqA>wI<;%bJF{9Pktq?)q%W{;I$dEU>nK%l5X{f^GDd~DFIC8*1QKZJ4R1{ zGcD}UeFV;}0#Kbrhn~8i|IXcv_p}(|&u)!1(e9eWYizJklqTulHYcs0)5h}&NrEp- z`Rv4mcPa9_P({S6qkYR(_v7^!79F0n4QsD}%w@Kk(N^fv*gFrBIXSHPdo#)7E(eBj~+ zZoBDyai(u1DsH>%%n*&<=}<<^eKs7&ySq-BPx7tkZC2WeiKp@9>Qj$nV>8h!I+3R= zVXT}$Pyhk7)R3 zWf73Z63M$KFKa*-*W(wTj;(ge+WCO@XiwWw0m>5pConV}VO>{cbSMPSA*2`c8(&_` zsp!+YaOloAZlzqa1ZF+;NSHqTWwf z6K>S;Or1d(b2sZvHjl9r^~d;m3bw@s>Xbguwo@a_FefLy$`M($mb1o0!crM_wz$z+ zOMItG+d=R*Um%vRxLx?^pzveS*&C+kE6JOlC8j3}jSPF#mLpYZ+wH_`8)tv}_@h6R z6))7R=-N;M_GhF3a1Y8_8@>O6A{KxFVy925%wWb6icXU+e7G59)lPm#A1D~0E8#M< z;%kubiFI?{DAsdY}bHA8sc|BSH7wuvkG!no;X$;}ImS3Wf6o&tz< z-h^qp5ZJ->dr7L6qc9Pp(E`1sI;yQ)L<0L@76wER3>_6V*|JORV zn!y@AkN96;J8I}%LjIUew=HEE!y-~VbG1ekwS0y}|JZop1djFbHqK)hiU`OEC8_i( zvL*LTCFV%~j#bn56&?6m3K^&1kI@HSA^WAgqX$`wwLC)DRZV5JtqG(!*?_JbkvmXm zQeCL;(sf4JB>UF%6L>JeFNit!0Ne5Ki<*zVH`1KE{pXJgSL)xWpN&A8e;XPH9PLg= zln<)~*c_1N^k16OKm~jPkqpqX`2O_3WUWD7&C*q0MW&mfe-(lvED38R*3OZP4D9I2 zX)Y_Xx1Qr8-d!Sr^_Eh2yd{?IS1kCT%vS^q%Gwnr&Nxj;-y>RVKst zt{i5WKqH}RSLI?Hdr~nL23c;A*GV@HFGS8BZ{nLfX_D=W*tZy89DI#4D29YGn*z(y zdQ!Ch@1SDX2vFs{j>;`b1t;Ikd>J8wCjN{l00u2Yhj=+@gBaz$%9~+B+_tpRD}0i4y;ig-erH>!00e~3{3Zi zv?1Xsz@nJLfx-W)n}lU018N(Q48OTK3{%2tx}3*Zj%m28^m-#dSxgm5lz@EPEbD_3 zwW-IRLQw%^fNO(GMMb6QK2ybQ;y4Pbgbe*MVJ&WiIf<;U^)}EF^|_t)Cf`se(&&5r zXdv@_!HOWDYYq>OdZc9j?0`yUS(V+}JY6Rk87bwC(C;z;N7Wc>ovClHw1ev+9+>~^ z{O9$T#&7c4uFn5fK!e8G8Jhnh=qo2cCF%IG>63Howhz?J5WpzO2JQF+9)F!nu1=LM zm!E*q&^V?k6El7HM;6umavVCJ2gD*26^Q%_I*@W$sgs3)*0I*vuas-cinK3H0wk8m z=6%UL`c*sI5_QTFpb~1q6bn1KtbE-Z59!6=6esVqxpD zvHG(VBh)R_Pt872TAQCQ{dN}@{aTQ!WzMai2G8yqXE4MD}q4L3tQP*VaEYB+1;_bKPaB2l_ zyeKeVA(bcTCZM zoxzM?hcYNft-fLP7}Bn*!e5ry=Nne&+>*=*t7IHU>kj$?H zXaqIMb;vc719JS5YR%i9s`0nZ!qry8?3E zkwcjE1mbeDKD^RCCz82uSMg78FymFxt6z48nN=kQ*CgfasnQVRx@!9kUI~oK9yleY^oD$o{9nWx!n)=XS0=SCt8M~SXx;6 zpt4UM+X@wSfeG+HHKpl1y#F5bu!-{RuCC03zMn2BjiaU&i# zP7##%!zo)Qzg~P@hFUkq-n0$YRV405xS408BF!FvY9uLa{q>gBC`ij?AJW>g{9{8g z80@88oZ%>8-3r;h8F_IJ?{vcUkx3yZX8**cqo|MyD*YExSrQFi_=r%2aYbLbmv-3G z#S!;eJ)K3mhWEdj4bGs!_xtt0J^-3iT)YUp4gE+!*sG3Co(wtu?(``^HS<~dAW7IgQOuS3>=2q z_@2(gN|0TQfq`I$HtcFpkYYba*IPa$$i^twrmy#xK*U>0TrEXYKWPm)EPS)FCSjv3 zvQb&lwg<(|f$JcM{1>}r=d?w(%L-gkpo$aYP4$EdLZ!%1uYDhid?Vg9A-_Cj=x*WM z_A9>t+*Hrh-cBN21tI2!s{EEkhgZUEVvrw)yW+%5va{U|6z)C;zGaws1c`bj9tMWY zBp4_yE#)6uoRLNSk&_Q2G?_2BL~x05+AETF5$7zryt?hzG|3{*!`6)C^RJsI)Ar*2 zbz6oij3inZ{^w6g2rpQYSz@5NELE8#B~y;yJ@o?^xx}#bw|3Y-2@WNb&=ZU1ukY=1 z{pm^_^O4)HHYY^6Qn^IM8U^SQnz{U{jFj80l;CD6ZsV$rOZK|e2>Q#d#h~~orpBLz z_fsIE1P1V;5^0^%h|5PC~@O46MmUw>t?Owwr05~ z-aggApL|~U+wibzC5q^>9Sw?u#DY&GRr%Ktg}lAp!vm;+mae6z^V@s8QnErT-nBmJ z{ldla*C93daY=%T1DpWPd2IpLz4F9%hn_xgD#_P(85$ zdBlc%jmYgaO5hodZLZop354%u285)7a>|-qhHF#!t`#q33MEmG6-{l-xE4;Zq@HFH z7r$nbQZ!m74ehNG6GE7v`ve9b)k!FB=5qF;hCTZF23L`^rYr$Hr7hu8VjbGz? zSGRa=KfEL}@Wl5?63J3qHcgJ$<(TR>=XO*&W*-c4Kc{6bVVzA_xd%!IeT0YR3UiF- z=Zi}kW|(XDXTPyveYkAG*ZVl>k4fSSQ7!@tG{8dnyOh%mDE@%}3r^kTr%d-2Ck2^d zTpRB^f4E`5t~Aax6RI!gf~m?LqB+RNbW7q#nmRMV^i90VB=B$gR#9VQYi66PaO=``ZaMRAAO^oZ#ffgn?UQ3 zQ>-#mY~Fo6elhNNq0rY_arSUiU#cPQZkqJ2gQU?S%G|fM{f4x4#L~N!N#%{<2cAdn zW@HIv$(%FT>%<{TTf7VpVJELdn5bL)XDqlSWc;4!29>`EE277(W7S)J&G|?-=u35D zcGW*dZvQf@9}hu5Ad*t-DfPxAD=JVZjJsVZTPx`CFHP-GG^Cfd$D3o$l5v$t->k&Q z(a-|}VuUj0SG;#|X6au@APl-h-~we8d%U4lg4gbh5BNI{F+|0tYg=1K?{ zwxdwCFeJO`+58nNJM0;b!Ag~vTA6V+s!+;gks5on41ns*la@i#_kXd@J(%+Cu&&Iu zmZmiAOrV$TiU~ZrfGVSw$s&AaRcp&}&?g3BWOFrnz=bJ@E{D(g?`pbe! zB1*>(iGNw_@b2#oH~6@I7j_e6FPqAK;AS{CF!E8BT{j3MP{ltpp#-0OW=WKMk~shs zCB>G_ZSltxbF)(2N>~nfGXUNkW29FKMy+mHZZg%{;b3DlGz56nXg-md~2z zJ>T^$5an~NADdHRk2e2(lv|9U?SCI-pMv9BKX8kDbPQ^AD!jxOyMU6oiMK%6II&nh za`Gr(3y)QP)ve9%)x(oL7Tx{3>xR|?mPA*2cCJ{>#2j&mPEa?p2^v%MS-#2Eu=HeX zyUf_Eoi2YpzSHC3>{~LF`fN6b3MYb03IPZT^z=>)6XWx9{qF0%ya?TD(1f$-#P&sP zy@mt=^SF!56DP!@Siw{J=^xo0-6|G|c4||U*fRO)$3-AuI znwISPf4##rtdPGiTDCE;+~~L4!~9Kah<=`VJw04boxwowZ0&vP=M{$&-=0V8=K(J^ zufHgrtv(QjTIIHygpp_JZSml5MMr`~as&gk&M0st5OgpkN(2~wUpqRF*1*!eom99^2-f=xI7t66M#-Qso3?A@Jcra zJFDygte!1D*3E2BSSNOP19Vf$t#tj=iE>y|;1JDRcUL>Vq|{3)TRgF?mKp*G~8&UZV}`&3Eq&Oav8S_u0WbxCn-{ju_4~ z$06?+vihwyTI~l5YX)eDqcg3+{GvJ{f zs%Vzh>LEFLdit$%h=ZS`03pzoMl>g-)g?T!eSWw#A=)Njvs}vESzBeYau#qKIY^bz zS*U1h<|Pxq2@BmhB3Jbu-be#j!|Hyjp)$JOBOUZGFfILmJhIFfofu(=B@RVdoR(aE zuop^ykP|9>j?4K{^nv3Wv-LDNkFi(xip)?8^WcG)lu3urwVL})^m0=YQDGQXhAEmd z@lDFp#p56vE`C1T+@Go4ah@O&PUJkQzIsc#-9CDdKZGKVAg6@;rG2;k?4}lfJ;PLg zs_v1CE8Y$#$nhf6V1WW76Ahb$kw)!os#1aCyl5^?k zlGn7RDVFE#&t0>qrt)U+mjvQq;W|A%UeD^-FN~#ge8z87U?Kb={6n7#yZrS5$|r59 zB|-hq`;KN|lo7$+NO_Wh%9JATMYp0~#r5=K?)%zy36H!udTO{lC{Oclav%aAFGi}J zb1RF8Gc(FFFi}7iv2Rwuyn2OEO`+b)Xvf)KZjFL8#4Bm)yH;Ws<}?XGUuR`@8zpIO z-e7-@ViJqU| z3av~+#4gw%=53pQu*xu_GF~qpAp*KM{bH|_GU-82H}m8N?x<-*zGQp*lQL=3J1Hlf zzW%b_vF*ZfDo`*y3LM_5Kk(ftFNikLwh%FIC~sK-Oe45@F)!SsmBhw@tHL$RjRolZ z9rpZ|uVjJx#BJB6tz^5buWxzz42{BiGLfufg^~9a6FX>gFF@ZW;d{V*d=RXWX*2%Y zRT=e&ws}d;;ghD(og+SNpNW`H7l3uY`Ut@0Gg%L9kL z7WOE`?K8ukQ;$#=@klY24>yo?hze71LU-qP# zvj-yLtbLj>e`@S2e{GTAIQT_}Dq|0!HQKEGEa3(|bYh42l_~KcCH0;weK1X7GqR^QI^eL4^dl_> zjx}dOR(SFccW@bsDdf_Ri9)BPjg|Ou&>spavmr-HG1H`jB!7;)9=`@(48+hvNL>m5 zt2W$^ba`2n{!6k>x!ecyGi8LIacCJ@niyl~grj#36T`#7zOZdEB{=#R9+}y?^QXOX zw9wGZJ8g{c&}E7H$8TBER(0Qa0_lsW*vx0)|qfoC^F);t#xKajI!#V{L2u zn5$2-McCfwUru5Y!vO*I%t=gpj|n+RGM+GCbnJsswnu9o5(t9w`W!pT0>M2TV~V;w z{9l5?n_70t3O|x{{9gu`cE)Rp~DiGg;{bJ1C zMC72%+T%Z&_w8#x=wL1Y@pYd>Z=FjKj*>9%S-aIlb38-meoo_0fX8l=S+lYhg*siw zQMGf3mNYHm_aNY+d<{f7ez8oWq2UaY(_#bSUqYZU9d$eq^KNho{IBr>ypoqi;s1M8 zf`UvQ)C;wSD95PCCR8JB$P9Z^gQiIu_FThNqct$SiTP1$;gjY@xu9^e65|t^o0vcd zFNTC`%A2YjC*Lw9&lS5I{XMmvxX)1^Y!xGuJkc1aHFe}AHYQ6i8VN!ClHUv0jEB=< zYK+mr zCX70e+{Ez}AqFo!b;BeOyQqO3)>OXYAPU!KHR%#>4|lp|?G~G`i+jjw7n*6ns;HgtxoHGyhBcWa?lVGRZ!fia z?W*s8QXyAdGL6a{pabHNu6#D?#GP`3;h$R&*C8NH)mD_3m_Ab*<7*rfG+r>0nB49s zbP$yBkl24AUg10M&EzBhR5K{m;(@!SNi|WKz9Q60X>HKfBH)_Sq5~3Xy&7?`*vrlw z6ys47{YpSlfQE(6Ka{%X@O{yfcd}=)fL?|o+dTW;r695BF(6!GI?o~%#J4Rw;&s5D z-9CIc8-5X&|8?uN-Ntij7Xzj0aNh8OD}hzo+Cts+OYHl&$F9M}(7Vy!cv%hDODEPn zQP#5p_}+J93_`0tHhu^5eI->I4A(AmID@wI2r%v59dQezVf-*}x~|*Q)y1OKgE#!4 z=!iUsUkG)M6>g3;$;h3kiV{h+`R}&dM~5Ko5bc6G?@R9n^Pnb0+m@x1VV^0=BZ*fm zzDb6^n+L@=%~is@)DGw=_;i#PSE+0oB7caIjR(+G_u`3Silv5N-s)<}3&xPs^cx=f zbM=yt9o`klf38^TPd&Txw_#ggQQ+y6X^*VC|EcD3sYbe5_42Y(N2?gEB#k)l1Qz)Bp zD$Qt1AlSxvZDGjHQ`W%Wsm5RY9m(&4Nl2LI`*jwtsBcem{AzCoFyp0UUTtBrgro2d zyT?g!KtJNqY_F9iw@sKuK-7lF(ST08(75WYZ!W`7SS~!+GY<3m6) zHo<|>I^Z{lqcxaD4LEG|3QPYo!b1uk%~t^}YIIxPX5}D;ltC&6&!t@D;~I8u3@<9%sFh8^hn96kj4D?}R`#!+7<_Rb{G3M`%a%gl0%Gk${}sN4)ye z!j=qi_v+>>uwnQR5VU!wcAuv_*Q;%<*27a@3nr>6vJw7Ro!F9|8JXJ@Z?3Z#E_d$V zQ~bq98S4B-oFN~+6yf-*Rx7TcWiem(K*qO}Xh@~%OOz@w66&e`YjLr=ch5yuySG++ zHzVM49%i{+YtDMvDPDiL!Zul2N!M)Yv^Cq4XoBku0n6&q()d*mw70T<-gP8}f=R}) zaJ8Ik0~nQjc0oG~PJ4wX2)0e>RJO;u?I=smAwbuaPx~8d`2H7b(lP8AV7*<@*2z0| zT~+C?3@t#@V3W?a$fdjXrCztY{e#t?8&10&k$3_OB!}Jn!HIt^#{N9$xI=~{>;;f4 zUqs`*E-(E#mZHP>5ah)K8)Pr(e<6-=tj%%qNTGHL>e7SrsIiN6(t*aN_jBcqvJK=G zs>5B0EfZg^6Iu^F?WMpY6u0;kKsZ$Fen>hdcfnKbY}viI&!kg5#j)GDo4?>%fMo3P zP_N~E;N(O^?7?Oa+4Z+*iqA$Z{ALQ2`_`*Ew{;33M0oER62no3)%Qbug+5f-VBb$` z0&Y#jnn;l0u}fUs)r>8*FFZV(^$We zC--_tlzzFsSIF@!ms*fzl9~M-xFhgvIRIUA@^!kI;eBZu$Y18O{e!PLpn^JEFPNhQ zads)GuV<+SF=04(F5J*_8KhBORkLz_;&-&_RI{96e~^#dTWim|Cj`EOd1W$b-+F!@ z_M+@d|Ez9gAOUt+3~}zGl~0&lr&(TOYfl_2l`YzIw2B#o%gpkxYcHBA`3bUBfv_^R zW|->r@E@U+hua-hAjwzFNZqDR^}0~KZ`W1-h}CzYJRz;`aCv&DDQJ`UKKjp5NRLxZ z2-D8a&aSuUh40bAK_LCoZM|GC@K*sb`@s)-wUff=ECTT@X2jLRJv?;s--Mwe}bjUtiPBe~O!M2xV#>EkN)0(1RM)HW;Zk&MBA8MOe?dYuN7YHA*yQ1|RJ1e%Ez5 z_G#oXZ=Uuzs%-PsvG0NYejQA3&l{be8GDr>P{Eh2LgZ%^$mABdoqn`*KijESa9WV$ z7jjG<5X~G!Ncer%=;jSc0W~$}57bLzBPJ!pHHP-R(w5cmPe3-6l5^;2!>W2D~b;qBc3%ZfJ}T-DBO5U zI0N-OjKW_cd1as-ND)pas|T!IGv;3#EaCOl<&^IHGA-Y1@%{c@R@!a2c_PiRz^uaa z?7+1q+P5suvpH5D9(zL~8)@4r2s(Hrz~H4I43<^i7mtig9?|Hhj#9`bm#ye^j0Q`- zoh%%{=X!?Iq3ZCHlgm`T9m~Ex@#Rgz%YL`pX}8r9YO9`-?`%%ZjZ5GB?$6zh&gAY4 z+Ww5{ke=h^^ml_W6# zRXWl!$_QbbXz}9FO=+E#{XXwz&OnRQhJtni^-XT1n*C9h9xEvt0+zTX>a->L8H^f* zp%V`8f@`9!L(tp=o{OKSDvkITat(iu1z}rvrIsa#H=0GCYn$ov&Xq~_#q{T}RN>ki z71V!i*v08DXx%>TBbp;bfQ0{C;4+(41Vfw z9?5X*N^#8zOb@z?(qE3$1Y>vJ0eB_VxSwxTn2jQhSV5C}dlP**_Geq?a8&M=Mdc>v zodKgU2KzQu3DJF9EKy)+t3O&E124+ zLef`a^Cdwmoh?DG*#5SW}*Rn?6-j*#QSU9(?xv!zaS+ zJf=8E&MRbt^Sf@EQZkRu4VCspb6^`7Aj;$;721uINwhuJ_`taF5viE&b(n-hE!vpT(QQ)}YH? z!8WqU5L^rV>>H#03$#rGr?O1nZ^;igpO#5Rp$0^#%R65EkssX7HTrvXJE5Rn3#4L+nM%8rs#9mA zYv&kcr)A^2q=Ths^Xfw<64@ZUu?tF&5W6kpBZi?mxK-wRV^g z1_G;ZUd%*EMAiDC@OaX|Vb|m3hOn4pwQX!JXUb?w?&2cd#Y+O!>}M6n&>&QIMYaf$ z=DL3Lx_%VSuS)46?KA6sFRNe2-mUd3OIK(TE*T{?k1eH$&Mdt6FlC`gVPz_`H!0;U z0Te6EQhs0H9q)Yum>VbyjePWKM8+2n3J}{K+`K~=T&WK)$`+mW->mzWPk|Zqga1tG zSesBa{+e|WZGJ`D&2RW;x+)L&lR#Whji(kd`F#~z3h3-O<{H#0O3hW|Ks*OuNwJs` zoA$UUp*~!7%IljPlLm%dn3j8A28Jd97v(C31Qb*h2^%lG=~yh1q}E~ZV`)HiHkeqb zEIix;D}3Ldk=^B+%iySq25%V3Fsg!wn;`o$5JcG7;JZM##osvmiW7U36vTb;?EZy3 zTv=OW&W@lQzf=h|GL+hFh{vP!B~~xg_wa@e~Y}>}Ifj{xXek(l3w*0I1$6h0^cmokwRh9FhE4)VrreWdN6)MJ1P+uSY zO1zNE<*;0ywnRffSCw$;G;5#!K8r1XbqQ8RHBg;4Nycj5paYjbRZ8(fUc02#&bxMUj~ZnX@2BwG;)#eG)h1w=dA4`ohm3n$Y`0*u6jxjj0kyE zzKJqK4!_=l6OuGg7VM_E??C5jiEtMkVpNK-kR`c4AGhqGrwT?mN^&4ADr>~Xch1Fm z<~=O6(etIjuzM}*r6eYqaBAve1Kp~)GS&i!taJcnxwhm|MO9gf1P|!s8!3W5AA~m) zZku(hgqYfvKo^aSn3Pe{>TnDnWcKGU6dYS*6F2q8KV z!!InBd5PDI?VkYG&ite9!(U;tC{+IJ8P~wG|4J+DWnHwP;HbIyY;dwtlc6j8esQ## zWuoDQe=*&=Uhy)s4cqzE-YU_I9ZX2Uo?rwniWQh~8@={BTo6)mlF%)yi)L$c3SjZ*LE3DO~ZKHg&MVhCw`PDxza%sN(d92=Eeq7;i z$+wvhdIFVrWU&$cuu>VP7v~22SV778rI)yScF2fLHQ%T^MKgH zAP)z}*f^D$Gy}pbX1%cxI1HZpz34nFU3+D2D?fkRp3Y)c6YK-actxlev`N}!DTOK? z;}K0Ex!oBsbBGmuu;S8q(`)Nn;}-MBT)xik5eK&H2fDxwf}ZKNm#;#O@rc(zK!46~ zvaS2`=z&^>u!31OKgree*WNr+5wn7ZCgNIe$3LY+Yu65I3va-^D9{l!F{HZmlA_&Z zF7Qtm(F9Oq%6WDntG3EfXl@5=HqE0a^2zDj*BT4n^^t2onX3nk0{V}-HOO5j*Wyl8 z0j1DGjdzX$+X&FYA*{_d*8kAB=V40R9~{t=H`tgi()ELG4a8#}b6@pkP`!SYsPwg& z@T-+U$bivdcCaSn*tVaaRceN$UaF?8i4MfFKaL|$>Z8~YT3*cMMsEK#=`;Q)-{s%E z???jnE(5)K2L0zIJ!d8@`>qBx4q9LN@AJU(FT7`=x#ps-IU@ctQBQHeIF3GagUW__ zxGBtID|e;nbG`!SDu>~Gxsc<(g#w~`j!?PSCh?3HWcYZ3#c4Wgqz#rv*iF-x@$Is+ zIp}R7<$+*L~;eJYc&+I2ZxQ5oXaGb8u7dBSoFV0KekN<&?LNd29 zW~^UBc>rUuz$o?Dhwi&@n^aDStju!diDBLYI+$^1v^MI*33BHh8`^;e{;9wOxUzfQ z-|AWAVx8E3m)uW;petMrMZHLLAqG`U8yonEzxbL_@T29A_p16Bs4`Ixk`eX+TWeN& z=;fcc`4EDF`VTcpEJI;@1PCjYi1lX-=pVwxgEK>SzZ%GpER(esbL9mQRArkps^X8c zeqBv7V`$cqyS30Mepf!tn=;ge7)rP9?s-d*Z}n1jhPU@Z##<8egFo1uZxHcpo@<=h zSAYhGh8UyL3w|hi`^ctzalz&Fu76AuBRzal|5b4gNG3?he|o_Ew?ENl&Xo7tASP*M zJea|W`T%M@u-*Hn`BHM?9cFteizFLTHF{Aenf>@j2pyEHk!DTc@OcR^_M4(Y);c{v z#M--AUm&@GRU@vZ!vr(H{V_6v4Kr?Yu503OcK~=A32%Y(Kb3JHbh2WP@_;H{t48WF zVp^pY!TjA(Ce++w7kzTpSavlzc|zuGjfBrNT8}u(AhNfTw69ygou`SH(>n0sjg4_V zPs0k~BT9E~^%qAqIFxore!=_B<68|qwAeNCk`l(Gf``XqqzvLTG=NRqre=7FZt+sp z8R4EpMIV!XTV=&%>g{`1=_xzJkMH=s`pnn!L!szPR5S^c-KWcXX&q!h5k6Lx@7*NV zT^MWeBOHvq;20{|t~-K!tgSy5um8TczATw~vRhDM%<;u(#z&!`m-GuW$#NJ7jd}OF z7y#=lf!?;W!A}DO|6zT!{&Kd`*>ifv>&%DT=O5G41c9VvTEyJcj$iIG;=G$CP?ja^7aa zj98vGJFjNg=RT)^Z28Tayfjy(Fs)5^D9zs!T=8JeS3>n|kP{ILkY6??2-N9TS9f0w z6fE}sI-!MaM|&lrW8rW5;K0@_f?P>b-wr2!>{alYIC}v!f*2p`oEQ|EuDM75Nqr4=BG?t)X1rL}pg(elyH1r!-feaK^F4Y}k$t(wAcZ*wRAa%<1gxM=y z`0#n1b4*H1O4fxw7Db=B4IV8vNRxedAM~Nsbeat4`4|ofXdWn({!cS}9+s@X%%dcN z$%~#b_`nimCrN}bTl6j{v$e?^cyEaTtIwAv+VsB}i9kImliIn9K)WvViA~f}n07up znDGG_yJI6J!>tU;G6_;Smm8p}&m<;q=WL=g^IO(41)!3`l78sRyaJb}b4lz(T*PQE{{m#}nPDhBta2)ifyX-d06FSgL z{P3!~;x~vIK40i%o?>9>JrbLZ^1ckp^k}{gVhEPYa8TD3H@>hsTvoJ!dW~OA(ZR^I z_Nb!zAAtBzwpoV$_Le>)h%so72ma{&zq-c+r#oN1WOdUJj`QvZs^_*lw9ctIIdXY9 zw8z;qNs>38o>~h&pfmCTw*ClFC+50Jh)y>AKU}?qS5;lOJuDs44H6p>&sYN_PrJ8iYf4cXxgp@4e$2yzx;&QnUzWC2 z(=Ml#ra2VDPlkg1QoktPj85E!G5f|!*>=|{PMZNWUcjCbBzW(K^#Y9MVeDwFR@0#K z>7@PPllPO?QOBz}bV;-j%kC_f0h~)+Dl8cUxp*dpIhm3LnfkdN2kzeCVLON|HRM5; zlu50!K?iiP6KW;G{E_ym^l|X@ScNHyf1#afF`g!rAQbi%EoME`wd88G%kqR8h-d9$ zrr1EJ|8rBXnPx>!@qg7^aYy5qUB+*g2jQyeN=RVqL@2)2R93^(MCf4KDexYP>5PFOhAs5okG;{A&0bldpm1~V!vG~o#BjMs?Pt(2fHT~>0 z7I|?ar^miVrchy&sR6fkwZpfcS)QD2p9?{n2vbKd!I|3yE&B>Y4GzGy`K+)trd9sC zw`lF>9x#^rFVXwKhs5~tJWrA>vGC=TNwGnx0;er|W6=WF_y=Nvu@Z5|?|UGaI`T=0 zq=(Lu^VeTExSEIO+!o@bZ*u=bbj`!4#J-*TvNv7HdKE^QKh9hZS&G{FyKP{iV}wLCBGJ3V_@6dSBNcN{DForXQ6!8(iM} zDybW>B>HX_!P`9Xwq9@zqur3|G6Grfz0 zphX#Xu_7e0@i|ypQyJWpJwtJG?8aqAw5Ol0hwIxS+OK=-Pgc;Hw{hR_Z=eRCZ)1yK z!D@U+0bPyPonnyD7qjXxjS{3?5yjV3$UqXZJ%VSa)M$xy)VohG>hL9#;7P75q(spgm1V+wcpX*e|byl8cTH*YTC^z}6*# ztKm!g8cwzL4sd&Dv3z-?Tv1Tf9zfE$HAA`JAstz24Hml(tXPTHJnX0ueoYCW+-;#^ zckNFUV%MEYV|&4ceC0V}r@xw)r11nC-#1!TGk`EFx7)wKt;V63}4W+VeyFc68JJ=$| zn-C%@@ND$bO#q-De{Gs4G`MuA>-6!F zdVRa#a;&bgTAmb*Xyp{ul)i2{L4|NK}h@T`YL+ z7(dPf&V)0zz+{*x9QmvFfW_BILf)|XOKk`JdDW8to=UIA;ajl-r4*0pA-g$$fMo(? zjv$vqkDqoe0`$$xn}mg;f6%|XJl`WgX?Ye0{iE?SIpAcaw7G9xWKVwH6oNJk0WFa(y=a#?i0?KQE-qbH0d z&%L|j2Ta3KBaW)E9W*iz+B7IRFs;r#0cc^+Vwf>a-I@b4s~x>`YcaiaKf{xj1P_9k z$aO0jR%}PoaM3V!L{xosX`n~}6k;hPFiaXba&u=WD0&8MBL)3j7r$7)cZokrGdoxX zXYRvV_Z5j67=ZfPAdZ=Ji}By_Emf9FrCcc6(&s{Tq~z_c-SEMrH`BmaIC*6brL6l$ zw+*?b7hKXbB1^}%grPtOsrI%kQFCPpU-PLB3mBrV)@Og2ty6&lCIs(n>@<$|ou*Fa z3~tn0ZZ-$BO0+qatC3opt0U|mhTH&Oi6_ndqfiSs1?M}G-nK|byiRAEb2JgGP$cIj zsu~^E5X(8&1}$>+rzos&Q{~DE-vs+27Xkse!gW~Tv3mM$X@WtCH+SAR{pNc#OePde za79iX03>}y8~~`Vt);3}Y5$im85}mV1>y8=U;(y z#hOFu8Q>F8kmR0ES%R7(hwb~*%J>Y-Vgy)~Aq-`Sv3|Ce)wfL5^;exnPr4AF!(DR8 z^#*&}ml2;sfe;(IbHgBfM6usqVs|h6PKMe$*%z0jON_G{Nk4PD;w6Jo=GQXy+e2Mb zPm8^d1M%`L8M8LitkMnAvEjQGGzOrHm26K6R)-i|B5b&m(V8?)t!ueJwy598bLms^ zX7BmoiPwI6jyTWE*I4!CZ&EykBaZhd>4xQhZc<(nvSS(ewt!slCumT>6)E&0guUqj zyEnE&BuuG(Vi@po49oy4%$rG+eulScw_r7)vZ}Q#{R+pPBV8pi|AEAk1{Z52VCj`U zERuc_-yP{S`mz?zZ7crcb#!|aP3sx{y#uz;(2Iv(7|mb_w^6AV(8{?qCB=v08&?j+ z^7|o_0dWBUa;R1=v;XV7eWgOolzYGqhgwS)q|}!nAr>|Wk}qHsG+VUfiKSgH=HeYs z82=3wq}%tBp#zYKhnB?FFhtUi05b6sn!UmOKga|R=5eA9W|fZu?t;B1!F$R;;zS;h z@0?~?SfN8)Ro#RWTU;EZe4BgKYFRphxHZ$+Dk4Ge+_x!jH0OA)v_*H4t^hA-@u)b9 z8|}ZMReP>Ed4>K_Pv;ruwhv+j-SX6#!&94l@C<;MQPy1wn~V6Il;6J;*G*aF1e}X1 zVE0D^wCG#&h)7^TW)tevr4fbReLs79cyoP4jy|ulqryjtpiR41VjfpW-gov-N-#FU#R@FImG~PK?X~`t!fJ?Dm(|GS-K4Y1_6a9FVX-1-b2ODc6?G~$wMESKT*0nF?^IcF+v zoE4Rw(qe@95G4WBrk1zA>uje<;#nfdO4$v7^=1a17<<<0<(IbE(Q`_6tD5cCOyzpT zoixsPCo5+b}jnU8`@}sVp2sb6B2s)I{WZ+U=;n4)PGo^@QUC?UP+Mkw1OaRJ6<2IHf|C1!3#_MfEL23b3h_%liiK2Ul*kj&jy@DhKf*F%3iXS{`?u8eG;0 zY_1EN-c7p_<5JfiYx#Q>HOUf3a0n`Tm!p{lQ=KoKar0B)6 z)47Oybb-4$qOB;eOTIncM^g6Ou)X?`5pP|VEr`7}yP_lnS1Z&IfX7LRke#bQ<+ZH2 zmpzQ*rQeM7dCvq5~l1$1gaIiito_L z@?6>4;MQ9=5!0aeA}sV(=o+wN|9_^se}Pm%^WTYjm%ipgC+A#7kkVEyrfwWsYZn5s z0DRncu-dRf*LFt~9xMBG!g1%=J6=s>NMtg&U!gn5R>j3(W0jY}1$94_&wlmx!kUuA z?u&Q>F6{Jpb)n!yzM}Q(D2=gSeHh66%SGhC_3~r9DbXZ*tAuXLg#bLpJiY9~C-^1JKV@it0 z)dpD0Rg_rk^K;(rj=|u&u}ADp?BfH(r2t1gu@PRKAb=hR2yCTO7V^XZHoY$Xi*VVv)3>^KW!Lu(M#uRYimn2(tb<;I0S_=VB#UueasF8rm*h( z>kd$>R$|l%``M56Q!od9$&v+$iY3_etIq|E5q1?qmR>!t6|JzI`wq zv9xPGL14-iv13mtDhn97(a=2+JZU0qh$;yfhu~fn;z$9b_cE|DqbA<9sQ1#R_N72w zrnL=C{m#h^W)2o4f4)`f$$VLqKev>;`izO>KVWp3{+{h{#KxtX2Qw#9+-MsvC;BB`J4@SeWXmf z$gD67c#S=#;4tEv@K?q54E_3TZw+7w2(gQdI@=qRa+w9F@g&47Ym@NzWKq`fOx`0> zxr>IChc3<23kyB7vnf^;>LqK9TbZ!iO~H_Eguui#P)EYIYVB5p-79#Cc9}ez zwrc7pt&^gmeoC0}DBm&fKoffMh)#f)w7z=e?%;1HiU+Kw(tOXcV()BT+)y-4viJr_!OB( z_aF$6=EeE8S@AxXU%%Rhk0L|pT$6RnNEW@vVcc>l29c#k2 z<wIol_09BAcGGUm3gP4WWx(uo02XD)B2BUHjO;7aAPuILPCFCk&=X z(DlDzai&KzQTgMl^K^cS2nW7&Bl8XL<;!o0fv6{2YijWCZ9$NqBRO&LIBQuF{0F>6 z4c;7!##IgJ)EW%b4Jmy$X91un(#q|aCiLmM>nj@vfoT@ZC~)M)I6|MbTNh_RD(6|- z2`d*!n{$}1l}g3#!z8un{kGJ6iz8uVEkL_B{w8D0A2k$JV@h7A!Mv}v)O_`Ulp)te zuO4~M@%VTQN3_w8rhAN`4RPI&x#7KLTH5a0w@O{@H!i2sMfEPOi#3SLjNmlK6(?Q?@YNF820b3#R7!@utzC{r z8PuX46OH}Xo`P+i-F$;T2iEa;X4}hwD#yD^F7yCpVybGJYyZ$OhZo)4%MB#J!Q-T0 zR8!JYQ{rIn1JMQuUFktE?HJ)SwbsE<35{tF z{EodV7qOG|-X-mfj}n3SQwPX@~_wo&_6)I~hw^~r&|xr0R@QWR#y zE6FX6jc`&$oIc#uorBXpAJ;;(vwp*Po{2m+i!!i)-4e zNI_ROx60=6-v@K`Dn%0wo>vwe9S*`ld(->$(Jcs`t<;{aqP@nr32Rvz_J;h_Yh#DJ z^>aD4KtxEN6M0!eQBEiT2cQV$^q{}Og=~lmr2(co_0q$Y;x3P@Yyxo78yYcztAAfA z-F6E-{C5k$ISK%H$7#~m-x;T5m++^d9C1Ln&xqQjDl^yp9UkbSSUJ_XI3jIb`etmP zVbu~(->l&jE)V`Y9B}{EL9KyZqSjUivf$-o8(HF}n-DCY$kut~jfIB9MqO818>~~- zuihedy-XLf5?QO*kVi1Niw!O|b#Dtbb3y}D(Z1>72{-;D#^E|pY#AvVzEsM`p`JdA zC-4`R@P=*jK+!D^SmT7{mM5oZ^~?Ao#=o*~ro%BLndg#3&C-v%B!o4~yF%VMnxe!B`ESk3ASa3z8AO`rd%fwI%g(_)thn z?+{lJH)NV&^>Jb!EW~EF*x+9RaBo1hTOJO!R*A$pQ%6QVKIu-mI~UDvnXm=(OsOJp z*Im0i&C|Wo6F~V{F#dvroHM(ZSb`JF(p68w zKLqhg#D)LI1pvnqDtgZ5|25{O_`uSBJ2SExY2b-;)OrQH+GQy+89W{${SvZUBPH@cQmXQ<{4`Cna++AAEFjIL&`h_kBQkX?19FKa2MRR92eTvf z)-2sfnx4fJB=L(fh*G65mFj1D_#yV5&8cu?=+I|aF!V1>Qsj+9U`DEZ|1ei4@KaZc z>cT&Neuur~5k>f7J=Xnd!3_{X&-A_LOPT$gobPX*(HIE8FK3h#pf9qO563G~?#8$m zI@o2dudV=f$M7)D;X*S^qzI$eI#Q7R&cYn+0F;WWR6p?s21(z`DPG+Dwtb%HSX5Ad zcF!_eRqi~=OR}L>vNn+6!i4z5(f}&Y-EutFGH?+iED)gki$yoy-IxSWX2kx30 zc_M0sQI-BsODD$6Kt0C+QePP3iVEXfP)dq zkr1LpX#h1_E?lkd{XaBNK-EyE)OvHEP5eS`%3b9eN)pG01dmO#wnb%kSo+&h#=gWv zJI?imSd0;K1%!0==EX3|b}7d(ar!Qc!xYX30eF-t7q^-b2Q=4jW58f@)dU&N)Y1$9 zD?vJCA@YfJ$Fp0a(FGa46hjMoagfBbtRheH=_iDX4Ij2|T3McXv<^goT6hUUP|lFXLx*BNZZZzKphF=if_9(VU1NA zBJKv#lJxKg+q*2#SusHMF&GdgE!5vx`{{1vSRBFgs`0TBx z+Nk>{7FhM`IZFT`gsiez5%<>1z9MX)6;MO#G+gzG?DM8F;m^Jhf>U>T;yFa|lJ=}2 zI;(BOTK0{f;th^zu;@@=zW3EfpVhUwEsp>cM5ki(rf&Tadl z1hy|js2of8@K>IFC74tnkW;>!jvBDz78qT32D(;g?G6vL*ituLKapzZ%J+ntl-+nr z2(yub|3Ps}0@(eE=<4~l`!D?zS1zLWsW-{aca#jG0DU5>w$TR=sAv5d?nhxbz#B$NKunxgmvS%u)r4Lg&sXMo!#j>DUf-ZO=p3K5$E7elTLtbw@DKH);I=bV}SO4^FPiXCMlfTmmmOMQ+ zC`uGR9QjnEHfY++8D-EedguGsQGdQF@=lPxEAuQ%@W>ki>#^WB^Gd;tzA?sy%LRAW z>rM3}0;0Hmo>a;@#fSX9qI`#AAf7rkIBnrz4WI@aj^AA!Ex{}}Ow3bH3mGePy4#Jk zw=bK3d#9gYOF2w=J)8~_?1>QPVzv<~ax&9$>krfCJ#R*@ITLR~|1pjvomoLG;j{;X zi52x{+zJmgEuHiJxN=?m`8!*z;boTkEtp2fXa?Z;ynin4V-po|bp9n46iiCI;_=3m zK9MxHLbI(OT2WMk4Yn##9;t_FtxVtoU8D^?*#iYqTR-x`jP``x_)=ST==ZgFv-e2h z0FRuflgtwyn@uTZQOLpcOmt7@9n=D3F1cD+gZtGzz7 ze(8}G6{w}aYDc>x-kV$vz7K+O8%(~Zht2MHfTAL^NtKB!j&M|En=jZU7D-XLb!iqx zeJ8<`tKAJ9jhu-r}y;-iP$ue(;ic1b?iI;8id!`(ci zwD#W(@OuDeq7`U49mda%*{?rrLd5^-un){x`{f_mSFi#U&VPX}i8U@FG!+hoJI7g} z#np!LfL0AXPg9sdU-m`mq zL0e+)ji^|&V4r1_cCmidsHIcJYWq~24KrgQ^4H~-I}&wrV#Udu+7-F%U9!3sH>a~L zdhW6AA096E=P_TOCO*CrJ{z=+>wo8cdyN0M@#zQ{JRv$3-vbV6(_{IQke^(DjGr&_ z7UFlhEZWW2It+4Qy7$KCC-py7>2N0Dr#Br5TolgIClhSTimnBbjX1Tb(|1_L$xeO< zS5u@2F5%&1zZL%<+W^Mriu9kg({n{i$(WVQtS;?-h-D7&x2(2Min*xt*PJC>vaQoT zw0_44ot%na5sE4uewn!`%~>2g@(r7U?`1+?pjGREGlQpRrU$GdnwI=guf}HbMwx++ zm^>Gan7&#ucFt6<6-pjiiwaOV-UUf~rFpuBVGUQbooWkT?N_5q(j2wj5w<*ah5|k% z0#7Mjt&EwoH7t)*D75z+hCbWEjP1AMp_!lgDO9>@ia%Ap7WPvAZy0gz4LYd#X2t6};hgmz zQQ3lALCyq^57+6t(xZY%ePJ&XUyft_4ZAn%-(f@Cl6KJJ@cp6Oig~`tn(C|f33HvD zW`z3p?9Y+f^#q`@n^DZ?IMB)KXFJ5?UxG|uc$ZtQ( z?XS}s@?0U#H~0e00lPt4sgBvj-M-w@a;Vtv%R?L{_5N(siX*|xw~+w}*;9oneE#RT z2evl$_Gfj@TJ5twzPG`vNIaj0zuBWZ%ZzVkM_a4?s*yMNOHvr=| zdT{*lQBJg$hXD~k$us&Otua&h?;4|({DmzhKE;)TgpT$H>4`>yf-+9hcE>T{9>IOk z3Ud(gRp0u5UD+VX9iq>w#~H;O8P4_OKj@FtKs@nR{k|+~V0LI8JuIy1PH&dWZz<$`0KJ=+An@q~*ElyI2XL(pk4B4{OX`ZKKZv;_U%;dUhanZK?RP z6#kcCj=akw;sdbeph&T}{<}f?FKe{9Gs5YG;`U2|6wGhZx$d%aKAXwhal9`!NpI5T z6ZR>shJ6%IH(pb#Fzr^@=MowIT;TCHhZQuEKeV%ERH)jabf+FGuBONTTQK*X4nYeS z&w8bsi}(5K(K0a8d_l_F*?BE3VHZcl_-b=c#a9zXn- z)4JMZjc-#8V07yMjmd=SS@p2-uL?E<9!3be>uj$avY+reU7N(Fu}iyX#polBQcHOD+Nh;}t+^ z-)WbD2K|EwexkdzDNjiMV9@jNN_NUD({GExc*(~%_s*lK0f(l5{TdUM9EJ2UXVRKp zZ$%p3BETUc^`eK?O0ioxzJRo`Q~FCqU2dv^5<=qD4|Ju>h7b?hnWl~wJ8jg6%2!`m zGG=L$;Hl$DAe2sq`WaWsn09&F!Z+hzEdMqYqmZcY=Tn-Zt}~!|bT5xuhu;173aj3k zl_eEgz>1uKD|U_#U91Mwa+MN2y*6lz?%(A4dU|gKr7m@HJ8vfTtgXLd5e{uqA1>Sl zmAI>YBtCn~D$z_v&0Q~dH>958irdWPT|TS}p- zz}+~M6KmCtP74sP7%Hb1>id3WpTLZbt*w5U)%1G84G|u;K_XEbuz+r6vuP#-=icGO z9swb7YmN+08<1G+_4%9p*JxM7!}w;TlE-$Gw>o`#A|rsmGaZFawa|is$u6Ld_>6Lk zcbqVQgdGbH?>D~i4=II;JKCcW7b@3KB!D8Qa$VOqf}!IxvbI!rU?@xtHMR4MP9P5! z#hR1sb5w>xlojpfsw!tJ45yC*ivyQ@Z%HUFP?_Kq^`oBW7OxIKq{#kJdmVKOrDYY} zxWY9;tkY3L0uzAAT%dj?mED}0{r z5$bqQZM9{Z3QloIXond zxHs>QJZl5KK#nxLepC$66Lxcirj09ME!{SXx*=M-HtaxSTpdqECAdZYkQW%gw|)2$ zr6J;;O6ii##*%4J*i~&F9zF*3d`H!k8KiG&O5fm3FxQ4xe1SRcNG$aGdEBJiSEPTl zgr+U={~D0eKmYpuR+;Y#*#Z{cg3X%;eu<=gcPrJ>k#M1QR=Q>www&DKfPIi+&Y4f+jvbyWTXP%6%b^#>C)jpJNV>L7 zz1rIkaq|+h9*)KdTlpN5zrQ=vVinJ>ILsxG<@?_s%xShxv#{>`&c+7h z8l3NJLL=*lnv5eeyyPH^7{->gtk|x0#`)CVC~`#qt?brzSVb9p5B&kJ&N6GPuw>La z1e!W$=6N-Svt{M?bo7MtbbRF( z?dXT@wBLET^OnKh>)R;qHRXi|6GOhYjXFnUBk8(eXj&jBc=DWVoOUVAZ`iE8zZxf3 z+>)~Sub_QOT_;W*+m{6AY<050{$>rKbpDByFt`cmo3Few*m@9!uCYi=M3!)rR5h`-&p3isw8%V-uZ=qP2$0pvdG7`!zUbE%Fr|g!Q`Az> z+=U+beL3>k6KZ%m%cR@IT^Wns`Vcz19`Xqvslk-O8-&nVrzo&r+(GWowX=Cg-3&Op zj3;GJ&2&b0cdEBJ{~1v?s!IB9c_&+FCK=`a)bA11jJkb%?7o0utW*Q86m@Ln@mAB3 zqBJY#$t>ChteEGw^2INpf_%RxLSI4NC)z z9%yl`RM}~|`OBCOujncFO;DUYl{(!hyUHGuUeO9h>kxlXVv(vGFq#;@aEan6P}=*f z6^7^BS~ePv*W0XWSWc;08`TFd!&u~hnszm8e8+lFX%4y`aKM^e{6;a*a}bv zfCK<+^>?{*pGzY;ng6@aQw#3T9gDN`UAMgy-u6ME(W0gn?+o+Mh!ys5Lm+7^oVH1M z1Z-j+gnrlU_Z9A|m#o6m3q1_s9QhbX{l@v9KO6lq1TB_zHV(<5OvV=nc8lkMH#uDV zxO)!^a8D|pj(uA0F6Z2@`+P#I1kD0g$1MI#1u^?L+0_(FR&@98K(_5e%&bm&Xjj9N zZZh7~r@TmA7Ch-r4DU={q^r!|BQ@y2;HN(=wQO!V;Kvmj%aAYQc?n1r40hekPHQiC z309W+zG5+g6Hc<(lzl*td9maC*3UwzTITn#X98q_xPQ0g#Y*u=1|kCW9xVj9a2Ux7 zrC;sX5Iy3|}P>7Sq2;Cp4VVCh>6tswq#rbDO>ps-PXqXvlMUC^}&qxFOgAMFlR9n+t>On(d3lWY& z(~by_zF4B4x#>{{V4hWdF99c&Ub;Dop<+XHhJE(`6z|^elMx8w58`C%P(8u>6UV-x@h#uy6evH}fl)@ps`tYW*d4Fsac!kAx zh+_rCcV124#Z8@EUYB&+b^*kGc}K|Y`8t=2%rpG;$_*($Zb!q&(5R&ZNh@+Rj7ii< zqYDT5D7(esb@(`+3TJrhDE8d%yq3DfS}sUt=Y$|GY1H78)YE+RY<8FXbm+bM!gAwd2ZjZ;f$4}K))WeSR zmQ{uc_DhvP+4TQ?C)zMG`DFJtQby=*abJJGXJK)%cVVu zj$Foqj?uBx9GtyzP$wJ4BMt7j@L;kSRBC6GZ5N^I{pt~ijZkL9QjFg(!)_=f-1AgP zy16cWkAx~|ntR=hERCp1+n%WXx0X-yM#GCj_5c0V#0w2Eti7SLXL=eR>VG2Qmx}snIawg81GYA zTRT5Q^sl{nJ+voC)N9tr<{BLpwtlyEwFon(@%`#shI-95-xis@Lc1e%c$Iv$pRLOD zQf*<+`FD2elujNbNcPHZgs_qC3T`vm^N{*Fb>s|MMWxAE@bDTjHoq2vgY%+Vr{~1n zH-ztTlgg;v+6N8cta=B+Ci4525?^F5zY1;nssxMlmeVgHAxY81(Ci3${-%WlO8G_z z35HO#i?a#Qkc?D^2rSxA#9Z6KM`>`J--C8d=6!oi;E`w5VLXj*2ij3>Vz@;>#V{spVM?R8eDh!SM)v)ec1>M$QC>V#H z)=1OFC&DP*=gUQ6jHnEfnH2zKpuN*tf6^}NJiJ=E3UmJ9`BD$3xaU4=_?IF^d!leE z`xtz3=Ta7NcX;)o)eW^sv;Dl{#osbcxDYbD9%(6X%jHbqJ=+{J&itPCU685%lv27} zty)%WKrYcbI-WU64WfH_HG%27v7TbYg{tLW^@;mtY@rY~cDqUL>mP%bG6vcL2o=bg zCPjHqnyO7;_crzrW9L7j*VFj-_ratN*VB$fp&`pb2sQxwqS;}3z*grCe!&@UqvD5G z&|FS?wW;}=| z>2mfsqiMcDoMAgnV62$h9Y8$hm+g?Hpz!;Cu<7A3F9zNzdVl?CxN9(s@OsPdhE#z{ z_^T7&=9q)X_u6XI4|5~3UtfThNJx@;jVTm={~-zeUb!ty(iF4>eUC+vF2K!n7A!&H zs;4kgGwrXNH$NBCM5r8bR$tx+wX2Wra8VxA<@I<@1MnQ3Gx>pm9Y=7*~a~^bZrg z0UJqz0TQLnN^_xMvc!781F+sLb4dK+ayOwYUfnR1_>cGn&da2-4E5I~9ZI=~fiLLI z&N*{`-SM32qQL8aXp3QG-D-UC%-ym_DIQNNj?^dJab5jdn^CKe01tE25FE~flS=&` z7l6@8u~KGQ3Xf%KqW#=9Uu&f#KL_UE0c*m zln0T?ljK4Pe4z64i26u)24a5#}bZ-fIl zB$vXhnK)hS=GGc}qPB&Vrhb`nW`ke9s*u%pYhUQSpfPjYnfDkpXbyQ*t*K(56CiP! zJ_p5ExBc*Gji2*2qUwC2QxDop*v-`_ie60U#Q8x&7pYY9=*=pBMt?h6@-D*EaZQ1s zaWPl^t*_6c$=wi>LkaLG1)F)RFin6!>yV0Bie@I6wNC^-B8pxLXM70zwyq(5A+wec z(1S(=#-)f_AlFUjm?)~g6x=$1pBb3Hsq>d|>z6AKnIN#uD?Y8H`ZNt5;toolgeI6s zH>(6m)-tgz+~HDn`AcynEjE*Ch(`bVrS}Gbo=Y(#iQuzTE;mHaajxxy8`XuGlz3x2 z``7!_!CI>n0$u4*Mb}yS7{aX+tyLR}kQb0(7V~YXmy+M&1~_u?%tgh**u@@*E?%9D zZr3O-NB!p+4THh*Xj0m7sRV<}GkkSUvzGwS80F)S@3mff4ErPbCh5boX;|B?V+XFw zXmOEOD4eRF70LPiKg`U23AaVO&2z%y>NYnqitdNgtI(d zH=%(ANw`qJcB*qzOggq0T7m15}BNtT63aO{!OEJu(1` zZ&>_7X?=}NXehK0k-X6ND=M?lL@A;+if_p6bKZ7GiH%^{3`BXBEo+y zIr7VhB%-UIbJEJjQ)lpZ6s1^Hk;omg^HeG;!mM-7d-2a7<0wtZ&>KKh4eyMTMFvca zo%T^K$9A26+NV5De1m>w=bbrzokdRdZumXRIG(Jaq`~xhOMZ4*^)avtp8sYHRyZ=$ zd35pnCe_BKT#G17V5k>|Mj)Wx?}8VHQuy`jOxV>7EOS}x>0n7^aKj>(RnBih6VIx)Mw#h)VAL7qMt?d;aFUcx`3*U0v|yH!E~FOkbr3E96a zq*j*13fSZ}Pswue`KZyafGe6AVAa;!-uF%Jh%4{U3+Hi37iVN(`faqdLcX7#-1&R4 zl>-x{##7`2G2KAv&U?zK#5HE3h+oc-^==bmDdaYKk%0sw^a1AOSKm2S1L{8tQeVB4 zw|D4DA|(4!wXQv$oqBqdR+O7Iure?r)@|@~{)wBE)JV0i%o6cO4`gUmg_^q4_*3+1 z52-;{hKSeNnS9zn#e)ON)2-Menogu3i@J2d3_&B;%$#dU7^s`VX2tELu9Hp9ba*f?Vc8|0!IWL7sSww;nLu#e!*xZC&`YPW%`)$Ghq?{tWo zgUX=E3>|FsRk|F(!0!Ey5vyb={Ce%MxM_QOOHyfTM@U*D7ebjH%KDRGSK*@~#Kwoa25F3v{sAi;G@ z)at+*{>>17Eb!7sfLZDQQ;hm@XGO>B!1}SV@<>PR<{0ycOACVtJ3 z&FnTr&}u0DoVq9;6ha+6#ZxZBkS~qdVNEoOmz#Dwev#pMxkZ+lAz2O%&}Pb6YuK*h zOTsEI@8)2+_I>L!kdOZ=7K2cZi+KwFb&$$?HxFVDcENlrrMgDAd!{l>eSg>I-r^jU`shl(svy|$SSwVzrJ$>so_m8!85y^KM<4itl-(A#sAqcc(#+mH@yc<9IJVbyiq@z>y0z)pBU^35o(X z>)^Yyv8V+SpdcDLC4}YOcqFBS1ej*mHN0*8ol8ge16%Pm%z`lhELZlfTU&i>?+X7K z0kbFI1z$?W0mZAHqS(x}wP?}btM|e+=zj>mA{7$JlTlH3I*o`%&}Vug#u5^eRp4~1 zD$Ya|yr4q1xML%;F=fJB^m=0F_qpY6@x^s5L1~}*R6!hQHFuc1U^n2R%o0Dgce(6d ze$MLj1wBCfD69|T9#A6Fnc<8WI$Gjyu|vKX5p#UtiR{UHH?hmZ!p>@B=_spZj5sZY zhTHEV72|unEb%Qe665;)vR$q2b|Wv5l+-V+aO2W0Wvmf?QRi!F3UcDPO36H?*wM`}c>LE{iTvwZKxJQzl3z^!ZeRHRHnPR*lsH%CX>y(qPB$GPDk~_}NC@$N6 z)R%PTqafgAW%V9sCBT@Gcne-D=n;nq^~ij%5P+9leRqHAqq~7926Ul{(#4JpoI5!c zWVWX+^l~bj#-Y&jXGy(>>`=AV@6!K7)>&94%3-+aZ7Ot38QW5J{}% zK>4+29W2a6;9TIaK&B`pQr_cdA=wzMCF{5R=T8~1u9p`rgZ_UPX@`g zL>ni=2dWF3 z2>iyCMRj=il_iF^v)0~W9M!yUAfWp8#Uq;I!77A3PTfvrMpXm17vtuUuZ-R}TU24(eP;ZZL=h_z)17n-~?JxPoANx8pQ&S_F zrFAEaYm~S)S95d%Hls9m`Y{mgXLAuR7~X~_!9CA~A&~1Ye?R_25<#jfXRht;ARRi@ zF-?tmqe{(ExLELe<&61SzR{cV=7B6;x4a~Z9Xy_(M4UuH{oYqyk^&34wo029gcW< z*zv~fa3MuW8KXi7KaSX^>|18jW$7qyPLqQ@f5>X8{~D&F5J06)?wg!}g{@kU-%YCl z`oimwg2$5yy{%ucZe_8L{RO`g0`)@IJ77Sb&p~#8l{Ihpy#Vis|Iameh)Y`#Kkx zL!rRw0T&yl_L){#aNaZP@q1PRsgNJ8#`C>7_=YEHWc1(7ow*?am%b8+KBmKNF?ivA15upU<;O2=P*DMUZ+RM z4I+u!bTHLbrg68CT~$Sq_^%H_<$od7VK*FVcb?fg$u$06|BJ%S<<30UL0E#}$}2H+ z{dCf&F*=VT7mR_2^0;Je?GYxWV)(10<%IqUFmGi0!^BA z@(cK|E&Q+4Wbm&(oHD!cOWw-PAFkdGLB^NY6f#8HUi&RuCNwcR{GB~SjwNsXT5^iM z(6pU+8_6SBIeQLh+IK)vAkU7MDUfsJx2#A_p4eh9N*5YT|Bm$hU|z|BG7QXXqCQX> z&v$>v3&oiw{wT+fPQ=|#4M9x=x zG3ZtD`au0sZc6bx->C&=@>g*XZo4AA%IVeZvc2at)2gJ@u4p~NFl);OG_;xw5csGB z)Mhf_#DAptCB}7J+Bf zdq#92vWetEUnI0{<-p?Q4*TGDA@Xp}yU$!CgsuH0e#k77hchHLVK`;qRzPM}p)a*f ze&HmpPt_cx(H`HjF6ZljTbgVdf4-5hJtLBkJP!0SN_}IybM>USQB?yL;8j*aLB%JV zQ!nDOs{XLBpc2NwQT%5oThx)|A8?xY!j90&@C(>?f>*FvYNo&Lb5#~k@$vWe>YJLf zZZ76oi5T#&#t5#)eHpiq9q;{q9WoTm6ffBhTJyPW;VVo1vg$-yZG;b55bV@t`L51X zqRFyV!w(rcuIq|YZ-?{q;1(wef=aNnig}*Ltonu&5p*CwBlr=_F7`wS$rDQ$xxzLW z#UE*3IR0+rjCett#hyMvWoq=LYP|k@wGrX{q4%BIC~#NnFz#&f$`fSNP9>3}vX@q4 z+~xwE8T=qg$C%a3>SmuDL<|FZ+`OapVs@oBt_4er8C7bR(v=JjE^~_}1Wc#wDy6bC zhpMzPD~Xk^HEZK2Hd`hiCMm1*Yop!Zp{-L$G(tu%e$#l(kc1gANSL#W>Uq!Ld??^F zJ^}M(GpgW8;`S9Q@(0c!Iw2(rZkQtGBP05XeJWp+?&tbEy{~4RH5z%|gCo^Axj)@+ z%UjH?-?=Dz@QCPuP)1~(vCzeq_*WqwgpHYhrwJgjDBeJfj&t#UD^z;$XF>l|;(PlX zN6u;q?NCwxDP0t1*@W$RQjzpL((V5613m9rCHrU<`tG(UkXx-Ai_jRO%Gp}81#8yo z%sGB?yQ2E{ZLaSyRf2K|Zz#rMI}f!v8~1ZQQWGjO`=)NQQp|vm+m`DIop5)sIBpoX za=2o>PM+h-HICdlz8j8AD-=#y7kmJo$ONjQJ=)#4AhX?B9B=7IcV+P#Vhg{=# zqR~V$sZs;1sMZCit)mkbAeEO1)um>m?|y$~5NoM3PPV&eUWdhL>#^&1D8`!_op`%F zOsDsG1`#LUq^syn2dOI@JIBImi_DYCsM9BPuBS+KJ+tPa|E4{cLFk2gt5u;L#6=uD zVd0~R-#J7g#MYOoWwz!S$mx#@S_Cg%iNXVo5b$x05E7YRXF5Ldtzv%cn9=1h#A^{O|@ieZ6??CO|SKur#L-pPk9r?+>Bw2N_mB0;8gTz zsou(lh@}TZ8uo>t5g98sR8*To{OY9=p_|9t9*e5o1~gOiEu?YH^B!Aer5Ft3rV4T4 ztti>iHvo-f`?9=nWN1TF%^g4Q8;eBY3k-8_A4>Ux#x@XA9*T`QHROy4gp zj^^z>sDnJa&S5%dsczOCCeM-)yM9u6jVrxM-0Tz0EBd5x$t1$&rJBlkA)VecWFogW z3qG&FJqCL-7^NO3KQe>6f@&dLam=#Cd0t#pQ38hF zN-h@|@>?gx5Dt3%zOUTe(F4nHWf)}Awd%4(RkLxv(j75m{hZGOA4`V|Y-JLj^K6-{ zb5gjS@KAoeLe*|legB(fIpOLaaB3vycgI**zCzsJBs-Ef;)bQx;&#Bw{&&#(JtPV8 z4CSs4ryWY(3?mG`DBp6%n&``2#tFM9eq;i<&0hzc4<8TKr~5IS+^O*ePgl|_i=jW> z=ZDx$)H~lc+N$0{Rb-t0=*xMXhxhbKgE*3QjA8@;}f04@?KhN5=ATxVJ zK`t{JF3}K=M;l@L@z<5MSwl0*AoXCImnZtVm+GBV^hs$c?TgE1(44TE*w;zO;W&r`NFjY8aW!yx7< zhjh`QTcX8(NdKWkB~pEyXZW;!I+$P(aP{oX`Mk)F*kO1h9VB7X{!g|n0na_?No5ZgbW$sbH#(KD@DX$AdB zi6OY=1gAr`x3{+*L^(MrQ!a2_8o@$e1*(3ONtyoH_OZpQsv1oCG`{BK(RtvPcrzuJ z6V*dt;$sGr%FWGyo)i?-T=SB4pJYGQrAze~jNJ6R`kW0DTs~;1QuAv@DkHUWfH6&m1GfI7_1OZ$ z7>2}+oGo*N?LU|W$t-apib^1T^Btc(nvVL7!nB}>E zWv!<%q5{hsHq@~y(+L@<6z_>Xw(d=p4|D2_iTp$L=asCi{N4mo@M^=apHe+_jbeZ? zBXY}=NFs)+yhuX@n&lm@>+v{DfwJ3EX#L|@No&}*qPlLw^Q)_k=9$)pj#yMwG=Ioi znKl&_UFeigC|?&{72jxtGXC4-E^TiPorii!Pr{dKR%~DT*v;#lF};ERl9ZIp?%!a? zw5q8t_a8bxhe&7?&t-v%1}L?~)S&z8>El%Qa#00a&wbEIlI9Hg_Q@jz_jc*7f?PjY zPkX~@=$KX@yT!k3)%%LE7!gNOjWEgZ?CoD%A_Nb2zCZfsJs+`rT1|f7g|QcEy%rsl z&%oVm#I&etg{jin5bi3YbqGAgC`WY)@>-M+XuK=YQY)0PbM#UL8O<?|wAX;=HX}A#!Wl@Z7MPIQ+&bP0k zjTVtLZIGN4qwl<7o?-maQ5GrT%J+3yE7S|b5n`{kMI1tt_urCmK|$A~JL05p@ zQ|5TVz8n0_X%C^tVHD-${?(&^P26iA51+Y_7aMuFos|X#TFmbkz_m4CU)P;@86#h* z5Am*dSUreNwxHfem6GsGJTq!peEB~XV97!*5W{P8bH3F5;jMAuV2ZU^P@MgBuB3Cs zV(Ysq2gGyewL_h)7<{-n212z$CyQ7=M?th2!t?(&UdGPC67xIXBpv4iA6okW=Kf4! z>UadOc-UX&?k1jWwiM(Sa*9)I6L5J>K~Sy~Jf4ZcT}p<^ELymKS#AT}&z-Hn3V9tA`o zV$x;Le-IhPGv|4rR1!UtBM6y7BD8WjCX$`BgkA*VAOk$Fa8-iuKGqs{hsiqXQ7s+7 z%Bv*mH@(%k0|$f$BZ5s0EM$E=5BmZ_`Fc^{&Z?(3x%({U?jH)rKw@wsy5%*NI|u+fSbR9G{c`Bo=;m7B=gUJv@($Be*=YE{xM?8Am-;m-j12 zD)K$y*`O+6nvAAY0R3ojYj7wwkhQcy>x0=FMetwyj+=<<=z4t;)w@5}Up8-t z#*u`Yu2B#6rWiPc{3e^_Lh^T#5IkPB@i-Z&DXi|=2;)ERk;?qyA*G#6GrGLH;+hT& z#D@fWegLz*hm2ft3FVjNr4HG)lTm@?cHq^hMk-~P#o!q=y04s8zCU|^r~+o)^_eh- z?w>Hil|bF_R_}IL{|STP2=4^J>CP7Rw!*!eMSp>H-2|98;?TL9P4W+FfzR6z63z0H zQ$Mw-;DxX8MLJIvhqVp|gdd3q-(TNfPzqj$6k;l(4W=P1qRtC`?fi1B-FBce4)hv7@~N)`~Vkp-5MN6Ul5?4*J?N;1$N!6r`NkG zr%EQ?N5zS)Dk5(?5EgA)NAG#RVrF^ch}&C(SyRCnOiy7bAXP|1)37+m=x1Og*j2~k zM!@*bibs+GTCD%J6%xd(_d9*!8wt62t%Z0?0&q*2+c=Q+7^gx*Ht=Pc^MnXOI|B5e zkEsg%NVSv0>L6`7tUZFgxiZj~&uaF3mJOR1+oSdGW9C^RE>MxlpCd@v2P3K(4pKy| zsXM1JnL9?R2cA-k6Vr76u%^-nQ3x(rcFWO0=k3=M`T%y_eR>D-|5-C%xM-Si18+dtA}|P%l)My??OGK*d4;6y-xP%(O(g}}7YP~K ziT*0<%4S=J6OKalQ=@QUM zJ*6{|j%aZ%*}pLX=L$TJ%Nun1U^$h?6@QXfY7(l^W{F$!1R3^HCPI3BE@?>$1Q}8s zxSG>g%U@@B7^?Y+E(Q@5n~4;5xhB#ZNUodh!56>4%+!`Iosl{aA6Qk9XZJK&x#Asnn-%n@&v5C1;EYJ4 z%|TNS0_a~_n57aY1!O~)21aXAGcg~OwIX8p1YP?C_*k`>UDRQcF<7sP+xSo!V9G|L z<WI3{z$2X;7_^Y=4fM-ZZ_mZ_o(FKPQ> z04a^=ir>}|X=4QAS58C~Wksbv#0`dgI&@IC^8jgv5D(AjNGBkmBcVSEB2z|y%a1?iq9eE zl^K$V%AT~U^Xage?imyVHOOHZCP|IrOvr$%c=hnuIP+J>xtI0v_mJhA&+g$hX9`})GJ6H$f;tmO&^mdfs0vSvR71qqyZ!UYMn*@~*zoJ^!2-H< z#dh#z#glMQXy82p{D|}#{u~>xKLRe_Hdj*+Ifa68baB*@037kZvYnjG98MF9pSCTs zIIXhXY$yEGtq-lpXr<~%;Qf8m9TvgNvDu62_bcMA%V}YTgoNU`bJO}o+)VFoHC)>^ z;;3KQ%(Vp4FVkaOrcvWi3vh|4xF>q$$dYsf0t?SBR-77g>08teR|m;N94+4GBf_?N_0vc zhOJ28f+TZYPt;{HrRk^6MB;l4ZUP~BGyHinEWe)cvIQB)DN2!*m}lKapISRr-=9Xq zm`uAR;)7ILFHxXIMAX-F?i`Fw#Uy-Ec`GZqe?%dmiHZ&BSaLvQAR{Ipy_n@VN)Tc* z>SFk81~*|5zu@|xf9&CjAp>qC<6eYB>pIq$ zYQwKJi8zyeb8V$j*T`UK_nLq+__o6Ug|d$G&c(lAtliv~-@itxvT(n{4NVo@xPQW3^hpWvRp{bSjUVKQ8`{!>e+9583UN)qd*&vO@+=&%!Ch>Gc7H zQgXJUWFc9l$Dr8_& zwT=9u>L2(qr8+63c`U3F;Sv$pdJSzn#M_W~S#?%eKT39$&CutZUpO-9L&(@QU(=4HJXJ{_ew130lW}2u&YRakyfro}-C3q-YSVr1GaNw4N5Q;C0 zCK2Dn?C$>T6`A}rkZs-Q>wUd{Pn;2ZVAkYpR>$-e^N<<5`HdU9>vpns>N~K3ec~o! zFoPGB!$N0yCelH8Gl~-`qCLg6)AorrCBOnkH=$lRl1gEb5;r>fa=vb32nPraqy&6C z&#g!WQmRVLs2zFK()>3xeDNXQus(Oo!a@o~VvZq&Qp<;CkQ*Ktc8SjQ$a93OPR^t; zZ%$s$(8_W79e3aHgfgDoWL=Ab-sdx6o*cAf|JGGfgU%qSs19|j54X5>2}09(kLpw{ z0<#|a`+C`Bw3`{P3n`w;a&C81I3Z6UWQ-l&oO~o>#czu4UOk?uXt9-pOnCM7enjUl zcfFezF{8!1C^jDcHXeRZ+w(*HqS*A#OR3Gfaro6~e6_U|v=QnIs(d&2%UGIF%njRn^k+~L?L51N@CIQD`!*hPaaK2DBGQ!)>e7PXGWX$i41lxkeZ_jZWUQ0T*(Dcn@gYfc?U zCnJ!gS^1)n!7Ai)oy<;QTxsHQ@6>g1Z2WiAT#nOjM@`N1CSBsG%u`%?1yo!bRq?1o zf`kW*@d%TRIxcUM?6Z1VQb4a|z!2lmwQ*$PT2DvOt3GB5K0u7Bl7b0984e>MUpY`D zU^fj4QZZ|cjZCqy_4ZrG(`dfDbOo`4{+{q#@AB5pjKePF{0t13cKxB{20w(OYf1xR z%{DtkQKi$Qsm=@0jDgd2M-@ENE)Ll@3PS3AJcSH0>6kuKl7w9iy~N+{S;$I^_d-E1 zGn`D?zTkn+{>)?7PEDJgjd%vU?tZ-KH1zmG3iwqqebGO4V$8Ujm1U23^E9~|9H!#G zyC)mbcX!92>ibn#exk@9(PM_FK&TAZ#K2lb-Ft>Ug_52VX*d$2?JMKb+fWsW`zY91 z0DLzoal3R@wxSL&3Df^%-M=KQCl%xu$ZJO^cN3XWXcEJ)K?*B>E%9_K`&4uRgh7$} z99g5ARE^byIo)9r&hW~4L@SxMG*pYS6($WSPmbOjDJ>h|4TElTAzQQNqr*)<6%rHtw6IAzJRA-&Xh+U~|VQT29sQo~eYkDIVBhvM(_ z_;rQ|0T>qsH#w}yPy}unS$e)LNd|1>iW9c~$$WIj9cegWz|P1KPR=`tD5mqlS<-IE zG1uS~Dnwv^l_=(l$R1VQY;O&UsjrkrwWULjjp|sJSv?($4f(4MFDfM? z>OqTN_2az%u2mgb`|ue{I{m&t}$L5GRwa;#XS2Rcy~Oy2QA=`%`}V7{~* zL_+Ujvog928WPQO)g-bo8yMS%_t;mU)s*x8I|cwW^VN0V4M=4%=N@XPRLs@nT7b$Tl$M^#dv)XlpFwAu)CUFcIPfS0~kiD#nHX8xCkOGBv-=6TI9D0V3 zoPC-RpXw0bZ;l!BwEKCXM~*=Uz+#XOC9@_&%f$L$shB>>tjYh^)Bf`|aFFf(d-QvA zub;Dz;CxD<955})eFs3bWmF;4)A2<)Yu&(GCDrh!BeFXheftr(m^QRSlPLNoFd-#n z<0TAJm3xZb(cKe54x=z?s_l9LxDBMy6Ww+I>@3+%>*>eG{F{x=^R2646dUl-fVO`( z*-Mb|_l!^Mm{z$~M!#A7Jy7V~NoCB!=&-E{GDEC#66?Ya1Rk>|EVV*H|5PS z@;#@SDfS_j+Wi`Vz|@%5{2msZa3#UN0(7j|EPBvINbXa59}c~Aa1Uelm+9;tq~sC4C?yn!{3LomNjj`l0rs=oD20$1WGd@O>+nA6jqIaF;B!(Y zFqTe`_pY>y_WgT=up$C0#iDI^%cwlgUOU9&#{By9{-Xa>^Zc+s&xYdw7%x>ObXu=M za~+XakLsPiQi_}X-&j#hb}?EeUSD*-n49buJ^Y{Q zNV3IWGa&&e;{J~WRFULdO1PdlaZ^HheRu?J%Fsl`2yz<5auU`-NRUFI$dTsii&a*e zo;bsF&*#I(~=vK)x??~i}rN++AUKe7fB7wPV)Zy_l0dV%w zD31@F=KOSl=c7Cbzr`leBcDybESi5f!+JwAF>z+}C}wP=0y@#G>)| zYeea?o{68MAP=g6|8^i-6H}K;A-5D2Ml))0XNGT?FM#y0+NlLF9R8k@OA}1L{{08~ zMZ<%%-);Yq8{$*0!D`b&0K!2M6WvzsH@w9F%?)GcBNh|aAT29@lg!qam8^1dz6$~Q z^Ra3`Wk{*X&^t_2@RFt%Q^v<9DfBwEe;F>$9^86Sb{P$_%&}QKz7=3!spk|CiFlgl znhp*|pNvDn=3lh;rb%S9CQOk-701+0UHP4cpNZ^xUcdc_4NE&>VZl4x7n=&D^zvOY zvxO**hr+Ymz+eHj0y#KW4Y3Lh&1yQ0%q_BeD4ol#6xk^FnN;NRWTxn1Eq*z>Ys0QD zDIh+RdEmh4yk#?22=w1@Yhhqwob_~{Gau%i5Fy(hhdM*wIS`HFR!y|GmpQa)KT}|v zb|na%pH`2$|=>xc}coOPHmBXIe>UsweL^y$K zq1ctZWvo09ujTt%>+y)JU0R)ct^+$_#H>}%O;spK>#*aG*WZVnb~iJgJ3?GV|5^~vag%hE*7Z>H~{Cg{nC2G(3PNU zUHt;bL_rbzSxCQSuA@^%9?hqvb1}YhLrkNaOtaj3Kp@A4x8SQu1VzH77F@|z*=fgs zrh2VXSu&Ryb73m@0M%)a)l_jjFJpY3sVan~VT=dXT*ZTkc1XlhA;Q*X7|ftdM_6K! z6_Qi03C_QtA;)9QHYLOChsaJp9jBjm4k18?~8lwN1w_-N3 zhOWXYEi1XT=!+j})e5^o?bfYvcS4D(C?yVzC38|&S&T*Y^IW$7>9g)ZGuD?V>A?J# zNq^n9zg(IMjk%sms5)xDJ;!zFHk@xAKt}oDmbozS#^E6+M2pRc)DZwt3(G zYw>Pe9B6kZn04S8{wM+;O@gCkzT|V#qbvh0>3b4DHrc;&pC_w0?(YDli87|$^l;b& z5sLbI`AT7y>yIhyj}nqp%tz0ri}LxySaZKCIxTnTFytE z`ZIv?V=zPBSe{d)V=;F~ogPeI6_1+{mC-iX zCnqTeyOThMA(iGGFT$KG+Yl-gul1};rE7m%zuoqM0Iu&bV~KqUq7XIDiYO#;6F)c9 zkw+r#?C}d^9Ofdd1fFY-bSn!}O}Q+=-Uy*b=( zDxk*mOv5hJX{KU{!jER<*6(LAL?80e#oo6I=i0o`K9@%pL54#Q$MON`2?=AN@ zsy{?Uk8p_beOQ?N(d*-CiUqDUPJ*@~yw~AhWd#{^$9_ndYRU@5-~2gjlI06J@yz5@ z!!@lhH5U1d|DUY;#8H_j*q%*rNxT+AJWkgfYo5OBaxLkGhhE%c-|Cg&a&IUC%JA-I z+|N}-C=U_aew!NH3wL71J{8gd+J&5}8_gcoR4$>f82>fHtCiR5hNC}JqWH`MBEDcw z*pX)?F<=YY3lui5YSn9VXatYx zbq4JvpDneaCxF$mW&45Ei+^;@a=te2W^W|f02kB!;~VRU>1CoN+8g`SRtDL=3vVjF zSEY(uH2h|2{VtWO@r43@TZo{RU)A_moEN++c)d)~Kf|9mGd>;rkxUI07&UB)VBEd$ zUDxXoc<8Cl@nrepL>6A6i&sCp(6MI@w1zt0lN^ zHf5phz)qXTy+ILYYb0UXq-EG9ZVrgl!&LbDd#<-nA~~YOGrbR7Jd4t;>k8k8W7}N* z!mt_lkO=$Q6UFYPgzN%$mbI&?IW;Y+;JdE!ntZT7Jq_bLw*H!d8k--*p*pEdwEQD~ ze>EZV5%zO>M8nvdWf&iH38zN>SQWTJcSu3hbaLTqivX|8|J&gW4MM-y(T|=t(QYjL{G6jYeEVj;@Z-AA z&<@+OZ$;dTw*Ip@@^R$c4KBpIQ`+N97Yv&Jq}Bn3H{2OY;4?Van5fIzc1k= zVLE8T7&+g+%kw;235LaNdrkOpmobj-D}=bj|18ypv-Bv+5UG)-tWVT4KrvWShWmj7 zn?|cIIPPzS!PcrZwu|{liE2n7p%9guYlXpX34sfO11}a+nnt^8lTlNb44j}Rpi*;b z8f5n-`qjk+5h7LuU7vcpoQ!cE!ed|}64F=D;Y<<Gt8T%jzZTmz#4 zLl!cfT(w#td5s@zjS)FQBFS+5w(8c%tuJVb^}k-%US~i^z|yHTNFEP4y7&cUUI6>i ze$Q`Vw+l$<0bF)A-okDmO(>Uv{`!2MN9jLoILHC4MahKEjj*N(3*)5F@;pkZBsP-2 zm>b+aIzg|*^y_gEx|OcqXeXd;EoFt(gj{$y;DqEs9r+kncK_)cT8PD3nG&7n9NDPw z7Mk|%L6WZ17fb)<46io2-&ZVFkFm>5e@rT7qOkvYXcwCeN&&7lp%5RJE|J* zAvNHDf=OdUF}C|XjG6dx6K*b^#hkojq<%9G-n}2^{v^#;g~DS^E+3iH?03gjMt4~A z$1ixTI`qqeA6CO!;VVbD{2tvci7z|thHLyU9)CxQ_-+rgGQ>=JBS(OT4c4p91vlhD ziRI74FKS+4wExEf~l_Rh5|0YkH`*C}@o=KK({M@I( z`~q?bIqv5aZCzOh5LH{TCa9wa2&2u%w30f@A?k`_!wQ^AL2p$xMhQ_)eBz&2?`2)N z*w$9U*I$*D<@%c+_vZv7nSpETK?Go6 zSBMc{GfYA?*jHa(FmmkthWzYxj+gDpkGvTn=9U&BcT%|ougNZK=u;fmSQrqcSXd~n zW*kPFtdAcx=^IfSF6;Qw`R$2c;PPhXVmA}A3Ceah>4X+q7sJoAKe%<|WVCNxB_t(H zABQTSriVt{c=RsTO*5tRUqAD5z1#AQx!)3O=kYAj5cW?^9pg-%kLJ1EI&Y450%>Cm zX`_WLMD*eNw#2KV=9rfWYs(D{${zZ<)u2u^r}DdZC8fJG@!#G{92nq zz^*ZCYbwg2S;wo9*7@>DXyuC3nHE0XyKC!CyN#g8ui8XNbW2jL!~F3+)>3zZg5E@c z_d(&XL-UO_=Tu9uMOKP?%{(0@%j^9n7uB2U*tu4{BMX`_MuDxu$lGo@ z5lt#*(_ids7OlwfHQU1!Z8gSp7hsi3vfOD5b-lJml5@)UXPpnoj93P!1!X0Q@6tl3 zv!`Ah;^Il#b+E=7MFiJ~JZS9QcZyxF(-5-&4-%uzlCzbANV3@2*zfqcd2=%zySKDv zz!CQMFmjcGuz4qwF|~ScJKT<~K{YBRWhJw{16PAws+3CL;n6bVR_0YJGA8_ zz9uC|CLj9gCh_PEC$oI0d&G)^f5?Eeoj1_{-!OuGimQa-^R>Ktk{R4jwAu00qab-v zvuvVQxMy=r(&@Zd&a$f5*9w9i_v7bYMEYdht^%GM0m|L2zcH{iHmY_Q2P|EU|A6Y; zMNrG__P_rmaif|>(REL?*IDjiaaXm#@(@4F*^TsqBWdgIdGUOxZOKP(2cDJ*i}J~l zp*yBA6(Nt*ef2W`W^XSUBC)oO*a;EQZ$ISteal@)VXPEt85NE5b-!{aXe~%!e&9gU z=%c>=8O^LE@_y2|EZj`&4t6%Vo517AQ8vxF9)|HcU!e}^SUsnt(5O3Z3-ZJV0-Ep; zTxhK+jVmRl_W#kgTM4ZjBQ~CJf#AUg=aM?OiX6JATap2aPy9Eg)zAjzNf__1;x4z7 z?4Mm6m9&uwYxas|`4Y*q`)TfN{U0Wc#Rqno!JJ}zNW%=9PoL1b3t$cTe;DV?pQ*RA zyw1VRoVWoY<5R4D~qJQ-5I8`+j8u3Sh`^aydL zz-%uDo#8=saec%|@_iCXVufGgWUzj_{Zb|jyXbu$&IkOg%UH<(&{X+V@TGqm5-_OwO%clC_Ie(c;AV85%B5N!Q^>f zof3A}rKQ)dz&K$ewY7!OzpI31Ht9F^@|jj5MDtR1SpG!NJBFjI;T0mb_<Z%qb{cBjX|R8bEOT?6n}>&6qFEYskDARGReW;JwGRHP|20@tl0 zSeD*n*5>!cW$+9A7XtR;9bpD0v8dP&z%^%i&C>IOLLEnfuU+=iLM2&rX zcTKuG@^`vD$JHEtTy)L6{ZiC@7nqY1ipDh?4kgsHp$%CXsI5zlN!?W;fm#YV$0KkD z?ihUZD1R=SrxdM{lojP>iaRa<5U%4?+ErEU&}N_}dV0x-$SvEwa~DF3$adT;7{v`8&NlL&Gf+TaH4Q)a|=LzRc7v{JRk5BEN60 zWM5|#`mYr-JYiZE$n1=y;-zu09wb-M@aEXe-Ti+Pn-8>~vb6c2cZyki zF2#>#+Iw7sUkhoY+%vL>;?+j`$ zVYnV>(2L~e52sZU-mE@NHzj+(C_nSgLR0F61&T2Ws!DBe;GKnElxt z6%%)t>?J(6Fbj<2s{430MxMkD`j3T`#lBg7csd7<4f8{FGo}_OfWd^nXraE;vca4o zkZ58onX3tYJAmDa2@8#gSoF&0y>rrUcXY7N2AnC?4l4?J@LvD!JDj&gh|i&+{x`+< zv(L)-54YM2PPfa}!iF!+V$!5XE&0zWzZ~zi#+P3Pq##=b)=2P64{t#t)}LwJBi@tW zAMSIe(x6(23t6ELe={&08g}Eki~3}QKN~I0@x6H2YN}FWbzKioIRh zFGr(p!<{MBm-W*PYo_~-tKfMUg^*3Bs6$K$MUk-K>Z=0+;I#POVi3Ond?3WfGZ_I0 zIRf?_l%n$%m6`Uu?TJ_IB)DOA%ELpyn>cP&#jm+vt`b@~1Vtkyz_dw!kf?EaNrg0* zkvSkgrF8HD+>hJ?-bTeGj+@jzQ%iT_-zg=S&z#AFX4d=G)IuK3cR9y~C@&*fGop5l-2?u32M>#VD`)0a-1N*rrh zTykyd`e!owd%Hk|r5Vq(5 z?}c-n)5@32`-FVcD!8;$AL>=I1ZBxvt5k*64fhtar&7_kjgES_Kn=CPxLYUq3h=qT z3{0mCU~M}f6S+#e?Oqg=556Iy$PdAR2GwIN%bxhY{9%>2ecCwsP5XkM3H+tOns9az zYH08h_LN0YF}ZDRhSjsmC`PyvoTw2wAH-wfG;_7lRo_mmeJ(TWOw8_aS!D1eNSlN% z{*Z!zvn(pD)SUXFqoGNdE#!S@)Jmr-tVK^C9b;49cDj?FWtG3KGH!H^GeYYPaRvy_ z3pT>R5FZ@5LLZXi%5bu6xR;LaeQ2LpJUV{`Vsu-=nW-SjDvY|FQr1CCc(bT4qS>VGp*2- zJn-YtLMvG`<#clQ#6u_uAX$h;m!#GQAWBgJyB}L|s;XNh-tQ4hYa-tZ(1yLSBG^7f zTx?Qm5=NJOLc)y!6Q#+Q%UV%A8xy#uqaQ1Wcu%>xV%)Kw&nPtX(xlj5bPGJ(*Fd@c zDIrztMeyt6hyLCAXJ)gMNcF?eW`N~)+f8b-ggg<~cF5VfhgxORo58N`Zg#3Y|EHS@*Xgy4tXD{kXhIU0#F|!tDlaAMfiWBku~*B-HyuWFFw~lV zt+OuDSyH539LMoSuhMA=&{rdcwNvNWtfKV94e(`?Q3$L)!7c z;f)&8P9!}2vEt^cP3z_Ir8$E()5G4X^X2P3WRPz8hk09>d?N2msTxx(iT=#~#WLV( z9;p6*Y<*==8(b76?i7kUEfgs3?oglw0s(@%6?Xy@cUrV9R@^1Q-Mv78A_aoGdvKS{ zw==u5JG(zJ{K`y*JNLbN&pT3O_7W1tAnYB6RY~8ii;Vd?Ju4omx=KATo?H46Nx2C> z>&&1+Eb^RL`3ovS9mIA~{zRDNr5;*X%UzTeY*V#yq-*-tMenNweM)hG0h=s714Sfq(f7U{;snc^AAJ+b=pRzP=`^uCWaM;2 zc0G@KpFQn!6JGrRwVg^(M^p9cqJ&%J%PY{K!R(lQa3m0k&6_a}`0{Obcsh7qF8!y) zCRiH3RnK5C&tB!{iVyUNt21;GpZQpLK@H(c=q8Tv%aT76O{U!{_^&0UeJ$@@Gc_=v z^zm-3N=kSCF(PHsF8OU7FC|;W8oTC42b>6}o$FIM`C%EcPj5f!}Wf*cX! zbQ315EZ2uKQPRig@TSFtp_5Lps(mcbF_LX+DI;L|Q7d)~Yekz!aU_O;cfB?Y>GNBH zGT`qE?vAery^icg(Rpip5w*wd!KIxiHGm=-Lra$_lI=8rm&pT#KF&*p50XG59?h<6 zbGE%dWjjO75VRAN4vqeuj$RI82Xf;2LV^PZ>H0=oIzrOq`LV(XBR?axhP1+SMEsQbo$^$UX&TqUR1EU|Hn%kpwzW1tA($srYf(EZ$6%iaPfM~ z3Z(DoMi|dl->k{DUtL%63JAm!NZ%sqa+!px+4)nvb)g`lR>VB*Jtb7UQ7aIUieHYh z`A!ebpFivs;HXcbx;^T+*3-KFu~F>4e+;;!;EXrSL?S788<3!xT^%|xHQDU{Z)!;^UEy%2G~{Ces1atIHM z;_kXd2{}X#eBb@+p%5*z9Nc2?BLIrf=d(+{9E|v!57_|Ol77>+?Y7vWy)y8kcP*A7K$*#Y5U1OOZ#x^Vb`~fSXPU?#l6>FWyY$ws7 zSfQaZ+OnK2zXK~D0ylLeuOE`BGR;^!TL4Z#ui0;7Y&jg?NPoL--2{ zemM%QvjQr^6tiKclJh*M_Y2fLRaik-yO0uZIjvT}cJ;=9e*` zpo2_FOYS!4tyWZ=kzwR7nMTTfMvkRpZBiE&+D2VpUbl+mj9*EN34_!ZO_YaDtTS=Z zVQGS}&|1UlED)q_;B8)eg${1%%tr|GmUWa%s68Lv6yf(p@1c!Lc!u+QEGB&*R+&zP zBE+#zNHz2Rp66A->1+R4o3P67c>*6sJqSy?7w`{jz>7LMIYXom|GA&_pwh1m(#Ol| zg7lzc$HnhqnW{Y?fIP$kwe?khEl;z%sMnG=x7Xu_Ge^e`)dy&F%@Av*%k+HmLmA?m z6VC+eMj{0KI2t<0RYDJ6+G?T8c=Dg(7wP z6vWqAk`o??2{|r=vv|W1dugTR8jKM=C}ly{`ZTfgy6r!wrWg5tQq6!2XlAjjMnX& zYCGxnh!_fw(lp36(P>?yGb){;|VOYlTI}2sg@;JU9rU8XFQH93`2B)1V5gmtCPi_>b*7bHzHc((FqwUP)rt z>Ces@B^^`>!XQ-k*dxoqV%V@HcCpXyYA?*GmI~It;yts1Pyi7ctd^s#)Ta|;S#!;H zjA8E@y2OI6X36S|cwSSj#)?BpX-3pljf9)&9va2ry^;iy!PX8s9>c<{!*Pnl(l58f zQUN!T0^@N=YKaal1)phCh~Bzp@Zh=gkUModwxP_PpMt}dzvvv&kGPkEGQ5-YN zUonIE*6#Pxlx{@gQ=hIeCYZq*91w4Y2tVH1 ztr?zn&32`D&3$A8g?JEh2({b=s{dI}l*s9Tp-9ky0K=f{?}`SA??+ttLtCro3qN1f z7Obv*UXKnuxv4wsBdxe~G?KXdpyQ(Q{f76o{1Wbrl!*@ef`dqKu6-82YmNRdMo zs$=3|o6>k@pDw+BIR9Y0yqy40lLT!PC*CV#Q1j;}h>pym4-W(;2lnOQO90MU^9?Ab8p*996U1^%APJ8kA5y|6xlsGi5B1 zLL>YQ)?6V6ezgZL8?jSa5ukXpECKMd)kdoD(D&o%Af6p4%!Vs zC&?jyt@j<#QXOy1J5YquOIt=H(tB+kHPp{7*gIl;PnT+~c3yjWSeqQVkw3sWQE0i> zJoelzhUqd9{$BjvAZ!h>e;aJrIF=B&Me5;9T&k%_<+n_j=;`lc;W~g6G#o=PuMX zy7_P8uL2`;)E?2A_RWqSu@t#u&8!^pq(CAXXzCiSn>&WCi&@?qtqsC5!hk(7?Z7D8 z>0;NTz1RNd|Dr_v4g_?#j3bLwQa1bxkc%8QJC(dGjz@(H_U}s7XMlnnnYTMwCU@|c z&!sx)ubO6X0(9TQ2rE}V6&cKEU9|jk+Sm;IH|3D7pH6l`LmR)wE5L%3Qq>r)Il8|( zv4`Vm?9LBa-+z!bYRKYj_&HlC5ns*{@mRhnIa*OkMBI4p#~1MUWtIMmIz%VofU81* zyhEZi_@G@&&)?*OnJfcP<|;J&ifzso85ZOF6Ss6M5x!zTDfOWw3bmGb?BF`pX(+&t(BX@8SY%X zmUOheU^~wfMMO(jr`pMj+LU3aK4!B8b9YJ^T<@2( z0ALs6(g~JIT}nedxv%vM$($G3v1gr{UpvfH^+jPy_bSo*qe*@R@_PO<|MOHZ@07`m zBY+Q>4N=4qgn_F}qcG`wDVm&DqM5=}PWyLrEMM9lc-?pK1{BBE9_QXusSzi}F{3uf z3r;8F(5*fRlx=}rj3GL?lv|FKmY!QQ%q(1Md+U87Ubk4xV+nnwAlIo1L$`5xf?g`B zQ2Gz009Y<&_g#+KdJHQ4#v#IC`gxl5!zc#BYS^b?f0EvdC(1m7YsgsmG@Aby8tnYQ zk(=>e&!#9y9rN;9>kWRxa;_MAvXL{>7aBw#OPJ%9p4_mP>UDkX&it=>nY}vY;V4k@ zD~9j<+c9EaJH4{Y?=zkv&yynOOB3r>{b~j*l-|G}|L5#NZ`$efsod`~ny7VC0W4Iv zGkB3F6LYHEpQ*8+(X-cUqC6SnHs>nP!vS&+X+nn5I=y4bQqc?dc5ol}Qn0msZU| z%$~|UC{G{}UezTQ9zahcV_iMW*=4^wSY4s;U2I%Gc{u4G z)-KDl6XO=<6^g%E4J6MA@FZj`QP1NQ40&^@;UIRpr^%x#P=KVO%Q5&wARP-ZbTR+v z?N5M6o8Pv)kRVS-iOr$zNy`~uTP#p=^Rl23_m+;M7Iu>BSby`z#zT6G4p!B1D(ru^ z9(7t$yf#~$8<}66snyPUEMtW zNh@752Mo{wM1i*+&&Mi*76TYYsFoEw#G%(12l*Vf+~=}fLz^J+jFwVq^lFsni&1fL zL7}aW(|DQB18kO8kT3MJ6H4}OHvyx7WWw?Ys&d7wAVO}A(w5`*>QKnB8&ojnR;|p0 zRv4cc*2Fm33?aYSn1e>h7Jww$yr@$qD)q?I~+-PtEiQ&A9>u=#VK_u zgH0BMWx-;bZI+X~;Pz!RU9OZO&ndB39)F0pE|dvm)BjP<+c#8JqN}YWXawPmC^TOh zOVc#8onh35tQIhXz|pt)0-wf%y1D6^>51b}M{DO!9db2$_U1i+VMwH9;eQHJfJp;R z)f>uov)h{A{B(kvUy$NyMNz6&K5X5;Ph&0-O{COs5kum}tG1&On&ig4Z z4C55%l6qN_Z-1QavT(FQ(;50eajPdKf`-c$>YIrF=impXX$;~0Ydq~JV>S<*Hu6Zl zS_>vGsWUX^g;rAEqFA7|Pf+J>ooG5b{_c4EMz=V8Z70|7HM*_8x-QKre;3D z!|Qvl^!Riqy?L7_pZQz?yl;ZKEtNKT>z1lbe=335cUEGRirXWcKyaDF@SBFx?blze zj3wKmde>gJUSPnb3^e{17vR^m#GgH_EF;FlJB`Ai@r}0zGFKd-+8hQS%%1-{RUiA$ zqZc$+R2&g4>epK3SvuDBOeXw{+i}yrX}b4x)Aoe87F!0)J9As9jXVy#6%D-Eom+P7 zoltAY^lZu#)gBP1fd%1|19WlmNFCyQtWGF`+5m+B!C|sV3%Ux$*bcUYhyN{xbV0FG z-9yO!^U&m9P#7>LQ?5V%c^aes%~rY%LXijgAek#jBY95SG$Qu2nea<22>A+kvs}&L z2TotErwg&-e58GbUaLKNw$HV`<9uh>ayxC)(2lkC6k-?a2uU@)#kJogU(;Fu2jH+r zrk)3qjw=yj0P#qv(tetZ-l%MY58w+s2V3j92Kv)L zD|@Y!+;j5M?I*z_p?2v;4z!|Np3>bBQ__}j)8|l2Q~J=?7+6`6z!qX=OSCy6M<$=i z8+lEI>{ku*iq^{{Tk|uZk{tRDIk5ZReZQ{Y1AU2P+|q1?>S%=+tiPscIEXxJJrfPX zVZSuaTwgbJZ$z1>Um{lgR-T$B9^l>&PjcX{LFrYXq?3dwaCC&_&6oQ#Rm3Uyx2-6k z$t;aFd)`Ar4S8J3@*)p}o9Kpoaw!i4Gz_L|6YUsn^EuDezwTPNdatwU$%t}a4hnTn zojWspYsoXUK{s`Eh7D2?5_b-|g6ZC#{4rO}luj7fddIA&xUQ{D+?V)d*fct6Xlk3;4BEMi#RCvJVSv#_~0N;My1neZA6hI5unPrq?hhx zI)BG>bp7vU&Jj}D2)b8lTc2^Z&4hxyL5A1WInxZfh@Axny1@n4Ni$xwDRu!xy9&~t zX71yH5Cx?c+mV7PyY9Sd1BbC##2@ddHdZj)!SO1qIRfCd(aBRVJ$2s!fVO{cn5PDD6)A(w< zzzJ0z?Gzg7()mc^hp4oU?DNqSFOoXDqYS%RkL_p>3UifqY z=d4Su0pd#^LsTa0_Z-C(!ILC=Kl9~p9B3FyBs(2bLEq=U)&$yv*+&2W)dqYaPC!}R6n;x8HPS001%Y%6%U+p^$n zKfjabHjaryH|whcvR~gzjn!bZDo8t<%={(qNdhWF`_hxN3`{A$f6{IuWyD^o>7ncU z_%21;uH&l)vy^qdIv=%z#&ILXuRkIs&4X#X7Bmo>+xiQJ>?_U&eHt`|{C_^K8^7%S zUgl9G9<^1Jx?ONXG^ebPA%n%(O2|h&vJw}Is~a=4-qq*g+s%(4%Nr-nP|{q-^xNk@ z=Kevq)R_-=0%KWsY52W=`qL9~#68+uL$jGnK)a_~CgQ<-$~;=gjEX@!3Ysxd zL3DBldz!o3iC!OczGru!|EC|0uq*?gcz8PCG2{wa=Rpb6jC#gkTI2N$Dp!HvSqS=!VGP@-D~ zQFta>*YC!&=R=pZzNXclIf&M2F|)bGW5L%ZZa?i3t&aY}vfD(o!!7qA!&1iM^eVs? zPUh#ft2VC$yBg|H*R!U_zKfA_e%`O~;zBABV^j$=LHAxI$5Y_G!IX>gLy?pgDZRPR(S@{0b|W3N_$rIC>8}GAb`!<;iqQE zz{t06nAoMELFoP}6f+d~zvYO!<$KXE4k+|CViY#Gj!m7kZemYX`6Syn{jnL$mB}p~ z$_~PtL)ZGZLZSAYOj%l8`VgJDJw=9~Vgu!hMaAphvJfR~$Y=Qh3@;*jFzSGjo7 zLS2m~@EDx8@eH(XmwB87qxLYu%KUCYkN^ofz5<7Ojj$a0_Q#%J=-Lqh!ZMnjd$Vj@ zO4f1%1%W;V7L4(zN;ZC5$1Z((^Wk?L=Vbu3`kZaBPVMbrwG&=dGsa>gTn4<)hsR|c z9nvFDkMfNr{an(iscN?pjoUy_r`fb#84-RAJ7 z=j6y8ik&t&w~gmvU!AR@WEJ>hrLzBqAp=}rpoBXKaY&FfS`;y$==vfq;!dM+S7cZ~ zR!d-)EpAb3)hP=f)BVyIQ>!nXCzk+d_qc2Iuxqv2^ce`aF9xnczF7QQN-gwfSKEVBu0}BT*0^be!k`r~7p8KU##bPA+eX8tJgYsP+_hWb)eQth zF*pS83?sWerNw;hlvvsEf&1W{nR2Nb`C%w~a@vfwO`mf<_ZZ(Z?h!z%9;e|(rERe) z1imd|7x6C^GFPgWdkX9O+akNIf4A{qAL=>PQL(!+nE^xWDBlI`#TB4jFDc4SXuu{J z(Vsf%oKDT?=|jW8KxgS9G@_hIb+IQuUs~@)+IH;++T8@)W@qXwY{KXl+7h-B>0JXi z?Fi>ZpYs-*vzUjIzLpwZn&)S~Oj_FhG>=`^>%VC_F1z3FMZ^JnY=r1iMomMCHcV}Q z7i9@~Z>iFUqFc1-f(^K2D?q0ciRxy90XN7g*f0Uv?a^tu7|q{3XWDC`uQCw z-h|bk^tH4MfB<{`tG|sX=t9BKC^X`iOeRkcF}G)P8X{VWwrYU4?#A!Ue*=%dAZL6- zpLP(}G(b{iSvWHeXIqOxE>}j+gVwmK4OoxpmUsWmGcPv^#LxCUax)U~BMZ7ucWWZGEZO9IT9~L=s#T@*;0JCnE-sg&O%ZcV7My&t4fT=GAx;}tI zxt!eRyi()T#tBQ~*yCN9$?(r`FI1!0Q^l5Sf8D8cCwh+psITt`c(>=un$tA*wIT6qTT|Irl}O z+vr}ltJ^J-Vk&?}6HVkPO+sE%;USh0W^tZdKm+sxA~NSxX8+&Y8x^h$rX&vPK#HFC zx@NDm-3F^p`m+e6g00zg>)e;#_3_)=6={kI!&t)nd1! zwCpghS-hAF%Saq$^FKh^X_m7ShpP3ko7Mi`e?*%bSSu?qih`roJiRobpO{z_i>BCB z`+ujwJmdTfiB+f0G}1*S$syU914gwRmAIyjR#=+_1r&F80-%K^Cq^tekxFq!kWG&# zx6G)rMM z)Pc#mRi$kELY{BlW=7LfMC3-qN?_9=7rc4fH$WDA^vpR~Qlv+dk=QT(COLhOs415L z-EdlKih%Vu$}l=n;$j05Wnd*?z}X9KAI~>)WLbU3;b~H6Nm?1U?Fp!QQPEalsXYBa z2;?m%d;`(Z{viiooi+bjyelh+xAz%4QA>+Q6}3^{f>HSXOcJxvT25E+HUvp_v{9dw zE7@_+3Snzz)rjxsL(#MnKz=fRhlQbA@nQ6aPy@fg`R%zJ1yGbTeM5Am)B|o;WfHd0 zq9-a5TeQvBd5duDxs!e&MgVj@llbdN6>JmusKi==zfe(qF6Wo$yvCO^YftXzBBN3* ze9S1)p&sqa??c0|@D(0MZK8cYVFrI9Mph1gtKDxyPuHEDYTBEY$U-Oz5NQx=S44eX z6fh_Vvx;Xh-Q=u7orCCA~7AHSC*Yp0j3=U zO%f_Ios|W({288n8|}f|KuJpgSnb~X{CU(*2k{sg{yiAbzDRRf9bd>stM5p-tv$vMw^|asyn~d>m&@ z!Fj6aRF*ove>xC(2*S7AONA2~=5}1>$?oFBu2WB}+)&<<0$g?!;^EPYa5g9vPJd4T zqO8Qma?;d%Lb506od!!O0uZ^EkYB|$=D&y)mv+-DiJ^U51bE$a@dok9mAou+yV|*C^^PWtT4Y{Nya7E{cfi#hgFuVi|{wDlD0rS z(rgQ?gzC-Io3(WtuRfDT62{Hlc?!pFIy0mu?3GUn2}r5F>VvMMoWE_w-!2RS+qUo~#{lR+bcl4AaA8@3F zBsynP#D5GRuQbHB-olmtCiqZ*5TlnV%bhwLMd~T4>Wl)qYoN7E0Gg7TSAX-&PmL~i zn5Ko8H9OG}u)+VocDhoa8_el1u2atR)3bJZ^~o3UE_s+fuS5!PGn=*6TASem0Hi%Gv0#pE@s8xjc- zd{HjM@;JCbkpWNYIbjs=i3w%hYiK=HSJt4YPK;O7D>LatVx!nm-scIpYMMY&76kAs zql#O1f>noxt#wLAl_?hk-N*y)PEkv_x-hr^G8C;mAu-cB2TjaJ!!0Lin%#$SRBgc? zFFO#{ByIZuQZsu`l9$7mJMT;pFB*Ay`An~6S6auFTGB56HQDlZH(DyHt0}r*JAJ&? zM)RH-4k63}kwk-KketBlp3QP(()ys}Jh5QPaGrdmoB&rOcxNNIje2GtK@ zo75~QQIj(-J#!qpT)TJgd$8eUPw@~zsGa7Ew!(J0o%=2GR~^ChZ`eL4A@;*|v<3jz zsUmb3QSe2sn0l7l$}D2)SZ77xZ3vlOx#ox57sQFT9E3-1gUh;^{#W*|)d#O+`74VO zmm8Pq=^V{0U5_>q@~g*V!8?W-cH7bVo4}@j@cTO2MMo2Zy2dQQm2xMq#RQO0gze0H zfzGpYG4D=4JN%-ZofR9F1^H*e$11vE1#oj{D-^23)IZ9l9hb$PbwQp+`#9aKCn!+) zQY7$skIL*l0uxJz@H!H4u*#wtYrGaP4v)u_oNksRRw?FCFXPo46yKOWNK3ZoJxO|< zW~Qko>v9DthNC-1UYpI zA;R@z(cBHAwU|+6pkbgg^UP{3<&AVF?rdcjGQNF_0_$Qu=jhs{tNd%Ot-`g|!i8Fg zw7oN0U#^nivd)-X9m}GHs@cQeK1qqCo9*-im%nMmuV0 z4q}08w@S3aRAROlPFDA)&#xOu5}HSzq^Bg)ZyuG6I*oI<^%qkYvkor`8aizSR<8)j zI@%$K*T<^hjSB`8Tq48?O8%~#+`IrW;Orh5%YbuOAkqaj3Q-5`hXvz%9M=a=of1WZ z(zB`6Gq^hvn1zczTkr=!S2jDSDTz&AO9B;iL;N#v3{yVDQJ2Y_@64MH)byZ)TUzXE z{3UyyOjW}yomt)#$=#a^H8S$g8|#^P(nG?c5I)o_6}z!fW`=RhQt29USvM3!@K`@C zWivLEl{E8NOC~j#Uv>byp!UPPHxX2v1!G}<)nbXYw3y1#oi}0J{QQExe%z zzdO*r9Spihb#C1zixmT?e!m~tEV=X~ZFDx1X)u#5Xd%4Ky>#K@BZ zwc7NWzIG@7cPUmqdSnKK>q;Wd)cz+EA#~6Ubx%ywvk|g$<>3|12EUWE`hJ?q<>!UZ z_jM9QVlFRVHsLIdh%Ho=G=ow{%oaC{FA^`5-^)eE{FfN}G}_PK(lauYzC~!JsFfXv zi)pc%u589=1Slya6iu(5{Tq@foi8Qz?ax`R81j{|y=()K20o_^-e6F;MOyg5r5++@ ze)6deALf+E|3$4xb2Mrh85Uid_L<4Bo}{1)JCbwpGe1A4+KW&*-_Zf#jB`7pE1xO; z1A*}c5!@__Zop`8o+f7luyg2djOsuC@XTufFZ0Ku1uOeS1n+;M0IAOlTL;bmX}`p0 z_e$9H@{hN~EB9#=w`2RqXM&g525KR*!u{Mzl($8O)P<$&)uk^D7PJ#`yb^Io^C?YD+?+eS|8h3|AmQTp<#1Ql zu4+-;g{9*1@8z9p&4KmfQ(@FDttq!Mm<)K~HD4b+nSj33zxNhxQN-E+rmdsN2#~cN zB1CP_MHw_FyycvhX6a1s@@7!|tGAAb^4eJZHEKC_}o?muoMQLa;~M=rR+{<%#L`G9Nb0Rdiw zcyPP}B~A(V(ZNhJ(56806*B*{^+@?d>T28$oqYDb4Z1!JWDx$M8py)vNWKRx~@`m&8-*B>_=H#0HqeDaFm;di5W~HgcVLW1^L@y|pAgZQK|_ z4DS~e)W8k!d>RbexyZrf#0~IIUAW$5qso`wVYSDrC-?F?ByjvZ*bkXr_5e6?YuTtit-M2K)Ep=^ zVs33#Oke8Mo(eYM+C;G3&L)V}Ev9BTu{=qyCX{3jJSf~3ghc}q57h0sT8!#8)U_zn z=Te6|O8vbkggslX(B#E%+(%8Q)S;I(i6eoq_KS%_(&aib<-lnv#-NDAbtKqe(i~sA<}vc{^wK4}Z!9ZejV}| ziy{Ppg*l8H;;-^YO-^t&k;T3m8wvrF^|Y9$1OFf|^C0mtQ&WX&u$gaP&2FwEbjzbn z&S4gN2vRWNk3PX79W80QxY!|3_N`;f=Q`|W;P3qe#VgpA7+WNAnC94P_qGaDczaBf z>0;Q0%^07LUpzJY4%Oejh`-%(s#w!NzPcBlVpv@g>0r5fzXz)U4-CQv|9u z8)))qVm}UcqsyZb}1NYUl)4twwu64&EiGr z;p}{bd;N6Qv_Q52h9BinHsoZmed&UnRRAO-TE6|`}m`hjJg!S17< zMkY9ESCnpFv_GdX*7h-MSI7e6D!(|z5W_Q(89(^rtofX^ZDZWwY*pVFOHOa(qDxeP z{m~ZSWDV_GK6>id3+L$U@3Ub~umV=&wC~>=jeOqlx1QP|6%Hczqi>JCoVncY-}2s0 zvoE+&=wKhIY$NZbM8IZEqgb*7$Q*=SdVJ7~5aK9BE|R!|X7F4z4mE-iDXRxCnlBV^ z4fgvyMF4?;SjN)!@(2tyfXuWVCVe3Y8Sk_3YVTZHo$DbQ44{U};>uiPP#CN=Ec|6u z1AZX$ezveU##F_RCF*~10nXtqX6fCcgv0e%h2MwvR|`9)&X?_>4-xis@)#sdBhomf zT$5e9+ZslWgZM3NLg>G{&; zt_W1cx}inRZsvAsF+XUxm}RHA>;@Nh@x{M`#zR;^Ol9a`Ti>%q798b1eq3*{_wFW48MyeS)Ns1E5{rSHjrw|_%O zrbwmzy-B2sg4(vwxN_6|bfe5lcRpN@oqDQk!Es>jI$_E7>(9%Y1#Pl|w7LvW8CgA) zg?6Z*opL!Ci8G{VALB;nRbDTLu33^3#Wr6`RSTIoLW5;^G8bQ5+@r-R!nX7|aZ{&J z*?<4^3EdsHL_QvWedFQVgBT_<8`^1LH+TZII7CZ2>vx&o^;(;J6p+3PscSx5j?IOT z2Nbs8N6B2N-$2wBbV0pTyU8UWKuaz`el;PR`$2-z?B6eWbnVgLqW!aljkT62?W8&n#i&z>*tH3T(; zH?wiFO25EN@zRm)o-cX}TqRIuL)}l~2YBA=G2nTo2Z0!qv9pV0)VDGk5`LSpDd9w% zALMIdRV`EZSIgHl#cK2NDVrybh+?DTCMM1Bb*k?g4bKv~UL;TE-N-rmgCS`M-~FDZ zsIHzBNx##fp0H*fx#K(<=Nbf_h?(?`D-OaCuGv9?wcre48V`^VI(vExv*BHtxr_5N z@{siOC-p}1S}HN<7Lsjhex=t??0fbTfAHqR0}o(3d&CQZ*2mKvm~K>C5hAN6FOP*! zTQ<8Atc1|bH7zN!u3}IJqr0&QH{2JSOfQX7S!{HJCF5%pkDEbxlekKUSoVauG{^{} zDMvpwVwd)3u~$by^t*x2X|h6>{z_jPr>GI=PRL6G(?Pp`jn?%wKeiBux`zCA}NJ-y*!Bsq< zs6kJ!wDv{9?agE>aunWQlmlse4I2Pkg8=)cm|dQx#|X!>9d&YpQQw_AA)Ao8z@J?p zfuc1(;Cq8q4D1X+W*Cx!JwA@47XqG~nUQwNnmGe)q%eHMKH=<9CQg1K&Z_&;=;{09uOs#N+KB3+H9C0cvg=r22lcNJwQGY;?Q{pGrkPxhh9;ZckcSVzP|4tlr%ktFx zl+Eb^yPwZfXz*sxrB@uqdAU-i#+I+A_ndlW<6lX( zRie;xqu$*%iOT}nRRJ?B&AtU9NmgftmJ>aweeeBeVhGB6RqbVrM}?6>gyhk+OIUTh z9M(~F)H6MeCNDhu_5qnX;BsY)V4#F5~3Y5D*@a1I%{9I7iSy6uhb{`GGGj=aV(hV_8Yt@ zyo7HypK!_(2h(nzzTZU5l0vN`|1crJrY0{EdAWnd;3VY#2l0M%)s`Bnh0~B}lSJ@Q z?d;_7+O|Vr8@}_?I6wG6<$BtP40XiMZa8#vE2K#K$K~}NdPQo06@o!pItE=H^{oNO z{S&Aj^_8`kq$k?%vS381CVI*GB1as*#7S?*)dP@pDBOFC!D(XOe^_D5$wYeK!{Tqs zLc*f9>g2$}dE4fnXMl9)SsFhQ0~ttvqoMoyCtPPJT%D~6Qotwi=LEJDDJdWkTkBLH zq#Xut{Us*-DuQGoGVI<8pRMFM5=&AOx>@fY+9K0zj+?Ap7|N2@3SPF60TZ=G9I$7N z5YGberV5*zGDj`Z5nfS=n)pKW1&ZTuIppPsc+B@O{%T^!)620F$Z#%F7_{K1KV3I9 zUyacoozM~`-P4&8w{lI}VH}7QW!Wbi67wW&%dl|@?-j57ee20b#P6A>iHY2KivUFY zUIGyB^M(Qkf|bTz#!;gq>3Fr>2=PFomLQ0Y)F|lbs`)b_-frm%ZN_OKoE3>UBnn%3 zd`G~I)Sj>*H~pY!pL#AvP6Q2h*(B$@<;KpRPVz=eNG$u!2klwcldXjRQW5_Hr1RX? zQJBXQ{(al@J%d1~5)zz=B43P3Qv_$6tPP|x3YD{T5+iE#{fIcQGbEA0=O*L7zLU^T zU4Cl(p|5%}MJFC053U^$w8IVH^8o7jT{ra@-P&8(GdH)=kWG_0BdyW0{_LX0b1m#~zK z3ClyBF!vV*D4%2&Z3B}8OY;6Z5DSY1LK2dntYf6a>E3m>IvtfhKyN38D&S;1tDVGw zo4t!LDEXIdsw~v*3#NIPv~hq$d7nE+Q8fcFk(Uaf)Ff$xDMptQ5;O#decq`sO8< zm&#zmuBWI~%LneDZ^gwHe0Uo2XbH(@U$govKAKO}^1&>Kmr%?9dvM_#u_m;T3yTjX zo~2EAuwsvoL3QbhxG`Cd8TzLoz|6AduIwA^+wsr4BBWH`r;1ktqtQ~0^IN>_uxr0y{j0~%oN+e+tV`k@LHoWM>jTw)@BKh9} zwoF)x*wy|ulvBGTnTvJu#(-dq%Pzfc;f|^LRE{0?1*jo&)oX(G<;--hW7kE}SUj^! zF`rIQ2eZ|wfRVF3%GaR<9)I<&@EYq$e}9!fD{P-93)+*omQwyNh0Q|w%Sm}(>|sen z3Y)!D-95;32RMpTBXFy1B;g1nY_m9weAQu94I%AeD56gsuAmZo?B3ljWll5BHBLaD z$|chQxg13-t?FI#>^Q{febcu8AvOM;q~tA&wyo&=6ciGV&&l*|%C}ZW>Q4MQfbCcu zdp47bP999b%Hu>GDa*#6`}*A>)sa0Z)TyA=U-V?P0oQx!LWLq3*{2425=LT3ny!o^ zh^REw^B)(-*0gW-uiWg38umt6@FH|TGLKWCP#-f6!(_D$lRn@SIZ!GfnznI>B{MgD zK)$B#n5e8rN;GzG$F9)8WvQ9+=J6nKsok0#$ZCo6`XIMaKgo-Z=Xb_y*eCY)hZbFU zus5Zz))@+!jWR1__75_9)dtr@-b2{fS|j-f6V{6m5C2M?kD*zAIzAJJ?Djgfy1uWF zcFus|g6cGLg4gQLGoPD4P-`K1s&c=O!}7^kHHCH{bc!;(!$0cpEZ_MPWR@@gZo#D{ zivdLe?Q=YWw;$sfaft(~1<$}RV7U0!h}rTeqHAK;rLth0T32VmXGV;lb(GeXhB}04 zFhdyQZZgA&3lhlxXw~iIdq-)RWFoCb{#hHOM)fY`Q&+CaHXru1CacPcFeIBvHrqRO zZq{ggcWLI(6rwiEb|D%=f3WoxV9(M2)ipiY?m(ZmDL#L@{Aa&lABd4-Q8AH^_Fk$i z2juiOpA$LRRnY;K$cHs3xbIO3i9cMo9=Gc(-U|}YAm*y7dDWi|7!KDoW=sBeDG_Pk zCvdA**4M{_fsspqx0Z@fNBGeNQlO5cSquVMX~4;^^ZM$&Q?FS zcaTc4bBR6kuTb+hrGWLT)aOX`8(JAl3lw6@g3>s3tXUV7fD_&2j$(sfN#Ca70w8_? zZdU-JFZc6F&kF4TW*qK-hP|Pb%_E_vD9ak1*C7lj0sl!Ar9x-Np+wL+`sErDl9J_y zNhRXX(oaVZntHyz(`=_ij(F#{-mRb zb|JmhWPw3qlF25yOE8(x{BrED0qGuRkpYTeKySr&y?>-;%8G_)Q^nTq2Fe&G3o6pKpQTj=Au z&?HjrX_t5l4($hi?M#8kWbnZ_wCc2(k&w0-EGlh45Ujy7$qRxje?-kqk9`A-Q6I~=tcxa zH+Bb=3c3+$^I) zUOU%AFH=<>df6I1+yHt-pY*Kf5N!@;)bR5 zHg59VH*?0WGy}L2h3tdD1aeXQMPwijjR|TbYWwDYZ_~E?)IX`}9C zMJBAB6OljlvE%nU#WXjfwD5l`czRQ#*ziX-iT-Do2M0o{q@bE9ra8+281hWcK;#!UpLW6l2a#WiQ#$+8 z5!mQ;&P$Af?$0<85WN|3CQQt5!@xt&`O6u-M&Big#^xw)5!QlQ7xl{bFLu#$^_<0v zvK(a+MicTNxB7|LkO=S(7bZ7jnXZl^w0eTfhYj4;wvVLkGB^1BZ{Muzj(Ycy*PZWc5Y#)Tg2!z$L5JL)umTK(`H6 z|0@7LrF}cbhd>eZnKMQ=`D)7MKIuf^ltgH`sM-W$PeZ`iNV7w_;KV7vpZ#hcLSR_8Cn-C%_wWBBy>$O*XnW^&_n{_o<-j%-eys>z5`oXI3uQ z6R$@jWdpX8-BZ5Q(4$K=gD$3$vy^+<`gv&!D53hWJAciaALt(`5*k}FPX z_}!`~>ONIU(-u(n?#X=j{deoT*I0ikQL{Fb*wojMn-t#C_ST{wu!64sfIoTu3FE8Q zZ_3aSD!4y7(n0XM891q>@9nH8hoWoIy8-c;J-1qg9M;{H*&$=wV%zDhkxa4YX?crg z(sX1EWCgZOw!ln!K8tqz?|a@!{hA{HlfqDNvOX$uYwVLYe|~ZQzydY|=#u#BIk2El zOVHxBr44WVj_~Z_{gY8i@JD6whR~nl=OW3FT;t!b@vaXH$^RxDQsWIA4gxQ)vUWh$ zHy5|Q*e#6ReIUEAV$N}~ZeJ2W0-kbRvR-GUEdjKzc&++@{qR)$v zv(?v3(q>^;H8W4?N^yYhLftbG`_XC?>r zAf>jRm9d2CB^=>+(yOPlQOs|$4kzFpcT%ASX!&Dh^=m}gGAatIZSbN64g;8eRMCYN zy&FmBMk~&*Zg!4hjUvM2j1P!SeZ2E!yuA<=<1A_XyXbu{WtPQ}DU&CIKYOTva5M8H zfKPwViuz-~v5cYY*<55m-!6I?f;!LRqJj|QzgXKUl!W-4_P-MrPODi2MYnk0VS|m! zDHSx#`$hG!48ipI z{*i%APpwteUm06uL_6`nQV6BG@1*2>>42H1&a^bL0=hp%AHP%Qk2g`!1&cJXraCdC z*nXj$7qYaM&CM(hyA0$ID4;}y{SPIhN{!K zseCSkcC^$ys;ac6RT$$BDEk)_j}oee7GLb{3a()IIRBFU{WgpH434rmLaxS|WiCfg zM&_=F+sW>Si|Dvn40;i0JtQSzJ;E9o zQt`3cwBVkIA5WLnbIJSkYW4leRcYmB_d?AH((^wh9mh9G1K7u1y-^bT@-Ja~>L^WI z)|KSDFjoT^pMe?)0r7V|?*47s*T<-1+|OtjI7DdyKIDGw`-*3}j2eFhx^1njn!s%h z?uvNCb9pJ@ba-~}91p3AsrN6;_U=Z*n>Ds?K8lXjS}*O3OH3%Y~ISN)rq>qBAo@5N7DfY^p=c!Lt z+}dm!`$oPzJKD)KG*_t;GR|mcvQkNb1gOCfOh;>H%L5#a4!PPq2=bygsjwny?yi{x zf3$ujs*b0%C+vnNQ5CFVGvAkMRp*l?I}fWm9~z6o#&|>rUusf_uYl(G zh!KNX{-23*nC|gd+B-;hf)p?ZJU=8GD}ha5RA9-vKl%F!!?e5f0t>dgHf09Yx&rTi zdF%+>pS{1%2hmwVi*N0b@++S+GP|sFiM`~ylzGI{lYXc(0mhx0`wPgJwKON&RKT)k z$L-^=LtE7z6du-}fij2suoe{l-Ppc~xqm!o=NZ27YJnQGvACJ7fK40ym;wF~0NqpP z&Xw6=Ks|fgLG7EdZj|JWW&d%I`B@bQ7wx7+&6nnN^C;45Ef`nKbORvIFmF<;aU!yM zYPz|U&OM0(aj=TvY`tBLf5QC@;3wH49mU{}LC+3RHSi68w*5+3g9laovCUPI~>q z6Bo%6EOf+>S{VkM5ZWHs@fe#&L*8ifAD5h; z1u12K)2!@%2pzvO4RH#M{`}fWL9l{UFIt_ZS%pTlZ(-} z+&4TFmU2x!dt0?2rw9(JZNrT*xGu^7DH_>S7_6r*aXk`0-N0@tdf|?2z(>q99ar0? z(HhqiA&TbK7ZmSBC0y3x>5D)fx01@$7~xYL;bdNgxhj9{2oOrRLAnH49p zmuWR-!o5Bo2yIyFhJ9G;snk(E#Y8EK(GR}9SPa3AI1#Iy5csiM28;i;dmDk|`~J6- z4}EXwOXIAkF$zSU$Mu_Bv-o;(%)1#_EEU5m_}{K-QTnhfa^Eb^B@nxqhg0wC~&mUe1A0y6r*6r5bYCtFfst2Y64b9{viz&gSZcy&Ed6H9F}8?Z=U@=%Y{(& z(`~+NKrGrF*b!+J`qik4cZp?4_fs-;RhPOu(R_IAAF7vy-)WBShl(cxlBt!J81w+5r-G9R^-ob9qz0Kw+a4$v~|l+ zK*BF8Oy=M-{4$dc5_G!!9}D#9$f1V;Q*94|S~C%W0%LH(j8pPdFRU)b{=RP~bkPT! ze7L!b!)YzpgVwe69;K|kCoX>Tb{*m91o$g9MDR_R<(r+}4N)(EzYW)h;4Xk0;j5Gt zv40V~(-che#y0iW-N0l1>wUZ+mG00K=bq-?4w^xuTD`fRc){z_>rXL+ z&4YbmNEabU$*YFWUnZ399GHf-Hq*a|ymvq=j(-J!+Y~GDY#K0*UCWoxPpo68!AuM? zRaJ>&{4puzhVh5qN1YV|ECa;*v(*lCb?o#kOg-mMk1X?dsU3Mnr8O#A>f&{?1ovp6 zf-|q9q6}fwfoYK{UVBP)F=a8j_tVIV=SkD`?#m13Z&fPgifuBtjn5ck7yr(4%f(|} z=f~>;d6tL1AZD+)_>IFnXJ2U%z)j|yM?Uej6dN-)l)+qzVh3E-)COGfXD%A-ON!8O z%miiBQ~Jb*v5r+o3@lN?I=1>Xe-_4RrEf`V^B2E!FYL9SaE1@yT60020)K71`oS_S zDdGOFTV_VmJ0;*9c)9gQI>fG-%+PDH>zfpAH&kiR*OX=mp0+9Jk4ZK_Xa&ahG`}JBy z!ndslNvJ%o_Wx-CRy#wzSNkJH74>rXvEsw+3i=%m{%9!4*DTBkR$%Is1W*6VAce*= z%@`-dFJO3~BW(5*+HBK^?DIf^yK})+r!O#4ol#Vrd6{0So?h!j4@56#uQ#`tdmn~Q zxWUHj;Fgzgu<7&!j{a+|)qX3@-~ia0H{g-i72vHLneF%|^Sguk{CP96g>X#O-z0n3 z%%PGfuoio0h<>pVQ?HstvS-i8#T=qHRBM5*cv{k`H7WB&DcxcM^S0rWWy)c!W{(mj zKCbl&k8+Ks81wMGmY9Y*=7(8JGGuXJ>U!8pLPiO zZF1hkk6h+w^ZH?H7?Q~+!4QCDNvX>)i06Y%+s(*h9slkZ(qs$p$ADJN>wvVN@!>C8 zzCUVptQVE|0{z%QoEtJtMBMG=6cia0}jNZf$yX1-Q3wD((Mw;+HcB0j(}#c9+o`}eIG8DNi-1pv@_4* zo-3ksKiip|*_oX%8u6yE#2@Lj76$^%IuVoYs1%IyQm0<8^(^m`F;t1X49l6wgoGSR zoy?Q3ZBV*Fl3sXb2H;|8Hkg2ihB!pHG*(4L*fYmjbQohg`T}%_Zq8P}a#FucYd{lX zLzrk&_aShc58LYaj&nU@zgUcXsk#a-x&CqQ-EbU}-Y#2wS*k6+W3r^Pa#!=9fV_H4 z3>y3FU$)cs^e6bZDCtP7qoldzIrk#`rsxK;zfcQI?0E zwx#T_qpt}j*~|E=;OUwOaNY|J%kR0yMaDBB%8-!gI0#liEd9rE4=Y-gtXL2+rbg5T z56_cRvok}`U375w>{5Nz()G+AEO6qMA+X$fZ{j&`b=pxc|I8 zpm*^c4-vqxwj1A(W5d&UZ=zI3uu?m3_>Iz11Z&!vp@-K11psz*x5;{UqYxD0Fa;P$ zPfI*KSvLo)--o7Rn8}wXa`N*|;^Bt8t~`InF>n5vk8$(YoZwsX@_uVjT3PcqU*i8XaR!b!fuUkzSigHoh(Rfg$MT2=BkS*^Hx{gUaC! zG{tzCCBKbvjja&Gxi~h8g%Hut9G7fZ_{zyByyo9i-p3XI=Agq|MKx#?wy#lXstFi8rV0WBDt)e~JS z-g2SbU|yz_o5mOKTLxHXCfCEAt@@^lKJAO6O2j9oJ34E-`s46r>h5XO!s zO7t5gR}4v=cD>Vw(=fwLvW7*}(SH(nrz~bYnie@%>k^Pm;0kzwT2*Y7s)b5QkR{s0Xw>E>msML&u<^xcFRWrQ6!XF>!*ARO8DW#pxZ)-0cHHAqt3Es!(B zj{};rx3=fci~mP$B89^2(4VVaaWgKbLjALdY$0y$7_g;8p5i0g+-seu_E&j+x98O% zNZtzsRH|%5?!OLT7QYo^x{7`ZgUY4=c|p{(lbrrQA~#>mlXG` z$2beGEenq1&e_Ll_0qB;EsQ!43$`x)h8~8WQ}4@7T88Yt{hz>+3>;N8rQ>58G^#rx z-Ng$1^5?ZgPV;_*%z;QXr&T{*)Hau5=8E%V<5qzlC8|)DsIaK}xrEJh`$tdiX+Uvv zUq>NQ-A>~YXW5vE6;a#&De<$gOIzn*(g|j z<;QT!xC2d1Nn;B@yf{sE45lrb0Ov)CGBDM?gmd?Yarsz%$<;yeA=bK?eEN@QGPW8@ z%4)hO?0T;Ft;1{?nchlum{2@L-84pBsmSO1fHSPs`8$Gk*^6%>1|{4`7)+eXV);;E zeA6;NNU3%u={3X=a3#`gDrhidPTBgD8`Qs{(y@Qx)z>EDqiGQC=#(P?jh0|c$ z{GCbJ$RFT}YscxhNw9>vr@M&*X1aNv9|u4?Y_irn7ZtD;b%zD|7^eTm*e@kN3+rrl zr&h<^TbovEC{@>rr^ubREJQO$114CQ1 z#F(O~RQ!fmDoCs^s~rK8o|#hawBt_$ET;>Pq(W{-jB_$3bC zHB+u>fD6S`V>afCfR>0Bodo+~Ygp4RFNwPFqV}GZTsVM@^o5BtANJlJ1nyNzon5j< z#1pQuUAyLdt;9YUR$TUmXwEEg+vTEO}73>Bg;#`cCm( zAHIqY1mnH_KU%!2h0~1XVbzmHXRsjkjgQAMDz;@*(rx2F+UFZRX5EtgCx2=1&}#}z zA_RKT=K(T4e;p6!I@;i8F^QHd>f72r?xxz$iw5`&QGsTG1OGXUMc zNHq}hD}#-J61TW)&>I*n=>0y5@b9A)&R_-snut#Ic$b zF;C~ePI>#_FHU7(8)9Nh=Y_v?)QFiNe@;}fR!iRQ(D_YehJjcU0X_-HQMStk_J7S| zhwkEtjSq}GJ*@dW6r~FJopEvrgleMYEMlLY1rZV$b7-o0Ix^=O_kTtIBNB=%`|{Hz zH`9~P`5eKMaRI|JNy10wEta)2V~C0$ksqH`1CM)8zjo(8mCfC!*g z9fDp3$KC*{d1W*oJ z6T@4#FW5y@8M%HZWYHb>7?mB>xQYSSOeNtKv~*VD+5Iz467#RVF?Fal*_F5ei`DY} zntN=v|KL9Oa#yG?!8*D)AERZ;^sIdvkku+F1OC-A0~*Idoa^eL7{syn_NAT{Ui99) zqO2R>oVy}ZKESKon9ltFG+TW#*r+m!>R)73b33Zc$Ycm@Jx?V>&>hWtL?Rb3JkKI^ z;eF4Nro?B|LXe;tTiFt)=-msi*YVy&B&MW1Q|)!MaMb>Lm>^5#Fao-|D25)kS3S!8 zi}Y~u3rdn{S@KtgQuChz_!~}-SQDk*xRsf%5QzK3_Q^94F@@lL}(WBP_8 z_UuiXi;~YVxwhCuMY9v+v1J4v4wCj*cj@`=J4AqU3F+pB`J>an+QiOr|o*f`@M861V~B=VgRkj6ZP?hff=Gqb{Jg=UMu>nc;acg30(MsQkz}q z?L*w**dPin3XonQPIPbvYO6j-<1X;~<;JNpA;v=_w%mPZFiJ0Cq2lU`owaS-t32ol zljbvn&lDO^81h2x6pBT>t3Mk^*jndmj{G#5igUJCR^x@~C+U@w#UG7Sk4X*>?VO9S;VgkHP1H~2|3qDV%e+qtPoNX(GoM}uPAkFB;kz~ zmGxeSGgJ&XdoO?SxXMZ}pBPZ@AZ4NE4d>0$A5(J{LqZn>7R705%BhP@X~tO;!W8cZ zTu+B&kGo7vZ4fd?zNREGk2|F@EmHw%q*mJ_HRuH*f$r(v8AB?bUikuZ&)Mdq??_nJ!!A3;z}b_2a@WFBD4ARuy;GsYtb)_;A@k?O~umQpwpJy zylapeKk~!j0^N^u@JmL5_VY~n-M7L)R~c*T#m7OZ`m65*m`w^#fKP=1!7mxXTI$a4 zHV|09zI6E_J}nO(xO2bk`H7!{kJN^A@;5dMm+A6T zYoN_i<86P&Nn6f6ZB2`}@Gm`I!Rm81!%96o$>==PHTA9`#PC_WDrTnM3cjk3TJH}Q ztQOB{JI}1EeABL&!atxFYlz+{KX~^d6F!-`hgA)+68gLy*q_l`th`vzOMo0svgWQX_WmI%yK$X zgDeC;u_aYu+D7vRDV|GjG1~h)ik|$Y{kYcc>_cVXFDYM%fo?hVLB+qI9SYb-@Llwq9)IWsZ|7I-rvIYKmW zkM53|D60khKaC-Yb1qw9bpVL?uhi2K(-FgM7RNUqu*N^H@)SZWqt+Lyo4%8l2DmYH zyP4ity*x9)FN6gNMgFa)Z(N_!aGQI$-dL}To*>33yYT;n^u%(DOLk#ly%XsB^sehX z@V9ndm7^EQ5(9th>1OQB!_%X8>-FOPZnna=!nwD^9AO9&jJ3Dc88LAYTEo@Sd8&jm zCS;FVYl=EB=6DxcpXP1v7FP+-GzQW33aN5kc6cQ}hHWS$)By{WxG#qeZd-ZtEV>NT zP*Q9uL*nNa7yK{y(IN`Tj9#qi@!a0ih_!wmJF`bu3L8%DP01*%L(9f(&^Yxocmd?!_@QF zGBqtOe1zH`baW{7@bS;ikf>$@-Nx_o(pYur_v=5ynuamiw*dy}#dJ<^0^<}kFa{Y9 zxlLk5gOFxE3qeZ}nO@?|fn6dJPgsaz@Ic`S!(i9tcEI(+owWZir2noiwBfj` z+tY*FCdIO=j_J;;W??NH5DVJz0*??Rllgs!H6d+GYFCC0F%iaGp?UFi)_; z-SzWIbG{-jOt*0UcKfq71K8hl-B|HvVA~gf7V9hr0$Q&r#?`P`|050O%G`%F$bGy` z%BROO#yPcsRdXcj0|b@+Dve0;F3W|uXW|$76Cs4>BJ7GFw+3XN7RtE?y6z{(Pp0(V zo(QO3a=)}fQ#|oKm|3Pbc<=vfMdrYOVzfy*V5ffR)1{VVw?o6aZgA>W)M6CnIrqp< zl0Qi-T4R6mr5$8tI4ktDK12ff?BjGBWw#Zt{Y@427uce!L=+Py&ZUU59yJKWGp>J} zOMWASz2Yr`j0EY3E?P99sH>nOXb*h-)>B6rZzjBs79lef=?-NErweF5Fmd?E&2cK!QgJ(0Gq%O<> zdrr(7C|(>X!es{_fcLH8= zpp)Vo+%g-qDHz7TN55FKmC7;sys|s=(3NMJ0GwCmn55kcf z@fn92J;AXj7Ps*i@=~ehZ=?$!JY(|~3m@MXXxg9;j@l(M?cl>*pBBbHtuH!~8&cm( zg&xiT3Z_gzrI1@ePZsw@?H68uikV*nv^>i(@rocJNmRBx{ivM0J1nl!i ztO#s!h3s6C1Cyc-F``DJ0p=E}CuF%>K7mbYFeFaN zD75xg9!0>Fn<|U1m5P5Ki)Vc}*0owIP?EVbmr)=<{Ruy8l7Z#?0mS{g#iPMCcce+d zRxzmxCIr<7JWvIOk7fvIeSW2Bsf+;W(%_6$j5RdqSoj_#bp#8t_`#$=s)B9Db6Wca zri+Q&awRfNm9*hlBD+^G`e8w%2dxx^81+vGz{A>S6mSNne zxHdzi*90f-C!@+{gG!J2+O_L-dTKJPd1=|`bOXYNBKFSxEyTy19@UOuw6}`)A*@Te zkeN0GvPjdp6s7)pCxdqjA>5ewGxe%RJtl>q{W&35^gRYr1kq%EG&!i!Xkx(zTD(;g zD@m82OMttYWOG#vC~>p_T0WZ; zpy^;E7>B2n)gZ~<3f8Y@R=_v^#yJ)L(F!v9K4WP;#R-6y99>JRzaV;X6dS)3vSi=o zptEu3z49eo(llYdYLau1{iMXBYzo+bb-pq2ESXZ zONSsW=Th`?k$a7&3>beF?&e;Nv42YOFU`PckD5M%g`L;f2*;df88DE?yu9pi?6_JU zqx`gvj&S8CR{ zokjmQl?}U`aleG?YaE0_L{FMD!q1=DY(HP&JEPei~Mf ziEa0)3zY=&M^idxbVWVSQxJ_z?(8|J$ddB86u&u2aP5gqHH-Rtz(_5_#AqQk+Jp#V z?D2XxBxS z+@J=3K!k3%xVXgk$Ijp5K+?6_u7q`M9pOxwLXe5g89PzeJY`&$_}^+1tf`fk%97+o zbzEm*Z1V-QUW^5{>ARV7@pIX}5RV6)94V4s){<8d=rBKyOh1Y$+pV9N?>GIuSL2&J z#v=!!J_zr)BY{b^qKgQ49tg*7TB0M+*T{?hO=@S;0pAj{z;(Ppsk z0lwVjZh@hkZ&+UY(qT1)LZruAtZNZch?22X5Fr9WlMWKY{gzxSaG6_}qTqGm-*B5n z2{v13FQh$ejFkuZUPL>b8g8M{ss#@T}w#poNeG!#Ch zt$fpU=xu2?CqS}O?}RJC{})gWb_jZ1Lh}rSS!Rza=<%e|!+$i<%~{32Ftm!{9#Hw! z7$TVyOj0R#$EO_-lysivkokRIl87hS)^b4F|Fobb_^SqqS!8Fulw>o@q!*6qh}FAF zcAUj}Y*7NMK4C$WrGplX`1AhrtnZ!88iemaoEa(u=%^x+!RMgkDP~;p7EiY__W8-= zhdSf5#6GK+?nT@@uT;c+Y48e^)qi|%sy5Ampc%!n;~a!t;2#Zy#YNu}d^QvSLTjG4 zUiqS4lrm;SW!)XqOC!a+2-Qg+k=%?Yw%f^*a|fyQ79hOAdKSo30}lPxfa*LMTzl@> z0>X1;NZ(1oL8;1f2CANPHdzi_D{zve|P`Ssh@>_(qK_m*wV#gj+!4;MwJ=iQE&O?{_{ z8@Hp^24=3D?KQQ!z+#`=-N-GnGe6b|vZhraj7AI2Sv{(n_pO`dBOxDZfYCuY9>rTh zEToTDiYMJ0Y=$y!M7j;QY%dMT;P}dQZ?#9%x%nL%h?=e*i#BLIsNiVOIb^vGxz((j_ET^M^rh8|=$T7#<@*m95haZ=}AcnHNu#aK70 z{r)%J#-P=5{eN13e|kP!C`Zy+LP5*DKWbj>*R3H;9k3j|e~m0p7t9A8k21X#vF$&e zzrZ%T>WVtdcln-*hA7as{E1J$^M1)5@U9Vr+CzlJ4Tq6sb$;-E7*AmC%VEA3^m>Tr zy2zwNJ`dUPM-`=1M_dFEosioWxQ5pFV9ZK;-@csoA0IN-Rk8Zsn;`-9B7#dir~t5( z>N8Dg-{Sn>AJBg1SRj%w0=)5|q3chLs438~9JP2cPBJddZFY(Rv{}@3E-YYBfn57N zhtTcyf7*zWC=Lln-)V8+U_Hx& zhp6QMz%_{%C#rx#0&JZr=&gd7G`(A#2=sSUQ@I0+7WU{}ni?{WH0u$k=X#{wVxh3a z>1o*!9*BNKN~bS#D4V`Gj=ant=L@rIYx_Kyx8~67GE}WfWFG}T!EL*P0Icl)zN2sCl{OlCL^HuiL7BIkVc^6FV6*eY%B7L z@^5O28`zDUNiammWx3EUQRQ8oC%)5nOFJ-u$Mp1WMFm=Rbd*)zo|MlGDe1aS$CC~p zqaseQE%x*Gwj$393fNTD@_!6(G4`@3Zj7Pd${e;&iI=o{SG2;4;{py>7H@ ziK!HjP}xCSybJE|2`f^AWIet|=@4jkv0%j5c=p_-V@n`2c;j^pQS5$6;?Dy;sAT9% zx`-+f&0tifPxvsHuFNzMsP)Dcs}lq)eWQLnEMgvrbcjNZbz{gnQw;vxYMTaIxg1O1 z9GQ7 z^pfp|tZa*gCGT6am!Jwdo%D|`=0@WO9>RCtw{+O!@#W0}We)-(?i;*!oyc%FHPm>$ z)E?ExN){xa=Nj`EWVqd^#aCHDSJ(fQMtg7Ah>4b%7s!A~XXRf1o>=L)+5tFk@j!B7F&r)rOtcXx5;3$K@U3Hf~irdad)=#IeD%$zu5eIp&@)4Cz4CVmL{UuZW!J6PQ(0( zYhTnh&}Hg+oCu`R;y_m=Bz0W}C~xs6MKgrQ46h4(NaMVPgn<`$J=DR(J4bz#pO2fGcTj{oKCnkbHKqz%opt9fk8reLB}N zj0qSk;uvrPe$T?QHx>Xh{$tI}b}us%(K=VHLa zHJI}1?lKHY0m9jPg{alos+D~jIwL~K(+AfJ$$-F;A^8O_v+P}&OZsOcN}5)%QPde^VRvY)Ph`sDeo(CRl;1AiEMt#!24fC{LLEFiF zuLbmM`tXZaWLAAI#pUj!aZktgE4xgLqLf_*9t3u>AyI?a-=qVQRo)kg^kc*VVXs}F z3a2_tZDHW5)}M*qf~x@FO76>)R~FiYmO}Y~+nc}9iuD_B(j&nlqXqVO%``2ZG~etf z{s>r9&be(w(ri551&2Q1R@y*0M5`4dK_iS{o`L?nc_M@gthg1)3N6l~8gSy66(O4G zK@((A_zm{_xFJ^aBJzvgLa9cDOw94J8!ml|S8gn=LIxHjbHFUTPhC7RBhi|X?3NS% zK+5X7%cPGm(aa_marjkUTy%_J-=ttir)q-2*Ew^4Cc+XOw%zOXYrmKtB}if<-jJ&j zNhVS$|x7LaV4_)k? ze$Jg$Hk9Y!fv)yOD@uMU0=c@!8bp^Gub2Jr5wj%%0?2#u7AI;pZJJ}r-m1#Iho$_h ze$8TvV{dz$8kh&%Wnv5PS2Z;ObTk~aP7h7v^mGh7WV+R7{4u7yVxVgifQFtU!R$`U4>bAo-n$uRQvi7ys ze8+XFj(^5B^^&3wfh%MEY9iB{oDEIQtvWgSD)*y>-i1~mgk>cMLi9NGIC##t?%rXr zWEHW`FfmMmNl~c5eU8uNza8nBjNik4BN{|992s1ZFG!Pm-aF(Az7oWqM`DM8&6MG} zeiK`OivgSp^zp9j84|>Fad2l+4w@d4rMyLTY520!I*AzpHIaw1 z^;OY0g(4Ebp@Xqd{{07nI*BA8e@{m;jS6K~ytSqgb+IO9 zC9`x`DhW$JPh_wjR-{#Koij5HTaak-dOm>A zD785oO>0^uJXcdzKpMdyUsU}% z^c!=B(^Ivh{#Cn7&_whtv)+5_0vbrqW*?s1!bKJB~NYg60;y8dGF!JojK_@er`JLC?L zbeP+JIgJg9HAWPI^|b34S3twx)WN#9;kKJ~B{}`E(FvB@7Z`WMFI|WwgO6n!A59uw zeBvV!E*bo$z^}m0fuy8&sXj;V5#u)}|NJu=eMjf5Fj9ziaZeQQ%=v6X$GY|5sKw`` z z;~;JysO)LQt4;J4@=tA5_zfiKo14~ve5Ejn_#_7vh-Uv{%QPe3nFCeKU_LLB`M4pE z?T7;=e}v<`Z5!aJ`|T(;w2{%R`z35XQ?t=u(osAcnh2wXO`(Plr7LgjO&Sm2yl!{$ z*Xx~ms=NP~Q)EX}YzZ-E_QijXx~PtpZ(VGPXirD1)vhQ0NOQ2B%a*sVUxZByaZmG> z{B25_JaYChEx9Ir`X_sTitKeTKAGwYR;x-C9lTGiouBg0*xU8Xt0|}xAn0x2 zkpVBF_;O{L+|Uh0NZq%5M9bpph93)q#+$_rVz5D| zL}RQOClJa+-8fC80MCWdYPR~M-(!5Eh)u`JA&6PK;ES{W_2w)~0O^itEh*sx^PFvi zCY)ER;ueI|-~<22Xb_~bJ+t)KeUP$)mSlnr;9FQ)z@|jJfdrPGo&>qCC^JyHENxPa zkr7j40aiVcH5$c>7Q1)FDjl)8#@y4jOmpS4Ajivw0NsdS8br|3S9kcd3r{etyJOB* zk9(;#3|UPLUq$Ug9RGjAV_TZ*r^OqO`Nqg{l2n8zAeHkafn9%V(7tqz8;Ow@Dy2J2 z5;b7IVv_WGv^`9`{Skd;c!WUXMs){^vnd-#Cl)C(2 z$RtHv8s$$Wy_b?@#!T8R-#Wb}R@(>_A1*6DZ8fxiTLdwft@Wsv^!UzEx;STaF8?M< z?Ze;;INf&3d~R8Rn1H0e_V=O|;P%XpHm{5wI}@4Ptn0?ptE0DLAeOtH(et?p#XZ?x zQwZI_-K{M9b^8WK%cgy1zbt04CxurtJjvZ8JQX@seqN!K*N+T&e}|# z={uUX4TJDX!90i`HUEMkR+E_ay@DMd?s4n=vpHRhOpB0d@YXELBN~mFFIt|~ogQ9u zcqgINk5c&}-82v(18T_?M0vKB^l{YAW~$6}(QUn7c$urW)}dg{sLLYzfiOGhmhS#= zSNDcB`RHup(oc!3+K4XwT6e7^QXtA+UqT>WZ`*ift?^GL!BX)tyGMn7b{)xrE#N`_ zFX%nM>?&e;{SMW_{z5NZDW#T@HOUP_jy4LQzTrX5KVb$fq82a#0a#&orU5%Qr27d;iL(o!iRft9LRQ+VE;pf*RO=kksZ0u_A^1fJ+j-NN=MqW;Mnf^vF z{D+a0rn7e>9zCT$J7S z^`%onkZzEY?oI*e8d5?UhHe4rP+FwBYv`6P>5h@^?#>~e>;C;e&nwf5Yk5jEq94NS> ziJ~rmICMR#v9S(F;rb`n`iCzSOi<}N4c1~I;YwM+9DIW80`aQRZ*{!1SMiHeC|%vh zhk`V$&jxpy4E^dG37xsf^8Tp@b7NzJeFJrCp8nyvs0(JpL*#8{^aB)ar);;uB4jV3vnrQ>nPi^CLPgxoQc7GUd%oQMpVZkR zu715lvL`mP{x$J(HS)$95Uze&rBG+#@-)+0*I3Q%M!^+9qg7j|*}gjAuBL;bbRdOS z$UhkRK}$vP#`kc}oKJR|9a>6n{6@>NY$~hgfzUXLa>bqD?kJ?E^DV}TK+o^FJvGOH zT8=$|lss!}^w%N{mjoTj zfF-#TiwAM>(`(~aS70C8Dvx(df~h1%eUia;9#JgEW(N44qR1}&s^&VmT-kmCd!~2FmBpCl3PV` z@u!Gf$gm-PsbG=&mQ1b5Jxrq0Q2FBsbmajlNE%*AX4{6GVN#Y6L9VhWw>tVKY!{wK zvZNQT6kgfB1tk3|)wXX~MLD-zv7TmEYxZ~ah}Rwf+6cS<+6abrbiu=Vzmh6i&`~^# z2a2KGk{zOgB12B<)o17+S&H_+H03|90m>V(kCCJq>#;Kw785teg8Tmd@73C4MzUKE z1aL%7t)hI&)sa26B&H@!C9rfqR;xv-l#-0yAyl`>R>ieI9hz{1U4#nDJjX%_Wl9>- zob=yjw4Qxmel0WJS_du--l)mqw2sE`#EyaHe?48yfon%~;nQ9|9%e-gyJqo+V-Xao z!lBgK!iI>FgA$IK1#;{8HcP0&Wz{`6s?QJVA`j=ix`LwE+?XckstG+j!42i5Wg;O! zZm%pafFzKee-c1|w!oUix(S)fILtTY>&Z0p32gauIJN=XVWcy3( z-uwmjqToYrWT;y#fn{nQ8;lsxUSEG6P`o5@A$JJ~&IR7nx_hvZqrn&D^ch;^+}qUg zc7kJ4-ZV~?JS1Q%@3bYQj-}orJEvCPTwB&j`C$&k90?bf4w=1S+`RZivBBLK z947yv!BpgCZ@_8$Lfq`)+QzNbFy>wEx#Jr4pCpmcDA)Zap0oU#+*Y45B-(a!?OWgW z*Rr*%1h5GeegF7m3RA%0HBqff0~eJhhVjAts6+$vl$PX;>?sA_@fRj29*=&5A{5@r z9|LGE4|pHbq#IruuIPh}Lp4OvMdaFxFH7C`CmcHIqwJ%cww)!uO`rZ=slqJzL169j z=GAVZ)ac50z}g?lSSaJ|S2KG?kJW}jDR(K0u#btG;H_1 zZPY4M7bDjnlqB3YQrJ0}NgHr<-9~fgI(OBSA7&G#ziOiK4@gG0!GYcXCWSwa^7y&k z8UDF}iAxwbeigj-ni?#=*#2|eq1LwG z{-1zMnC%~E>-bE-)_lmEBm1HKZ(elYhk7NWdGvflI6=Re3zm&Z)r|whzuQ)7a_|hO z9DDzCD_)-Ru`jl>DSFbYI>U^b5Z3NC9>ktFq=;~oBJnX_aycAt@}aqw_lbhDZcQ2z znQtHdLD#9{x!!;1aW6+vZBkdu)JoEluW-)w*0?)!);h@JG-QG%YP9RQmL3WKFoyDf zFh+sS7AZVb27UBD1*U6PQdNkv7)>!uK~56z=&)$kGMo@>oi*CL3ny=@#B-W~uRcI2~10sUpj zb6W5wZzyG&wX$?N8ROsdX?jI;_3_A`xtqK~2s?{8t7-XX*YJyoevezYC{#N?(4)N@ z?~!81>lUW_R%CpjXn6(-#X5|MEVaa_q3rr;%43JYeM1r>a*6tKB>uvmq(b)NeP~8L z^Wn)O=0HIkE~;8YJvxkD&hk<2YcDY2X($Fla(J*_EfMM@y>fUl+=sj5TM4WpH4Hso zr)In&9u=l~rgV^?%WEIh4ly)LZ=|m$Dl{NA@52)gy({{ghqqgl!@N}T15*u!op+S^ zfnMSTXDm~=X8z19RI1pJuxQIgd{x%#rLxyIyes(%!bFoU1zA8;Vwu;)uOuI^{=!BO zo4ww0XzcfbR0+Fna(>xK?ya`DVBT=HTJlJ9dLM!~YhE(2LHm7_Dgs9{wUSY4sdn?(}mK&}2$9pG0rf%iy-X3`SF z@h;zBT2_%L<_4DHz$2LaSdnbJDRPLt=8X|9ciKnsWQ0=0a@PlOqhq*0hirw6kjWb) zSz6%#W&2L@H{*MbnpGkfv}oB#|A7kXXC(|O-V>y0D6qD}zp2ROlYgE6s^VUx(%|>{ zuA23f?F$k#%*^#0vKI=@qW|Hd)}b?fIiDig zBsZ8Z#Ts0+;w|Z9S6XieUYrhV;vtAQDN+qRBvF41Lw6BA;j;w=%V&$+w3uQS$PH&v zPs0spKbKR04KyMI4IV?u-R+$)zW}}rQePU&+bZBxG)tECYOy+b)B{RxywQ&;K|sOX z^>*zUK%#;!Teue~PN-5?i)NQOekm$Q@_i{-p?B>0?OE>Jdqgi9TM>5HcD499J;o=K zVXRceM87+s2y|3kAk7=vNitj#b(=q_iEhKo+SO?C@30z;E=}3MWk>6NW5shT!WN6# z!#=~n$dbWaBMtVAP-_h@E-pUNFRzdp^&8cMrKhPhL~X1d zSmfvNSoGLR+3}3^0`q)Dp=`e*$Y2a0PXEJ~box|i>s+%-4=&_yX42Wk?*1G|6O$L&G`30(F1_!`pDUDiU;t8(^#dN&FQTU!ql0B~@=$ZtKPt(A!ZS@sU(fv3h zlKdPXj{3?+R5B;k0KaNS4nCc;VXH^9F>)Oazx<_eBkKx5sW!*~*{Wso`^`90`+*g#5>44)kH?! zg3P)-In(nTo%CC%8G5`}Wb?BjTE*snOp7;2kKP4+{IfeeN?cvkNen^z)=bq90Omq5 zD>g?0W;ihzP0%o5-e6xHgBZ#+A8fW||2H*eTk}2e-kjaR-2-5a$_9JtYu{Nr(r9ml zb~fTzBx_YwSEAd?Vf6H@xOZ|+%JU{9XvJ_ToL>jN;sM0)=FHt{Z}#gsO54rw2&(YM zfVm%v$g+Ofif@tpC`Bi%);}jicSPyG$MeN~R31(%=~WcWYUAx~7|#C(ZL|~DQgAm~ z8;g`0JleDHwWB>thI2xKemGr=89QW`bdLs$wz~7Au@dnT)*P*0+E(@1->nRMs7eZY zQzIQ_YCcO?2fG{Bf6Lw2_hBCu0$6(zHt51sOOePZl%Ltc5D?sFq?WJFA2HZBM$87B z_KQesU{6lMZ ztXQ%N$vAY*ZDIVcg^yk~?4NH6I^-lNT`T|xRvG_aktiIQt1qG^^TukblgoO=yU^P$ z^Pug@Y%*?50VPZ1epqFHaCqr?NAZVX|NuQwt&nuoAh?X`RgJd_=In9sc9>T@(JhlKA+Oe zV?t2(_^$f+M$muO32ac8CN^;=3MdSXHr%=}5Wz_8l=ZA0?$NM|UWS#j`}cg{^XY0- zo)3rPR+y|etY0Bf@$Rnq{1^h z651Go^`ui^a619-rpwwCks|`@JdIHA=inf6G0ygZ_RBt!#3k6|azX}Gh9Hue=Px@N zBc$Ok3*YC~F3%k!35^(Af)c={h)WgDKbuy-8ySjh{h6JQA1v>(B0q3F)9^O``#SN4 z>)n!i6*njzJX&O&AZPy$#Bh#gT3RW5)5HiglZR`(MBlCob&)1? zL%IR4H2ZEo;A@x6*ZxtizdrgOs1t95z!!vDC_MgGJh*NOxiGsx29K7ZwP-kA!&>XB{u-ha+UxI}qUwVvY=tuK)Jr0|)hq@oGdR8wNZaUAs;e_+Oy z+}5!Mq$F5o9|~*EyVr%soSAtKs2q2!!!JKy89V*qPfbuSr3wN!Eo>X%$)SM(lH;Q~ z(aGT<^ApwfFU@rDy^3-#wZ+8MB(+%$$M!evw8@!Nx}0S-E(-2Rmm>oo{zH$8a|G*7 zq1#Z9yN5^=seK%wi3aKkt}>_N?uA7{J|cVX9J{FdYX8=Jp*-r@NwUGq-K%=xjc zHEW52D^}~VCiHR$m$2ClAe@DyN2L>>vkU)H%Ib&Ju7FsWcT0|WPj%slXsf;EebX54 zJkw5KPp79*J+|l5A>q9HROs=O^35D;Q%p!>p%ApPcVo?fUH_JUIJC$a*e3Mp3(oBC zG-cmEHYxY#4g427#o3!(S}4_bJs9^QHlOY}1s?Mq;o)vP;f;kn@M$j*RN{K@^Ae!N_wv!FlRimVz5ZpdYrO7bogPP_?j&<)S4`TT-hk5fqK zYL$`{;n8vr+76kZEV!&l4U#ect*xQBa#m-uxLH%~lG}G?N{Xxgd$o*rtG-^voxXs< z=UBeq@soJq9`H^COoA0In6L;FotHN* z1a5B0!eY_6x!=Le5?NE&PBVN+?|&F456{pK9I}) zb+U0@Q|;)m{-=SP?{p?VQ#~*O_j-?R9$?N!CFKnxtn3VzEsI5}vp?v^1gUcAU%d>? zmS56C5A&XfD}5GVUYQ=EYKATTdi7zqPlK(ohXZqGi3frT#V~`ET@0#6hgD~VTz!(v z=peAZ5=}hE2uJ7@A8}GMR&q3Vx-#7u$tkSKzwiB=aqI{70H`%hqun<+rUB|ATee21 z0ndTRf(!*}G~zRzWpxpUJ&7$`G%;;p{2Tk;o+;1OUMtGB*pF3WKd;!Ead4HcH;D}4 z!H@+N{RF#`9x^u_~u1N;$QM__zeczA$Po0QZIdj9+9Cu$M+>^#o z$wdUiTQ#2-D2&(WWosAfH`I{`8$eXjl6GXC%?TsI2A03F9GZbyLD=b$OgRK zvkR9y|I=>$Q?bOx@5g|D$lid^hRgC^@@+)}(hreeq6lggGLIQU&09&L)ny1e0Lt-( zxg@I|?-oZWcTRYMlnY6m}3M*huYuyO!IQ}WNcR@1p@NrvdtvNEbsNfu9N z-gIgMi5u4T?FzzoN>%YkqAcG_`RinD9JQB*J?AlS2wa(a!L55zQgwaxPmg@G5f8oh zIzap)9NNEN1JyX`3f0qxJ9i-ULzkJvSO^rmSakfD+%A6lT;kSxecM3rRqj-n9<+D! z#lb)ItZL1wE)w3D7c>)uy8~?58E_};e4%_r&;dO1F%>Mm<@~sDL1Y>ajfk3+(Sma_ z@d*wQF*%p^mOWtZQ0MqOWeo8Gd`+Hk;{KFImW-!!v!|0_?CRI`_X2l$7?ZK4*ZT~} z-)Cecu-1#ZkpmJ|CCvJYLLrPjQPNEB_yCOMy~uUz+UD$@94<^uJ2{zH%I1Ozi)NnZ zA7iq9(zJ%x6cb0ChA7AJNSX8)E~S}N16KQja|#L&q$M`5!UWB;Du-JkD;WQ2C&0QSuHzso53kQ56lGnV&p$U;pNY?_Wl(dQs@UNC0{>_zN8 z4%J~ltDEDVVq4Ni90X&lXLaLy(iesm<$S3=kWGMp{*Sd3zn`t?x>0{vt}$m>hl!4)sd_Y*IM0Lm_+Pe?UndoWO%V=P)~j zE7Ijw*8L$M%lnD5?J{}q{NV>>_r6yN!g(wCd|2S%-6WOF@?8xe(+Gb+$!Jo}cEDtU z&dP=0re?9TvW{HiXmEa^JUm+n_e=BptzIzvXtDsyf4u+OblLVZKZvow8D@GwGbse@ z;Ekqu|2TGX{+`7+tffj!K=9&$eKA4@Wj3kY+ndbsHMaMWU`gr zONQo^!kmvJ#(Wd}OX`#EhkB|8TPdPG_$nPdgW9vm#l2@g-_CngixBaf;zkAEyGnK0 z+yoE~nLlb$phoVM-6xaB=J#76K^MPMu|EL_yu9NS)K3fJyZ!$JBzEW;HRuRWCM#gC zWP}+~j#(0lE}-U#ZlW)?p|x^&&CUJh%dOW@`{+?9*!}x^4>?#>YQW&oR*CCWV#|$+ z-StE|BBZ%g%b|knagnC5<=A`shP4|#-_d(uY}qr9^+- z?d&@WvxhTpn=R=s7ZkYL#Bd$}jFOiCQ@AN`E?|IP(#*?q#&7wuRsI!TkAqsB#@gy3s6)q z2OsQg8>?NxBzvP{oOWj^nUcT=ZKBff+i|Yk`7*aZpbxlK*p3JCj^zrqf;Z%puHP$N z&3dc7`@9oC&~^E1I;nYZ>&=zGQq&=e#WOSPWe}z^-aY))i)??_2jOmOL*y{e%nHV4 z95>p|?ZZCCCI#WkKjCA4`m$~4df#-?}Gm-B66uZ)U2r&)gWKMj_7iTl&W?jl>v&ZNs0!mahcEbvR=8U!s=U&K)^_7dq=9 z0}7DV!l^MIA7G~gY!r8E|Fcop{NEV&8n{n{c=nV{8A5?tCK+MdD}I|_Lyaq(_UGspuc*?z<#&84f&+EkNoW5~~s?b;Slw0&pYQ{C

S&CZ(dZ(g7M zfdhkO+PoGFxUQDYdTYp!7i$o(b|mlyE8Ql~+|(Edx4g;aTj6Xi(XT#!#GC@SE9M(; zXKbPop-TJsjPV+_Kz6)Dn(Lp!X}cxl-;6yzjvZ*iQA9<>``pD=>I|rHg+Il!pUYkigWcgE( z`YQ(B)`m{&8x|Mh_vMk~%yo2>eN!C5u(rOlqe6wtamjr((^rwuJj@v4Q!bS8C9C#o z4L;&wlEfXsrb|zf_At&<3#MgPMbYxSlZq7=>lGnY5? z@s`L(+kTx3g`LkBFUKA^zMue(Yru53K1(*Lq?&K&*cBGohga;hdBtAi>y7MlciauC z3w2nNuG+{s(ih3gR;5`Y04;NvJ+ht!|CEBnlLk(AFsUx8 z1TZmMY{O8KbU5d%P17!$d?|lW`e433EWHM+ia-5KbkSHxEf@ToNbvSE=iD$tcn4&; z3rU+xX|H4^AH=_KFf+pGKxv5Z#=_E=bl<|_*|r@RTZuf2(f3bS7q*nFL8=UrG}~{~ zluL26A>LoG660wL^|wJ2CkxSMYhDbMEeDkAsq{%h>giJD%8LUMGdvt8^C>j3aC&Hx z#EC!-=m$zzGI1VaGO>&`F|rVYinGeiY5Sh(o|g}h&CEimX!(HZla*I!G=hy1CkR+$rdH}+LI4DyXN;SfMKc7F zX@YT?%cP3uR1qx6V`ggdfJD!-=^a@MTM5s27syB!?V)R=0)ORR)~`EER?5dsKchBB z3y}6|7?eN@1H@Xr`X7JX&RW!1l_O-|9G)XIV9j8!pE@A~&Pz+y6m_FWJ)gaia`$Q? z5~;sxBu9cCN{XZZ*81i$Rq&OJaYAMN`idneuL^K|m+{3Qus+_6Fs~e*QA73Fwf-_= z$z*^x*2)L-LTMU!NMo3R@ zR{AUqJoiZqoL(OGJz7v%@kU|-&5U9b`M5YS-hTCS#;vjFDV>}D6Xo}*142unyNMWM z@2Uc^O~*ub`<~vT^ZZK@D^9=N>4_-o+qSxh>pdzEZa2=hZd5#wTLI*&#S6?G@BG$> zCqwoPr3ykP3HNW2YL|`vNAf*EBXe#pqSAlWDoW$W$biiYfyJ{;U9R`ovlU*hP?c{7 zbIGo=3@#ZKE1$X^D@03KtsMoWvK_1GY5#}y*?izkyBN)q39#AZUv+@ZQh&V#MhRb+ ztnc=VvYN6Dp*r0#y~ZDbLe9y?XU(f`8>v>+0B!3$q=ka3$M+p!pIVj@6chRVVUS5Y z=zV|62Uo6{9>pKA>x0tRW-pNwxW59ab__HhrHN_>-mvmOSxB8f=a6&8PWeOc)tms| zc%G;%GqiTGS2kD3QKZDo^6boX>3e>y8)i%Z*f-xM9a%0 z<;7woyP1Uvu4Lx~vQiww*Fb#Rq&F6sD}htLQ=(?v^XKMEly42Q{%UfxlrxOli-k>1 zF`{N)HwvHnExhO;PuUW#L|ol97e}234|ZhV@$X=ieNIsym_Cz!Jli5l4F6KV@s>zm z>G$2rawxsKYSLcup7G2rM7!bVK90m#1TWOSiB-1&x!fC}uGM3s<%>iA*cwc%ywt|6 zq&(4ry2kEQ$emU`cX6lXfD`_22A;AzM833$PoogS{t_?8UWI)#lvd8^w8Qt$=3?1G zN;x*}%L*FMpxV9|sYeN6DlK8f_&;&RJRPXsACWrJ=o)T_fEE06#Cj~vw{;}U;(9xo zV)bY9cJCG_P1Igf2T)ehc|09S*soKWzI`lglZYMc{A_x3yriF*D=wO)Syh(GgCtaU%;E>%J>DlWvNI>D!=K#c6bur0*Pt6ck|^F%%7 zUprmP-a<8Skll<_*-Ag}oKa-!=`%6gVkc!;U@R4udRepGOM}xTev(Q?&<4^xZ{6Fy z(|M$-rS8#V%-hq}Hx8}gM*C(=nCC;o=qh+30$7iMu~^;g#9~k~EMvnH4|PW#4mnG+ z1RZjjb6^nDXivi3fim}b(v9qo`7r*6`|Xvx^WwEv3OT@IX;eJY;7RL(c_$r)1dsG- z*v;-29y0)Ns1$WkVMDZRSUJC<(ID%Xy!{LIb>G6(ss9V;qc$^Pwe3{jbaBb6P7~AWeiYY7bp~e>taP?UZ&ym z#Gv_D3!&l#jBhJtlzG?i=s;iep~>2DWJ7NteVe}x=nC()0@YK&o(+tJIee|v2~Cp) z{TVN-f7C>ult>t%LLhAWIwYVa{%)1cu(gWOzfyTW4sZ&OXK7H1|2TU!IsFioBPdl9=P`x(R1jlgI;1fBWF4JWr zgyd`?73DT&Gz0i}D_ZmgoTVN0TU}&o=p7)8>D8bVsS*kAKiC6bRBRqyA~C zG%>nP>CjFr-f_Zb@cp3hoKbw?j)=a^54%`3tLO3nDaG%np=RAYFZV!^c_virSnQ5$ zG_#IWyER;eY~8#nSabWQ9TDo_S0+pxwedRTNA5plYWeC`)*IEJf!#~p%*6Ksi0tZ7 zMYbj|5UKJ=Pch}w``DKY)o(|I$x~kpWGBz4_q{$dCM4!kOG$BzQBm~_4zWZ~2_6}Z zf_d)54^Sk8eDy6AvGFL4w1!kpn?>aq4dYim23D#{{0lvUM)PLVI(STTRn8P;_B4@4 zn2THNTJ1Wu{Evnh^wzcSObiPNp8cGXr{RQru(l+4dND!M(6IKaHe zt;a6QcV)(A0}rrj9OUy-e??VzzzBsGQp7=mCkWm2G9{`f`XmS?&__GJ{aE#%8LKxJ zu!JEc8%C(?=O=&q$%2<@luVep=<)XE?_XF|N01f8Gq;%E9XVY)1q(WR@r5LBiCOB4 z#KtNQJss$Z22i8*Av41nzXyIq-40f$k0I@&$Xd)Ef-x=59v<5b*DTxBM2Y-st*k$s zg#kDnNn(X`DbP!u80MhAQrxK+0#{WRe;L5xXI*=1tF;&HT;}M*)h_BXQ9dlt!`dk$t4r5())F8JIGlH3Flq zU`qm({21vugW&9CXJNKZQ}G`@K7p|_ije|-PlyDn6Y;|DZcmp(n|JYVM^7Zis)5m4 zzzLwA1u3%0qTuGWL>3PAn(p`7)^n`gIhmTk`A*Q*{`gYnDr&n_GkJ8!F_W=bXP~bi zAbseD?~-}oksl+(%7sK>1Ox_)Ty_NuJoF`V3_963qe(Umc&%U#YItpR3{jU|r)dqkLb=Vxx};ZIZDB3N>_7Z4fO6~)Z1Ny7_!_-%6scHf}*dR zCpt#`nyTW#M~>~pI)?tDCHDs6;Y9s5cK?(xxEqk??ESC1Q7({V99YT+()(li$MQ=fqa1z#o=2cdrW1Vllg)h(5V z=L}Dc?;^hgSv}X(;YIV}S)4>M1cKr49;WRfQ8rE${x50I+Xbv=Ddi#7r)#94ht6=x z;yO}pLQ`34rT@ga&xG)q!of?m&vJ%KECTz!&TpvAc|Uxs#3SC#G_?s@gd9)|F3nt6fTUNFU+Tk}x6-eg>l^8+i}| z;_JpY&-aou-7fFG3Sv0}%Z#4D*l{K~$`P(*eKfUuFiaf$--o}@G^;RZV%!`KjJ5}=CA7YxU zQo|>gUEZ^{TN3VRnkT3w$U7iSa`z^zCaA2B1C}^!$I)pjFjzN2I^~1_-lZYdY&Hs! z6@dw)xpompRj~hd+=5TQySJVZ*0aqi36SNZ*S8~8>xnwX-7?9>F=dsl1S)0Suv;d6 z612l41P1u5Z~N43PWK!HG33Fxh^R0_?b3rOWei0-Df-+r!t{AGV_COB(9hYGbc1fK zzsS*voC#oedpF&GXLpajqOHoQ8ks2joAU@I<178Yc=rn#g8X70o1KkGxQo4KuL^c2D;zS;lPNZ)}%2@8tP%t+qh{^8S)Y#zjntdn6UIZew? z4ThpmJ{6@36gh?QKSv9AU=|Sx0d1#wsxj9$jz;E#+($5m|IY$Q+^=^tL!)qWvUop| z@_I38vt24rUyeton_~c3YW7KY3l_i1gI%V6vBIaaBuuW+vkp5&8*+eVYz|t$rOYb6O(zT%T;1+x%M^f4@1;S;=p&CIB9jA(AcO1((c`TE`zb+oH>+R4)Ow zxKH(7+f~iGN7N&>9uI_%Kb;_R-QSxcD+y`noYX8;le+uO-Pk~~KgEIr7C*e!bMzb7 zk{ESHT4f1ESz(J0@j_r9%d8jK+Ms~5PI{%*u4RL?Me)bBx;d!pXFIpOc>J>RK1rn-8ySu5|=#t&%s0})2@Vx{c4b_uR`s`JKtos zr5f}zW;7_TVdX>^rh%U%8!28YR&^fcOVx?rl39Rub>9%f)V)|Bg(_Z9hqouqC--BW zFQm7|o}wx+3X!FEmKH_fX}GQ`HwjD$VDkU?u<60c`KzIKVyjIZ_*@&3bHvBEwk-J>l|kO-(%E009vn6E8ttBEWvB8VF%I z+KdQ>Ip2xiZFVKb}n^1-yT^Esg&NSM}1=&V)PS( z?GKLTQlrV#-MU?RU&PxCOw1SNFW&uiFZO={W+C9$Fxo=i?mXnCap$?JWGuJJsI`5}w(9uER zE#3EOyB193n5mebbJ^ON^|b8f&%SCXw#qw>2R{#g)wdT!1I5m~g0g2i(b$=tzxvli z{((1WpE&gOZp%0f6ioGNJAT%Er8s;6;-AWV8d`kceNJZ^8UpA(KK+!XW(@JyV*h>s z0uPw+#V!Laj@ACL%Lo8}U94Be#J0iZFprV1?GT$ zvVcYyvC$^L-<{0k6@rQ6N(oHJq_=2Q1;?day^RwF`Po3&F``B)4K8Oo3@N^0Nvsh& zzR7J<`b^MZZ2G=|C=fA+XaE86W7&J^A@8Gv?|TN5p7dd-P!J`2yvrq z4CRHa9~Y=8Z+}KI{}8gCdZlMS4?;_eS$)M-C8NN3ktg2BNb0uKq*N3;K z_-@GnXFC`7fcc{X*PqhYluj)A)%c2-lrMKE@X&zhpUZ9STu{@5(%|21b2Vh8ofN`A z4+2Qt()*KvkH=)0^h-1h#Vst^`Udozxh(M5-u|F$5@6&RprQV%Sv5jIhi`J~X&N^` zZ?&oa)@MQ-+jG^OF#UI?2=4^)XV4?$>|q~x_D?-5 z2gx|3=cS=mVz&FoN{39R+G|9PzF|`x9Aw~tAzs3rK+V-eDkeKmtV2&N(@;diOr=T_ zNbwvMv>@bwb{xJaO<*)czfj2GmZH*pnJu9&{$2=LQh8gEsyBMN9G?AjO+nUnA?x;= z$hUX11`wc61U?1#bSjf7o4tYJcPW2W-U`nXupW(5PnDtG3h&18+niB#zCSnl?zKtu zasgZG-O-_tFeP!aOU}js`U&c`^J`53uWMJjtcgg~TvZHZ>atl$AUX24eCaGYr0`N{ z>$7J!dk7e?ND)TymW;!f`T5VD%{-nlZ`$C4_JZw^pr#^NS?3QEEzHG0_EXn?q6LJ2 z@xMxGWQox~k{c5W|0YqcAxH#J!w_UhxNt+J=;Q+-qd&=DOI3uBn<0o;DIOjdg2R|h zLP*LA-;a|e&#zuy#JKW!_})kVaMaNfE#oh|LKP4=LxPS_Tss(loQ2x4nCT&x1=j~E z<4M{Os0g}V_hzeF{5FkKRG?BNMM_W|D5}E!@f&Zx#20by-FUEMWKK3!NaM~w3j{`? ztPnZkm@LAVOr&MWdWd0Mr7oIRsPL5bbA8HlhLOI6MuT&KIX(5{L`9*M zd%2>mZ#9LRdNWgHr|s6~58nZzxQQV8*MBybj(Hm`Wd9U?8${>v=l!~>U2=$i^?N;O zIv>STU9URph-4RsktQW4;h+Rg3IroMGe#$Znpya6w8#6V8`2YOPQ^Ekx><4*tZQ5{ z9p`l#8RK=f+pRZ>j`jC$E68TVeOqtdxH{Z1p`K6}`w}$2bMqf=xQrJZ%X^f#KorC1 zJ9MmZ;x&N(=%cEYQ}$Ap-Ku{-eb&Cv7ho{ID?@)#uBKLzo&Q-Y$Mm$8F4JOIMqO^U zw2{2>VAZav#(u(K`Q{4dd;r*z)$5TkuS-N3KP|mkrjrfMSp*iR#Lj-bB+8)_hnveN zdW06mbw$u(;W40`$7hrG%}kJW7t6hdeY`b}Nq1~UI?*P5+Zv_=ICin0FFJu0qkG44 zI9_5>YjQ+Cr}f-KaI?sJXO}x>`WUq66`NN_WSHEs@gp_rJKH=*I{PX#R)?T@)+F1U zL}mx3`E5;*=WlJLFnblYD@Kkvap6$;lP6H;hS}#TM8nc?VLsz4<#C`kXK>6=cFAT; z@3QOT91)8j$j5vY)65nh7t~$?{TJ`C`#(XZ@jwp+sv)V2fYC>&$O$VC0>_BSRGeX|$g5(_24c-jOj6%tZ~}+2wXg$vW*Pa@orwAhZXg?<(S7&VrOHciI56Aw|8Bt_H{re1ZHc(o~J?f!av_3M0=1L zX9$D?IgP0+ts66@s&z3PXeDw(q@8+r_lv zx1)x+iwoEpFtv@lk}MS=NPGnHzf->r|B{GQcX`LUF2N$9-ibS@R5b*XM2Fk-<5YPi z%c>tK`xUs_c9hDmM|tP*#m#VFr4zq}9}{YNV=Yp`7K6haa!96?D(5$TZ+r;TQ@RE@k**07A7y4?-aP(&!Q^i3(d_<-w# zcqBFuM#DX0|9ww*t-B9)o7>tJCI0l%d44!j<>dRV^NgD2O6)NgCJ_5R4&LOiDW_tg zbcyq?7Jt`*{+~j#Tp-#N_AkmbhN$Fh#k}tz4Y2Cf*DF7E{Vt)UT%qR|!L2IHmH~3u zqld*rs(g&#xR`BD8X*s}YpwHQA1V@XHI%$!B5mKQLuHmd4& zC)aI^j$~`cf4ydZ4f@jgY{;W;ugxm2~h#+Z%8a?6x!J3Ov z?1!;7?&4yIN_NWR8M?~|J>d}?)r*RLC5%qZkngxwEptUo>sppEO~}q1MjcpkgoFC4 z#nKto11Ds@&WGQjd56H@`$Zp_sHBAQTxw%JPpDfrtO9&#lzGv1Cbq1MfFPgsuVIe`Hy~y^i zOLJ|{-%GkPkrBET+K$_2;&rmOKbW!$F$^SmC^YXEr+W`n0d1I26qs z0va)ca3)AK$Y45fDis3~y?k`mN&~_iu&touCZDn=HPa$7Z5B+z@ODY+EgA_hcj05H zRQu3HTd;T%-mRwWEQxPyA%nXIiifm+yA&|;J3wl?93ByHKSX>vNbc-ua%_L^{~a(H z_&qtZu(R|WxqZt}SRRQ?p;U;VMj22w2r|&)jsN4?Z8Bnaf|4*^*1QNCoq4nHQl%niikm4*tC6t4^ z3Bhv>#=Y!yXJ|b!o^$k|d+MfcTYv8h!B&d6=sDyf(9sbfySuM3(>2iT8lL7-$rK3; z)x6rDDu6H~pihT0dM0(H;$zVKX1q4}O|$uME*g9EI(>A_Q9gG_HcB3!M$PbrjDT$; z!$gZ&Bv?K^WQA-V2Yr-;Wt$LLq9XK_sWvI6;7z!w^G+b5cBH@8n*yT|DR*rq#o%YYAM(kue_TuB5Zu8m-U$PDjtDs*shnUm84RGp@5$wrPia5PFDP__w zQq2+>8mqQn;&U*A2MZA}EfN|yi50_724UPNrst5Mfi*QH#`;W~B6pWD%Vo(G+bM#B z^vaw+f0X&GR_Qjz@z8n2ptAnlwAS6~*cOhx>V=ZoClhv%b5`>}#EQ@PS&sTgIR*|+ z?(!_Vdx;7R9-)B+x8O$pH1ZuJlKx5hx%N%g4U=P||M~so6KbQWsj!OiB+SVJmX{Fb z3?pY(u#+gI(Em9MXZ`+#^_zCRhetLG+0oLz?e|x4pR;GW0cU%(Y(8j*&(qg+QHftU z@7o!}3#{o55A6RgHLbx2JMU?3lUL?f7}%%e-KgN;L-@A>h@<#Vlzp8YEVZq4bW~&E z=;FTg5}6jY8dz!VF1t=N?>*uv7iBbtvq%xmz*8-?+lj1MQi^yW=>cl$E}Iv%{=8{OZV0ORV4(O%=7u4JLERGAE# zm!SmD0(hfgA)-WEI`gy|ksI^xA-WRx8(LHbMdh#3^qF1#2n}!*HTXm2M+e7?=5ggd ziL>O-etjYeXACBxmg!LE`ll~JTxRa|+-mj+MMhm-!c>DP1F2@H{ng&Ko^T|s{}#*m zS5~)=klcbQX9C__Wf84EEMi}HDoE*(a0m%8e|>0}GwMBka>8taA zNq;jb#D_JoQJ@*2zI;$EzG)A|ebl|J!#*SpsbDH8|Fhsf!y{U83R?7_WVzq(3_Cb& za&*gsOo$d@k)kz-Y$~gQ_E8TM%Wnhvy;GAFesLK5yJx1}&4(`$JG$V*Q9G6`*X{qa z(ScOqxIR*JvSaXDxpO5OP`{{F4gRgy1yESQ~EU0?YdsloDbYqZeHG;I9GkG++6XC zGLE7DCrcU*56v5m=#l{360%r+_s9fbO+`+UGg_{RnIYB<`4l#`m7gvhYb5T! z)lVT2PrYF%rcNl5(D+eDN9SRh7{Olxgak&OrHln z48+J>`1Mpa>VOQw#^8H>;|JwPKw9jQfnc6KN$9v(Y$V_vqPBKP&nz8H&S<_Rw?;;; zs%k~xk_cHV3^7JEdXb*mTwM5+5994g&#m}KTRgLCFZD>8OeGOtUe5T(^8?~S5R;+( z6w1`_aCDd(-*R<}WYFKQCPGt}7+@V_f0Nb=&I*$K^G5jXgBJotE$@6QL;ad1Ef%cU zRQxmJ!6d7PO^KlAd;8X>DO7Pd8Sn^}O_TV1S&#oMwl@8mI5K62~b9m$SI? zhjZSxiXqX0Hcz_V%3M=Pd&?m>^QHdk3Li83CG&x4x*l_}bWTqw_v@MSx3K3J zoZkm$oe9DrH##=xXg^n+t!e=BmHO#IiW&67>B&ukbo4Bvx{akxL<#bQns{h=GDN01 z`PkKUwN`d^XyjGwhNghwuCz$|a1tt|VQS)StML|xvE+uuLX>D>wfT{E*``a$+Gt&NpyTD&9k0)+u{Qf zqEH_;xie`cTd`o_Hm}AN_M*{z(x%W*vE(vzMeizwbCdiA<@svYvrF-XS%vbt!VjCDEPMdc zH{)|@P5gQJT`5Tr!G$WKRNVOcB$5(R0*WEKbVOZ!Dd{gVq#KJ2(mEF|LtIXgtkxEG zExPq#sZtJ?5hxo6s|!JE;ri%aj?kO?NNgxTIoKtpe)Gua4AW{-#E?dY7aD@-e>>ZP zrh9aMi?04GEm(}nd};yW3A^14CQ(eLNM*q6aa0rf@PU;>(00?NW=x+zQ|CfLNQh~& zc|CAkdl!e;Ap87e3dWL{vXkVyHTeOsM` zG$eQ{GUuoUX+HUnW*C-9)`+5}P8alf3wycw_Fgg!_!tn0(E6Omd97d4DXhwQtAKo1 za{oOCxc9<2#@{gaP&6LMTVC)p7uc{M1k$kMkG0nx#lrpF^Ca~eKJZCAT)j4Xj4)3e z&9uvybMG&u@1S`YBkmKs-JdPS+QwCuG%uz(XAIEv$WH6sz4`eH{4IXD!qU$+_)1&n$0vJZ#vSG zgf77b9|bT_T$%4lBaXIvG-yFDBl4i%xdV82Jsv3V6u8zw6>(IX%HNj~VI{62EFFJz}e;*$do0!kpLgvlOGjZUl#7HsdsG;u$qN*52Rr&J; zs*OorRn>37Jvn9R=#M#{u48DJqgbztV$2^m&tXiSitV_lx8>}(fi#HW{8wNNgxSg* z$m-Ht*8E8|koCh-SbSY>$Vvu8XJ2(O0~2wPeXhKq4=MB(*_uEgK)S7zsUttX5iwH= z;e1(xn%xn}`4RCSGOk_<9+*CORVD(tCv9ds4Ak zF*cLcxKuE6#pa8T`JqQ7sORa8S>UxE>A~ae+3x8^$IjJM_rm8$<}e{^<>-gIID%2T z#?5D|@6pfm_9XlDTI{>bXPrrnGvZ0;RSAa6hC?-CEqgihw@kcVzWDhG><*b#u|g&u zqOL+t4gz5O<*GoM08h-p@({qP&H1i8)X)FfQ?Ee*GNp}4@hIspMV{V3rJPPfv%y_& z)pPcV*;UwY<0$t+>eF+W7dNJFT}*#y=Sjp($w{JC?zf=lH5N@L{Nj_4c`6Xxm)&xZ z$(Hh0*B1rRDX7aSYtMTM|zMOx$#+IJI-#}@8WydyJqZ_xZ$PGyrk}!I#c%Rs?sOe zMfB;?;Iu16{md}odE|umPz`^jJ4AW>9wY9gmU<0)iR${iInc~aEd6TpJoz`yZ;UVW z|AMLhD=kl>;57}X+34M6%mNye?+Xf)ivOc#O;5Q(3M7!%@+revn5iTU|D0^C;SV~B z1+`QlSzXUPQ_=lw%2$p*TFwhmoD99S3*`NP`EPAzZsYf(PxY?QI0g6%`en*OI(x=0 zRfXw~eQGd)ZaQt5QAX=8uykbg&Hh84NHUx%T6tbj)tdK&=N__FZrJ6F16=d=1lR>F zKkcBv0grybHzB7qU5lTJJnCKo-&vrM#$9$uG7Y&XdMMz1Z{&(8Atr}mdf~9@ytaEZ{(UP-l)+o$h z1V?_%x1e@T9q7Zj4#0VJXeO%P)%c+W%<3(bKu|8oxm`&_ITNcqzlA`NuULkmaJcSu zSL)x@1h;kL%EzeMO>tKNI+$A?tTpTibmjDeFux1To)Owwh%3*#@>y~1BCrm85_(ANtKZL61O<~_2o}GHuwaR zWo`57s*)1X+fvkIS^_c9W@o{JK0@B;7L(&L{p~ zPEPOb_e|Zu*PUlkSh|Y)tO;~b|5br3+FdIn{3;lhAY&{yId$PMr>t+7%8*T0kkJ`s zlNraLIpA56!H^>0L|o8uKtN0)>2OSWy)}Rc*Pglrz=8QQUeFk+cFdxq1`U8Re$7S^ z^VE7OuKrIBv)z@xbiF83mUBkg9ZrxK4VmoH5Ejy2@+|u8>eSUOG~NHA+fbG$qhELN zzpT2fe&-tfn+7;Xuv8+^vfyEl@HSKfA^V%O8zAipCG4}RorYS|0s zo9?d8W@@dlT%O?W`C?xjtRGTT92$F88x-?+Yp=zYUG8?>+e?G5oJB9kBgz-SZ$GU< z32EA()2Vrmsx|G39x7+Vnw1Fp85RYx4GMf_gTuF<8rL6dz8A4NHf)MhP>f$E|5$fn8`#XyP)TI(POQ{rFkhtLOH1T=&-4r^PCD zukFMGp|SY&!510a(jHwS4XKW#YS()%>iV%d@@r*#L(&|64C~#mTQi;5Wv{23iDofr z2;-{|R&#K$P>H?@zUlb)C407n<+VaScmEpzo`?pLhB)n|*|`7mqeQW+c=15p%UaLw zih&uy{jEZ29Mh7Uk9I7Q<2&8-8oT_OSak5vGdb6hT7M<#$JGf&jKP&?SGzaVuP?W) z4=0S(wHyf~;nlMZwO|Nfkx(=wUjs*gy|h7=Jzm#yo<&|9Xpn8x6sY?cUN7Y_wnfbd zFS%=7el2&oV1Q*cH{86jw{R6{D8fes|7(s$;SIT}W{p*+#!4y4GG^e4wpu)by-<_3 zoj%o1Vj=qY99+YTZ=dTp~v{}%;9aLkN1dKs*AN6 zAhu#IPJNId*-(-T6QV}ECe1)8!s5IA?E~IRs$DzQYJ`2@JpAzs_q!VYuz1YjXR;Zo zS8+4{Jt7JbcLXR9JDb}auN)Cpk#wAYVEcU07m5Bq$+~VYO9TyO|HboMHM?6+Tf2Rh zL|DsZQOk_HeZoa^lk*h^WidpWGmF~gzJ*$I;_|yw`H3JP*#$qp!KWn`*jUIgW>wvo z+^;;im+LIFG9bYWYx%k05i(+qr<)M54@!i)@$1}~0=AdZd% zh6WXEwK5zoV_|u9g$y!^tNXs7H{M<0_KaLlY>kVmmNt0Svv5GFr5i%h%JnJ9v2f zA2g7x+x@^DrMr&)UBuDGX4^Ym-=qQ*V*M&cDUc9?Vp$v8X49W77tIYEiloMB@EL!# zU})BMa=0lUt3{i39ewUh-1Ell;yX-X4* zuxWL!p;hYBMqA`zpzq+7v%iN7)NcvaZ^nGrb|*$TWvp&F&%T%TRAop+*2(H9Qa6M9 zeeJ^1)CqZnVbrV|^3Lj{)PRfdg1O-;@Ee}vv~a)sQNhXI)c zRP)I}S?ns;gC7R3Q=OP*?DsS6YOp~<-p~Ral_;xK<6JW5DyK+ZQR{|D1D{z`Fe~Gn zxy%?BBRB4*UB|YlU&sG3bs3lcW9rA=|2^7xSTfhi(hy8fvG+>(oU_Y)o!o1RqzjcV zKQ0>WzDE5`{srowJ==TZFK6YE;UtJSu8icwjLBT6K$k8SJLcZ8+k)_Mj)>e5GlddB6>Zo7$0su7fJI`iar4(yAm-dns8 z&JD*{Dx_HWh6F+B1qWwIOyF|$$*p3d%DZbPgP|cGFK?nGPx%PNMX&VSZ-d#+%~lPW z1f1$2U*hU>2nkwOD#Y=d4p#w=VLM7p zH%XAtZZguGbLmj%iX&~RQh*>diG|1KFMOoA?ln5{$0zH|a`rI+aCN-&TMhAeLK#6q z9rbxWtn1pPg0NdNV^dl2m5RS|>4#|l7<^RZ#pUr=X4aXJ( ze2W6cX1MH_VY~l^!{SZDEIpMLty-+B5>4S>ka zt*MrlgZOsnO6XJ%d00zi_+X7gG)Xetro-jUby3%uM5$jweGl=e)MhMhHYKXLIKOGJ zmNs>NJE~;m%=&ng#q(R>58l2G!vdJ=7XpypzDWjBJnPEO7oDr+Yr|f$=s$4sU~f&n zXxEH&$zhSlBqxxU{s27rr=C^J1q=EV>F|lNWNPZk*^&7#e{cI^UK?efXo@0QUQInl z)(1430)NS7dt+nck%!@SgDSU&6nj3SGJZ!*zG+dQq&XC*choR+*tPQ2MpYL1K%s_f zELm<{rtl4Nv*WH;?-z_nuMO!$Z4Wc@+!j#PDlz0Nl7#8)&##0jB@9FQEgRiXC!}#s z#HJAk*g($K$&y%TGXvwMWZ~qBe#xU&IM6G(Fk+KBKplbz4QXCMo0UL>piTO)SD)}e z*QXfT7H)`t3YFwxPPd{h<7A4xi)^q-8)HUC$E8%L)$B!rQbPIAhDXkaJI;0%_-9H! zn!g3}7kmM*&wlJLe-eub;$S*ySP%uo z>;lLjDn?^nxrXHrQ84;PT_+1piwy?aB>rx$Vmxa;$lciPvKhOWjQ2=hWx81kvhJ;l z>;00flpmIici_+)vZ{^ffR0t}jLS_a2t#XfV@=kA=14guNnH((cw+zZ z`{W{t$Xls91aurqU4${zBbx}!V^*iKZ#YR)eq9fu?|m@$4fKBJk!X5{W^i5zl4+*8 z(dtame8ozjzmDV`+`w3e9~&eZA2ULJZ|&&E5Djem5>Os7H_SwQuec(dbdD@5M4Wia1 zVKx6;aM!X67VDGdV~oSul=YyoYmi<3S&+T$cR8~TT|61>I4NE6JT?oZO4K4H zpueHBohH)NIeAUIISavTT@b%@sx0qo{Gc&%=TcgcmylzxTd@RSo%-q-<)aSqM0Vqc zjw70MDR?U|>d>LUe@)5uiw4bA7dDyZ1t#3 zlD2Ql649Vri`T7l_zjA?+l5kS$04z4$|7`4Ios9f;FR!nCbseE|=Wke_VmZLyI zRfjn~|KH%p++(zDTAh*nfRV}H#TI-?JvT<)&P4R|FaqEtz^EnoVOJ+^)Dm34vM3x48!%L2C6 z?0hY8WxJsBG^(am#KPyXF(u3rgBhZ|bJs?$>+CP$6bXLf;X#%dW4gro<@o%R4V)wJ z6XeQgrhK+j6{B~o_Xge$51pkugm=b!<*$?Rp`qf@f;4^wvcMX}qHc3{~ zwr4KsFrR=lU0E4y1^31lo>Aw;F(w?AzF6jDBv}87!^UeW(YpNCjaHkq=pQt)_ z9rco?svqDykulg}d|=sbPrIl8w6fXSjvv^?rso;EqSXib%jgm&x=!LQKgj>Kl(C z-HCR&>r`08%e_r?8<{e$b2FO_t43o~5J&u2)zhh3HSd+{13s%Q2crcNzIL^Uw@_kN=OTaN1LRf z-J1#~iY{lAES!CGLXDw%FMu%O)K?y0O#aKBpVP(&VAHTNki*%Q#wtgNPJoWP9c5rX zlmg#LO#gVx-aLp3uBkw95vC&PHTco=bM_1tComMAy?($ z^o3)6gWmat2zqLL#A1c?JTkHREMN zW5r6t{<%3mef_1`9bPM(BhHdV=kK+V3nE7Ld_Bh!o0`wg8%kKN0va1&AzZq@we&lS z<4ce1YG&w^ zQNBss`9M?3OVFtTTF-Vl%{snC9w?%-N$6e1De*tt5l@LDS zF#jn`pb2){*hPdM8EHAUv`^nW{P^YaNz(;bAgIJ|Z5e5Ai&B~F(lXhQ`Oy<+Ai7bI z_@JHxq6K}HCR!hz0h1#Uq`?=}KG;bJ8atJz#g?UugzRH&K0?t&e2!a#ntOsTSi7Hg z-m~({nDElq1lAD#k}> zL9VQt5?(Mg$%o5gkIPkGmfG6yW?TtR`7pb}nhpU~PE&jo-6~IVWKd>g$l6{mSmO#x7>^TX$;FOX8F`Bi>TpG=jDe`oi ze|5r(R&D9trRJ?SEGf`46XR~`h$9JX^Hwhrq^%`944G@!GZPGOFwIBYvXuH$XbV8u znvo%6b&iX890}^^y+>DbgeYO)$Z39+12rU6V$dy7isQcZreNUz06)n} zA>~EZ^RyH?^zQ{z*O-&R>w_FVj!I@8jzZ~Na@8v6EjiUE#=-NfK4vG!C_F0{mnz0% z6(l@{QmuOpc{-)Enpy)qT6VVSHoVFaPM56zsR8m-qa<=i>NLvfjTyT%l)gVZn_^d1 zNKIZ&-?(mchNCw&f^^5fGc$!TyyJFpjh_XG40QUOGvJk}*2%gtr!%d1xl3k-Eg;W72ff7I`s~=XE zcw<@k7~eE!!@{w=`q>*M6i;M-0c$NRb+v7{Wp&H_rjj{oNMo3w_3nDaC5$OvXiqCndW zQ7+SO|G~A_1QJwZ68#nJgiQhy0${-<&_(;gjc-XESNE-Eh+Ij#_2$Vt-L*%w8swXT z6Fcx@1ZucXy&@s|^-bw+AjDLr3K2+wDhi|=jGK8L4)qlebmk9kMOUAeDHnnvp!D&%?2Oq_!KC{q&? zs;z;yI80}oeG7le7ML&drE_TjVWE)y>yX+;^9J1@_KF3bMy6Ok8PLKj(Bc61C!vE+ zIdjWOkwn+MXy_+qo%f_viyE7}W!jiF^Q2FIqo{w6F;D-7pNQz~A7CxR#}fdmAvkYO zj?FLkydt=+cSb(ql4w;g);IJ$?4bc_)1LWT4-DU#@GB*Y@_GR47RW$C0C(?CUfF3k zcF0;S<@oqJ%hPUpI5L_glidr3|1R%M=aa_!tV62F3|5*;lRLU%{nUP0wSkGtoka1B0x&(ThOd>b4u`%xAbrm>#XjA9!H=gST+-e>{uCJ;>GsSt zhle!=d6lQR4r@c5XM#Oqz1N%8lbV6D{w(X)yy%)S_nr>>_!O&2{_0D#px|M!XiLNj!bOk0_ zq(YlJwLO?S?{~1_>+yG)H9p13lNlq$MkyXDuH_p3@OZU1{?%$Bb{Z{JUq3UGUlPFd8tE%yUIt`!Hkh*F-`> z>%)exRhgg|e`JU6nN@f=Qy{Z}6G%9J?zF;$wMw!9Ng%)9IX`5HLiVG?fKWo>0&MMQ z!=30Zo+59M->3xx|FadzN}w9Tb*gO4UMma+8$IxxyS>k~FG}^%3w_yj^LX56JSLy` z_Eo)98-4*LJQ4|v7x#N76PDx8lk(XWA+mILd6{Lm?>KmYO)n#Xae<9d*U9!LrvZb8 zwdm#m#?j7A6~$~EQKCma1I~KvLJB*9Km-cCn*;ifr)q_jk{xT)nA#O*QtFLywKnJq zzMGUoGtH;4=*y%!pPZVSECFr=9G(wrm|{eqlQ+VS%n*!{_pD3Bpd5w4 z-=CM}yR$+$KsdFPuKZB2>zW3e&!VnskAnoROI*vVj{ljX4sXbdMq3LNt;_m|K#||O ze+w6N0Y#V%L#a|^ifV>O8k*|Tl&TEdWoZpuMS(Ytowt4H@5S7uP1-X}#3L>qM7tlJ zyi7WLOf#har-?IZ6iBbQ#J%-1RiklS{~HgCIo+}W4E5$2EziUm}DAx_WN-B=jYZiHIOLd1@(z_&Qy%0IlYFX(oVZ@CvD zj&+!nml_j2k-b;?UO$mLZ;+ucWOgvXo?DGuzcX_#TqLDLN%-~@h#pDgN(QfX?f>Jj zfpDiwa_Xf`em6j_2QQW6J%2QT#e6O6F;<>;;WsM#%c5sD^gAJg(%dW`&B{Mthfzku znC8=BOY)@B>noIrjh$1cY{Hai#?6*iKFX};>#T5S=Qf4GvO_M=aEis_j<-vkdyJ|| z6h2r^hO{v@__TUQAm%J2sBFBuA%pa_)!iffT6FlN$Hs7>uqWXMtI7$ zrCRA0ExN0O#H@4i-_6{tfSzx3bab>;)gx;oV{nvv<)pjX+t~z@E-x>0a)ZOJldzqg zT|s&7sV>6e+e!$N@IA|Pm_KatdYmi{it6fVAQ3^9E{X?s7MYWv84C3C>wdis9u4X?cjz7R%fncVVbDM6oFj#< z_<-_w1$C${e`{3 zeT37GU4-ZkIQ@90_>X>c!_6rMa^T4!??E8Yt3#&#O+I$IwPLH!*S~GQ0VBGPxo$*M z?{!${-3ULF)ufx*Yk81XzA#Pn1FkrRb}9Qw=H8c2bWw~D@60BExm#Xgk9Hr$H&t~yYF)y ziiV3>EvNS{_%vZ;CQ?Cn@7^XP^g9!{r&ng3m;On+UWS6h%steX)S3{S;9dW)2tL8B zNyOWRbDJoC7dW%#;p6*~`puG|5Cv|MNshrKS(u7f;O%xpibVdP8=o+0Pxqdh>LYD7 zk^NcytVd$XiK0Mi|5Qi1h{pq__~rWB^ z2cv8AquZ$p!e3A)H_hHP|G}580pETebY7@&`0ql5y+Y?T0^NM?f$Xw>Zf9_)&t}8O z8^EFYu;K?Va7{0FD=TlL^DB$@{V~$yS4z|5i-3v%W`~nRv=!%F=0ZX_NU8b+yj_Z8 z^wIjN@kStMAuP{AG#5Whl%FT8xa*e7Ea*h=FsB!vjLpK(C)EdENzpo|Js6#&yFD!T zvC;1wvgC0ZMWX4M&ocjhR$1wSclhOWim5@Z^IZJ%IEhyS1{of-Di6kcP}iF3bT3Sh zp6h@@(tSq}`Y>?DBPEdpm(wA9FtFp~a@xiFn+#@9R@%G!3Rug9_Pg|cQ?ksJl6Lw- z2s~m@$C0U4OUeM|_bp~=0X5w4;C0zMc*gL}VC`LW-wHG3Gn1KAa@q8WciWEMLXq2nh! zES3FGpWxSz$D`~%SyC{NK!UKk;cucvH1~vut94W>F2j zDO1I+MGFKMej;d^jECeYwd4JLg+zGStSU~s^2^XrjCQI~74(m&YIy^XP^FrJYBSu~1o&8KI5=?cA9TCn+Zy`X zePzZ}<@6x1W-;Hid~uqC3f`@cUGVp!xIG~sS(#_%72qjZb1e7x4Xg9G-DEJFkl+)F zCNcBFv)(OrSQPrII-<$yV&UyiTG<*o`y21iTV#i?b@4;zJNS~1 zYv#P6uaXUi3>QY|d*h-N_V&CV1QTN3RxNWt%Y532;=XYO*WFY6+#@!Q5tQSS?xmgH zRJTpF4<#K|O5qtSsHlHa$eV0f#@6CnZ3jek8p zBRHEgiTy2rFKCqB?`aNEwe4|gxWz?+_P;Y;vS`NLT+B$hs~ulbFL}(Hdge9VM{f3$ zQ}dS6R3DJcd|JzWY+>-finm`h4tdkDFjU>5&F>>x8aQ` z5v7e&$Qlx<6etQhHR`-fFt^(JEz7dV#%DfsS+bJBg`R6j0e2g1?+9;gA6+~7T{BA! zrAr0KtlAJ6t5?>z;&-+H+{v(QN_qb**Q);6;H@{)W7~`#%>Y5d_)4HT9E>>qbfux=G9g-BtsP4**U+g(yUO73?wm$G*708?QKLm z3Snzs&vI;Upbf|<*a0L@kzqouHxZxbqleM1$y#%0(yNm?2c@|+n6%BQWqj43$`gTe zw}5bn$jUK;YzOG7iz;t9#%{guyz$fa)NN>Z9KB-sbi2yCABaN6a&ef%GfU1an%H|7 zMegCB8RDJAnM&YmuROXnY&PZmtqIB@-j+^{D-_YuF{nyQV4_s>^lx0QuJB`r*jr{V z#Qgm8N=!OP4vqJnC}}8bho1pQ1uKdHa0kGj-!>WdrZ&c8GrUVzeo#mxTu(!MJ2#Sh zkfiu~kj`)aDc$e)ioHB=tRr{g;NSHUiO1uqDTB5nh4|<91dq5SJes}IvgK zov}$x9MR$;PF4G%#i8eZwEjWduU+U6~6#h&VjpZCU@eQ~w8T32u${3J6uX0_V#F<(|Cur24vrngRxt(^3z2>})i zp9y(3e!}}SpcKHEjQ7>Ix+1rpi(iw-v$;!^Ut_f~ zy|elSOazuSey&LCtU3sKzXoj7t>zE_sv)`j+84AR@f~^JwMzc;=kr>a(Pb~jybiiI zvZFGXE-fB4Q}YhhtjgfJd004aKOm{$jjD%eX64If!v-vPkqEVw|4^VO zpL!K8Zi}v#$oeTiSk zf;?fw-OcmO?ZN(UhWSxk9QuJj1HX8fn3%rIQjH$)@JhyqJL>~K@V8a7AV({VXuc=Q z;^iV1)?&>*x3B}O9;|nJ5S7xC7JTq0gsPBIhh7Lzu7}2|K;od+bc?Ejy5zMW%)bGf`hvk7G7!}2u1)BPKA`A4hx?m@I3rvEEKVSQ>%>}8Rw6+;bmhKfrn6;N!^fu)<8nXP=Ui_OCRfxb>JKLv z(PYv&0cuWV`L>r6!%8s+bxZ!`}+7sUUB7iEcIwA|R0-UlunwF5rb;)Dg$$xqpd&vD`T>V4kXxB^vx_Qu*V$wX3 zIFOL`9(hF6v1fM5=sNX>#Y-*ibtDTdo~n7B2w`2GkwhFR3a0(`=!fGs3*rC#6p49* zxP=Yv8&q~nkN5BG^{hv*+8$hA&*$o%2qJ)}&Vk`}1oG%m1~Pf;{H}W2uludhhBhe#+h5By>YPO)SZ|BN^%-@p22 z^w~tka>2yb__xO3BM&`yrBquvn@!&M%(329bq`GYd^pIgSI}YjecwvY;ZtzkTSI)5 z#0KO2vTS%W^+B;c|FYg`o8$~`t!Wd;qMBBnIS#0a_iRff z3mj^9Hpu$OkvshBAIn@W7T<~t7BnZJH!HEz`E44LAx>* znrS;Jl{55o%+dY4uUgG9x&5?~F5>k-Si9All;7fN?eC4O(|BoU#{T_uF3z+qLT7yD zk@Fbe*uxP)TJxmMABOw>JqvmhF~Lf0h}?;EEp{#ApQ~~F2h_lq+sAOAPP$7SwNEe{ zT?s9fu{}-k%_fAe9_2+ctQ0QInMFRWu`y-c4%($e8hq^dW5MiHj?`=h;+9%2R`lvL zjk%KU?r!PhfB<7``Dbs!MWx)_)xFI%T>!15ml!Y^NNPCFMb#zHqt$m!vvRV3s3b}A%W#_rs0}Z z|8l$*!}b($nwEvNEo$h)hTHi`)Z1kfV_7}s?IS1}0J}CF+f-KlAhZFx3Yv5+{ZYPc zHyyMEH@iRVLT--q%r1Pb!FzT-!K4)-%w7RvYd6OBEnbO=4eF!1QfZc0xcG46xXXX+ zLk!MDEbecGa)EjV9RHRKbpFaWK1_p3n#5Y6$|wWQSR|06m3bXyx+YeArlOMn({zmS9ND_q?u2e+K{|GbqU8^_c$`-?9>A&k!LN6+=np}0k zIk~w*-NDu(t)WtMpE*;8QIiD440d~z`4wiq5fTzE z?|Pp!>AKa;$+e+?=4z;jX_%NU%9vIY9d;xf`d}@7xj+EQj5jnk%`%&-Rm}~ga2mqj zC&@<9wSOB45;hr3cf`UN(j6aXd=Gzr zpKAN}vr#3xxw%>I+!NvVsW;O_l8oNl#X%3klM*I!14&l4U5S}VeB;+yqrLfDZJY+G z(vE-%$rzBBy2~DyjJJjK8s6yYb}hO)mPG+$Z%b_@`SW#FC>cTO3UsreQS!@l zxp%nf>w&JC>%n*Y!MVp0(_ozuzn4BDZJQJGUA zgu;X~`^XzLo)e*FMET~j%f1;ttgBg*Ql1Oc`lH0{XR9&{34>8g2wBB3Xtz<|P>Dsi zY=z?57YAwQ*c@I=Yas5B{#Fs=@IC0R{_3{hFHtH7m7*!GwxJ&3t1jl#I|AjC)8C>0q1fo`Zt3$Z`ZX$kBsWo%HHj(}< zN`x#>H)EF&&O4x%w<~la>l*J%Q6ZO6`jno7Q1mka*!0%BerJ*9md;jEbI8bk7i|YT zB9hT|9BdZtD!UYD?a7f=bXCtUH?dErSkrfz= zHp+Mn6Fgo1-dQ4XKZn)LmL&K##vwm4{d-{Nw&pSadZUjy-aSUVbcAn_rrz%Lh~v81 z8D3@3Gq67#&ByFzinxRVJ?2#R;zoobef56s%sd-qB8Y8OPfWtvd1`Bn6*y{@^1^*o zh|wCg|Ej_`^f}RWz47v`q1hJ74kkmIqa39u1_=+3NVGFsk~3S}c`6PG5;KL3_);{z3G5-NCpLhhW)YChIx(zuYsaU8L zYU5jW7X5q>??noz`}dTB4j?o4jj^@RqFr_eV_`_xkqf(_Qd>v9%W-*G@T7*cgBdPT z^b3N2M~Ntg_^nm(lptIKIP-DDB1_@YTrIkx3>$i6L{RcIOR;NjIlOU+q%%Uh+P<+_ z559Q8$xLY9rBs%ATopz9e3k|16NDB9gXP;SljO;jd>a=o)b6DrBS07=rMd|iZvSUf z<)vmB_@F$9XAk3eR*%l>+D<7Fje-X-^{0YRve_?@?W)B{-jY@t&41z*t>*A~79D7! zF!;nPU^^XEOFui?!s&l}qWvHemZVQ0&-C1y)qrN)2t|SBI$(LQD(rjY#+I#=swlB( zP7$TMKmhIzEX$tfODU3rTaphLm+%=9_Uv*Z%dYP^M?xUi(SYIRNTiG*hhIed?Zr>| zYrf&YuK4Bn|A(e??u-0=|9-YMyEc2XxovIUFxjrj-t5|J+cmj1Tia$%HaFY4=JWkM zu3IqwoO8a9g&Tq(9=-7`Ko^F(6P~B12Hz67n@_BaDtAzSRCFS zApPl&P)1H*Bjk7*Lva4&CBr*N9 zErBUe8fHnLkbv>{uZy4TjHK@YAl%TdST(}Q-r5auPJ9CKvxO5F6UG#pbT$Y3LhZ_( z(U#4fBC!uCn2GJL(8F=$ePd!?pI(L^MmR=YValvED?^)_)Q{9A3>JExCLAt@2n>zP z&84EJu+fT5BV+iWEeYoSY&0+;QU`kqyS$Sg?^BVFuLa{cN&T5HIzPqvVYK-!$pAjq zT4pdYb|YgxkutlH{6*_5V}bIQj_YqJ#1SO@FNr5!5YWFx873_qzu?=48VU_*#~U4Q zkU4$S*w^$+;JGxmB>a*JDJTnmDv{Szw*I|U+?cMbH?TGnK<+UsSR-%jExOkBiS^cxul9Oik>O{I3C@t?$1RD2uq4qqyjnuY|h zycKWW*gya`le8{R1^^wzV64$WBN~mUL5StM7!9E?2;ZfzZsYty()?fB|8~oB!|Ylb z^~Yjqrs3DKWI3NREYf{TFn#Hhf#b7Z@84U4B^7W(3H9Awa?D~#9I|kpaU1%@u?+ky zpCm0erCuGTLk|(&DlpJaZ6f&@cpFDYE0z+uaT=gDOSd+jO zQ?~SMft0mT*)~Nw1ebEAT-y8S>tecPJqos%y;gY^DSsCvYCQl{yIWWz!ZZ={G1 z6v;X#ZEY`F1_u3mdm=u!Gv8ZX4lyFLvijGGXBhz?b>mthBiR?myvTqw0=E->zdgz@ zL}#mo(Q?}w>ZEAuqi+z!2xrUha{9CI+u9Ak*D;y~uiWElWo^B7&F4&+BE2}ugmGhA zGqm6*;f9go+cqV-q`#^_uScXmf9MDIVtBT|szf)K=csBqk+3N-;aWc(2~KR}m-s~K zOfRqK^R`BtNMs1Yl)sZ=rt#KwYvVn&up6ScC#fK8e1)}Lox`>?f-OADUq-0Vw@sdp zk5o^Hj?wQ}jUqzfWLrfoZ`O5&hwpkzuYo{0HXB;iFYW%YVJT!$8UhnLrcCaS)aBPj zOKa(b0_x8@|0ogttaY}(c=ZK>ULcI3=Q{@RCL+c!BbL`eI)SFZ*BG<46JY*}>X_j7 zuoYK!_N}#m<5rVOGIS8m>GvFk2$Q|XBd(t(Zx4|2mXr1z++I6SAA)J*3M!Y-V-$%< zs&J?NJ7>j#Kh$+(t=Hp%7_O8(INkTgP#8L4g{Dr20S{=2w{8CRo5qP%~`~jH{sWi)7`54p;buYaD2&5fwG8`x*G#nbxN2tX5T=BZAQ5aklF*0VGFR zi2)u9H0~X69>Ks+?54_=I5t!Ld|+*fwj(Skg-T_^G+=aVTy`)NT(X@aS-K*N^um~^ zDEAu&8G1$WcQGsa{y5zD05$dOaj5E8Fd~MLt1E8kD^wUl_+FRZ=eUF!m8zOrV>dhW zWj%c4=8MRocvn(0RYsa!jLbWxsQ2O@u5OJqRc-FYj;Ko-uv&ievnR(${v4&Aj5A`CcFYu)+|We-%WOuZjzQrE3k7 z?qag|S`{w(HYo7=Smr<_#2<}H&=Z<8LdnM;$;?*<0hNXLQoqFiD4PZ?N;N3qaJ2`= z#V8uN`jCbOLgS*qKbn-SP+msYm&wfuE9{dJ z!Bh=i^(@xrCF3A*aW^&bz`Tlcqe7pv($_vNSQmuHNG#QKSSz$qB`(ROzDol$Bf7ioi~S;ZYQwH>{=I@1|bxkVlN>|1c&jG7fAHdMb* z%@s#5(A;&wdfqDC&XmVGppH}NG}*faBDOUxmflJwx)3XP)PZ$_fD5X_@BpDx*)y8> z$pd!3EhxYDD8sFz!@S@u$2x=RUy-!rF%_a`{lz%S-_6&Jvc&J>OKJ z(3d=xdC^jWR`{83-u!KODaZWD6_(8gr%M}No4>cNH(G!NXX3q6W<&x-^RhNjwn~eP z`n(TPi-40%i)DH7M*c8QX>q#r6y>$w>kZkiB@Rv2Ekj$XLLp-|X8u->MK+i*V{EXR z98A>AyMrYZEZSBumiKv+`_7c|it%H4-=(GD^ysvQ$IYOGOm801*dQ?@liFp2NTYUb z8^}lOZ!aZ21>4p^(@D7o)2tVBKNN39vcU}I0lAT}u>_QRJ>YACZ($O0vYfdr@u2Bw zg&q*gEl$fXRck&J$Av=>(EHa&f+me4O~DKGPL3$U6=tNEx@oy=Dz`7|;#JS=iqC#i zqC!W?!iaFL5)ZJBOI(7$RB2s5`VN13i_YIY#ou-pfIu!-|HC-nPtg^mA_1PcTdXmoqRtOEWAh3 zF+Jreaxr}KjBW~MgXXYFU1`=2t_E&BrAAc}-ASi`x>Gzzdq2BvI zQsn!dnl{!aUb_yHUsUG}c$%mfdfKRvzCd5z$2Gl=_Z3N1ZMCd?wO2J=e!GEYHLUh~ z|13e0*6tjQLQ_q}{i1s1*DLoZnb67L|DOe@>J7EIkEli|Kb71D(g|PH- z%$>7gSTmd2|8pu!)5pZCPWQuIxU1Xd^2cbtTWQw@T9bmGecSZyY&-!nXe- zozsODN&%2JDiE{5+B!#QKR)$SUUw1lt-lvI&Fdht!GmgvTO4up&R;`0ee0|5ih=9T zd{S|X107a&;+y7IOiBr~aFVDd{7y7HhDtZev~STlpLp0ci`sD-DsK=~$s72~3%>XS z?Sh|05&`VnCsohJ0qQ_ z<+k&9YDJ2^<621Nv8^(+Mf~oM0W^-ILyBgq$TT!d7U9)`JHO%MTCG|Y6-d*2J9>U% z4lCvM8h+gKMUx9g4jdW|-kKn{)UHdLdn)RLk_kEER+wR99#T*p(bPHkkcP*Sf7)#T z79r4+4;+j#$yJgN5{{c5^l?Y-yRopWrQHZ!A=T)$1yzh#(_j;I-d@}MHA8*8ZT#YR zvY~IADzBxZop2Zc6@1=%z?Dh4a(i&VORDKNqSYAJYEiOWIvgM(wA7quh^OW;#@2$O z)w0rk@{@SVF1(=m@J<72&EmIU?p+rPnmZ-18nLuGTaMqF-aIfF^jcWN@QssPftE3t zK10`a{7~d78sjO9J7aNHZ*Da`Ux&$mKX)d@V6OuXOx%0_^0P0$J?Z46X#u|a$1yY@ zT`#3nYoE17<3KCS6rnTAyZ@;oPU3`( ziJcp&f*5U)Q&knq?&$s)zw;wfEQL^kI8Oj44&c+TBdrFhhYO@@xCdfDQcg`fD?ma$ zLe6V&ogo_^%YiqZ$|~-A{pIE7cNxUX+V1}2W0cX7L|4)L=dcK_ARzP^A|{yF|b-lrpn9 zvace^^Tg}MMb_geiRM{U!wYqocNq154Fco;M490Z!XO||KpZNB7Ep~S=hNqIONffhRXRSb5c7L*)+}_-_sQ(K(WIkfyAj63 zEQxWKu64oi{tlTxei0cT&BgNg-~4;&cef&qaGa``5G;`)mYJ>A9JG5xZqhmzPe)>l%EKk8|M^ zI}7Wp<-DNT4h<+bwU`zkdwrp!H+y&>N(keT*rsKj{dujwH|(<)^xj#+=v(v6gXemr z$O>aQM&^{a9-Ytv67+1ld3uW0F%H2z*U<_dE~OU~k(ji%*noH-R;z2!*9s@1AZ3?3W^?9$9ro_doJ zLh-pmwpXf%>L#^VpC!_aiIy_6Y353c^y!rngF++{^L-yS+w+=HWvxzxvd>Xo$I8h! z;+G+;M19@-Z{}$r)TIA!;s&~66O2d_lE>q*FHWz2Rk8&=5r(88VN@pLZ!k6DZoH64 zu^gh~^|{=&VrskG1+47X?^vb;aQ9vRMTmA9n$;`KUk}7Sa14E}1X5G+>)YBspXe7& zUO=LTLlK!%aYTR@Y@ok`vfU&B9Ox{>0}@4TX@IDL9=rJG|EYq$|2u#}q(R3$6y?pq z0Nr$a!Y%i+0vy9vqGkzDw_>`Ir0-XV+X<;j6GD7ZyME_ zLq};)^%|9)61=NGg!lybgLc9@yvl#gXJ}p~@&ys* zN!+3@^030L&OH2M2foK{HKG#KU(BoVJ3d>lbqj@NR9JsoelOJ<>Mr<1y5cXM-k1Vb zFIJPyHex-P#%ef1i!7nCIG-}w+43`9DJwmv#CMsgN^?3~P&6)?6mv5GHY_g4Yw54| zT2w@@dR%O0Iegi9eN)4~>1zqTB7Pz!3gc@MejP!6eSi@XJ5Irri=v*f3zhSskq-Df(`R0>V* z=LCpWuG3;6hcmd`h7U^TV>M1s8ei-5;E%2+AJSU&wP8 z*O6VHB8GDxj6gA}Qa+oEANZx2VnELpNPjA`c-agrs$8j4Wv6AIAVUui=tv+$36q3jE%v~ zw{yP7y}2J(m)pX;ybDq=Z26f@U|xCFbxZ}$7;`e9--XV-)EU#~)DAde23|5DSCi<0_(a49EoN#(bnki50{ z!j$XXS~q>``FR`}5+$qhav%N)v4VAN32i#n@EmkybRMU8eo1EZt_vM~G!>r+7FXP_FU{ZgIGdA`kKLWrs$r0h0nlAD2MlNSqCo|I)&$`}B zQl*S-{i`oh)ojzQrcR_7syH-|=1%#eNx)`g>WN-2jhdl_Z5f+4xb)Zx_qPg~!aS;4 z5Bi1vJ|gLP{1w*i4a`|u2DyU^-mG{|9w$DY3|qy7f;A02@eU_NLibB}D)jTR48>{i z(-uT2d|x^6)9^brbkJHyW|P)iw8`QWd7@Kmy6$@$XnW3){wg8|f7!Z+UGbxIr&n<6 zF};I5Ie5zIz*h?a8G^JJ?L2s6}R~z_^g=qO~N}y zS=6TVyfcS#Pq>U~h*>JaY6`Ikl<;i5AC{+NnLIvzm(3pmk& zSB_vV%~Ex`&$eLYSp}9n5ot}B1Okmgj4$rgzZz2ov8951>)l+!;zZxE{2^T`j)$#o z7;s8t0PtC!@QKd`lm#gMyJl-$8#0Uu>d*!bwR;3uJH%*?}7?}M;sCnq?(0RK|IYHpqwvRU&5++r^_P%YrOdr z%@l+e!H~aZg%po3N!>>n2?-X^M~zPnoFTCwvp+R*9#FZgPS}F3oQDXj;>V1v9K~Ub zP*zTwBH5#Ni>OTi&Dv|?6|E5fx)@hp>a)rXuNS-MQ?UT~mNLiVHUg);QyeV=!(j;W z`k>UJuD&klD^rxq;iR#Zm5k2eJa43olqr?|6dHb=3bW}?Tfq3Q^R>1J>FS_hL^{Wt zXLY^yM|34pvB1MzUyMp-oAQRH*!1Wjr;~d!pZBN3^vsMu7S?K_J(^sTS6o$1kg{f; z<~l`6dHgdFI$$Mu10+O%pqsV0)G+FY<|YP32IoZqDd}4w`;bDdVuC_-7m(>)&{4!l z;wusX{ms~ekSDX#xdUe9Igw#-f`y=`72!_@ji$=c2A33Ki200%YC#>RA5H2F6FoJz zFpKwICYG?tSNYd^@xDB}lT#~7J5BrBbXTR(qpz`BdK5w8P1io`bmnpq*b=-+NlvsU zIinT{f6eMHdi`FX4c{SuF)>i4`exVlxTc2M)nhbeGe4(UEGeloh^K&;4o8&A z?E2kGxy73|L75^$xjzW8+u(ok5_3z~6lkptLb^8W-41zBfdlkP#!csi$HkY|Sq?kB z3Dl}%%OD=d{S*20Hm(SW2j@cqZPPXiiMg|>9`T{~EH^ZLIReCUk z_UTWw3O)QIA7~}P&7a%aiGZB7!fs(N$z7yRWdl4)hrf3 zVL9Rga>``T3u&oN9~<2Faf(}i3nZ<+6>7QYGF+w8fO*Q5uvwBSVrSzOL{iY*aj}%E zaS>f{etavGIj%vhN;pvUzWKxR`V{9s2qD(gx77#gw6S12*1-Ff>P&!##{gN0q+Aal z8RAV{xvL{$AA-}&_08)2tPr9FM?RXz|7c|wcmJoHeSrgi_~fs^HS!A0XVqhL`}t3= z_34pp8V!^~^31zD@TAcy+K5JcHA9et4P4wmoD%-iH%e+XzM(Q_LvBtR4%V?49(FqYw&;@ZH_{+tuA2mQrF~Rn5|v zj*YWxx?`j?ke~Wj$`ocndqA<}ionp9tmzxJe2Spo^?3*X+n&H6j_p87e{hBNTDun+ ziG1Z>e&oF!*=%8FH0oejD(X189V=>ZjNJNtIts)+>+%~cAwf| z?%Z4J1OoRhEof;KTA-7J=l+Slx!7CXKr%b z=f^_1%yFgX`3Cq>@AA9vA+5CryR}Em-A3y-rLWI4Gc$3z!}DJ6J>kd*iPztCfU z?>DK)m^RhFn}@hWkK2ZhPdifDak%9c-V#j*5fT~p6(xyAE6A@LV8BOX5b&jq7c%tq zxgdd7*VQ}gk=A=22xY_n>ud}V{;#tksuNXi*k5j}V=0e_1GnndAn|G4zIM395MnZH zSir!ovJ5NzI7t(*_xPy3=h`KtIm0lC@0eU3I1-9iZ}7H6e6@Y%JYmpX6mHg^gf}Ch z+(HF)Odg{8DGJqKXd1dvVL~CsBvmx3mEnE12|w{d{Fk^Qv9H6bOOj82S8|ry>33av46)jlY^- z%#AavSLhlPTkSFEMC4Lsm?bLY5fPC?kFOlUe3GH*r%_aw{aTX}HG%{Mt+y7{+S4($ zT;_n)a(Fm1)u5flYrNm?w$$p$H9LYv_vd`;VBbb&p1ZibZpNs(1+lAZJ$L1TY7QK1 zCJ4K(479K}#;}jU`4`ELJ~gSZJ9L=${f7r;Bq}`3I1L?LsiTc6n#cJ@UxtgNlclrX z_#|AWNcq8?-DWr0$wKwOHGM`L{wtzrQj^AM?y0TdChPLOZt>Adf2rTcfVcntJPE{wYd@ zpi{wGO#>$%#rFEHIGO@9IbusJasbGp_YaQWJA#`Y)fS#!Trz11$)fW5k3_0rIONY4tRw`l18!|1HO878; z@3vWNjmg!2z3#T!SqlG3=l^PuV~bY+aQ*cE`<_ww{(?LnC_gIOrX|i{c&UJ+9)j%O zRzF&ev8U>d8X@5j;_e0t9(B1S()n0L?Wz&;ko;qg$yp}26dru2P7%I6b-(e?mBU_O z3O>UFj=*2ibX=^=ab#>?R5vxmFdXBuP99jHmlVz)sB0fQxH`;=)zT{_g*vG0Tidct zj{$y9n;Zz(RiXo{tbUVd5?ek)0)hWH|5Kvt+D3M1Z2pyrJGRFQcf~5k1ydCqMVt#( z?$Qp*JG#=8(YS$)Az362J8tjOHd4jY*y>NJdwzi~zo)l*7qDAyfVWw!Ny)ZMi~P|P z*|w~W{Kk@oqMDXUCy`xTI>!k4vj2rEuI(|T8$iejo3l=)HCzZtQ7S4t`FUTGb~(#j zn@>L%ib_9e@;(Xo+@SxrI8ml-j{OK>{R>nD-xEQP}7K;9%fCR{D|IE{X%)%mYznAo5 zr={nORijGlv**%qEcw8?kjEfnmlg|(B^K4Iqoe=q95N(CETLF zvMy1w&W`=-=PE7PBQ71LJi5y9ivxH6x`ciE_?q)Vm|-pYvG42tiQ6%ipOcUerjo6e z_z9@1g`FC9IOFlv8V;}R{U%gfF5x^?g|}A++gjRkrU1nh`v+Q|v-ySTUR~n!qHV5h zk;OcMrm8Nv%o0@34gq{9d+^sK)cGsy$I4`IK)*1Mw?nyTc?A&KcKjO?;|x_aXTr2S zb)Xp&EOkcjGzjnK3tvxPjfgi5Q$WS%)DbCE$-;lWQrT}g;;c0fA=Zp8()k*(j}2Ii zpvKV(rDI~wut43SqE^@KptY#CIFYdT0=#rg@urojz@t_fWWZcV^pxh^UuwXjnQdcq z8V2>HCuxT*Y?*2wJ>(eI#*z&Pt9?cBOh$pP@X7bAAVUF>Y#_NUULeAOB?9gjgj2s^ z^CV9oIsowD7yHUf%7@x6`Ok5GXT^LFf>uR{b{}@}f9Y-=uEB5sHc!^yLM7b@WrXbh zXkcxkfU*>|vi$4;jOBC!$!7swM1b%I)F1tCbtjko0ejzHyB~ps4%NLI?4m9Lq zI*;0)3EaKz)Pw2dq<;2D;V>yhOB&btpwo~53<|+kA`r$HaE3%-lP(3 z&`#xMkNEszvW-u}F}3G-JV=C0(!xWqnJXNtYic?hdff(}EKhrTdyB+?Bbw`ZK-BsEe6rN;#ypuT z5d83dP44%4^*s;>I`4Eh$1h9%s&pw2IAWFGTI1tE1?3u-$7Uk6Wd3W;B=msUul{qi zNdl_)DtBJHhhHg$a!p&1={9TaSe7MdL?q*G9)EV$7gn9+v<23@{AcQIOq*1WD^J+L z!SwXIEG|#n$r#$bJ_uOP5D)`G1Pj*{zc8ga5fLjUmui4q=Wm#gpFZ8$YTfFT7i+vd zX{6=jjWbaX4heu&=R~pIt9y0&_yRLQ+;~7018AB#12SOu6sgTz$Pfc2Gh>*4Ereh| z?tjck!$lMb6d;&#oOz-AQXLpsPYvXW8A%q%IP9d1!Y2m|Bq|F_1Kkf0Wn3p9|eaT8-}dYxW5Ms95o5Ko5) zgW7Q3;9**fV8E$PSe{ys)rTULAs=m+d%}y%awLLRQKh3CP)npuy}h+;i$7up)7Z!b znJlr?I6N1nxV+v2;3|Y)v=N@8F44gD@B&z_xu8+5AlQiEJPn`Q^&{ZJ8Ld z-rVcI$ChEKrf%0G?Ca2=HL)HzqSY{{&l=f0hncSz*zko5EhLTlQ2p4h3i#ti2Wj&#U4zmiC z-~XHx0TJQfbAO2w8ri4Rk^*lTvM7RYs%cCC(IL8Nv7pN9K|!!^pC(* zS~OTge^0dU7{0L`rY#9m6GiE|SmkuwTo0MnFl!Hoa9}^=q083V?}l*CKdS&9*L%l~ zS%e@V+wz}{t?+)@tXPtFT^kpKAZpzjGQG_&fbWV%7w|Q!ije~sUsQ^c(O9!sVI1Og zbt@J)p%cl#J==Es)!vGWD3uNd@8{T>3)AbUuz2)^$nq8X03+nNS6ZtY?M4KVacdJRg=H-SDROu<_W3k$@lc7# zujiQly*E=m0c&~~b2z)$2KEh|nDnRW2NT$OcDMJKMt3VsGPG(8t9T=|N~Nq;?Wk%V zmrs^?Tm5Y=KhMCL_10(7xGv^;{Qk&kZ2CibqH&POjtjx$?!iRX?8eBquK+8hcI2VX zdvp@sEwPUqv8&U$slPCNFBd&=lHnM}Kra;aROU*Jq4DS!$ArK?mS}M)otj_b)-@Z0 z=62r4m6^}m$H>w+-Zf1)Wa}MXz?v#kS+d8HOs$WOw|Jl zH2Y8eq2$ad$$v4z=7dTk5)`wpR!AI-4$r?QA3JEK%qnU+rq(9z;()q3Eui(>rUr`@ zMBX~5z4n(ToPhPQzafE+tFuKz)YH^RTHBT1$Wy`}!WuQ&QJs~aFWSq01-CNg(JG$- z|5}Bmr_`I_lid%U%(#R+xL6+vD$zTOBBl@6Squ8{dlN%~N^mVTo8q7O;)ILvnauCd zm^Fzf-wdSSI4E9`nZbzznTZ_}l`!b~b7EjD8YP$v_c833} z;Mw595Dm<#TSFwgi3<4ctE>!-(%thd&<>`0;{NKPw)XbB!mkvRV!AYWhy-%LP+sF- zs;R>~8b2YHOZsHc+paBBsi`T1Li2i~!%cMK4D$W%*hBs>n!*gv-GL0ocga!XJTmvJ zuF17m$+obtj33)ScB@6s!ok5I?BJoBo*1FD(Zj^VEa)gBP;q;C5_)?(D&I~ z7q6v24mk4)qQkh0u$3!BiFSn%dN}`+_rAM%^~g0vnRO%~_d}lS{%H+O^yi1eV{OkX z9$$??O1xuQQ;Ig#1ao~!XucpnMv&=x&&L^+_KJvDsxZOVsZS#n_t{eey*BUIdLc29&(xPIxgjsRb*}eRV=o`(x&O(b>Mj9n`3&=v;u~dK4C1KSQD_^nAa> z`U#*7`;xNg7wVS98zGnDL8)x_qO2I2rHl>_4spH9zRTCKCq^fHs&Z6LVfRCXgdp9> z7HjqXlux{sKYaPw0HR17W}e z$ZENem(JG}GcmgU7rUo$L562EYdUm*?<@HVaB%iQ=M&T*Ff?xVC58FBZ zFVxSP81hlKG;<6JN~Sx{48S35Ratq1mNO>EdsEZvtMtY-u&}Vxtmtztu6Jyde0-sp zVvk=G*4m=F&;4j7a1p%2l^c0p9j~am1)Q)OU0meW=Ug*>-gv$FSf$QW>8a&x_Biwe z@Sv}-8FoiQj1MHs$=np1UC}iSw7K-WBapC7&jc0y)~D^woB&tHHP#3=q{DgdoTBxv zSRFvy;;>1V7{c{c5ma)K<~X)UtCiA2@!g=>VbG59ulyQBKLK%G0L~=R+g?|HI4ICo~3Vk+IPy6N25jxIF@c<=3H!{ zcST9U>!6qcM6uzDBzkr}KI#`U@Aj*O)eDokSTY82Nm;IAWySrhNUoG)ZnR=pW!9!q z+K-K3qgIBiY%?dd&=`6&oFtDwmsf}sTc;yx3~b{?dJK@%i~O=kteVr)p-c4BJkR@k zXTBgvY*^X1=SKtG%dp&?Byj1m&I$GPw=QMav3Hk02VhZ`4JH3$IbTrtNWCwLHD7T0 zOCjAKpH)7cYk5Fu%*Y-Wb?iVIVI*k26f#J2B40!6sy9Rcs^HOZlUSZBepF>LE(A_r z*AWv4W7+g*SYJ!x{WACb*0xaZd1G;VcQ0|67^ZnBm^5PKXa$v_K&-#Mp2%gVjV7sX zp$~UbaYTg7S~4pn#uv3=i%{_m#uxT&S^>4?Vof5W#GV_Sd9ijN?_=r%wvx9xX{3`s zzy@Do6%Q5!A>Z|{3768*ee)$T;0elo7k$#5(;Gja*_KvX6_AzlZOsmwBg$=MARj2thWPIOElYoTcB!T%~k>oQ^wi9`8?T*?9#c zzp{k`3y@-H_if)BAcU{MM9;cG7Vop}@$BPEu04bN_D}EC;sQSvJg0;-@m9_b)xHy^ zJTZAdRSAgtmg6(vKe&d?X31DK!VJ2;Z*-a>8hpH6)cYMOjl|HoUOSTBgqW%~$VmwQ z2sdv+T5kxDHRV{pXk>a#M~whfK;9H?n-2kI{+Z#97Dd%FGpY9a`gY>b8M^*L@m-cr z*^wt%q+})hn186zSsx0!k?GHn?SD81yl*QM|RA&0>9eBv$MsjSU2AWa_)k*sVN{YQH-E% z<>e)1z^EoLKr47_b;OAv+<=d6r7z-IbqG|SllkG5Wa1VW1;xiCEb{MMzZUQ8f`s3i zr|sTu9N$p!?VW+x#>;Xq=hp+g9!-!MxCIhq7KvpDLnFiU(AQV+W0}J)r!%`rE7(-; zC>*{0iC`!hEcx%`BG{a^&VF47c_ueISDLK{DlFFj?TnA#c^7=)mGX+yHGCVU(gxJw(pr++e~ z>#yA%rGlZ~36>20`4ZDoZ+D{ML@efij_C6S)@{Gw6? zLmlf(eqSK9ULHW=wrfznTKG=!s{7`D)D_hpH!**jx?3fi*Sa_?zE_ylfNJxo=P4N_ z&dNTL4O9!a;Hc0Ex6fe5rsLGtPqc_vGOsfks_UIus@6@<%fV4=@ApwkmdPpIER<=# z)}=r-@YHsywpT@`{FyV6%X~I(>)%(^y>%c}@)tYPa{9nCuafq+RHoI1U1giSlug{QiKi4wvd(1SeTrF(QpAgrX zgYH?CH^J@1#8~3tU;?rMQMQuy*0>OF8}>G=lB2)GboQ@5(Zeyw1}A1t7*Zoml>h4N z`uKI;oOsk?Myfw0; zzk<9Fr4`S-FN@+FPcI45GqS}ilG8f9yg1p>vgLSQLZbO962LH4R$$jyy7ma;GV&2H>HT51@!W5YsK=sHGW={2S zzZ7DMR|0HKddH45g%77b_~Mi5syMD|(P*62nawQu6NXVWrHW>~LcP*$=CO7Q?W^o< zhWDONbgNz5wGmzrw1`8-;hz5+hpo}TW571|q@N!~)y=5g1mpTCU-~SJH~J#Px1vO& z6DH_Ja=OXwquBx9$;vV!yQ;#@9Ct5iMltgYxkr#gF>$gPBV?=?=_kViQ%153qpP&5ziKH;lJ<7IcumhO(hH1i<_Rzxw~d4_Zm&^S zYD(}0RAk8Ff@ojg4L_naH+@i>jq}Zf7&P^@Dp)v|4UivBXDM+Un5@(l2^zTyffE&l zI^)}ucg(FqUg-2a@7SRk+Qm59049vm(gP#f#Kd4<-`oG#IB>s~DUfE(iOa5ZwB@sE zXZGa82jbnA>il3g{0{AG*MEO%d(zGp^+m8$%IgDD)S_&0>FLcoES&J5&y(toCnL>) zFd1m|^m08n46+dEH&hJ?oR_CWL!4f5{gJF#_8hd(WS+`?@$o}eP;!NKR2o= z1&^PK;10vEyY@V{h!WxRbo=b^nZX6Sbur&&HMb!`B6zc^Wm1YQ6G_7=H|aiWVuJGN@H)0BFOuIFbT*^5Lhfpu* zw#uMftq~f~Xz3w{(+-9<41QICjWNJ<2_5g4HMGTqlpJhqUDZOLWUIF&T4-qYd@Y^w z9K2qC53O_H33TkYY*!fYnuc4Bw0+ZuKZhWy2w$-BI+{gRjQ0Hr0)S6?(K&y`kpJ!> z_PHt?25j&GH!L|XAhQbJ^BS}{bNA%{LUj=Pl6AVtKQ9>o{18Pv@XHbY*s~1yQ`TSr_fGFDOp^3fhx)|MC{3+`5mdJ(^HU6iA)#C+>P9+TOKoNBk(WTN;T` zfzF-qe_Y<7VzCerpEV(G3R`=&(JgQzf-Rw zBp)1ngk#fhkB&-XGrm1wC@m{XxoP2NTgBF4?ulJjHaEX!%&9Yl_#9W;vZgm9p2}DD zlv}JuNRNu z!Gn2-RV#D`U-1?l>Q^=C0B8AL0#m^Zj~Y)qAU9vF8ra`5;FwPgSx?578$Ati3}7^W z`;bU^jHX(^i};yD)3<1>NH^jn+QBl)gvnlovJ$q}FuT>ugN_T6w|hGVD`F;R3}t0> z0@+}>CboRJa{Tz3#iIK$pGsP+eum*1gGMRE(ujOxArtKT{rZ7c5#F%2wNCL?Yn=xE zCNDFd4X+zT+tn+i(bCZDT_jSW5MYFkV?kq$2)8Q<0_XV5eLmzyXW$QUB+fc2A8qw0 zvF8!nEOu!v-OVcc?zDF^-@*UsU|WQsG_Z3HjB%Or`gnfT?i)4Q zprCqDA)8Oz%X3n$h9kK^1~TZZ8f|2SmH3-NWYFS%TJrV4VDKpKKx=q7V#zyeigpk; zeHn}0&@9jRmr^--Wvv!JvRt17BIKMJK&6Z&7fgjFoBp4aC<1mdA=s$%$>M4-eBZz;`NTfD5m!6)9`{0mUX`E@Y@~ySG@*9d`|C087 z)b{TR0C9;ba;o{xgke`0*=kGQwBp_ke72Ck63~FlUk{hnnM`pkJ9D(i-G<3*;U%FH zsG|9Hc`hw#-s&$E+?YmBsyg!OTQq-Uj=nVg=K*$c##A+QI8v3>XRBgCRL_g4%9trM z)43!L!|#Z}$+omFm7#!p!G)$O?ej}RJz_?-htK!%0x%PyoIQ>n{};2E!`6UeMp;WV9-}cid0a zi42z%kv7c#BrH8ymK%uxo-m9}t|@G8lYF@Ehv=V)lf^--dL1UVK%h1tVKa{afH-W$ zek**OfyE52CLpFB=rJvM_Urz-;L|(lSOZ*a2BLKa-Km_^T0n(# z<2MaM|1Vx%-h=Atay$dJPvpkg!}m5k1d&o4)T><{n9a7!FkA^()S#yfBGTtmHJ0(I z&&EVDH0eb-$)sm`*3eR6W?6I%zHeGB)~MvZwqm??8)1Qg#_1!tkzf=(Cg+jj5JdSw zhia4-9XL5pm5ML^{=`LTUrdeN$)EI~?PIp=Aj+u*uJQu7+vTCAdObU=7LYRzq z=s3<-Wem16Cd3D+>pG8QbhO*uSad#*j;VTk0D(Ha&&P3MJK+?5Sa+E`bs1&V{oO-4 zGPpL#=y<`9C#LyOKcR1QlmOLkvgLX7$n zL7u`Rh7W~|NMP6JR4J_BC^o(E%YJ7Os;azTivAOUOFlA+Pe(M>_`UrX@CAZs3)jM* zio~V@SfCaP=e_gDT<>crsG;W93`6~yA4|Wo0(l5BmhdaMv6ore5fJOccq%rZczA7B znJ9JdXKDYn+O@J_6X*1}sXt|%4NEbl)+B8PXco>(mwrXFa+ex4Fdq+LSRan{3H;Bk z9KXet8wx7l=O$)JVg7e?^eKsdAD(2=O1eo+>O~B{2M{<{hd_w?Xt(|Y!ol>Sgt-lf2BrlQX~ba{qsrz&i`1> ztx*OKFPDO>x`9-xeL4N1QYIu%<-I;FI@~eVgY>PfBBX$=M<7I5qQPb~Ps0r*n6 z|4y#lWmO^yBTbMaNkYqqQk(|6SWUMDR9z=6m+G=9{Q5F%hsbA_;-ZpGZ24&;H_7FI z@>y9CKC@u+b>Fg9yMx$fp*mq@ViDptKjw6BX3+n_`I%lT^K;zYqX4)nV>$cNY>^G( zhbSGZ&6Pae{1ELw9q0DyXsA1DC~rGbkh`{G=0QwqY%G+aZP5RBMAG~B|Izi94^e(^ z7q8Ndbc0HF2}qYn_t4!kba$6X$Iy)fGed)Px1 zqyu@XK3qiA{}EqqWMe{@J1iL*EFcEsT;X;xvwH5De5anHVlCA-wxYZ^V!3J-U(8=| zcionxQ?O@@W)&1@7N4vK$JHSmdB}JSu-g1g>?B94V(>{^2JDR1r)*}nBHu@}zwz`a z-|zJ&JOw}16jy`}_B2>@Uy^J$4hUJ*c3$kpNW)}*_iEx{fNt#13v%_5asQdhW+0+7 zi6GzOAZhfh1h9Ng9DepQ52y~-&E)Eu1EQeGbagIiUL~K`YMsOkd;BgpZO%cndA;ZI z*;r$BZ!0ZDjecf6i5Vd_U)FR+cag9&bhoMOWZN&|WoDD#SJ8u^wf?;GX{mNNW7qF7 z#kM(Lo0+Ya)sbt<;vj4LoNmSak{pb>+|ytq-3k7=6{DBPo}yCR-j1Ghyb`r%7D%yL z@tNV#sA#E1Pp#Qy7qOkUx5M=p&$l?^j&>Z9JwGDIUC7#J*$XHXAo`OW&H3q;ULyD< z$oO^>ofuIb!?mkPfbMG4bC2+u2vatnI4EAiPBU#?X`YeH@EnIVRt2E}2A8G2+byVD zq_=+mck9vp@75D{gy5-TECm&Gtjkp4nXb4K!(2;0(}f@rNrJ&`@?5 zAN;&Q3VnN*SAs!c4lw0qKC4uJ3VD%y$^7WweX|yTR1oNb$fIuLcv%SVY@-xPMk-RO zoUC24eAca!8Rc`eJI+X#fi04>2vCiDM~!}%zG`jm#wQt;``x6;p||-ZnmoSBSU6nA zVa{T#w7t%9m6AbAjBeM4`S(2NGpkTUt{#^~usiiUmvPVS$#U(OAk2mggf)hIQ0qj7 z9VK>u@6RjFPruWlWFynaM)hglg$qw3g;_Ph{wVjAVi4oa?kK}@z`w06 zMwj(YYA*f+G4F+*`~I7Du(_Ric`Woj+{v^~fgSTi=6G!ikXN2p62Nf7fK8Ne8`1`? z-H_3qUq=w0K(B>rrGv^!dqtL8XxjSbS#bm+XhqB%a_xmA;G;u}ETUU&7!~wDH(c

<^alch-HL<*uS9{dLPW%-)3~|QhPfIp z9vmg#Vj+-|e=0_YYR+=6nugp!IR3lho+Vk-qCJO-`quS6?g|Bs9Iu{KoyKRd${=T$ zOp1oXH_A?@Wl|M2_02y}ZKOq%*CJtY$O1Yd+ynZP>mEnd>-c?NZHl|Q>ALUXH3)sn z9}}N>VTF>aKNGQIfJ(@@2*5U*R4UbfU1S*c{e>!z8r=-Ld#z>XCR2OWIegX8ZTRKU z`=R-8*|e=8tJN*67hO=Mu6vF#l*I6#R@Mnc62U7}hy#+7@lOG)93s+h^@F`qygWCqD93foOr{Z& z3{wLA3&ZfG2TkDF`swy<^LkO%uTp&$U#`tW4qI0XrDhHsJiN_Sv+lU6cJERtZ7G>X zy=4d zkhQz0C`U@wijQ)c7ey@kka3-s7l2++y;h=Hn{s$U)E?sV@$#!s9Ad1UM~t z*KTp!!73YK-VhOCvq8TLPxw|<3T$xHMgjpbe~G`u_xu|!3=F?BRwL#u5WTEG4TjX- zB{r=g#jLx0s+zR^PS1z(3@tAlLM-lc%sBr20kL-gHztXC2uF6oi7KiuTuVp%lF!Q# z7K%mqB&C+!ayMF(iS{PiaZom{ScGk$o$=)~W;33d7Wgb1O+8&!lv4iQ$Bx1y!7u>W#CEz-75T*U)1~?Knu!e;oUcDO8)nR^K~kV=Q3r zV^)6t&}M&(>){_ox0PLwP^VvYc_X%((50WAURDo@`Mw8WJ)U|CWUMJM2>+IJC1g$LAgX+*39x{wUH}Dk14`{+M>1@<0~o zjzaf7VQTAgWh7wHbyEn@r?MtnIIMW>?=cs>fd`p zhXQy=i`$WMXC^vTdnFFM_7Y03IP~8wR>c#Io{G zwM7*)QSaj(BK70pYLoU)APM(>7;1$QoX$&;T7A&tU-x}$e-gf3!*nV>?UcC>EX@XZ zpY(m}mClp!BGjufPUUfpZpaXiO3}zyveU56X5fGKR{AQ}+^|Vm0n90!Xu?&(oI9|j z!_GUqj*QH8aVgC4hg5?Do;(JsORnkhR{2;oo&O1{HGs`6!M^e9Qqto(z~HTUw^Etb z1x2KV*>A0lc@2^$V?E7HPa;vDyyvjU2G>YA(vNg0oq_e4kF$6s4)D?9sM>>u=Qu}qQ`9z~Wf(65(E)!a zgFCJ^r3i4meyWj>jFc@5j8`o4B*seBR!x&b`~r;6E`d5kIT1FEk8VS}tc9xl(sxd? zC3yWmBz5~Xp0p!@A&$4}ottj8`wxhZIl4INx1|3Q$0Pm|$E8;W5bk_CNhUTtg^t{P z*4ay|SEOE(XBn$tx!0v3D7R`&-f8{sr6}r+?H-#jtQhuQTH}KGh40QbmUfr~)K=b3 zl_Y*meti;vLr-7v$wtKO0;NmTO$O09RBxCv^1*{Y0^I5!;9u(x|N2MQPD|0zxEl|% zzXwsIiqP;_UbNiO-1|h#!KpvJy=0kL$TMc!cWT_5s(N@#vP6=3JQ+A~F=b_$vU|>Y zLIa&8^!jA#!lS|y_%5LqJ>D1wl)D}c3(r3Vad7cBcNaMGM1AmlhEA1C1&Z~VvbK1R zp@r|tJ-gI(k{O#2lRo(0T*EJkm;@@pZ>f{lRPA2a>wyoPe^iQTUp|e0@aOs zD8`S&yoeD@*GB36k1b=b@aOf-kj&%q?<-}p48G%#gmjO_)VLg0xavb~Xf=EFbl1kL z21I;kX{_-YXvKL_ValL-yV9rk-Lo4!4+WeKy6Yh?kmdHEn%zipi|K~fDChcWsMZ>z z(9;6gm61^w;;yd_J<;EZ+}=q5&=W@cG@O_?vY;P;If*JSuLQ;GscO0|@pK(mzSjSR zd)j3+{?Rm|=yHDV-tQ{@zT=H}n#|ubK51owLtS^QxNT zAq}>SfvdG&1~tE>IF_SG*yYdWYC;ldl8$8-y^>?1OR5jGm4iF75(&ykez3o|gGjiU zY+fl{)WDQ$et6o{mw_sf;EFA`f1Y0YHh)RTIos-v+UqFEEx@s;p=75~Au}9P{0(vL zFVC#fUi^d0bjzyi_@1M0Rk#m^Cvf-?M98VIdSK}P#+kcDgouN`RWPIxv|e@l79pv= zMIh>D)+LKC%bm2iZ=I~**3Gt~dLI;6HNI*gi3-QqD&>cWu_nmf7GE|x|BMvMRw${c zz&2`jObPr0uh5ITyh1pF=bQ3$oA(J+SP*b^Et9Pchx}lmUQFxUAmP1#0B=1IWzmxo z@gtwfbShd6MkYGkcliE;IX@|ZM%Z*m5g(RVkB`iINW|t}E5afNLtanRrKmC{t5McM zj1O``Lj;!-w4mP>jbBIc9qr^;YUx(bY1BE?(oiLxEJx%g9S_viByLTS#nfuB{JbL! z#hkOOCB}GhCRWm|<=h#Zwr`zuZ+$OZ+UR zJs*79kS#^AfQ|o3z%<-V#@nS7?FOPpUG^@&!u(S2&U0YmoIwK-Ur0OHwW>(Lh8(M} zhci63?q(K_CmWA$&$v%Fw-61LJ6oo$k-%&X6P?yYQ`1JXu{^9Fbk8)1O_{7RSE+7G zOpnWS+?!92FAqVj2e(NGftsG{{}rgi{u8JpS`H*-A-arIyWlRqNFZ?-eAiHe9^ty(IIK zHm{bTJ;CRjfK!WqbDY_Le)GTee1EjS5fGUJ!p~|_%=+bNikek=N%3#HlhbN1svXhD zxJ~=6ejk-&@ZxmTbko^qOv08F7*cr-{Kt8IN5+2Yld3XC6VIN;L>4!(XW$?j0TA{_ z^h4&1R|>NF0=sb9%SsJrzJGe7sGi+g;tooHQ=qB2l|+iw|#){Q#@+DSjE zTRV~M@^{aSzc~k-r(e-lQ$yGNbaHyOUz%iTYx_B`$G}o~_E1I|Ag1=$j|M<4ssme; z&q-)ysdYx%x>EFrROqB`=`w?qrB`TKi+R*f71{p_!mr9m@1cLyq+faAp-!*&9dPaa zQJh%`idQi^@k~eCuj&C4*Vh#}-a2y;_C{A~bbqz?jj+E06F$ll|3Zn0TxKKPK&bVN zYjHKA`DG_*;id02K>s2U+lD%ZQrd7wenvPqR29->fW1_wIfKKCPX7-JFi))sZD`}_ zrU-XQ5LgfhydRXN7V#%<@Zhh9eD;tfnXFMpLDxAHTKA_C^*+f!jY!=#PxLAmcfo|s zj)T?qmB38K{ZOa^*6JH@n*s)cw)pmELVLA|@iDi|HsfSt->z`$Cv%~twGMd73)F{(I8zT+8IfI&K;Cwug>lcJm( z2%Ps(WP+_)^u1WS1Q%I1_b>?btb?HA;Yy8}d}3%tinEEG$; zi^}7G{f^3ix0+G?h$iT~65qTQj7}x!LVDRCQx#23HZfqF2>W1OXPqAzT=CMbwO8Q6 z2I2Zx4LK&!la(uYji)j}0;FB`UY?b%wxEH; zzD;cqZ&w-t3IjY(Nrjd~k&N-XAR@?D4Q;d5;(EvIG8HK(Q;mKdl4z65@UAM=&Q9Utj8RL$kUw0ieChBtXXII_R!VU~`hv$ToeRFYGY4hFo->~Cvy;QjD{ zp%KPh#^n0EB{x3)E7puwI%U z`DGB4NOL;=)+tevWY~#llk(TcY<@e}+cS&!_0Bl=R)+4`<)=W8?y8`xpQoa|ioxY< z?z3GfPq(ziZEls(1XdMYw86h#Bz086-L{8~dd|KSRj0!h1yI(zDD>l^UK^ZYL}qZ) zhEx@cEZAzseUmtgCTlv}TjeS@TwH_qcaW@CoVl)}Bn_u_FS>M28^y(sl7Bd94~{9y z!P_`kllWI<9JT&*w_fXaYC5h{0pSzq2W$_O+>x8y7t{CGePYbon24fHQxX^s)AGvp z$#)mu8$L`!=jVHcn-AEMU(+N&KrSi9{Sfmk1!n$*hXo0-o4(gLIQZC~ z$V|vQ5|MR$$2=aH5JiQ7iA+5XV~xL`y0>6KU$mGu*NtgrfC?I59~y%D;~MxX0nH1oQ}!dF0=QA>?aeMrR- zCL7!Ww4_JzgxQI|AsZ2)&np%WV%M`=ZEM^=IwBFco?GAyd|36lJ--(qW+!?5O3f0p z2xrh6hzIjLoBL36?WM}Jg1`kR=%&tVdd3$><2!g~5W`xBbRt^RVOT6MO9 zA(-SiE&>Px$m`RNA;@_v(mS@<@whAR` z5%wmU;pZ=@)y}kSVex1IAq(`s8o^AM7AfIS&Z=f=g!-xBc#T^FZR#}R1JQsaaDwr{Up=8fnzVv5-2b`AyQlnplC!{3gp540y z$9ai*zm-q^L8!%_lVKgL9U+IBbI6~hD6r6E;qjQmR&I!8>IW2*ZZqOf`K>d;E^`ZJ z*E?I>lx=a{d5;AqWb@X^P)hYYiizGV2KhcsG@t$ayNYyKDQxCxOpKc`tQC}8y{;$% zI%=cVHlJ@A)C;?6s;G{BPxI0W*#$!C3B%OV>M2!*<>r34?nmIeWr5F`%FW5*YS|fQ zVX*X!*_fLmL(&O`(g-#$StuU2`JhJCXQ@g+bHS*yMvS#!rv&{Dq+s$?`0`Kv(u{~C|CWF zq2)i$)~(m?byEH&NUW+@RF_Bo_(tQxOL6lMU=oCj`|71~`PxSvlk|f#=3IgU7UD@P z7u|D<2b;ROtlE=#*bODTDOyq)#pe>l{g*H@0A8-hJ#nEgzFcd;NEB)%WrIII6k`zL zz2#CFk?=gY9CdaJWKvZYL;AACJe5~FCGauw%BXo0fnJ%P%sKtkaS8+Sr@UIB#2J>> z(#G3}N8Ws85nI95!1m#};+{6YJB=$Dj`MGyiSL6z8Y3pU-LL%qy%_w>rHLbbbC^5` z+ZIiW$zdtia_MF$*TrIWS9Nr7*-I0m!&qY|Gj^B9s}csBVPBQM(jN-7=z)8Noz}}D z3y5S^@S69AjbM;`LBJc75-+FtZU@H(>AN1Tqa<#Rwy_e4HWEbSsa&*}fZn^BM}I$f zSX9-0NrqYZ(lQsus)XZQ^OZwM0Jg=2<4u8pW}L}pSF+HkzGa510`r z1l2->{5SEH3HhRtm|^k8i1?p`;|1<5z7`~>?a?wV1tEA+CDZiv^fey)!!#DHOEyO9TdRR3T23bw~f&B z<(%y7ezWx#Dnyz|R|!LtqB3L5oo+v2=(iZu8lS~uXzl4sR z4V3j$s)^n#j+T#kZHo+@zkdaK>2;RWTjb6-wkrly)G-gc@XsxEp0ZEJ4JV0QLJD0! zsGZ$v7O!0$Wj;(k{{6xn4E{U=-~==;dA!D_Tc!)K*jaKR>b~YDF}8^=Qw~w*VeG5W ztTJLEJiw`RBr6bceZ}4J-1bLT&zDxW&&b%FVN|v#XIKL|1N+>#i=}}Lzz%FTk5_1R z{-!mt0?di66QaF4B=35>rixEo{Up~{Nn>!Vn5~G|=zYA}PWP+(49PzxMgy`4nQjg( zKoV#K49X!1heYVwh@s1i%l=uK6;Lt(k`+m3t44@6qjl;^=h)hK<1%+WW35w5d>b*c z$|}sOj7jpqnI{3#W^QK}8fo{;;=%m5u1;iVQ7vplaaMyFMk1nt=RV1(KOXqm9E2pE zZu-}#CP+~-5S6UwMlpv><_}YQ2qvL9*K*+WzXAcNPYCnwskTiHp|t$4Sq{eZdDUS7 zaRz^D)E-(^Rq9K-c(9KTc>U;o!YJJN+UEvg=LMo(;Iuh1pA9?@+f0w8>V4QEJUcn; zoBC$4(&0zMtX_clQs<_Yjw{kJ4`GRuz1+Gw0hu;<@P+Az%Z157n<*&-VlR)ENN^P8 z_950r_QJ7gz)GT%3uEd}+xpslE#s=bUF(@?&6$HWBiSVtmMiw`(1ITfd7y6spo{VX zUo0Qzq|NEUI7GG&ffNI-peJltpc3lgB0?5uF4qU$GbpwKTlrGvZICPvLDOL-EIIB> zoy22esd1srNfa$Q`up($7@Le&K;m^XFfKdQUAYWs+yC9ezm-E{gl8QQ!sFCc_#P%D zAvue$nS{0q$(eb6!ds(Jrv@5^wDET9GyysDCzm{L1vQuPF=0l?UT=0qqkxSo_4?3j zGT0yT63dDeH@YJD*4S36LGKMXJ-2+|A-U@PJV=T2lwW8`Bk>*p3xbp>W`9P1R3ZH= z60!b#r|!FTM>Zf%Ws4**Mpy*e$CCm8qeF;N7po4Qof)MO>f50{% zSI{&m^V4Tdl9k8XK0^G@`#X~|{;H6Q3SqAEzM|}SoUT~t@?icE8QZa4RASEpcQhEV z4B=BX*)a=n`XpyCL>%-6$L8~JgAJvZPLW}&N3NQV%ESdf|LskuZO)@a2ULK@rUkVv5P%D^ zgNV`ptS0>>*vV^!OXl6t-rXVCE^si{k!4yQ1_@y1dt|283B!Q##&{gtnFMnd84VZ^ z^DtVX*fgA}3_k|@5yUlXe!KdG3d>EnQ!6%n?O{a?A5NpQ-(rP#@zDWFp1LD`71nCe zjMr2n3tmDo^JvYr4?z1kX(@D=2pdvYFrxbT_2YTSBf9tTDm#;zz>JKJm7u@~49z63 zq0`uwYibq%_?)0gB=TubS#G_CaRrcHS|D{`tE|fOWcjRRpzzdoP|1r zONKM$gnARhC`11m=b#)6=HUcs$3j#E@N7oLxLkgYl0V+n6Es5}+~B-TG6i zsM`PCGHb@~83AL9+dD)P?63#fM*1kEb||p!tySjsS160S3LQk8#qLn9vr-o$$EHI7 z^CdW0g9f(~xbnb?tK4)>`{^Y8(0t#Wzs30qm4+Sec6)=I-!q7g@P)~y|MP__sc2-c zkewEJKF)Rj%S<_1!JM5_7ulfX7}D6Ri1p{Jogn;z=S25y&0$eDpA9}1<^an})td&5|du&cUy?-CdR)7snVw@m1=NoEo2V!AS~Ly z-Eg2>l)Jwki8HpQg`Z9| z^t;n!fmoDF*CW=BmVwOi*kE{16w{TT{ebmXoK=X`3A7-r*587jJ89-+`9;qkv2hyD znd*5tO(7FvkPk8HRaP$L~N#Qk>tz%792%}(q)ZHxeRcQw)3{;imj-q-r}V-$)P z-Y^@Qd1k9#rOWPGuSg82IDz|C#)N2B***)HbYsFT0k#TIVfO4#_3c#16}p=~A@}@( zCo8cz)j$9d%ufwa`jvF9nWufW!C{<`2ohj_glouk#`!L z+w*4MQ{_6NH4R)jMzSts2AHpFrm;b3R7OM!nneNM&U<5GaeOtO;X0$&SI&3)%@jwX@W%L);pvg;?f1-g;O-%j@ z$xman0nCNghyae*7_@OBUL7ygAv?@h4i4OYR9Qvrt$Nk=5b#^{<6Ex^zj$?tJCwa& zh4NLpI-AgH_RZ~J(MU3Bpw3*Tn&N&lUGPZGq!=Q6PE>-qT4{2!XE5U@mTA^ANLRBp zxhl%S^(Tb~hhbW=r3{bWLW!22q@ke8)D!og^r@0XTk>#KZ2SJ-15$F1()V*-*3*39xGSt2x(Y${jh(( z3?d;a@7*L>XmX+wbX*8UBnPbI6SodQ?Cx|}cc^Zvf|wsTp6Hcw`2bqBUvL%DF*|+J z{g`YB%xU1vhOD|*H-Hs4>#zHrDx2-uOw^56y_z@tal0mHA;+n&6`mgo2bP zX3O(v6#r9f_!NTJAs&=Sw|-e{Dl-^c!wdsP2OlZ4!!kbft4x}G zM7*u%<>fV5NI=kRXN7NrhbaQSmkG@bCt;0HdktN86Jm<%2@fA?@~sfWrkpy@%!w|w z%%Gaj9V~}{`%XdnGwsb?8Pa0^;6Q4+>C%mV6vVcB8tkAAcg-YL5;!cLh7J}~bp28_ z54~0$>!<_Zqu$_*4#>YN*?s5_1qyT-Qi1M-;m=!ot^~to1~R( zTI2=-;VMiK5$O0^x98iI)@A%3bbuli#-FmkN5yYKCPkVeU?wDkA}QwC9NM7>fBMmq zRz9zT2$NWu@s1j{$gW#0)n(k*_?t>UD?e&bOAJTH?v6b!H2=*TvKhtFc^v99)N)SYE)*g}yA7l)M4T>M_VZkkQM1URK=rHh$ zf8q&Jq^Y=b$O;>3yO$cm^?e9c^)gI%hN@N-847u6RuPRb5FQZoiHk4%uwph1*)xfE zT!9>l&M4-ZC@ZB16VB!Tk%%i=O7S3qcsqvKu`Qb9FtT}#Mtuw+`idXoM?Bp1gw_0a zh4ihh#D~|d<>h1nHxkiyg?_Y8vi(~uY7nlaCRo^nm@BTO+R&w)kQJgoo~&!wLECG~ zpiPZT!ET<6B-dga(1(j`MkDeyqA>Vd>j>)~J3CEI(t*H)0+fFS8~k52OnjcJEvEgQ#>64LjTgwy+t@AC`Av zut8}jLUP23mO9t|URssbql*N6`@btNr2KzZpn&K91_?TZyNI=O;~}j)DOvd@hB~Q# zg9senn3MIR@CVDDNl3}5`W6CB+w-WOIVFS8cDl&|_CXc8?^kCSKg-DW_wz}M zdmoc`Nj`LH#eAV2dUIBkLm3JT{u~~yxbrQ`jo>>4(qDwznvM4P8AS-B^e#KSMAFi9 z$Q6jhxf)HB6aC%3&l?C45%ip^P&4Gy6iUVXj_$89MP0exN~13RLXC!oCfBRxS*|Gn z%rg7g%LUTpBIXTx;HnM`q1A47E*-s)+JV8cmAC2JnWUTmpx*=@Wtgw|cK+pcfJWtL zb=kyUmm7K&H3)h)hAT~c7Ri-13!%fK_9Z}=$Nh+ax()C9!rWmQF1;8u9;HxhB93;( z!cwN@t5`AkAC1JTr|_$iSXZJ!e_`_=$!+jz*U7!lj|ZRHj=AaXTpIqCukcWZ(}GBM z*pr>2l^ACfaQ!RC!ur$G;WoE5V0TZ~qXXjV3f@4>j5F!H(zO{=r-%#-Vr~uIe1-RT z=w*$5uQ|gB6*Vc5eC1KcI2yjQgQPJr1?;MB_$=_yJW**o(mweGjjx)E$p(|VWhaeW zVtBJAQSnZ+EcA9~ZLZQFPUsVO?H#r)NjMjxb#=^32lkI=D%tjc8&l3l!y=Z`AYKbg zY?%LDPMk}8qJ@X6id(!vPWa)=O~?~B^~<4h`lTN+nL7l;ma5LV{rSC(qc9%aDL9(W z>3y88R_Rj2fdWMLvrU(abVC%BrM8O<;!NG$s+sMm?W1B$9ZP_D5~fqfW8O?9$qN`3 zhMyGloX`xH&J#C$PSGb#DZC9o=yLyTxNCFoHx?@HCx$LuuSoRce%k1pLVeh znPm4xOA#)>&|dHQfd&!8#FU~F_a{aqiqQJo4qmB&6%J2e(5CP{#>QZA5{6`TO0G_@ zeqL*-=|ZKRnZZg@ua;Cbi?bGRR70t;fX7@P&74x<-}PJZ*%&+1Ad2>zlm4GDIQij$ zY^nter`?+^i)|NyuVk)^Zg01U3Pv00Rh$3arJ1#LpTZ)^%Cm}<^_2q%XS%AwbD~{l zlXbKpSTEJWwN79izDkhZNC?eDlyv#_CnS0Y-R=JhJgOZ@(eZ=1c5QHMesTY?sf&oC zz_9?c^Y!;GULOFoNZ)=#3GO4HN6Pu5^KjFaZK#9K57KaH^kU!<(yT1K-;%^?DIJbt z^MV88<;B}`5{kh=^Z0P5K)mMj8Ii|4Zxd~=#UtSv0Az6Z?H@GS`|eRj=a!&{!c$oR z`gi1uy>8M!n^G$!C%V9asQOw*%^{Ec1%aEWUt$^9s<|4Ap}HP)lv@Tlao?RsKbj+& z!f`g%(Hi-A(#w?Mz~`u8I8XDL(9I*!lJB=4si6kEJh;5cZ3+(A;w8`gMDks$xaU zcim;uc%lEfCm~Y*2`l(tJOxU%Yz1B_B~OY(4wb8D{)vw}ocwDLjXLyBJMR_(aNpc7 zInklqzU8?MO2r~zK6|vlJ1fJbVt7e`rGS)r#;ubPmDUzBX#cJ}w_QS>sMHEYqAa^Y zm0FDp9*Wcna|f&;BzWFk?jg0d;zvd7+?(UR zF1y0s(uW(Xlb@9TC@KEE4I{<@Y?zOZSiv%eJ*&RPMhVBOtD1X1at(2r_O8b1Y33Km zS82RyvB5QqE^*Ky^H(KmxxVDbWXdUZuftsS%DN8K;mL(j!3RGfCH-BE=nS~Q`b78m z__o?uH;$07ZB#>Vu1%10#D^0E>4C~&xS^B1I3dKVys3wYC7iNM7R%R=M3f^8h_gWA zX#ij6c+98E;4X4+Bbp`>1@z7N7bBVqVZfNl#i8z4s`8t^;tBKb*kk4-4oU{lY_Q4f`W2w`3l}#TEGqT{)3(Ov>D*`$Bsp$7j!_8BzewI5VR}& z4;M$t#GY*m=YfkiXCOlS`iMbW>bpt?y%)qlKha|Ec(wkmjcDppugAs$AxblafaP|s zmHhdLJe`HDC81hlcq+$df*kSrQ=kqGQ4quwpcaR1TwoUV%H^#pW1jX&L?cI*?;5H! zhBMmY3!-ExsT&cKyko$0qMe6!bzjHbBqFBVCB&5bQtBM|-}iNAS=yRBH6rar?HX6T z!>Cubefy5+2P5tVVl|oNSV`Y7a3(auSG2Uj_7#mNn#L2C1s5;R>N+9GVt z5{lWy-B`}R03brmPIID_O$QE@F=1B0OluZrqNC(DrH z5cz0^Cx`*{T`RJ@FS1xBtQ;={cis83$f^2wPD6Tbuc%ml@dG*-CO2|U`dAlT*_v3a zJu&UF`3gvSvoutT-Xm5~^Ss#5mVX?mV@M4Hh(rWE+$a{@JO<+Z7f`RtZD#njjDCc& z89SuKf&GcuiY>ehS`=YxU%=jKRUa2lbx)1U^0|y?o0LxGCA^DbIGT!0Z^cOg~Z}_X$@L zlKhFRtYetV4gmN#g)QMsjAyBHYE)f7xz}$s(+}AtO`Re&+qwJ$9?tF&PRC94s-?nE zt;-0s8v4d%E^oK-I}VNUOFj76Q?;prS0tjwZ%^h7bmqAWSZ-qZ6MbY3eB{ET6N@BT z52Uvz@|@!4alVeHtd+WsoUHRpj0ruGL?X4|!S9JMO~Y z8w|)7KP1=I+F#lpuQbun1>L^ux_x}>e%VmVj*w5{+$TuLjjTUbGo_4$0d*{gBYl69QL@1_zID;984$BCNmk2EC%5N^0wXmAg}G@OmwYs!9sR_}?s`Y9#*&MvMae)PL>(3>%I7PPK6rV1wo%?9 z;EnAK*QG^@MG!jry~RnBC40y(-)H0_j+cymuApSX)2MCdtxERID1_0I(fra5!I0 zZ&lK16t%jvsCn_I4~MMB?6=jQcyYZ1DHhsmUT`gtoiabRACM;%-#_n?{r{eymUro78T&IuJ5&7vk9BdgSkJ;9d@529xP~pBs3I5T{N(qgP*%VMVXIaTsuQsv{4`29G8e)V!*1 zt6zBDcc%8e(h)l!NF%4vk98IY_jQ|~)eH7bV9o(1lnik%oiWoIQCG4Gdltq&+LGqH^D7q5;Cw4i#=2hM{Vlr5(aaZaV8M3-+@hP}h`Av?Vh-E8n zMv>u}AI&+X<~~2&td{~fMz>HlbKa_wBx+2&@sxSBoZ1TQO`eq#zBhfTY_>XkF)e^d z9%PDY6-G8|!KeyrKb7N!m^S=Aagwj7{CapAHskbX)90cHw&TDKBrh67g-!uH%mt@=Id4u*1ZbuP|Sa7xFl#EUlp8tEQ5g6 z0xi|Ad_b`JGUYEKH=7F^;dz6CwKNPHCCfbEc-=;gfpWT#c>0*`o`2&wN`pw>?m9lX zYe<*hyt=U=mIr|kI+o_Uv}kZ{Z2x^deLhJFV}X$N*W>kdKUtk+1ztyu8Om`6qYkfi zvcTiQ#HQM0S~EOekR7UE%z%?b42 zn^9s+)H(}aMu-BXhyui0AJOD9s?K1p;#wDyIMozIGM!=cS0bS%dF#O-Ya{`pQyX;wkr8ynD1fDkIyoGqd4W%|J@K+Nkh#472}HaS`_FS6=` zlA*;m@Y@Kb>=Y%7iLwOW-6&+=l*DBR!IEF&@8eKX4>{m2p@iA<26M*aC6TPW7}JN|Dwm6JQ09fg=fFngxQxn_H!=tID|@XJBzSB06V2B>~ufZUgu36 z;QXzaTy8q;=?Z%2U0RV(q}CMZrnnf@a4Bc9xQe7c7dh*h#ec$s+2Dc&U-b|WIeJmU z5!rHBCl$TgC;@$o_KsoH@OpRorv}~yJeVlzp{@A@PjHCA#INk?q)sWd#um>QoS7Wy z#utN&uFQZ{j`AF~Y8%GyY64H3o?~z39~g?;YS7gsZm3QDPrPs{^%+}d<=PP(Q+2gU z_rQ0YYL3*{En0o+KlGtj%dIp=`b6JJ0PNtL&whm=ekk%uA@qOmBK3y?5w&SsLZ=;Z zC!%x&-2}(4041&S_7VGbYa>(N`NNd4 zK?e7tW69R)-=AJq(_N~TEiJYKf+gwpn0V=`)h^{_OI@B^pP{>tlkEG~jgDpp4#K*} z>ztiM-56}`m1F5!=7Si-^k?c4NT`4iBj%RS!!ePIbz;CWw|}XI6Y|ODViEi~1Xhq= zM&QHf;y~BfWY<80w`|25_~n;V^Jd#oH4%;%GF_Y|y3pS?lIGPWqeI!3=jpNAjn13j z#-^k${3N=4=1Y5xafRvk9H7$Hi8x1XsjDWzYBM8MJ5|2TSBdCm$LlKSdI#%n8*f?t z&M0(sxr)U;pwt)+g~iYf&Pd+A``hM)--PS*nM6VUX{|JPnt8< z@HUMNdj!k_6pf$#kXJZFQRJPa-)`m|2nfQb4bZ-P?zry9KwxLSmk}WwrQDM8qQ?r+ zQXBp)N0XxGQ(>o@ONc)UvtpdLV^iVwxtBTBI?*1_13;P1o<`#{#96a0njUjwTBvCC z^P-!k%>!qmVnbBYS}@hi<^9n|k7w$P992(4RmI1$iU|9=_`g=mojh1NW)4pvq{ix$ zT`v~3Bo}Dey}OJT_ZP0Bd%{ezD6ODaWPPy?^01Hz0+yotWsy@1j0xG13TBxMlH&lq|%_B6u2+L_*`6L%S0x>BmU!f}81rtja`nJZ=bzvcC3 z-NX+90;t`_Lw_#97hne1VgkHj^QL~N=#no;nxda(omm@~7P>uPOk`b_ug!>HRXiNZ zs+qjzu9+ww+MIk0J($i(Q>8|TGVqF;}HD2}@yBphkhBI^z@ zfTk3T@?g3nH4~+}jLTAB(O|*h>o~Qqi!D)?Rl<4M!b#b!ih1H*)be<=eY36DU$|@D zI{!%dv81p>KyBC~s&b~=Sq4%l+mH*5yLP3pL!Fa`a(Ha@$l_aE&T(etyT^SuScg==skC13E^5k0k)1)$XXJGV30u8&x%~JbFR@%NU)8t9`kk)iQ2qxx< zB-%Ex3c!~IU3!y3{#hNjT7$J;q5JUu2xJ~aJOwXt-zYB{vJA>4vfs3XEF6zWJnD?7$N)0>+RX&x(^L=xLA z&J=#VciA6yt!$>Qt)=z$W@C-7YpAt;xo*DR*1_eTX#2i#@bT!Ix3iDTv{BP*#935M z_K&umj-|qF`{u=yH5Iw4uy>w;q>`ix-I@g>ALS=qRfI5wKBaSonIF`worA{?HrCnY z{*_x_QOeAFa`(aQr(gOcP};sHi6BoZc&Kk+;Oi+6eu-^R8jq`qWFAnb@E(;&)XD8S z?Rw(qSn73vvw!aO*Y%IK4mW7*E=Onl{fKSP5;9(mrRKKiR8;YhWCT4gUr>aJzOfPO z?MMlW<6XpL^-TwnMcAru%hizi^N{lgM$A3PmdA+hnBNT1gLM<826*}pdPxT4WR!C| zfvzY$t~`v$2eXh2XTb)ccL|Ra{1}RTy~cl+UmQB6K5kWOs-Kg|=g4cm!M?~3vyA#; zg>tIB@nIjI9!9(h2`Un-(kfpbxa%C*vz_lJ&%<hUPC*+6?uzNx)wc;UWq z4FJ!lK-#}g zN3z@w6sS=%TQ7^{A`)t>%f<1e+{O+a5^=C z<7aIIfR=}hX1Eb6wDU~~&?}Q=+zBlk ze=9=LNL%8AznH4?*btsL!;B3-r(zv+OmE#vZO=PEjkhW_G67EzjaHBV*Rn|d4>j(4 z_~wNNiqo;C9$T?y?NHpKc^mZVqkN^yTw61;tjUP;bJO9yb;x{K_&S8fz^lxT^wYiR z>Dvzgtu_Ce+)k|M;plI03ZQv>6ER%IM`V(w^c-q@e$78|?9Zg;qQzwM@U21})5V$U zNhJ0GX|b9GYW(XGx1thE|7%{&l-t7Rvb^hiYJGj42NV1-*l}!(*Oj)6EiP@)Sx96V zZ+so2t9S~CjD(i<*_u}jtkW60CQ}ydzUjrXu zI7Qtb2^)md&yEWZYB&WrFf$+{)=V-js!%q*I{mB>o@zAdIiJ@)vnWH3F5g~MR+n~x zqbW7EjR!jil+kT>|XfnLQue*r+I$6_$rW0L%>U@?F-N z+AKgY_7!*x_EozAJKZl?cNxl(yyo2?q|Z{qlvS^}M@wQH)vAe^l}h=%O19KQ(>z-g z1C7amZPWH5+@fo`b1*Nl^WY z7XKRlD^?SGQcCD`T4}!xbh4eGI)rNS^A`lFI_+wx9;gwWf}%jR3EdCC>MR64-o_&> zyY1F1-uN1=|I#bGUJl{E4;Zt zbAp1%HT674bjA`Adai_uxW9GchX2P

+ + + + + ); diff --git a/src/app/page.tsx b/src/app/page.tsx index e68abe6..81b0ced 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,103 +1,13 @@ -import Image from "next/image"; +"use client" +import AvatarInfo from "@/components/avatarInfo"; + +import { useRouter } from "next/navigation"; export default function Home() { - return ( - - ); + const router = useRouter() + return ( +
+ +
+ ); } diff --git a/src/app/relics-info/page.tsx b/src/app/relics-info/page.tsx new file mode 100644 index 0000000..b4b0732 --- /dev/null +++ b/src/app/relics-info/page.tsx @@ -0,0 +1,13 @@ +"use client" +import Image from "next/image"; + +import RelicsInfo from "@/components/relicsInfo"; +import { useRouter } from 'next/navigation' +export default function RelicsInfoPage() { + const router = useRouter() + return ( +
+ +
+ ); +} diff --git a/src/components/actionBar/index.tsx b/src/components/actionBar/index.tsx new file mode 100644 index 0000000..2253c56 --- /dev/null +++ b/src/components/actionBar/index.tsx @@ -0,0 +1,372 @@ +"use client"; + +import useListAvatarStore from "@/stores/avatarStore"; +import { useTranslations } from "next-intl"; +import Image from "next/image"; +import { useRouter } from 'next/navigation' +import ParseText from "../parseText"; +import useLocaleStore from "@/stores/localeStore"; +import { getNameChar } from "@/helper/getName"; +import { useEffect, useMemo, useState } from "react"; +import { motion } from "framer-motion"; +import useModelStore from "@/stores/modelStore"; +import useUserDataStore from "@/stores/userDataStore"; +import { RelicStore } from "@/types"; +import { toast } from "react-toastify"; +import useGlobalStore from "@/stores/globalStore"; +import { connectToPS, syncDataToPS } from "@/helper"; +import CopyImport from "../importBar/copy"; +import useCopyProfileStore from "@/stores/copyProfile"; + + +export default function ActionBar() { + const router = useRouter() + const { avatarSelected, listRawAvatar } = useListAvatarStore() + const { setListCopyAvatar } = useCopyProfileStore() + const transI18n = useTranslations("DataPage") + const { locale, setLocale } = useLocaleStore() + const { isOpenCreateProfile, setIsOpenCreateProfile, isOpenCopy, setIsOpenCopy } = useModelStore() + const { avatars, setAvatar } = useUserDataStore() + const [profileName, setProfileName] = useState(""); + const [formState, setFormState] = useState("EDIT"); + const [profileEdit, setProfileEdit] = useState(-1); + const { isConnectPS, setIsConnectPS } = useGlobalStore() + + const profileCurrent = useMemo(() => { + if (!avatarSelected) return null; + const avatar = avatars[avatarSelected.id]; + return avatar?.profileList[avatar.profileSelect] || null; + }, [avatarSelected, avatars]); + + const listProfile = useMemo(() => { + if (!avatarSelected) return []; + const avatar = avatars[avatarSelected.id]; + return avatar?.profileList || []; + }, [avatarSelected, avatars]); + + + + const handleUpdateProfile = () => { + if (!profileName.trim()) return; + if (formState === "CREATE" && avatarSelected && avatars[avatarSelected.id]) { + const newListProfile = [...listProfile] + const newProfile = { + profile_name: profileName, + lightcone: null, + relics: {} as Record + } + newListProfile.push(newProfile) + setAvatar({ ...avatars[avatarSelected.id], profileList: newListProfile, profileSelect: newListProfile.length - 1 }) + toast.success("Profile created successfully") + } else if (formState === "EDIT" && profileCurrent && avatarSelected && profileEdit !== -1) { + const newListProfile = [...listProfile] + newListProfile[profileEdit].profile_name = profileName; + setAvatar({ ...avatars[avatarSelected.id], profileList: newListProfile }) + toast.success("Profile updated successfully") + } + handleCloseModal("update_profile_modal"); + }; + + + const handleShow = (modalId: string) => { + const modal = document.getElementById(modalId) as HTMLDialogElement | null; + if (modal) { + modal.showModal(); + } + }; + + // Close modal handler + const handleCloseModal = (modalId: string) => { + const modal = document.getElementById(modalId) as HTMLDialogElement | null; + if (modal) { + modal.close(); + } + }; + + // Handle ESC key to close modal + useEffect(() => { + if (!isOpenCreateProfile) { + handleCloseModal("update_profile_modal"); + return; + } + if (!isOpenCopy) { + handleCloseModal("copy_profile_modal"); + return; + } + + const handleEscKey = (event: KeyboardEvent) => { + if (event.key === 'Escape' && isOpenCreateProfile) { + handleCloseModal("update_profile_modal"); + } + if (event.key === 'Escape' && isOpenCopy) { + handleCloseModal("copy_profile_modal"); + } + }; + + window.addEventListener('keydown', handleEscKey); + + return () => window.removeEventListener('keydown', handleEscKey); + }, [isOpenCreateProfile]); + + const actionMove = (path: string) => { + router.push(`/${path}`) + } + + const handleProfileSelect = (profileId: number) => { + if (!avatarSelected) return; + if (avatars[avatarSelected.id].profileSelect === profileId) return; + setAvatar({ ...avatars[avatarSelected.id], profileSelect: profileId }) + toast.success(`Profile changed to Profile: ${avatars[avatarSelected.id].profileList[profileId].profile_name}`) + } + + + const handleDeleteProfile = (profileId: number, e: React.MouseEvent) => { + e.stopPropagation() + if (!avatarSelected || profileId == 0) return; + if (window.confirm(`Are you sure you want to delete profile: ${avatars[avatarSelected.id].profileList[profileId].profile_name}?`)) { + const newListProfile = [...listProfile] + newListProfile.splice(profileId, 1) + setAvatar({ ...avatars[avatarSelected.id], profileList: newListProfile, profileSelect: profileId - 1 }) + toast.success(`Profile ${avatars[avatarSelected.id].profileList[profileId].profile_name} deleted successfully`) + } + + } + + const handleConnectOrSyncPS = async () => { + if (isConnectPS) { + const res = await syncDataToPS() + if (res.success) { + toast.success(transI18n("syncSuccess")) + } else { + toast.error(`${transI18n("syncFailed")}: ${res.message}`) + setIsConnectPS(false) + } + } else { + const res = await connectToPS() + if (res.success) { + toast.success(transI18n("connectedSuccess")) + setIsConnectPS(true) + } else { + toast.error(`${transI18n("connectedFailed")}: ${res.message}`) + setIsConnectPS(false) + } + } + } + + return ( +
+
+
+
+
+ {avatarSelected && ( + <> + {'fire'} +
+

+ {transI18n(avatarSelected.baseType.toLowerCase())} +

+
{" / "}
+ + {avatarSelected?.id && ( +
{`(${avatarSelected.id})`}
+ )} +
+ + )} +
+ +
+ +
+ {transI18n("profile")}: +
+
+ + {profileCurrent?.profile_name} + + + + +
+ +
    + {listProfile.map((profile, index) => ( +
  • + + {index !== 0 && ( + <> + + + + )} +
  • + ))} + +
  • + + +
  • +
+
+
+
+ +
+ {/* Action Buttons */} +
+ + + + + + +
+
+ + + +
+
+ { + setIsOpenCreateProfile(false) + handleCloseModal("update_profile_modal") + }} + > + ✕ + +
+ +
+

+ {formState === "CREATE" ? transI18n("createNewProfile") : transI18n("editProfile")} +

+
+ +
+
+ + setProfileName(e.target.value)} + /> +
+ +
+ +
+
+
+
+ + +
+
+ { + setIsOpenCopy(false) + handleCloseModal("copy_profile_modal") + }} + > + ✕ + +
+
+

+ {transI18n("copyProfiles").toUpperCase()} +

+
+ +
+
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/components/avatarBar/index.tsx b/src/components/avatarBar/index.tsx new file mode 100644 index 0000000..27c1d47 --- /dev/null +++ b/src/components/avatarBar/index.tsx @@ -0,0 +1,164 @@ +"use client" +import { getCharacterListApi, fetchCharactersByIdsNative, getConfigMazeApi, getLightconeListApi, fetchLightconesByIdsNative, fetchRelicsByIdsNative, getRelicSetListApi, getMainAffixApi, getSubAffixApi } from "@/lib/api" +import Image from "next/image" +import { useEffect, useState } from "react" +import CharacterCard from "../card/characterCard" +import useLocaleStore from "@/stores/localeStore" +import { listCurrentLanguageApi } from "@/lib/constant" +import useAvatarStore from "@/stores/avatarStore" +import useUserDataStore from "@/stores/userDataStore" +import { converterToAvatarStore, getAvatarNotExist } from "@/helper" +import useLightconeStore from "@/stores/lightconeStore" +import useRelicStore from "@/stores/relicStore" +import useAffixStore from "@/stores/affixStore" +import useMazeStore from "@/stores/mazeStore" +import { useTranslations } from "next-intl" + +export default function AvatarBar() { + const [listElement, setListElement] = useState>({ "fire": false, "ice": false, "imaginary": false, "physical": false, "quantum": false, "thunder": false, "wind": false }) + const [listPath, setListPath] = useState>({ "knight": false, "mage": false, "priest": false, "rogue": false, "shaman": false, "warlock": false, "warrior": false, "memory": false }) + const { listAvatar, setListAvatar, setAvatarSelected, setFilter, filter, setAllMapAvatarInfo, avatarSelected } = useAvatarStore() + const { setAvatars, avatars } = useUserDataStore() + const transI18n = useTranslations("DataPage") + const { locale } = useLocaleStore() + const { setListLightcone, setAllMapLightconeInfo } = useLightconeStore() + const { setListRelic, setAllMapRelicInfo } = useRelicStore() + const { setMapMainAffix, setMapSubAffix } = useAffixStore() + const { setAllData } = useMazeStore() + + useEffect(() => { + const fetchData = async () => { + // Maze + const maze = await getConfigMazeApi() + setAllData(maze) + + // Affix + const mapMainAffix = await getMainAffixApi() + setMapMainAffix(mapMainAffix) + + const mapSubAffix = await getSubAffixApi() + setMapSubAffix(mapSubAffix) + } + fetchData() + }, []) + + useEffect(() => { + const fetchData = async () => { + // Avatar + const listAvatar = await getCharacterListApi() + listAvatar.sort((a, b) => { + const aHasRelease = typeof a.release === 'number'; + const bHasRelease = typeof b.release === 'number'; + if (!aHasRelease && !bHasRelease) return 0; + if (!aHasRelease) return -1; + if (!bHasRelease) return 1; + return b.release! - a.release!; + }); + + const mapAvatar = await fetchCharactersByIdsNative(listAvatar.map((item) => item.id), listCurrentLanguageApi[locale.toLowerCase()]) + setListAvatar(listAvatar) + setAllMapAvatarInfo(mapAvatar) + const avatarStore = converterToAvatarStore(getAvatarNotExist()) + if (Object.keys(avatarStore).length > 0) { + setAvatars({ ...avatars, ...avatarStore }) + } + if (!avatarSelected) { + setAvatarSelected(listAvatar[0]) + } + + // Lightcone + const listLightcone = await getLightconeListApi() + listLightcone.sort((a, b) => Number(b.id) - Number(a.id)) + setListLightcone(listLightcone) + const mapLightcone = await fetchLightconesByIdsNative(listLightcone.map((item) => item.id), listCurrentLanguageApi[locale.toLowerCase()]) + setAllMapLightconeInfo(mapLightcone) + + + // Relic + const listRelic = await getRelicSetListApi() + setListRelic(listRelic) + const mapRelic = await fetchRelicsByIdsNative(listRelic.map((item) => item.id), listCurrentLanguageApi[locale.toLowerCase()]) + setAllMapRelicInfo(mapRelic) + } + fetchData() + }, [locale]) + + + useEffect(() => { + setFilter({ ...filter, locale: locale, element: Object.keys(listElement).filter((key) => listElement[key]), path: Object.keys(listPath).filter((key) => listPath[key]) }) + }, [locale, listElement, listPath]) + + return ( +
+
+
+
+
+
+ setFilter({ ...filter, name: e.target.value, locale: locale })} + /> +
+
+ {Object.entries(listElement).map(([key, value], index) => ( +
{ + setListElement((prev) => ({ ...prev, [key]: !prev[key] })) + }} + className="hover:bg-gray-600 grid items-center justify-items-center cursor-pointer rounded-md shadow-lg" + style={{ + backgroundColor: listElement[key] ? "#374151" : "#6B7280" + }}> + {key} +
+ ))} +
+ +
+ {Object.entries(listPath).map(([key, value], index) => ( +
{ + setListPath((prev) => ({ ...prev, [key]: !prev[key] })) + }} + className="hover:bg-gray-600 grid items-center justify-items-center rounded-md shadow-lg cursor-pointer" + style={{ + backgroundColor: listPath[key] ? "#374151" : "#6B7280" + }} + > + + {key} +
+ ))} + +
+
+ +
+
    + {listAvatar.map((item, index) => ( +
    setAvatarSelected(item)}> + +
    + ))} +
+
+
+ +
+
+
+ ) +} diff --git a/src/components/avatarInfo/index.tsx b/src/components/avatarInfo/index.tsx new file mode 100644 index 0000000..877bfbf --- /dev/null +++ b/src/components/avatarInfo/index.tsx @@ -0,0 +1,517 @@ +"use client" + +import { useRouter } from 'next/navigation' +import useAvatarStore from "@/stores/avatarStore" +import useUserDataStore from "@/stores/userDataStore"; +import { useEffect, useMemo, useState } from "react"; +import { motion } from "framer-motion"; +import LightconeBar from '../lightconeBar' +import useLightconeStore from '@/stores/lightconeStore' +import { calcPromotion, calcRarity, replaceByParam } from '@/helper'; +import { getSkillTree } from '@/helper/getSkillTree'; +import { useTranslations } from 'next-intl'; +import ParseText from '../parseText'; +import useLocaleStore from '@/stores/localeStore'; +import useModelStore from '@/stores/modelStore'; +import useMazeStore from '@/stores/mazeStore'; + +export default function AvatarInfo() { + const router = useRouter() + const { avatarSelected, mapAvatarInfo } = useAvatarStore() + const { Technique } = useMazeStore() + const { avatars, setAvatars, setAvatar } = useUserDataStore() + const { isOpenLightcone, setIsOpenLightcone } = useModelStore() + const { listLightcone, mapLightconeInfo } = useLightconeStore() + const transI18n = useTranslations("DataPage") + const { locale } = useLocaleStore(); + const lightcone = useMemo(() => { + if (!avatarSelected) return null; + const avatar = avatars[avatarSelected.id]; + return avatar?.profileList[avatar.profileSelect]?.lightcone || null; + }, [avatarSelected, avatars]); + + const lightconeDetail = useMemo(() => { + if (!lightcone) return null; + return listLightcone.find((item) => Number(item.id) === Number(lightcone.item_id)) || null; + }, [lightcone, listLightcone]); + + + + const handleShow = (modalId: string) => { + const modal = document.getElementById(modalId) as HTMLDialogElement | null; + if (modal) { + setIsOpenLightcone(true); + modal.showModal(); + } + }; + + // Close modal handler + const handleCloseModal = (modalId: string) => { + setIsOpenLightcone(false); + const modal = document.getElementById(modalId) as HTMLDialogElement | null; + if (modal) { + modal.close(); + } + }; + + // Handle ESC key to close modal + useEffect(() => { + if (!isOpenLightcone) { + handleCloseModal("action_detail_modal"); + return; + } + + const handleEscKey = (event: KeyboardEvent) => { + if (event.key === 'Escape' && isOpenLightcone) { + handleCloseModal("action_detail_modal"); + } + }; + + window.addEventListener('keydown', handleEscKey); + + return () => window.removeEventListener('keydown', handleEscKey); + }, [isOpenLightcone]); + + return ( +
+ {avatarSelected && avatars[avatarSelected?.id || ""] && ( +
+
+
+
+
+ {/* Header */} +
+

+
+ {transI18n("characterSettings")} +

+
+ +
+ {/* Level Control */} +
+

+
+ {transI18n("levelConfiguration")} +

+ +
+ +
+ { + const newLevel = Math.min(80, Math.max(1, parseInt(e.target.value) || 1)); + + setAvatars({ ...avatars, [avatarSelected?.id || ""]: { ...avatars[avatarSelected?.id || ""], level: newLevel, promotion: calcPromotion(newLevel) } }); + }} + className="input input-bordered w-full pr-16 font-mono" + placeholder={transI18n("placeholderLevel")} + /> +
{ + setAvatars({ ...avatars, [avatarSelected?.id || ""]: { ...avatars[avatarSelected?.id || ""], level: 80, promotion: calcPromotion(80) } }); + }} + className="absolute right-3 top-1/2 -translate-y-1/2 text-base-content/60 cursor-pointer"> + {transI18n("max")} +
+
+
+ { + const newLevel = Math.min(80, Math.max(1, parseInt(e.target.value) || 1)); + setAvatars({ ...avatars, [avatarSelected?.id || ""]: { ...avatars[avatarSelected?.id || ""], level: newLevel, promotion: calcPromotion(newLevel) } }); + }} + className="range range-info range-sm w-full" + /> +
+
+
+ + {/* Energy Control */} +
+

+
+ {transI18n("ultimateEnergy")} +

+ +
+ + { + if (!avatars[avatarSelected?.id || ""]?.can_change_sp) return + const newSpValue = Math.min(avatars[avatarSelected?.id || ""]?.sp_max, Math.max(0, parseInt(e.target.value) || 0)); + setAvatars({ ...avatars, [avatarSelected?.id || ""]: { ...avatars[avatarSelected?.id || ""], sp_value: newSpValue } }); + }} + className="range range-warning range-sm w-full" + /> +
+ 0% + {((avatars[avatarSelected?.id || ""]?.sp_value / avatars[avatarSelected?.id || ""]?.sp_max) * 100).toFixed(1)}% + 100% +
+
+ +
+
+
+ + {/* Technique Toggle */} +
+

+
+ {transI18n("battleConfiguration")} +

+ +
+ +
+ {transI18n("techniqueNote")} +
+
+
+ + {/* Enhancement Selection */} + {Object.entries(mapAvatarInfo[avatarSelected?.id || ""]?.Enhanced || {}).length > 0 && ( +
+

+ + + + {transI18n("enhancement")} +

+ +
+ + +
+ {transI18n("enhancedNote")} +
+
+
+ )} +
+
+
+ +
+
+
+
+
+
+ {/* Header */} +
+

+
+ {transI18n("lightconeEquipment")} +

+
+ + {lightcone && lightconeDetail ? ( +
+
+ {/* Level & Rank Controls */} +
+

+
+ {transI18n("lightconeSettings")} +

+ +
+ {/* Level Input */} +
+ +
+ { + const newLightconeLevel = Math.min(80, Math.max(1, parseInt(e.target.value) || 1)) + const newLightcone = { ...lightcone, level: newLightconeLevel, promotion: calcPromotion(newLightconeLevel) } + const newAvatar = { ...avatars[avatarSelected.id] } + newAvatar.profileList[newAvatar.profileSelect].lightcone = newLightcone + setAvatar(newAvatar) + }} + className="input input-bordered w-full pr-16 font-mono" + placeholder={transI18n("placeholderLevel")} + /> +
{ + const newLightcone = { ...lightcone, level: 80, promotion: calcPromotion(80) } + const newAvatar = { ...avatars[avatarSelected.id] } + newAvatar.profileList[newAvatar.profileSelect].lightcone = newLightcone + setAvatar(newAvatar) + }} + className="absolute right-3 top-1/2 -translate-y-1/2 text-base-content/60 cursor-pointer"> + {transI18n("max")} +
+
+
+ { + const newLightconeLevel = Math.min(80, Math.max(1, parseInt(e.target.value) || 1)) + const newLightcone = { ...lightcone, level: newLightconeLevel, promotion: calcPromotion(newLightconeLevel) } + const newAvatar = { ...avatars[avatarSelected.id] } + newAvatar.profileList[newAvatar.profileSelect].lightcone = newLightcone + setAvatar(newAvatar) + }} + className="range range-primary range-sm" + /> +
+
+ + {/* Rank Selection */} +
+ {/* Header */} +
+ {transI18n("superimpositionRank")} + S{lightcone.rank} +
+ + {/* Rank Buttons */} +
+
+ {[1, 2, 3, 4, 5].map((r) => ( + + ))} +
+
+ + {/* Help Text */} +
+ {transI18n("ranksNote")} +
+
+
+
+ + {/* Action Buttons */} +
+ + +
+
+ + {/* Lightcone Image */} +
+
+ Lightcone +
+
+ + {/* Lightcone Info & Controls */} +
+ {/* Basic Info */} + {mapLightconeInfo[lightcone.item_id] && ( +
+
+

+ +

+
+ {transI18n(mapLightconeInfo[lightcone.item_id].BaseType.toLowerCase())} +
+
+ {calcRarity(mapLightconeInfo[lightcone.item_id].Rarity) + "⭐"} +
+
+ {"id: " + lightcone.item_id} +
+
+ +
+
+
+
+ )} + + +
+
+ ) : ( + /* No Lightcone Equipped State */ +
+
handleShow("action_detail_modal")} + className="w-24 h-24 mx-auto mb-6 bg-base-300 rounded-full flex items-center justify-center cursor-pointer" + > + + + +
+

{transI18n("noLightconeEquipped")}

+

{transI18n("equipLightconeNote")}

+ +
+ )} +
+
+
+
+
+ )} + + +
+
+ handleCloseModal("action_detail_modal")} + > + ✕ + +
+ +
+ +
+
+ + ); +} diff --git a/src/components/card/characterCard.tsx b/src/components/card/characterCard.tsx new file mode 100644 index 0000000..77fcb8f --- /dev/null +++ b/src/components/card/characterCard.tsx @@ -0,0 +1,67 @@ +"use client"; + +import { getNameChar } from '@/helper'; +import useLocaleStore from '@/stores/localeStore'; +import { CharacterBasic } from '@/types'; +import ParseText from '../parseText'; +import Image from 'next/image'; + +interface CharacterCardProps { + data: CharacterBasic +} + +export default function CharacterCard({ data }: CharacterCardProps) { + const { locale } = useLocaleStore(); + const text = getNameChar(locale, data) + return ( +
  • +
    + +
    + ALT + {data.damageType.toLowerCase()} + {data.baseType.toLowerCase()} +
    +
    + + +
  • + + ); +} diff --git a/src/components/card/characterInfoCard.tsx b/src/components/card/characterInfoCard.tsx new file mode 100644 index 0000000..929d0d7 --- /dev/null +++ b/src/components/card/characterInfoCard.tsx @@ -0,0 +1,117 @@ + +import React, { useState, useMemo } from 'react'; +import { CharacterInfoCardType } from '@/types'; +import { getNameChar, replaceByParam } from '@/helper'; +import useLocaleStore from '@/stores/localeStore'; +import useAvatarStore from '@/stores/avatarStore'; +import useLightconeStore from '@/stores/lightconeStore'; +import useRelicStore from '@/stores/relicStore'; +import Image from 'next/image'; +import ParseText from '../parseText'; + + +export default function CharacterInfoCard({ character, selectedCharacters, onCharacterToggle }: { character: CharacterInfoCardType, selectedCharacters: CharacterInfoCardType[], onCharacterToggle: (characterId: CharacterInfoCardType) => void }) { + const isSelected = selectedCharacters.some((selectedCharacter) => selectedCharacter.avatar_id === character.avatar_id); + const { mapAvatarInfo } = useAvatarStore(); + const { mapLightconeInfo } = useLightconeStore(); + const { mapRelicInfo } = useRelicStore(); + const { locale } = useLocaleStore(); + + return ( +
    onCharacterToggle(character)} + > + + {/* Character Portrait */} +
    +
    + {mapAvatarInfo[character.avatar_id.toString()]?.Name + {mapAvatarInfo[character.avatar_id.toString()]?.DamageType.toLowerCase()} + {mapAvatarInfo[character.avatar_id.toString()]?.BaseType.toLowerCase()} +
    +
    + + {/* Character Name and Level */} +
    +
    + +
    Lv.{character.level} E{character.rank}
    +
    +
    + {character.relics.length > 0 && ( +
    + {character.relics.map((relic, index) => ( +
    +
    + Relic +
    +
    + +{relic.level} +
    +
    + ))} +
    + )} + + {/* Light Cone */} + {character.lightcone.item_id && ( +
    +
    + {mapLightconeInfo[character.lightcone.item_id.toString()]?.Name} + +
    +
    +
    +
    + +
    +
    Lv.{character.lightcone.level} S{character.lightcone.rank}
    +
    +
    +
    + )} +
    + ); +}; \ No newline at end of file diff --git a/src/components/card/lightconeCard.tsx b/src/components/card/lightconeCard.tsx new file mode 100644 index 0000000..328070a --- /dev/null +++ b/src/components/card/lightconeCard.tsx @@ -0,0 +1,48 @@ +"use client"; + +import { getNameLightcone } from '@/helper'; +import useLocaleStore from '@/stores/localeStore'; +import { LightConeBasic } from '@/types'; +import ParseText from '../parseText'; + +interface LightconeCardProps { + data: LightConeBasic +} + +export default function LightconeCard({ data }: LightconeCardProps) { + + const { locale } = useLocaleStore(); + const text = getNameLightcone(locale, data) + return ( +
  • +
    + +
    + ALT +
    +
    + + +
  • + + ); + +} diff --git a/src/components/card/profileCard.tsx b/src/components/card/profileCard.tsx new file mode 100644 index 0000000..a797f0e --- /dev/null +++ b/src/components/card/profileCard.tsx @@ -0,0 +1,73 @@ + +import React from 'react'; +import { AvatarProfileCardType } from '@/types'; +import useLocaleStore from '@/stores/localeStore'; +import useAvatarStore from '@/stores/avatarStore'; +import useLightconeStore from '@/stores/lightconeStore'; +import useRelicStore from '@/stores/relicStore'; +import Image from 'next/image'; +import ParseText from '../parseText'; + + +export default function ProfileCard({ profile, selectedProfile, onProfileToggle }: { profile: AvatarProfileCardType, selectedProfile: AvatarProfileCardType[], onProfileToggle: (profileId: AvatarProfileCardType) => void }) { + const isSelected = selectedProfile.some((selectedProfile) => selectedProfile.key === profile.key); + const { mapLightconeInfo } = useLightconeStore(); + const { locale } = useLocaleStore(); + + return ( +
    onProfileToggle(profile)} + > + {/* Light Cone */} + {profile.lightcone && ( +
    +
    + {mapLightconeInfo[profile.lightcone.item_id.toString()]?.Name} + +
    +
    +
    +
    + +
    +
    Lv.{profile.lightcone.level} S{profile.lightcone.rank}
    +
    +
    +
    + )} + + {Object.keys(profile.relics).length > 0 && ( +
    + {Object.entries(profile.relics).map(([key, relic], index) => ( +
    +
    + Relic +
    +
    + +{relic.level} +
    +
    + ))} +
    + )} +
    + ); +}; \ No newline at end of file diff --git a/src/components/card/relicCard.tsx b/src/components/card/relicCard.tsx new file mode 100644 index 0000000..26c5234 --- /dev/null +++ b/src/components/card/relicCard.tsx @@ -0,0 +1,143 @@ +import useLocaleStore from "@/stores/localeStore"; +import useUserDataStore from "@/stores/userDataStore"; +import Image from "next/image"; +import { useMemo } from "react"; + +interface RelicCardProps { + slot: string + avatarId: string +} +const getRarityColor = (rarity: string) => { + switch (rarity) { + case '3': return 'border-green-500 shadow-green-500/50 bg-gradient-to-br from-green-700 via-green-400 to-green-500'; + case '4': return 'border-blue-500 shadow-blue-500/50 bg-gradient-to-br from-blue-700 via-blue-400 to-blue-500'; + case '5': return 'border-purple-500 shadow-purple-500/50 bg-gradient-to-br from-purple-700 via-purple-400 to-purple-500'; + case '6': return 'border-yellow-500 shadow-yellow-500/50 bg-gradient-to-br from-yellow-700 via-yellow-400 to-yellow-500'; + default: return 'border-gray-500 shadow-gray-500/50'; + } +}; +const getRarityName = (slot: string) => { + switch (slot) { + case '1': return ( +
    + Head +

    Head

    +
    + ); + case '2': return ( +
    + Head +

    Hands

    +
    + ); + case '3': return ( +
    + Head +

    Body

    +
    + ); + case '4': return ( +
    + Head +

    Feet

    +
    + ); + case '5': return ( +
    + Head +

    Planar sphere

    +
    + ); + case '6': return ( +
    + Head +

    Link rope

    +
    + ); + default: return ''; + } +}; +export default function RelicCard({ slot, avatarId }: RelicCardProps) { + const { locale } = useLocaleStore(); + const { avatars } = useUserDataStore() + + const relicDetail = useMemo(() => { + const avatar = avatars[avatarId]; + if (avatar) { + if (avatar.profileList[avatar.profileSelect].relics[slot]) { + return avatar.profileList[avatar.profileSelect].relics[slot]; + } + return null; + } + return null; + }, [avatars, avatarId, slot]); + + return ( +
    + {relicDetail ? ( +
    +
    + + Relic + + + {/* Level Badge */} +
    + +{relicDetail.level} +
    +
    + +
    +
    {getRarityName(slot)}
    +
    +
    + ) : ( +
    +
    + + + + + + + {/* Level Badge */} +
    + +{0} +
    +
    + +
    +
    {getRarityName(slot)}
    +
    +
    + )} + +
    + ) +} \ No newline at end of file diff --git a/src/components/card/showCaseCard.tsx b/src/components/card/showCaseCard.tsx new file mode 100644 index 0000000..4ee66ae --- /dev/null +++ b/src/components/card/showCaseCard.tsx @@ -0,0 +1,665 @@ +"use client"; +import React, { useState, useRef} from 'react'; + +export default function ShowCaseInfo() { + const [imageUrl, setImageUrl] = useState('https://api.hakush.in/hsr/UI/avatardrawcard/1001.webp'); + const [position, setPosition] = useState<{ x: number; y: number }>({ x: 0, y: 100 }); + const ref = useRef(null) + + return ( +
    + +
    +
    + Showcase Background +
    + +
    +
    +
    +
    +
    + Character Preview +
    +
    +
    +
    + {[ + "https://worker-sparkling-dawn-a1c1.srv2.workers.dev/hsr.honeyhunterworld.com/img/eidolon/memory-of-you-eidolon_icon_small.webp", + "https://worker-sparkling-dawn-a1c1.srv2.workers.dev/hsr.honeyhunterworld.com/img/eidolon/memory-of-it-eidolon_icon_small.webp", + "https://worker-sparkling-dawn-a1c1.srv2.workers.dev/hsr.honeyhunterworld.com/img/eidolon/memory-of-everything-eidolon_icon_small.webp", + "https://worker-sparkling-dawn-a1c1.srv2.workers.dev/hsr.honeyhunterworld.com/img/eidolon/never-forfeit-again-eidolon_icon_small.webp", + "https://worker-sparkling-dawn-a1c1.srv2.workers.dev/hsr.honeyhunterworld.com/img/eidolon/never-forget-again-eidolon_icon_small.webp", + "https://worker-sparkling-dawn-a1c1.srv2.workers.dev/hsr.honeyhunterworld.com/img/eidolon/just-like-this-always-eidolon_icon_small.webp" + ].map((src, index) => ( +
    + Rank Icon +
    + +
    +
    + ))} +
    +
    +
    +
    + Background + +
    +
    +
    +
    + March 7th + Element Icon +
    +
    + Path Icon + Preservation +
    +
    + Lv. 80 + / + 80 +
    +
    +
    +
    + Path Icon +
    +
    +
    +
    + Skill Icon + 6 / 6 + Basic ATK +
    +
    +
    +
    + Skill Icon + 10 / 10 + Skill +
    +
    +
    +
    +
    + Skill Icon + 10 / 10 + Ultimate +
    +
    +
    +
    +
    + Skill Icon + 8 / 8 + Talent +
    +
    +
    +
    + Skill Icon + 5 / 5 + Technique +
    +
    +
    +
    + +
    +
    + {/* First Column */} +
    + Icon 1001101 +
    + Icon 1001101 + Icon 1001101 +
    +
    + + {/* Second Column */} +
    + Icon 1001102 +
    + Icon 1001102 + Icon 1001102 +
    +
    + + {/* Third Column */} +
    + Icon 1001103 +
    + Icon 1001103 + Icon 1001103 + Icon 1001103 +
    +
    + + {/* Fourth Column */} +
    +
    + Icon 1001201 + Icon 1001201 + Icon 1001201 +
    +
    +
    +
    + +
    +
    + Light Cone Preview + Light Cone Rarity Icon +
    +
    + On the Fall of an Aeon +
    +
    + V +
    +
    + Lv. 80 + / + 80 +
    +
    +
    +
    + Attribute Icon + 529 +
    +
    + Attribute Icon + 397 +
    +
    + Attribute Icon + 1058 +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    + Stat Icon + HP +
    +
    +
    2942
    +
    + +
    +
    + Stat Icon + ATK +
    +
    +
    3212
    +
    + +
    +
    + Stat Icon + DEF +
    +
    +
    1255
    +
    + +
    +
    + Stat Icon + SPD +
    +
    +
    106
    +
    + +
    +
    + Stat Icon + CRIT Rate +
    +
    +
    16.7%
    +
    + +
    +
    + Stat Icon + CRIT DMG +
    +
    +
    79.2%
    +
    + +
    +
    + Stat Icon + Break Effect +
    +
    +
    186.9%
    +
    + +
    +
    + Stat Icon + Effect RES +
    +
    +
    4.0%
    +
    + +
    +
    + Stat Icon + Energy Regeneration Rate +
    +
    +
    0.0%
    +
    + +
    +
    + Stat Icon + Effect Hit Rate +
    +
    +
    20.3%
    +
    + +
    +
    + Stat Icon + Outgoing Healing Boost +
    +
    +
    0.0%
    +
    + +
    +
    + Stat Icon + Ice DMG Boost +
    +
    +
    6.4%
    +
    +
    + +
    + +
    +
    + Prisoner in Deep Confinement +
    + 2 +
    +
    +
    + Watchmaker, Master of Dream Machinations +
    + 2 +
    +
    +
    + Talia: Kingdom of Banditry +
    + 2 +
    +
    +
    +
    +
    +
    +
    +
    + Relic Icon + Relic Rarity Icon +
    +
    + Main Affix Icon + 705 + +15 +
    +
    +
    +
    +
    + Sub Affix Icon + +7.8% +
    +
    +
    +
    + Sub Affix Icon + +3.2% +
    +
    +
    +
    + Sub Affix Icon + +17.5% +
    +
    +
    +
    + Sub Affix Icon + +15.6% +
    +
    +
    +
    + +
    +
    + Relic Icon + Relic Rarity Icon +
    +
    + Main Affix Icon + 352 + +15 +
    +
    +
    +
    +
    + Sub Affix Icon + +6.9% +
    +
    +
    +
    + Sub Affix Icon + +11.7% +
    +
    +
    +
    + Sub Affix Icon + +3.9% +
    +
    +
    +
    + Sub Affix Icon + +23.3% +
    +
    +
    +
    + +
    +
    + Relic Icon + Relic Rarity Icon +
    +
    + Main Affix Icon + 43.2% + +15 +
    +
    +
    +
    +
    + Sub Affix Icon + +57 +
    +
    +
    +
    + Sub Affix Icon + +3.9% +
    +
    +
    +
    + Sub Affix Icon + +2.6% +
    +
    +
    +
    + Sub Affix Icon + +19.4% +
    +
    +
    +
    + +
    +
    + Relic Icon + Relic Rarity Icon +
    +
    + Main Affix Icon + 18.9% + +15 +
    +
    +
    +
    +
    + Sub Affix Icon + +5.2% +
    +
    +
    +
    + Sub Affix Icon + +4.3% +
    +
    +
    +
    + Sub Affix Icon + +2.7% +
    +
    +
    +
    + Sub Affix Icon + +34 +
    +
    +
    +
    +
    +
    + Relic Icon + Relic Rarity Icon +
    +
    + Main Affix Icon + 18.9% + +15 +
    +
    +
    +
    +
    + Sub Affix Icon + +5.2% +
    +
    +
    +
    + Sub Affix Icon + +4.3% +
    +
    +
    +
    + Sub Affix Icon + +2.7% +
    +
    +
    +
    + Sub Affix Icon + +34 +
    +
    +
    +
    +
    +
    + Relic Icon + Relic Rarity Icon +
    +
    + Main Affix Icon + 18.9% + +15 +
    +
    +
    +
    +
    + Sub Affix Icon + +5.2% +
    +
    +
    +
    + Sub Affix Icon + +4.3% +
    +
    +
    +
    + Sub Affix Icon + +2.7% +
    +
    +
    +
    + Sub Affix Icon + +34 +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    + +
    + ); +} diff --git a/src/components/eidolonsInfo/index.tsx b/src/components/eidolonsInfo/index.tsx new file mode 100644 index 0000000..5c111b9 --- /dev/null +++ b/src/components/eidolonsInfo/index.tsx @@ -0,0 +1,66 @@ +"use client" +import { replaceByParam } from "@/helper"; +import useListAvatarStore from "@/stores/avatarStore"; +import Image from "next/image"; +import ParseText from "../parseText"; +import useLocaleStore from "@/stores/localeStore"; +import useUserDataStore from "@/stores/userDataStore"; +import { useMemo } from "react"; + +export default function EidolonsInfo() { + const { avatarSelected, mapAvatarInfo } = useListAvatarStore() + const { locale } = useLocaleStore() + const { setAvatars, avatars } = useUserDataStore() + + const charRank = useMemo(() => { + if (!avatarSelected) return null; + const avatar = avatars[avatarSelected.id]; + if (avatar?.enhanced != "") { + return mapAvatarInfo[avatarSelected.id]?.Enhanced[avatar?.enhanced].Ranks + } + return mapAvatarInfo[avatarSelected.id]?.Ranks + }, [avatarSelected, avatars, locale, mapAvatarInfo]); + + return ( +
    + {charRank && avatars[avatarSelected?.id || ""] && ( +
    + {Object.entries(charRank || {}).map(([key, rank]) => ( +
    { + let newRank = Number(key) + if (Number(key) == 1 && avatars[avatarSelected?.id || ""]?.data?.rank == 1) { + newRank = 0 + } + setAvatars({ ...avatars, [avatarSelected?.id || ""]: { ...avatars[avatarSelected?.id || ""], data: { ...avatars[avatarSelected?.id || ""].data, rank: newRank } } }) + }} + > + {`Rank +
    + {key}. + +
    +
    +
    +
    +
    + ))} + +
    + )} +
    + ); +} diff --git a/src/components/footer/index.tsx b/src/components/footer/index.tsx new file mode 100644 index 0000000..b3372bd --- /dev/null +++ b/src/components/footer/index.tsx @@ -0,0 +1,11 @@ + +export default function Footer() { + return( +
    + + +
    + ) +} diff --git a/src/components/header/index.tsx b/src/components/header/index.tsx new file mode 100644 index 0000000..5eb0c8d --- /dev/null +++ b/src/components/header/index.tsx @@ -0,0 +1,602 @@ +"use client" +import { connectToPS, downloadJson, syncDataToPS } from "@/helper"; +import { converterToFreeSRJson } from "@/helper/converterToFreeSRJson"; +import { useChangeTheme } from "@/hooks/useChangeTheme"; + +import { listCurrentLanguage } from "@/lib/constant"; +import useLocaleStore from "@/stores/localeStore"; +import useUserDataStore from "@/stores/userDataStore"; +import { motion } from "framer-motion"; +import { useTranslations } from "next-intl"; +import Link from "next/link"; +import { useRouter } from "next/navigation"; +import { useEffect, useState } from "react"; +import EnkaImport from "../importBar/enka"; +import useModelStore from "@/stores/modelStore"; +import FreeSRImport from "../importBar/freesr"; +import { toast } from "react-toastify"; +import { micsSchema } from "@/zod"; +import useConnectStore from "@/stores/connectStore"; +import useGlobalStore from "@/stores/globalStore"; + +const themes = [ + { label: "Winter" }, + { label: "Night" }, + { label: "Cupcake" }, + { label: "Coffee" }, +]; + +export default function Header() { + const { changeTheme } = useChangeTheme() + const { locale, setLocale } = useLocaleStore() + const { avatars, battle_config, setAvatars, setBattleConfig } = useUserDataStore() + + const router = useRouter() + const transI18n = useTranslations("DataPage") + const { setIsOpenImport, isOpenImport } = useModelStore() + + const [message, setMessage] = useState({ text: '', type: '' }); + const [importModal, setImportModal] = useState("enka"); + const [isModalOpen, setIsModalOpen] = useState(false); + const { + connectionType, + privateType, + serverUrl, + username, + password, + setConnectionType, + setPrivateType, + setServerUrl, + setUsername, + setPassword + } = useConnectStore() + const { isConnectPS, setIsConnectPS } = useGlobalStore() + + useEffect(() => { + + const cookieLocale = document.cookie.split("; ") + .find((row) => row.startsWith("MYNEXTAPP_LOCALE")) + ?.split("=")[1]; + + if (cookieLocale) { + if (!listCurrentLanguage.hasOwnProperty(cookieLocale)) { + setLocale("en") + } else { + setLocale(cookieLocale) + } + + } else { + let browserLocale = navigator.language.slice(0, 2); + + if (!listCurrentLanguage.hasOwnProperty(browserLocale)) { + browserLocale = "en" + } + setLocale(browserLocale); + document.cookie = `MYNEXTAPP_LOCALE=${browserLocale};` + router.refresh() + } + }, [router, setLocale]) + + const changeLocale = (newLocale: string) => { + setLocale(newLocale) + document.cookie = `MYNEXTAPP_LOCALE=${newLocale};` + router.refresh() + } + + const handleShow = (modalId: string) => { + + const modal = document.getElementById(modalId) as HTMLDialogElement | null; + if (modal) { + setIsModalOpen(true); + modal.showModal(); + } + }; + + // Close modal handler + const handleCloseModal = (modalId: string) => { + setIsModalOpen(false); + const modal = document.getElementById(modalId) as HTMLDialogElement | null; + if (modal) { + modal.close() + } + }; + + // Handle ESC key to close modal + useEffect(() => { + if (!isOpenImport) { + handleCloseModal("import_modal"); + return; + } + const handleEscKey = (event: KeyboardEvent) => { + if (event.key === 'Escape') { + handleCloseModal("import_modal"); + } + + }; + + window.addEventListener('keydown', handleEscKey); + return () => window.removeEventListener('keydown', handleEscKey); + }, [isModalOpen, isOpenImport]); + + const handleImportDatabase = (event: React.ChangeEvent) => { + + const file = event.target.files?.[0]; + if (!file) { + toast.error(transI18n("pleaseSelectAFile")) + + return + } + if (!file.name.endsWith(".json") || file.type !== "application/json") { + toast.error(transI18n("fileMustBeAValidJsonFile")) + return + } + + if (file) { + + const reader = new FileReader(); + reader.onload = (e) => { + try { + const data = JSON.parse(e.target?.result as string); + const parsed = micsSchema.parse(data) + setAvatars(parsed.avatars) + setBattleConfig(parsed.battle_config) + toast.success(transI18n("importDatabaseSuccess")) + } catch (error) { + toast.error(transI18n("fileMustBeAValidJsonFile")) + } + }; + reader.readAsText(file); + } + + }; + + return ( +
    +
    + {/* Mobile menu dropdown */} +
    +
    + + + +
    + +
    + + {/* Logo */} + + +

    + Firefly Sr + + Tools + +

    +

    By Kain

    +
    + +
    + + {/* Desktop navigation */} +
    + +
    + + + {/* Right side items */} +
    +
    +
    +
    + {isConnectPS ? transI18n("connected") : transI18n("unconnected")} +
    +
    +
    +
    + + {/* Language selector - REFINED */} +
    +
    + + + + + +
    +
    + +
    +
    + + + + + + +
    + +
    +
      + {themes.map((theme) => ( +
    • { + if (changeTheme) changeTheme(theme.label.toLowerCase()); + }} + > + +
    • + ))} +
    +
    +
    + + {/* GitHub Link */} + + + + + +
    + + +
    +
    + handleCloseModal("connection_modal")} + > + ✕ + +
    + +
    +

    + {"PS Connection"} +

    +
    + +
    + {/* Select connection type */} +
    + + +
    + + {/* Show host/port if Other */} + {connectionType === "Other" && ( +
    +
    + + setServerUrl(e.target.value)} + /> +
    +
    + + +
    + +
    + + setUsername(e.target.value)} + /> +
    +
    + + setPassword(e.target.value)} + /> +
    +
    + )} + + {message.text && ( +
    + {message.text} +
    + )} + +
    +
    + {transI18n("status")}: + + {isConnectPS ? transI18n("connected") : transI18n("unconnected")} + +
    + +
    + + {isConnectPS && ( + + )} +
    +
    +
    +
    +
    + + + +
    +
    + { + handleCloseModal("import_modal") + setIsOpenImport(false) + }} + > + ✕ + +
    + +
    +

    + {transI18n("importSetting")} +

    +
    + + {importModal === "enka" && } + {importModal === "freesr" && } +
    +
    +
    + ) +} \ No newline at end of file diff --git a/src/components/importBar/copy.tsx b/src/components/importBar/copy.tsx new file mode 100644 index 0000000..9acb1d9 --- /dev/null +++ b/src/components/importBar/copy.tsx @@ -0,0 +1,279 @@ +"use client" +import useModelStore from "@/stores/modelStore"; +import useUserDataStore from "@/stores/userDataStore"; +import { useEffect, useState } from "react"; +import useCopyProfileStore from "@/stores/copyProfile"; +import ProfileCard from "../card/profileCard"; +import { AvatarProfileCardType, AvatarProfileStore } from "@/types"; +import Image from "next/image"; +import SelectCustom from "../select"; +import useListAvatarStore from "@/stores/avatarStore"; +import { getNameChar } from "@/helper"; +import useLocaleStore from "@/stores/localeStore"; +import { useTranslations } from "next-intl"; + +export default function CopyImport() { + const { avatars, setAvatar } = useUserDataStore(); + const {avatarSelected} = useListAvatarStore() + const { locale } = useLocaleStore() + const { + selectedProfiles, + listCopyAvatar, + avatarCopySelected, + setSelectedProfiles, + filterCopy, + setFilterCopy, + setAvatarCopySelected + } = useCopyProfileStore() + const transI18n = useTranslations("DataPage") + const [listPath, setListPath] = useState>({ "knight": false, "mage": false, "priest": false, "rogue": false, "shaman": false, "warlock": false, "warrior": false, "memory": false }) + const [listElement, setListElement] = useState>({ "fire": false, "ice": false, "imaginary": false, "physical": false, "quantum": false, "thunder": false, "wind": false }) + const [listRank, setListRank] = useState>({ "4": false, "5": false }) + const [message, setMessage] = useState({ + type: "", + text: "" + }) + + const handleProfileToggle = (profile: AvatarProfileCardType) => { + if (selectedProfiles.some((selectedProfile) => selectedProfile.key === profile.key)) { + setSelectedProfiles(selectedProfiles.filter((selectedProfile) => selectedProfile.key !== profile.key)); + return; + } + setSelectedProfiles([...selectedProfiles, profile]); + }; + + useEffect(() => { + setFilterCopy({ + ...filterCopy, + locale: locale, + path: Object.keys(listPath).filter((key) => listPath[key]), + element: Object.keys(listElement).filter((key) => listElement[key]), + rarity: Object.keys(listRank).filter((key) => listRank[key]) + }) + }, [listPath, listRank, locale]) + + const clearSelection = () => { + setSelectedProfiles([]); + setMessage({ + type: "success", + text: transI18n("clearAll") + }) + }; + + const selectAll = () => { + if (avatarCopySelected) { + setSelectedProfiles(avatars[avatarCopySelected?.id.toString()].profileList.map((profile, index) => { + if (!profile.lightcone?.item_id && Object.keys(profile.relics).length == 0) { + return null; + } + return { + key: index, + ...profile, + } as AvatarProfileCardType + }).filter((profile) => profile !== null)); + } + setMessage({ + type: "success", + text: transI18n("selectedAll") + }) + }; + + const handleCopy = () => { + if (selectedProfiles.length === 0) { + setMessage({ + type: "error", + text: transI18n("pleaseSelectAtLeastOneProfile") + }); + return; + } + if (!avatarCopySelected) { + setMessage({ + type: "error", + text: transI18n("noAvatarToCopySelected") + }); + return; + } + if (!avatarSelected) { + setMessage({ + type: "error", + text: transI18n("noAvatarSelected") + }); + return; + } + + const newListProfile = avatars[avatarCopySelected.id.toString()].profileList.map((profile, index) => { + if (!profile.lightcone?.item_id && Object.keys(profile.relics).length == 0) { + return null; + } + return { + ...profile, + profile_name: profile.profile_name + ` - Copy: ${avatarCopySelected?.id}`, + } as AvatarProfileStore + }).filter((profile) => profile !== null); + + const newAvatar = { + ...avatars[avatarSelected.id.toString()], + profileList: avatars[avatarSelected.id.toString()].profileList.concat(newListProfile), + profileSelect: avatars[avatarSelected.id.toString()].profileList.length - 1, + } + setAvatar(newAvatar); + setSelectedProfiles([]); + setMessage({ + type: "success", + text: transI18n("copied") + }); + }; + + return ( +
    +
    + {/* Header */} +
    + +
    + +
    +
    {transI18n("filter")}
    +
    + {/* Path */} +
    +
    + {Object.entries(listPath).map(([key], index) => ( +
    { + setListPath((prev) => ({ ...prev, [key]: !prev[key] })) + }} + className="w-[50px] h-[50px] hover:bg-gray-600 grid items-center justify-items-center rounded-md shadow-md cursor-pointer" + style={{ + backgroundColor: listPath[key] ? "#374151" : "#6B7280" + }}> + {key} +
    + ))} +
    +
    + + {/* Element */} +
    +
    + {Object.entries(listElement).map(([key], index) => ( +
    { + setListElement((prev) => ({ ...prev, [key]: !prev[key] })) + }} + className="w-[50px] h-[50px] hover:bg-gray-600 grid items-center justify-items-center rounded-md shadow-md cursor-pointer" + style={{ + backgroundColor: listElement[key] ? "#374151" : "#6B7280" + }}> + {key} +
    + ))} +
    +
    + + {/* Rank */} +
    +
    + {Object.entries(listRank).map(([key], index) => ( +
    { + setListRank((prev) => ({ ...prev, [key]: !prev[key] })) + }} + className="w-[50px] h-[50px] hover:bg-gray-600 grid items-center justify-items-center rounded-md shadow-md cursor-pointer" + style={{ + backgroundColor: listRank[key] ? "#374151" : "#6B7280" + }}> +
    {key}*
    +
    + ))} +
    +
    +
    + +
    +
    +
    +
    {transI18n("characterName")}
    + {listCopyAvatar.length > 0 && ( + ({ + value: avatar.id.toString(), + label: getNameChar(locale, avatar), + imageUrl: `https://api.hakush.in/hsr/UI/avatarshopicon/${avatar.id}.webp` + }))} + excludeSet={[]} + selectedCustomSet={avatarCopySelected?.id.toString() || ""} + placeholder="Character Select" + setSelectedCustomSet={(value) => setAvatarCopySelected(listCopyAvatar.find((avatar) => avatar.id.toString() === value) || null)} + /> + )} +
    +
    +
    + + + + {/* Selection Info */} +
    + + {transI18n("selectedProfiles")}: {selectedProfiles.length} + + + + {selectedProfiles.length > 0 && ( + + )} +
    + {message.type && message.text && ( +
    {message.type == "error" ? "😭" : "🎉"} {message.text}
    + )} +
    + + {/* Character Grid */} +
    + {avatarCopySelected && avatars[avatarCopySelected?.id.toString()]?.profileList.map((profile, index) => { + if (!profile.lightcone?.item_id && Object.keys(profile.relics).length == 0) { + return null; + } + return ( + + ) + })} +
    +
    +
    + ) +} \ No newline at end of file diff --git a/src/components/importBar/enka.tsx b/src/components/importBar/enka.tsx new file mode 100644 index 0000000..03d837d --- /dev/null +++ b/src/components/importBar/enka.tsx @@ -0,0 +1,222 @@ +"use client" +import { useState } from "react"; +import CharacterInfoCard from "../card/characterInfoCard"; +import useEnkaStore from "@/stores/enkaStore"; +import { SendDataThroughProxy } from "@/lib/api"; +import { CharacterInfoCardType, EnkaResponse } from "@/types"; +import useUserDataStore from "@/stores/userDataStore"; +import { converterOneEnkaDataToAvatarStore } from "@/helper"; +import useModelStore from "@/stores/modelStore"; +import { toast } from "react-toastify"; +import { useTranslations } from "next-intl"; + +export default function EnkaImport() { + const { + uidInput, + setUidInput, + enkaData, + selectedCharacters, + setSelectedCharacters, + setEnkaData, + } = useEnkaStore(); + const transI18n = useTranslations("DataPage") + const { avatars, setAvatar } = useUserDataStore(); + const { isOpenImport, setIsOpenImport } = useModelStore() + const [isLoading, setIsLoading] = useState(false) + const [Error, setError] = useState("") + + const handlerFetchData = async () => { + if (!uidInput) { + setError(transI18n("pleaseEnterUid")) + return; + } + setIsLoading(true) + const data : EnkaResponse = await SendDataThroughProxy({data: {serverUrl: "https://enka.network/api/hsr/uid/" + uidInput, method: "GET"}}) + if (data) { + setEnkaData(data) + setSelectedCharacters(data.detailInfo.avatarDetailList.map((character) => { + return { + key: character.avatarId, + avatar_id: character.avatarId, + rank: character.rank ?? 0, + level: character.level, + lightcone: { + level: character.equipment.level, + rank: character.equipment.rank, + item_id: character.equipment.tid, + }, + relics: character.relicList.map((relic) => ({ + level: relic.level, + relic_id: relic.tid, + relic_set_id: parseInt(relic.tid.toString().slice(1, -1), 10), + })), + } as CharacterInfoCardType + })) + setError("") + } else { + setError(transI18n("failedToFetchEnkaData")) + } + setIsLoading(false) + } + + const handleCharacterToggle = (character: CharacterInfoCardType) => { + if (selectedCharacters.some((selectedCharacter) => selectedCharacter.key === character.key)) { + setSelectedCharacters(selectedCharacters.filter((selectedCharacter) => selectedCharacter.key !== character.key)); + return; + } + setSelectedCharacters([...selectedCharacters, character]); + }; + + const clearSelection = () => { + setSelectedCharacters([]); + }; + + const selectAll = () => { + if (enkaData) { + setSelectedCharacters(enkaData?.detailInfo.avatarDetailList.map((character) => { + return { + key: character.avatarId, + avatar_id: character.avatarId, + rank: character.rank ?? 0, + level: character.level, + lightcone: { + level: character.equipment.level, + rank: character.equipment.rank, + item_id: character.equipment.tid, + }, + relics: character.relicList.map((relic) => ({ + level: relic.level, + relic_id: relic.tid, + relic_set_id: parseInt(relic.tid.toString().slice(1, -1), 10), + })), + } as CharacterInfoCardType + })); + } + }; + + const handleImport = () => { + if (selectedCharacters.length === 0) { + setError(transI18n("pleaseSelectAtLeastOneCharacter")); + return; + } + if (!enkaData) { + setError(transI18n("noDataToImport")); + return; + } + setError(""); + const listAvatars = { ...avatars } + const filterData = enkaData.detailInfo.avatarDetailList.filter((character) => selectedCharacters.some((selectedCharacter) => selectedCharacter.avatar_id === character.avatarId)) + filterData.forEach((character) => { + const newAvatar = { ...listAvatars[character.avatarId.toString()] } + if (Object.keys(newAvatar).length !== 0) { + newAvatar.level = character.level + newAvatar.promotion = character.promotion + newAvatar.data = { + rank: character.rank ?? 0, + skills: character.skillTreeList.reduce((acc, skill) => { + acc[skill.pointId] = skill.level; + return acc; + }, {} as Record), + } + const newProfile = converterOneEnkaDataToAvatarStore(character, newAvatar.profileList.length) + if (newProfile) { + newAvatar.profileList.push() + newAvatar.profileSelect = newAvatar.profileList.length - 1 + } + setAvatar(newAvatar) + } + + }) + setIsOpenImport(false) + toast.success(transI18n("importEnkaDataSuccess")) + }; + + return ( +
    +
    + {/* Header */} +
    +

    HSR UID

    + +
    + setUidInput(e.target.value)} + className="bg-slate-800 text-white px-4 py-3 rounded-lg border border-slate-700 flex-1 max-w-md focus:outline-none focus:border-blue-500" + placeholder="Enter UID" + /> + + {selectedCharacters.length > 0 && ( + + )} +
    + {Error && ( +
    😭 {Error}
    + )} + + {/* Player Info */} + {enkaData && ( +
    +
    Name: {enkaData.detailInfo.nickname}
    +
    UID: {enkaData.detailInfo.uid}
    +
    Level: {enkaData.detailInfo.level}
    +
    + )} + + {/* Selection Info */} +
    + + {transI18n("selectedCharacters")}: {selectedCharacters.length} + + + +
    +
    + {isLoading && ( +
    +
    +
    + )} + {/* Character Grid */} +
    + {enkaData?.detailInfo.avatarDetailList.map((character, index) => ( + ({ + level: relic.level, + relic_id: relic.tid, + relic_set_id: parseInt(relic.tid.toString().slice(1, -1), 10), + })), + } as CharacterInfoCardType + } + selectedCharacters={selectedCharacters} + onCharacterToggle={handleCharacterToggle} + /> + ))} +
    +
    +
    + ); +} \ No newline at end of file diff --git a/src/components/importBar/freesr.tsx b/src/components/importBar/freesr.tsx new file mode 100644 index 0000000..4a66873 --- /dev/null +++ b/src/components/importBar/freesr.tsx @@ -0,0 +1,235 @@ +"use client" + +import useFreeSRStore from "@/stores/freesrStore"; +import useModelStore from "@/stores/modelStore"; +import useUserDataStore from "@/stores/userDataStore"; +import { CharacterInfoCardType } from "@/types"; +import { useState } from "react"; +import CharacterInfoCard from "../card/characterInfoCard"; +import { freeSRJsonSchema } from "@/zod"; +import { toast } from "react-toastify"; +import { converterOneFreeSRDataToAvatarStore } from "@/helper"; +import { useTranslations } from "next-intl"; + +export default function FreeSRImport() { + const { avatars, setAvatar, setBattleConfig } = useUserDataStore(); + const { isOpenImport, setIsOpenImport } = useModelStore() + const [isLoading, setIsLoading] = useState(false) + const [Error, setError] = useState("") + const { freeSRData, setFreeSRData, selectedCharacters, setSelectedCharacters } = useFreeSRStore() + const transI18n = useTranslations("DataPage") + + const handleCharacterToggle = (character: CharacterInfoCardType) => { + if (selectedCharacters.some((selectedCharacter) => selectedCharacter.key === character.key)) { + setSelectedCharacters(selectedCharacters.filter((selectedCharacter) => selectedCharacter.key !== character.key)); + return; + } + setSelectedCharacters([...selectedCharacters, character]); + }; + + const clearSelection = () => { + setSelectedCharacters([]); + }; + + const selectAll = () => { + if (freeSRData) { + setSelectedCharacters(Object.entries(freeSRData?.avatars).map(([key, character]) => { + const lightcone = freeSRData.lightcones.find((lightcone) => lightcone.equip_avatar === character.avatar_id) + const relics = freeSRData.relics.filter((relic) => relic.equip_avatar === character.avatar_id) + return { + key: character.avatar_id, + avatar_id: character.avatar_id, + rank: character.data.rank ?? 0, + level: character.level, + lightcone: { + level: lightcone?.level ?? 0, + rank: lightcone?.rank ?? 0, + item_id: lightcone?.item_id ?? "", + }, + relics: relics.map((relic) => ({ + level: relic.level, + relic_id: relic.relic_id, + relic_set_id: relic.relic_set_id, + })), + } as CharacterInfoCardType + })); + } + }; + + const handlerReadFile = (event: React.ChangeEvent) => { + setIsLoading(true) + const file = event.target.files?.[0]; + if (!file) { + setSelectedCharacters([]) + setFreeSRData(null) + setError(transI18n("pleaseSelectAFile")) + setIsLoading(false) + return + } + if (!file.name.endsWith(".json") || file.type !== "application/json") { + setSelectedCharacters([]) + setFreeSRData(null) + setError(transI18n("fileMustBeAValidJsonFile")) + setIsLoading(false) + return + } + + if (file) { + + const reader = new FileReader(); + reader.onload = (e) => { + try { + const data = JSON.parse(e.target?.result as string); + const parsed = freeSRJsonSchema.parse(data) + setFreeSRData(parsed) + setError("") + + setSelectedCharacters(Object.entries(parsed?.avatars || {}).map(([key, character]) => { + const lightcone = parsed?.lightcones.find((lightcone) => lightcone.equip_avatar === character.avatar_id) + const relics = parsed?.relics.filter((relic) => relic.equip_avatar === character.avatar_id) + return { + key: character.avatar_id, + avatar_id: character.avatar_id, + rank: character.data.rank ?? 0, + level: character.level, + lightcone: { + level: lightcone?.level ?? 0, + rank: lightcone?.rank ?? 0, + item_id: lightcone?.item_id ?? "", + }, + relics: relics?.map((relic) => ({ + level: relic.level, + relic_id: relic.relic_id, + relic_set_id: relic.relic_set_id, + })) ?? [], + } as CharacterInfoCardType + })); + } catch (error) { + setSelectedCharacters([]) + setFreeSRData(null) + setError(transI18n("fileIsNotAValidFreeSRJsonFile")) + } + }; + reader.readAsText(file); + setIsLoading(false) + } + setIsLoading(false) + }; + + const handleImport = () => { + if (selectedCharacters.length === 0) { + setError(transI18n("pleaseSelectAtLeastOneCharacter")); + return; + } + if (!freeSRData) { + setError(transI18n("noDataToImport")); + return; + } + setError(""); + + const listAvatars = { ...avatars } + const filterData = Object.entries(freeSRData?.avatars || {}).filter(([key, character]) => selectedCharacters.some((selectedCharacter) => selectedCharacter.avatar_id === character.avatar_id)) + filterData.forEach(([key, character]) => { + const newAvatar = { ...listAvatars[character.avatar_id] } + if (Object.keys(newAvatar).length !== 0) { + newAvatar.level = character.level + newAvatar.promotion = character.promotion + newAvatar.data = { + rank: character.data.rank ?? 0, + skills: character.data.skills + } + const newProfile = converterOneFreeSRDataToAvatarStore(freeSRData, newAvatar.profileList.length, character.avatar_id) + if (newProfile) { + newAvatar.profileList.push(newProfile) + newAvatar.profileSelect = newAvatar.profileList.length - 1 + } + setAvatar(newAvatar) + } + + }) + setBattleConfig(freeSRData?.battle_config) + setIsOpenImport(false) + toast.success(transI18n("importFreeSRDataSuccess")) + } + + return ( +
    +
    + {/* Header */} +
    +

    {transI18n("freeSRImport")}

    + +
    +
    + {transI18n("pickAFile")} + + +
    + + {selectedCharacters.length > 0 && ( + + )} +
    + {Error && ( +
    😭 {Error}
    + )} + + + {/* Selection Info */} +
    + + {transI18n("selectedCharacters")}: {selectedCharacters.length} + + + +
    +
    + {isLoading && ( +
    +
    +
    + )} + {/* Character Grid */} +
    + {Object.entries(freeSRData?.avatars || {}).map(([key, character]) => { + const lightcone = freeSRData?.lightcones.find((lightcone) => lightcone.equip_avatar === character.avatar_id) + const relics = freeSRData?.relics.filter((relic) => relic.equip_avatar === character.avatar_id) + return ( + ({ + level: relic.level, + relic_id: relic.relic_id, + relic_set_id: relic.relic_set_id, + })) ?? [], + } as CharacterInfoCardType + } + selectedCharacters={selectedCharacters} + onCharacterToggle={handleCharacterToggle} + /> + ) + })} +
    +
    +
    + ) +} \ No newline at end of file diff --git a/src/components/lightconeBar/index.tsx b/src/components/lightconeBar/index.tsx new file mode 100644 index 0000000..738cd4f --- /dev/null +++ b/src/components/lightconeBar/index.tsx @@ -0,0 +1,113 @@ +"use client" + +import { useEffect, useState } from "react" +import Image from "next/image"; +import useLocaleStore from "@/stores/localeStore" +import useLightconeStore from "@/stores/lightconeStore"; +import LightconeCard from "../card/lightconeCard"; +import useUserDataStore from "@/stores/userDataStore"; +import useAvatarStore from "@/stores/avatarStore"; +import useModelStore from "@/stores/modelStore"; +import { useTranslations } from "next-intl"; + +export default function LightconeBar() { + const [listPath, setListPath] = useState>({ "knight": false, "mage": false, "priest": false, "rogue": false, "shaman": false, "warlock": false, "warrior": false, "memory": false }) + const [listRank, setListRank] = useState>({ "3": false, "4": false, "5": false }) + const { locale } = useLocaleStore() + const { listLightcone, filter, setFilter } = useLightconeStore() + const { setAvatar, avatars } = useUserDataStore() + const { avatarSelected } = useAvatarStore() + const { setIsOpenLightcone } = useModelStore() + const transI18n = useTranslations("DataPage") + useEffect(() => { + setFilter({ + ...filter, + locale: locale, + path: Object.keys(listPath).filter((key) => listPath[key]), + rarity: Object.keys(listRank).filter((key) => listRank[key]) + }) + }, [listPath, listRank, locale]) + + return ( +
    +
    +

    + {transI18n("lightConeSetting")} +

    +
    +
    +
    +
    Search
    + setFilter({ ...filter, name: e.target.value, locale: locale })} + type="text" placeholder="LightCone Name" className="input input-accent mt-1 w-full" + /> +
    +
    +
    Filter
    +
    +
    +
    + {Object.entries(listPath).map(([key, value], index) => ( +
    { + setListPath((prev) => ({ ...prev, [key]: !prev[key] })) + }} + className="w-[50px] h-[50px] hover:bg-gray-600 grid items-center justify-items-center rounded-md shadow-lg cursor-pointer" + style={{ + backgroundColor: listPath[key] ? "#374151" : "#6B7280" + }}> + {key} +
    + ))} +
    +
    + +
    +
    + {Object.entries(listRank).map(([key, value], index) => ( +
    { + setListRank((prev) => ({ ...prev, [key]: !prev[key] })) + }} + className="w-[50px] h-[50px] hover:bg-gray-600 grid items-center justify-items-center rounded-md shadow-lg cursor-pointer" + style={{ + backgroundColor: listRank[key] ? "#374151" : "#6B7280" + }}> +
    {key}*
    +
    + ))} +
    +
    +
    +
    +
    +
    + {listLightcone.map((item, index) => ( +
    { + if (avatarSelected) { + const avatar = avatars[avatarSelected.id] + avatar.profileList[avatar.profileSelect].lightcone = { + level: 80, + item_id: Number(item.id), + rank: 1, + promotion: 6 + } + setAvatar({ ...avatar }) + setIsOpenLightcone(false) + } + }}> + +
    + ))} +
    +
    + ) +} \ No newline at end of file diff --git a/src/components/parseText/index.tsx b/src/components/parseText/index.tsx new file mode 100644 index 0000000..5f06404 --- /dev/null +++ b/src/components/parseText/index.tsx @@ -0,0 +1,16 @@ + +'use client' +import { parseRuby } from "@/helper"; + +interface TextProps { + text: string; + locale: string; + className?: string; +} + +export default function ParseText({ text, locale, className }: TextProps) { + if (locale === "ja") { + return
    ; + } + return
    {text}
    ; +} \ No newline at end of file diff --git a/src/components/relicBar/index.tsx b/src/components/relicBar/index.tsx new file mode 100644 index 0000000..926eb2e --- /dev/null +++ b/src/components/relicBar/index.tsx @@ -0,0 +1,439 @@ +"use client"; +import useRelicStore from '@/stores/relicStore'; +import useUserDataStore from '@/stores/userDataStore'; +import { AffixDetail, RelicDetail } from '@/types'; +import React, { useEffect, useMemo } from 'react'; +import SelectCustom from '../select'; +import { calcAffixBonus, randomPartition, randomStep, replaceByParam } from '@/helper'; +import useAffixStore from '@/stores/affixStore'; +import { mapingStats } from '@/lib/constant'; +import useAvatarStore from '@/stores/avatarStore'; +import useModelStore from '@/stores/modelStore'; +import useRelicMakerStore from '@/stores/relicMakerStore'; +import { toast } from 'react-toastify'; +import { useTranslations } from 'next-intl'; + +export default function RelicMaker() { + const { avatars, setAvatars } = useUserDataStore() + const { avatarSelected } = useAvatarStore() + const { setIsOpenRelic } = useModelStore() + const { mapRelicInfo } = useRelicStore() + const { mapMainAffix, mapSubAffix} = useAffixStore() + const transI18n = useTranslations("DataPage") + const { + selectedRelicSlot, + selectedRelicSet, + selectedMainStat, + listSelectedSubStats, + selectedRelicLevel, + preSelectedSubStats, + setSelectedRelicSet, + setSelectedMainStat, + setSelectedRelicLevel, + setListSelectedSubStats, + resetHistory, + popHistory, + addHistory, + } = useRelicMakerStore() + + const relicSets = useMemo(() => { + const listSet: Record = {}; + for (const [key, value] of Object.entries(mapRelicInfo || {})) { + let isOk = false; + for (const key2 of Object.keys(value.Parts)) { + if (key2.endsWith(selectedRelicSlot)) { + isOk = true; + break; + } + } + if (isOk) { + listSet[key] = value; + } + } + return listSet; + }, [mapRelicInfo, selectedRelicSlot]); + + const subAffixOptions = useMemo(() => { + const listSet: Record = {}; + const subAffixMap = mapSubAffix["5"]; + const mainAffixMap = mapMainAffix["5" + selectedRelicSlot] + + if (Object.keys(subAffixMap || {}).length === 0 || Object.keys(mainAffixMap || {}).length === 0) return listSet; + + for (const [key, value] of Object.entries(subAffixMap)) { + if (value.property !== mainAffixMap[selectedMainStat]?.property) { + listSet[key] = value; + } + } + return listSet; + }, [mapSubAffix, mapMainAffix, selectedRelicSlot, selectedMainStat]); + + useEffect(() => { + const subAffixMap = mapSubAffix["5"]; + const mainAffixMap = mapMainAffix["5" + selectedRelicSlot]; + + if (!subAffixMap || !mainAffixMap) return; + + const mainProp = mainAffixMap[selectedMainStat]?.property; + if (!mainProp) return; + + const newSubAffixes = listSelectedSubStats.map(item => ({ ...item })); + let updated = false; + + for (let i = 0; i < newSubAffixes.length; i++) { + if (newSubAffixes[i].property === mainProp) { + newSubAffixes[i].affixId = ""; + newSubAffixes[i].property = ""; + newSubAffixes[i].rollCount = 0; + newSubAffixes[i].stepCount = 0; + updated = true; + } + } + + if (updated) setListSelectedSubStats(newSubAffixes); + }, [selectedMainStat, mapSubAffix, mapMainAffix, selectedRelicSlot]); + + const exSubAffixOptions = useMemo(() => { + const listSet: Record = {}; + const subAffixMap = mapSubAffix["5"]; + const mainAffixMap = mapMainAffix["5" + selectedRelicSlot]; + + if (!subAffixMap || !mainAffixMap) return listSet; + + for (const [key, value] of Object.entries(subAffixMap)) { + const subAffix = listSelectedSubStats.find((item) => item.property === value.property); + if (subAffix && value.property !== mainAffixMap[selectedMainStat]?.property) { + listSet[key] = value; + } + } + return listSet; + }, [mapSubAffix, listSelectedSubStats, mapMainAffix, selectedRelicSlot, selectedMainStat]); + + const effectBonus = useMemo(() => { + const affixSet = mapMainAffix?.["5" + selectedRelicSlot]; + if (!affixSet) return 0; + + const data = affixSet[selectedMainStat]; + if (!data) return 0; + + const stat = mapingStats?.[data.property]; + if (!stat) return 0; + + const value = data.base + data.step * selectedRelicLevel; + + if (stat.unit === "%") { + return (value * 100).toFixed(1) + "%"; + } + + return value.toFixed(0) + stat.unit; + }, [mapMainAffix, selectedRelicSlot, selectedMainStat, selectedRelicLevel]); + + const handleSubStatChange = (key: string, index: number, rollCount: number, stepCount: number) => { + const newSubAffixes = listSelectedSubStats.map(item => ({ ...item })); + if (!subAffixOptions[key]) { + newSubAffixes[index].affixId = ""; + newSubAffixes[index].property = ""; + newSubAffixes[index].rollCount = rollCount; + newSubAffixes[index].stepCount = stepCount; + setListSelectedSubStats(newSubAffixes); + addHistory(index, newSubAffixes[index]); + return; + } + newSubAffixes[index].affixId = key; + newSubAffixes[index].property = subAffixOptions[key].property; + newSubAffixes[index].rollCount = rollCount; + newSubAffixes[index].stepCount = stepCount; + setListSelectedSubStats(newSubAffixes); + addHistory(index, newSubAffixes[index]); + }; + + const handlerRollback = (index: number) => { + if (!preSelectedSubStats[index]) return; + + const keys = Object.keys(preSelectedSubStats[index]); + if (keys.length <= 1) return; + + const newSubAffixes = listSelectedSubStats.map(item => ({ ...item })); + const listHistory = preSelectedSubStats[index].map(item => ({ ...item })); + const secondLastKey = listHistory.length - 2; + const preSubAffixes = { ...listHistory[secondLastKey] }; + newSubAffixes[index].rollCount = preSubAffixes.rollCount; + newSubAffixes[index].stepCount = preSubAffixes.stepCount; + setListSelectedSubStats(newSubAffixes); + popHistory(index); + }; + + const resetSubStat = (index: number) => { + const newSubAffixes = listSelectedSubStats.map(item => ({ ...item })); + resetHistory(index); + newSubAffixes[index].affixId = ""; + newSubAffixes[index].property = ""; + newSubAffixes[index].rollCount = 0; + newSubAffixes[index].stepCount = 0; + setListSelectedSubStats(newSubAffixes); + }; + + const randomizeStats = () => { + const newSubAffixes = listSelectedSubStats.map(item => ({ ...item })); + const exKeys = Object.keys(exSubAffixOptions); + for (let i = 0; i < newSubAffixes.length; i++) { + const keys = Object.keys(subAffixOptions).filter((key) => !exKeys.includes(key)); + const randomKey = keys[Math.floor(Math.random() * keys.length )]; + exKeys.push(randomKey); + const randomValue = subAffixOptions[randomKey]; + newSubAffixes[i].affixId = randomKey; + newSubAffixes[i].property = randomValue.property; + newSubAffixes[i].rollCount = 0; + newSubAffixes[i].stepCount = 0; + } + for (let i = 0; i < newSubAffixes.length; i++) { + addHistory(i, newSubAffixes[i]); + } + setListSelectedSubStats(newSubAffixes); + + }; + + const randomizeRolls = () => { + const newSubAffixes = listSelectedSubStats.map(item => ({ ...item })); + const randomRolls = randomPartition(9, listSelectedSubStats.length); + for (let i = 0; i < listSelectedSubStats.length; i++) { + newSubAffixes[i].rollCount = randomRolls[i]; + newSubAffixes[i].stepCount = randomStep(randomRolls[i]); + } + setListSelectedSubStats(newSubAffixes); + for (let i = 0; i < newSubAffixes.length; i++) { + addHistory(i, newSubAffixes[i]); + } + }; + + const handlerSaveRelic = () => { + const avatar = avatars[avatarSelected?.id || ""]; + if (!selectedRelicSet || !selectedMainStat || !selectedRelicLevel || !selectedRelicSlot) { + toast.error(transI18n("pleaseSelectAllOptions")); + return; + }; + if (avatar) { + avatar.profileList[avatar.profileSelect].relics[selectedRelicSlot] = { + level: selectedRelicLevel, + relic_id: Number(`6${selectedRelicSet}${selectedRelicSlot}`), + relic_set_id: Number(selectedRelicSet), + main_affix_id: Number(selectedMainStat), + sub_affixes: listSelectedSubStats.map((item) => { + return { + sub_affix_id: Number(item.affixId), + count: item.rollCount, + step: item.stepCount + } + }) + } + } + setAvatars({ ...avatars }); + setIsOpenRelic(false); + toast.success(transI18n("relicSavedSuccessfully")); + } + + return ( +
    +
    +

    + {transI18n("relicMaker")} +

    +
    +
    + + {/* Left Panel */} +
    + + {/* Set Configuration */} +
    +

    {transI18n("mainSettings")}

    + +
    + {/* Main Stat */} +
    + + ({ + value: key, + label: mapingStats[value.property].name + " " + mapingStats[value.property].unit, + imageUrl: mapingStats[value.property].icon + }))} + excludeSet={[]} + selectedCustomSet={selectedMainStat} + placeholder={transI18n("selectAMainStat")} + setSelectedCustomSet={setSelectedMainStat} + /> +
    + {/* Relic Set Selection */} +
    + + ({ + value: key, + label: value.Name, + imageUrl: `https://api.hakush.in/hsr/UI/itemfigures/${value.Icon.match(/\d+/)?.[0]}.webp` + }))} + excludeSet={[]} + selectedCustomSet={selectedRelicSet} + placeholder={transI18n("selectASet")} + setSelectedCustomSet={setSelectedRelicSet} + /> +
    +
    + + {/* Set Bonus Display */} +
    + {selectedRelicSet !== "" ? Object.entries(mapRelicInfo[selectedRelicSet].RequireNum).map(([key, value]) => ( +
    + {key}-Pc: +
    +
    + )) :

    {transI18n("pleaseSelectASet")}

    } +
    + + + {/* Rarity */} +
    + + +
    + + {/* Level */} +
    + +
    + setSelectedRelicLevel(parseInt(e.target.value))} + className="range range-primary w-full" + /> +
    {selectedRelicLevel}
    +
    +
    + + {/* Save Button */} + +
    +
    + + {/* Right Panel - Sub Stats */} +
    + {/* Total Roll */} +
    +

    {transI18n("totalRoll")} {listSelectedSubStats.reduce((a, b) => a + b.rollCount, 0)}

    + +
    + + +
    +
    + {listSelectedSubStats.map((v, index) => ( +
    +
    + + {/* Stat Selection */} +
    + ({ + value: key, + label: mapingStats[value.property].name + " " + mapingStats[value.property].unit, + imageUrl: mapingStats[value.property].icon + }))} + excludeSet={Object.entries(exSubAffixOptions).map(([key, value]) => ({ + value: key, + label: mapingStats[value.property].name + " " + mapingStats[value.property].unit, + imageUrl: mapingStats[value.property].icon + }))} + selectedCustomSet={v.affixId} + placeholder={transI18n("selectASubStat")} + setSelectedCustomSet={(key) => handleSubStatChange(key, index, 0, 0)} + /> +
    + + {/* Current Value */} +
    + +{ } +
    {calcAffixBonus(subAffixOptions[v.affixId], v.stepCount, v.rollCount)}{mapingStats?.[subAffixOptions[v.affixId]?.property]?.unit || ""}
    +
    + + {/* Roll Values */} +
    + + + +
    + + {/* Reset Button & Roll Info */} +
    +
    +
    + + +
    + +
    + {transI18n("roll")}: {v.rollCount} + {transI18n("step")}: {v.stepCount} +
    +
    + +
    + +
    +
    + ))} + + +
    +
    +
    + ); +}; diff --git a/src/components/relicsInfo/index.tsx b/src/components/relicsInfo/index.tsx new file mode 100644 index 0000000..f929970 --- /dev/null +++ b/src/components/relicsInfo/index.tsx @@ -0,0 +1,293 @@ +"use client" + ; +import { useRouter } from 'next/navigation' +import { useCallback, useEffect, useMemo, useState } from "react"; +import RelicMaker from "../relicBar"; +import { motion } from "framer-motion"; +import useUserDataStore from "@/stores/userDataStore"; +import useLocaleStore from "@/stores/localeStore"; +import { useTranslations } from "next-intl"; +import RelicCard from "../card/relicCard"; +import useAvatarStore from "@/stores/avatarStore"; +import useRelicStore from "@/stores/relicStore"; +import useModelStore from '@/stores/modelStore'; +import { replaceByParam } from '@/helper'; +import useRelicMakerStore from '@/stores/relicMakerStore'; +import useAffixStore from '@/stores/affixStore'; + +export default function RelicsInfo() { + const router = useRouter() + const { avatars, setAvatars } = useUserDataStore() + const { avatarSelected } = useAvatarStore() + const { + setSelectedRelicSlot, + setSelectedMainStat, + setSelectedRelicSet, + setSelectedRelicLevel, + setListSelectedSubStats, + resetHistory, + resetSubStat, + listSelectedSubStats, + } = useRelicMakerStore() + const { mapSubAffix } = useAffixStore() + const { isOpenRelic, setIsOpenRelic } = useModelStore() + const transI18n = useTranslations("DataPage") + const { locale } = useLocaleStore(); + const { mapRelicInfo } = useRelicStore() + + const handleShow = (modalId: string) => { + const modal = document.getElementById(modalId) as HTMLDialogElement | null; + if (modal) { + setIsOpenRelic(true); + modal.showModal(); + } + }; + + // Close modal handler + const handleCloseModal = (modalId: string) => { + setIsOpenRelic(false); + const modal = document.getElementById(modalId) as HTMLDialogElement | null; + if (modal) { + modal.close(); + } + }; + + // Handle ESC key to close modal + useEffect(() => { + if (!isOpenRelic) { + handleCloseModal("action_detail_modal"); + return; + }; + + const handleEscKey = (event: KeyboardEvent) => { + if (event.key === 'Escape' && isOpenRelic) { + handleCloseModal("action_detail_modal"); + } + }; + + window.addEventListener('keydown', handleEscKey); + return () => window.removeEventListener('keydown', handleEscKey); + }, [isOpenRelic]); + + const getRelic = useCallback((slot: string) => { + const avatar = avatars[avatarSelected?.id || ""]; + if (avatar) { + return avatar.profileList[avatar.profileSelect]?.relics[slot] || null; + } + return null; + }, [avatars, avatarSelected]); + + const handlerDeleteRelic = (slot: string) => { + const avatar = avatars[avatarSelected?.id || ""]; + if (avatar) { + delete avatar.profileList[avatar.profileSelect].relics[slot] + setAvatars({ ...avatars }); + } + } + + const handlerChangeRelic = (slot: string) => { + const relic = getRelic(slot) + setSelectedRelicSlot(slot) + resetSubStat() + resetHistory(null) + if (relic) { + setSelectedMainStat(relic.main_affix_id.toString()) + setSelectedRelicSet(relic.relic_set_id.toString()) + setSelectedRelicLevel(relic.level) + const newSubAffixes: { affixId: string, property: string, rollCount: number, stepCount: number }[] = [...listSelectedSubStats]; + relic.sub_affixes.forEach((item, index) => { + newSubAffixes[index].affixId = item.sub_affix_id.toString(); + newSubAffixes[index].property = mapSubAffix["5"][item.sub_affix_id.toString()]?.property || ""; + newSubAffixes[index].rollCount = item.count || 0; + newSubAffixes[index].stepCount = item.step || 0; + }) + setListSelectedSubStats(newSubAffixes) + } else { + setSelectedMainStat("") + setSelectedRelicSet("") + setSelectedRelicLevel(15) + const newSubAffixes: { affixId: string, property: string, rollCount: number, stepCount: number }[] = [...listSelectedSubStats]; + newSubAffixes.forEach((item) => { + item.affixId = "" + item.property = "" + item.rollCount = 0 + item.stepCount = 0 + }) + + setListSelectedSubStats(newSubAffixes) + } + + handleShow("action_detail_modal") + } + + const getEffects = useMemo(() => { + const avatar = avatars[avatarSelected?.id || ""]; + const relicCount: { [key: string]: number } = {}; + if (avatar) { + for (const [slot, relic] of Object.entries(avatar.profileList[avatar.profileSelect].relics)) { + if (relicCount[relic.relic_set_id]) { + relicCount[relic.relic_set_id]++; + } else { + relicCount[relic.relic_set_id] = 1; + } + } + } + const listEffects: { key: string, count: number }[] = []; + Object.entries(relicCount).forEach(([key, value]) => { + if (value >= 2) { + listEffects.push({ key: key, count: value }); + } + }); + return listEffects; + }, [avatars, avatarSelected]); + + + return ( +
    +
    +
    + + {/* Left Section - Items Grid */} +
    +
    +

    +
    + Equipment +

    + +
    + {["1", "2", "3", "4", "5", "6"].map((item, index) => ( +
    +
    { + handlerChangeRelic(item) + }} + className="cursor-pointer" + > + +
    + + {/* Action buttons - chỉ hiện khi hover */} +
    + {/* Nút chuyển relic */} + + + {getRelic(item) && ( + + )} +
    +
    + ))} +
    +
    +
    + + {/* Right Section - Stats and Set Effects */} +
    + + {/* Set Effects Panel */} +
    +

    +
    + Set Effects +

    + +
    + {getEffects.map((setEffect, index) => { + const relicInfo = mapRelicInfo[setEffect.key]; + if (!relicInfo) return null; + return ( +
    +
    +
    + {setEffect.count && ( + + ({setEffect.count}) + + )} +
    + +
    + {Object.entries(relicInfo.RequireNum).map(([requireNum, value]) => { + if (Number(requireNum) > Number(setEffect.count)) return null; + return ( +
    +
    + {requireNum}-PC: +
    +
    +
    + ) + })} +
    +
    + ) + })} +
    +
    +
    +
    +
    + + +
    +
    + handleCloseModal("action_detail_modal")} + > + ✕ + +
    + +
    + +
    +
    + ); +} diff --git a/src/components/select/index.tsx b/src/components/select/index.tsx new file mode 100644 index 0000000..962492a --- /dev/null +++ b/src/components/select/index.tsx @@ -0,0 +1,67 @@ +'use client' +import Select, { SingleValue } from 'react-select' +import Image from 'next/image' +import useLocaleStore from '@/stores/localeStore' +import ParseText from '../parseText' + +export type SelectOption = { + value: string + label: string + imageUrl: string +} + +type SelectCustomProp = { + customSet: SelectOption[] + excludeSet: SelectOption[] + selectedCustomSet: string + placeholder: string + setSelectedCustomSet: (value: string) => void +} + +export default function SelectCustom({ customSet, excludeSet, selectedCustomSet, placeholder, setSelectedCustomSet }: SelectCustomProp) { + const options: SelectOption[] = customSet + const { locale } = useLocaleStore() + const customStyles = { + option: (provided: any) => ({ + ...provided, + display: 'flex', + alignItems: 'center', + gap: '8px', + padding: '8px' + }), + singleValue: (provided: any) => ({ + ...provided, + display: 'flex', + alignItems: 'center', + gap: '8px' + }), + menuPortal: (provided: any) => ({ ...provided, zIndex: 9999 }), + menu: (provided: any) => ({ ...provided, zIndex: 9999 }) + } + + const formatOptionLabel = (option: SelectOption) => ( +
    + + +
    + ) + + return ( +

    MG=6-PxhidJFc^VPn6jc86Wwdeq_Rx3%rdY-tJ{~P zLw~fE<|dvGu_;Cvyh*fm2xMIDy8m76VM$L^H!En;GFDtgVCE_3pb=Hgt_S;vnvOd% zG_w^nG{M_J`$Q91so>)oLJH}+knCXElgHjskzAvi44UZY!q$Fhb5{~-+c!h66`)!+ zDnxdQX#SAT91lt8&*H^7i;-BnovDq$dC%55{Z5XHw|L8IA{t(6<@C1xijL+N_V z4Z8+bUs2<~3!135w~*Cior9%%Oh9^_C<$4;Xi9Tu!-hxQ9TGN&5RB*ekmc#0W z@itl>&d{Pywr+9EMgfUQWWm)V$u%cZ`2p#&)?PDfDNsaMZ1U-naNTJ6rRQ$kKXB1gQ2-3VEt2 zejM(Qrh;s_!tkLF++M`Ys(Ly>%2|YJwpvt z1Ws8em1rP}@E#&V1$HeyD~S{19!3zur(|@Dm#i`melYH5vRg)QU_wol@G(Qb)CvPf zIw{yaMs^7MP4lUEW@E%am?oQQ&0H3koTMJt5Z0Xg?=G{(`3yz*jb6=YZ>F6eFWy1;Vtq3Hm zeths`%;7)_w^j0^$InLkEXI0XIo+Wje61xiY^>oF zrJmlNkFTf^`50A{prff2b9}h|Ui0z?DedH^bO8sq)?>5n76_A3mf(MR_oZc}CA=PG z<7xX6cf5aq_GsQwF&{;OW*z|cer=onWx|$D653XFKTE@Jru-uVco6Zq%x$zh5k`Y^ zuSq@~^2PYaAVlSPNqKk7US*mY6A}8rVwT^oaxnDRqaFCwTg#s8qMu^+TD~cO>R9no zj3Wr^^4T&-n6+k?O!%QHoHQIxa8Z8=)EuSIrW4|E7qx zrlI8tT`L5GI$bud%U z24HEbGy4(`dTNeN%N(>7X8jnr;p%(A|2s;lDIBZZ4!fAMQo_H!Yw@r8f3KVCf3Mr* zM*pm*r4oMag>n?viCuolq8EkyVrmT5ipyU0*+%NQpW}(9M_Ea&8N)3qkfG@_#p}QH z)873%r<>NPJ<0B zQ0Z*-04gvCTpIzO$dPD>6OJLamL|Uqr51LD%<`!}_Gfp8eLnxm=iYecIOjbz-+)V$ z^Xi^-)uR!Bo<5zpln9PZh;&YeEK^0hkbJKjlTN17=6#@KqBG0vF}N}@N6N$GB;Ncy zX_!C)>!;;VfhBi~9)7>~I` zZbG*D<(U^59VrFe+xAUte#y5?_j~U^MGQXimWF~*ORVp(k$EQIouA5pHRl!M1;39# ze&cbeYieyd%8au_eK<*ZYB;cR3N?ZC@qXiB^hpJ5+5k2&%6=(9KOW!v=M8?`9W6V5 zOS{u-UeEv*Fi((1A*UqzW#SgsPfKHFcTETLYk=X)zFN~K!Axr!EZs%ix8YKkf0^1l zRCQm*6_0o#a zdx8V@xn!xikAmky``P{fetqLLn1(ozoHWoJ3t@{h8=MjmkRr^R<65LnD>6+HRwPo+T2$tVi>t8Z z&=*;`vAn$(P%A?NFsRaDS&OS^9Rybt9;z;%3wHX$?U0JUvPu6(hIT_)zhpx3&Rt;@)yLX`Ydj_YJww zyxU4U<$;OORXDxn(RSdMqZn|1N6mn7LyOw+E#SP27Fc%c8>huQ#q+9aT79^|ZDk=b zVJcsxYmuE`6IV+C^&3#V*|*t$H8t7<7eLYD#dgkSzlBfB=VI73R(L2G11Vnw|F2+O zI@jmAvC(o{n)SKS&Rji|vJG@1tJ??9hD5dO18wh?5sViLbrrfVPoER>M99cF{}Fwg z!IGQ`t3Vl>@u}Y|-9o4tfGS({)q!ndpZ@jGhK7R>F$9q;Rc)=evrrXRq1oUApK(`X zlJW@BLPd2p<1aR%9S*9zG7GRG<*DSmAQ)Qr*O2JZxbkmBYsIobhe#|c+-%)qH{hUd zZ~NQGQgM~w#fGK#IJrAa^CxV&ku)gwq4YPhk&s~X%yqEkjiV{KOv3Flt-VV0nwdR9 zLZ&mOUoC>GL-b}9{jcGR3g<-wgA`8X2uspXfGcIr3A@&E0#f!G}f8( z^lTqxjuXUjGM?K#UN53ZxAx@EKc)c1@Yz_&AOp=Gbw-hAfiro!a~$_AN-GxGt={NQ zB8obW4x58Rb&2G0ZApYpDBb!}uub8JA&rTt2R7;^^%}-lAU)|30V+?(KPojkRQzDM zPLokkBek;#Uuf~uM*Rr0z6)&w77VF|$SUHk&-s^**9g7Q!PM>n#sA97j&wRb%91Z$ z(RldwCQvJ=#v!Ah63aK%F5}x*`3$(hw2TXY7*hbL?D&G}D)mbBHK=$=+GEt-)Oeq` zU!D_k8wTb4mTE=YI$}9PqScsJ{_*DZ3}Wh6b7dBKaH2OflB=tB7&k;cAdnMtwJ2jh0>&y|y@oCUK@~Mv) zQ= zD!)IgOtz*BmqXsW4i$=R9%?!OH%7zcjZ>S3xu8bp63f6v#WIz$0$XYL`+lul`WLB9 zny9*UB+*|Vd(A*&erVbh-1?0uAxPDE3h15ay_-tVw1UjaO(y{eT3hEs$IBJMZ{E2$ z(R|Ai1gvF3^36BpW#z&%FSY&C4x!AJ%2JrR-fjDx0&D=^Q+U}k&H+Nr>{GRzTn9Z@ zR1kq5<@(Jh?8#q#BrU%8rJHn9Oi`(wQ|D1q_N%#KdVE%$M@-6#F_Hzo3ApAhnacbA zcU)m1>g-A8!Y$Xo1^q7uWyIuPMEI7+_5J>IOG;*^IL~a>akTR*_^uLz z?{lln&Kro#kE;!J@6<1P%Y>f9-lWW8PZTfd^4Tx%)^suVbr+IXzPw!lnf68b)MKmd`k7caFEy~zbQp$+zT z$p7$tjN`M^RA>pc%xwalv9r##s{86>J_+Nu*NMum>dgp;ut4gC;zLxVaQbW2-y|xq z^>=vn1ru&ds*@y-KGqS|TAsU13CGV!mU*4Vi;4vt2<7yWzwCOJiu$-(0+f#M`9|)l zU-b5V_f^5;4Tp;a8QbwvSI_NDy+1ly9piMiV{IQS$2qFZh~6c+<&rNzF2X04m0gyk zf#s{dVQC0r*N5;6v;ijB&c%NGb{B!oGQI}q*Zse%<2cgD!j zMYDR@M$$l6=izRdZekihnYU%+Z{U}L2>}WPjWvl&4F`5NuUs-nnewAc%UbB)?AxQ&;*VWR!wg`K0G8pi=DjPDe1e++V|w~iz+Me+ zUdPo1M>sv{cR+0dW0jOukiIXM@ZQUS7UcBzi%0<}dOYeqVx97#>*yU7oZn|SQ^9&* z#&bU%AXZoL^45T6yt6dxrjM-4+e}zy+N5byo!NTPt}b|c5%haY+T5&B$Kb#K=a+Vk zIGmfJ7H9@S(-=J z&9~ovqQ9@7uYEfTX~VT$>^I+B>TWlHWfV?N?OSe^-!y>tthQ%S54%$-thgHsVVTz$GfqjX2}TW86_QDuRY%%bwH* zDDfPDuH1Xf_pdn;RJPqsqj4+f+UWQGfWrhxbvj_+F57h2Ex+BF_!{iTTaZ@ZYqV(5 zE3}zQu8Xy6+Y^CJc3ze4JFiiBaoNlsL#vlv4@w!Gymq?+*c1<>hS;xJ6JRfTfTb=} zPWhHwUhLi4KpFvD`HaLzNV!%}DcJX9cRnLGv%6=e_S=}&MZ-ig)=25#(`QOvn3*jr<^ABg=lMhs-Q_+MmhDW0M)F1FaD1~cIedu&k$u;05q>Yz64J@ z79ijogsu-L3Y%=|3xZg0Hr=pNq8g76z(^y@cGqU$>M22_P&t>R~QW7dsE?(Rb% zBk6m2@!|@7SO>R-vFn%`j<@~vY29`MS-jU1{PkG2S@{I@lA!wAOm0N&UpCD>w?}%< zzhY^%FY1+0)9nmCq9P(oJAR9uh1}M*C8Hgi(^CGYHT~7zQ|?pJNN z$m=|ga8Z#GUaBm&%61dMZRh}%Sd~LFycLKRf=<|5@C0bY@Az3-dRq0579s32;iYI- z15M#HcXzIT@+BiVSC*!jTIAkKfD`}OY=~{w&{5{^^+r&m!}el85F}LcSKIt`b5Eb? z(}&n^wFZ60Q|c$@xnILV@+nC&6_y$aBzkU>J!;+E@kij=%V7 z;kl5>s!d7QVb-9cdr|(KnbUVtJ4_*;S0etaY`|wFcfwTIrcoA6gEn5(6e;#@}lFiAk zyxkjjA)&YOcnXj9sL~0_*zZe`zuKwCz6Gk2p+WyD3e2pASyiFu4o-fXRA{q^WO>$d zazmRQrG!e$R7?nY<_ow~>PE*M3pIM~yTJtyeli)>>z90bU-BuiB!&>3yd3w2v%fOi zuPg38wIP-nK3RNM)-$-lE>oMXTE_^B;C>}C;%isI)#WzU@hXVOJC{LAXlSKpi~f1o zI`T<$Qocg`T^zLgwvOPdF*i+(=jI;0xq$jz^`%pVG*;pNa0@q9Otg2Ijve;0;a2qC zg+?pRXGxah`&(gV2I_3-*W`)#;b%anEB_!-Y(iH${-fbWG3FXf5-#$reh9qR+j2)> zK-%<=>IBc{EcPq6rSvBLx-@;^y{cH1c}(ZwRgY=e?U#UZ`a=jiwhVBmG+skkw=yx6+`rVYIOd zv_;2V`p)0i`fYmeEhgk?rD8T+pzAL(b27UydoA4fiIx}-OfA#N&SH{YO=z?8>q4d4 zl-Ha3;MsAPtM$XT&sh|irqhNX_ppmGRL=|pcrZKKN zd~|ejLamvbwrgW$ibG}ZJ!}X^Av83tw_5b)!8ca4z;b)+4xOa|IIoOzZatS9JFADn znV!803+F(-NR2(EW;He@Xwm^-*;fw$AyOhIpQeESJGQX>cWik9SUj5lL#)H-mku!Z zFR}6?LO+ZG1&z8f8bu8aa+S=621{E@l*m@;KfKLUVvKRUlZV}4^?42REpC@&YOmR_ zd3VTji6zW5_KN<**6i{z8&>{Av9GG>D*D%09ZAmzB{mw_QQ~VdAqlcQMfD&T_68jX?72mYDVj(y!u-I_Akp)uxBk zf37R|3Ra?+E@w83JU$3J9X@ke4vA!uG}#nMV)3EDH@9*EH*z`Fvu1w!wLUDMZ!?_E z2)R03q?|R>hFl+8iRD(oO7YooixIlQEKnM>_>Ta=ywfe+nwy&bdxnB0Dxd54c7J0B z7ls-7>7naI(+@50cbe|~5j2Pb&)`YjN_J&6iYFrK^X0>gx(*0NL=k2o%!@bI$qhTl ztsmuS5z#1&K(v;^q8&O}f$pM77XGPWmE=6nN1mBG*FfX^9=7C@xRkT z$mjJ3f*mmc@Cj^}tlkwiO$Njb$ND6zVA`pmZPQ7}6|etwa)!@JL}=qq_09Hu1FG-D zaM2s}CSZx{h+q?2{~{s1eac?Y?QF`q9BrXpUZ+3~hr|p2la%}J-dj=5#@>gLSqLx7 zKjYtRxv|n3`m=d1_5=1)wx;Uq&PWhgTI1Vq)I_gpF&?vRtb@78T|K_F9=)9wwXNYTnauTd}x3;R(rm{h@4j_$Ebvk;t%{ z8S$jY$LY?7T>Ntdxx`;v>RNe1=sB zDxl>`zRJySk>>{cBgx5I%3I>7sZT_zLnsPU(bmy6q!rjk)9FftYD8ctD`k?jR_bCv zGjH#gqXcT`wvqQc)|h|HB$FlMkzqk1Z217oh~f9-{k{7?`PAy%I)_6KAI?FR9tr&z ze7KQo6n6(*@Jk)c9kVf@A;91?QDe~W#_w%%U zPn=yjBLoN;Pt0}Z5jUIDdVl`~5894wqDe+d^_PCCtlHluVzj=2Hp7d=-WMyH@_x}- z8*%#AgfzcZbh=g7+{Cl21cuBF{bXSg<`R8gvrK6K7zEoncL}(w2^*Sl$d&toGen5q zLhoheoB#26E0cdj*7ZcXyu?WK^=w<{K{&XeiOC;x*am>39$8eDbY06k&+E-u{rB)K z?hYGK8>fUkNk|Esgn^meC4I00@Rz zSO(1t*sZS{c0L1+mq$#B{Sj|C`|N7tMDKF+B(f8(cXc?g%b)iy*KRIE^~|rt7@<7d zjXK{M+r~BwMRizwpWy2RmIST&G5Ao#N}H7iicP&o0pX8(Z44@7@Ep}Z1$fA^Tb!@S zQtN5FDk+k9`@588(l$Zxk?Qtx+k~+J!{0t7gi-(IG<0sGl)Zjw_hPqqC&;58l3o9O z`xM%t`oS}|`UEMu`s)kd2N6oiv%GBe=-Pk8LvJ)2#N<9~ZSnunC0LjLvwsdb;&U9z zjn#xS(Ua`l)~ikMt)*EMj2PPeB4AmT@Sg7DRgg=7>9@%jItWM2u5wbS%cH4|YF0S9 zoZxP6=!LqYxm#D_`+~D#b^yhA-AeptBInO`)%^ZK5WN=~CAQ@4y$_kPEYICj1xF!e z16X75@rDn1%Y%UBNgzW85ODLdFO|S&D~(X73<;CV5RxY!7OhhEGV}K&p;f?icdEiH zI!E^T)au=OYuj(+k9QZ7W~#XX>|V9E-I9A>c@zv8nIdx~OR~MAyuTeMiMaNyi)Q)mj? zdvLsmzv8fhR6V}BcuZ00Zz4|Id%HsFf2^%T`*{GuEz%g1PryQa)yPE;j5$4op*lMa zjWp?@$_|!FgCBw)n-Snh?%}6KE^kuI1#EAp1e&w6^wBE@urA&#(~fLMKM%z|AVkhY z;;LGSC={dyEAufz0$YeuC9EZsDDwf2Zx2nYvl3`)-2|uQb9D(toE@f z_puZ*GYP1;(z{!)xgzf^=m^0JZo$~8Usv;Vkha}IPS{>V2=$yDVm;YQKrG$%+0{XN z9CKkeq1&@w<;bP)R`P$1^^T_YSAyw$i%pIMQZh>Zd{+T z4hEaN^Yh0{jjV7Bp@%YE33QvSdWm?de|dpQDo;kv61O##0@)GGeNB51?>Inieb@#& z$MNC8p07>>k$YmqdH!`}gxSK)EvONS!YChvyY}@rZBj30aBEC>6#0}hZ?Dt)CBGgN zh-=s_HQ%pYykwM_51?4*KGx<1mM_Ul4;AMIy)7`aj3P!iCFD(K!GLeRlBS@8IZK}F z@h|^2;QF=58FK!$rG77D@80%oEt3v_5z1KYIM$#;aAT9S4+ji-4`Xgm@&mh7F%t!E z9?j{PhX+oG-T{W4{d(h%LmLx_B2_hFGQ1HXZbj%g6&Ja56_m~uW5J{_(wQh-v4sc8 zKKDm`92CESSpYOmWMPj^<$v=8!bYPae+NeR>`8p82rk0aKFhzAL8Vf=hw-S@S`Vmv zCKn_Z3X{_$n%3uALb&m9Toh4lN=WXGXpYwg4mP`FgY9 zbsNoNG36Fjt62z4wbLGZ!%bUA!&;v?z)O?)xSW}P3g89hd4Hi2!B~z!`)Il*sWSay2%|#^F7q6?gPh;@1k~vYOId;s{7O^*+Z3XXz|r zIwJbQgg}8pZGjebw+cr+1i0ec?@ETF7BfUj>mTw3oG;8U{X;eD%{2((0kxX{CdgTV z^qm9)230cQ3*=GXD#Cjv!wMTGehjU(wWO)jKA6maYBg&){z!ChK_h z>mf|Lwl)d@%x)ieiM}caL)%zg;Z)Gci^s3ePkM!)eR{({*j_v8|HtnV>~^mUM|^lk z0KGVI#PF)0EVH-gtah2I7d8kdnzRo^d6EGR-B9#_Wy(shw$!gN?ZR1y`@W6;5k)<2 zh833z_Y_6qS9()pjw0NJgqOSh7J8ej+9MkO-RTk3Hf5_tKPZ%SETC)8)?!7R{(}&b z#9X6O*8-b;T77AJ#!58>w~tH1Y0z~l9^vN7s83R*-y9ilfQQA4sEM{FoA=^|AhQ+N z0)1B_R5Vo+F3*JS(qKvC?5HyG+QDPIhUHJ}7UfTDF`JIm0Suqhu+YG#q#_rga^EM^ z1)r+FG=e|}+$pHk>1(}6n9`iQ0?%JMGCGQREfXh(L6}$jbsn37xGXFprgWAxx)(`z zj5Iy_oh}e+^m^0EzeJ11-Ed7t4ppgjula%5vSXT2*arbSN!1+K3>ac)_%#{UG=ITe zjI$-c|3#r$iu3#@k#_Y|tEe>YC%N(GL&v4M=ca`+FzN@Geg>Q4qnHHz^5YZqv3pS4 zz?JYt{c~RD8^`%DfJ&YORZp;4?UmF%BClPt}L~WcKc$m=3$J_Bm3B?;esK{;x zeY(^B5MCY)ib?%9YokCM-dpn8r3~VG$>!b$;oWVyu<`;S@hkFW|HlP@`45omeReD> zGMf^Y%E3=0mObziKqEut;(|kc*xqVGB=!46=qrle=G8_rQzg^;pACm~7V0YY9(28A z9T1erhXLxj6|zAI4i$@~#whU3I`y{~X$J5+(=+&LUu_gSFb!7iv+Ow@mli-1YLxFP zndG2jI%R2vuo8r7DRAP0aqXt)tGV*fHW47`7Pk^a3z0xtbl;5Kj7jz!vr<%aU-HF4A<98>a-FGec~zs8Y` zgB)d{rj<-$hoZQ#)B}!%x=LPCbAIy;F$B&X#~vl32~v=kn-3n17e+narlKN!BNBS2 zu7XpC)17fYPmpTK2AYV#cyuHyp4~fEJpU;4J)M;jKDxE!G29-0La-PHA4A>WD3w2z zPe*qd%qZJuK7fDjG)b&o)0ciVpN5&+mi}V5{<-oKz}8jcU-Fxuc}mjt`kRwUMFPAo z{pU2^)IC^Xd*yp(b*vNdV<%4^im`nbsGmUI2QgRlAU&s z=u%8l()-3wTzt0g+$0GSnD+i$T7_t%CHu~}(Gj|VWHodEGe=D3wJ;NvjCnN8nrvCt zA8oNAO@UdrGDCH)8^=FgnYB*)|H|_1VCatdi{s^(Y(K8|@-<)TivV5SPkv>GzycC( z1LVGui#&3uXk<(!WY1Ll7GKMPP;@huil2-v!R(P zh-Lf!QBbY$zC0&yc6F=FbRbx^;-nER8vk7vAJbRf;QhaO@;{b?)s$EWl^>P@9awWr z(3QFK&MWOIL3KD!z=RKcHTHqEDYOp#aex@@XtgQz(elD^H7P)Z3_U9#Ob3r@KN@bZ zNn)cY31mlU7x^EQDfUJsDH0M0UrTO(bjXtT$Q-&*th!{c-RNJA1^wedVf6D|I&{*I ztaJ~?VQuKvG)$s_8JlNHsb=zO zPbIPo_(WPlBDIwoF|Pxll%9X+iYyRzKI2ji_{n*Hn;W9-859#rgWY|*@P3NkF)`7@ zV@gMxlnnh0#$94<0myA}1`+$<0LqOG9x-vr2*QN9d^#2Db^TY}hcSH#l{vx2?f$`8 zChM))_P>W*;qlUi<`mE3){MI0CjZVX9(+7wnjbb(dL_s909ZR*ZRR5&*iaMY^vDrZ z^rXBIsaVb(tWym~H92#rg zIV)c`Cm;OLH+7=B!RlIuzf6_I=ICofk0WoTzGo=WXRyz%U!Dp(B{?QYFrV^vs@yMp z)RFU(jbQ!}Ox>;B-S2;wCSW`(2#nmN9}PFCD+HZQ|8#VbISbSe=pSPETUTd z788~S&F?jF%upVi8^!;N+68KU^o{4@2B+^@` zRwvrOJn2_lX{}#Su@4|hNOeHEK}+?8z0QW2AZLMqjWXaO5LoG4yGHS>7Y3 zt6e8oDFA{pxw+8nsojOAMg%fTfOhKNQLSP>q55JD_CNArEW(F%wO7}e^13(n!ah!3 zKE5wdV*6xk(Jh(YJOpkyomV$gNrdK4zWt7`x-O!}=-AC!T5ZJ&kee86+$<~)Y$C@@ z`waRWGEW&~)50JYQBuR4g;}0Ved53Ilp1(Av@3d=kS%&Xa=XsGmCk+!GZ^N**(~^L)yi{0sc<cD{+XN|BD4{eh(MbqAlCryLPQ|`pEVmj>{|yQ7Gw?^vZPu$F8EzF zD~BLM!xUSL*Tao8rhfR{ND89KfF5qGfVpPo2s_fYhyS&AbYLDea07JqXF!;sU(uZ- zPp#Apt}~=<*9YYK4OzVe2ECou_!R%QkTvw*#p3D$2`v|t_7ODYYtOwzPKD1**B83q zE_Wc0ebS6ZY+F%PfUog3BH?7Q2LMEJ^|>nH>@7=Wyed9Pg(mlT^>y+gof`X}a*T%F zvlkJR7201?l%!NsEoM#RJee(w?*1*eKzzKd)thyNuwm-ox z0!kj&c`n`|tvq}0Jmsh&8xf74N+^!oI)2HMUM61iEGq8IMQd1lbwAyDZn zttFVsSY~Z$YEDMxUQj3Gd}dPBVSv*-eRP^r2yA?q+T?G#9luJJwj5$akX zJ>_T238KnsP6efMxPNP?U6?R^DC~0LXx3Ge)U-zlq$rWVb{92V_nGe>THmnB?X^7| z-(gH6LXzkX$<)_^q8<9X0W0t<5Dl7|`!7oMbWLiIm`nviqm+vu@*HuK_B{Q0FXv?t zdHsTyTxGihh1q@SzC;i9nU||PmP-K#uT!&hN5%0IZm8Z1Y#_+2tMRPo>ZPIvK!=UG zhQ^}kgACyco!@ekhs-cHHB)MyQ7S`JEMC4;Pj#sYbJD1Fqjtg7BeXCYNTQvI5Zmn) zOKB<_edJt-a(=}m;*+ITyhfF$~^Tu2xd8Pxy(sL1wTEv+&4dh9c2 z>Ys>K0<(REnBSL_o<>gd+ zXX~OImxffK>|MqgQ8~bsZFqpC-GP2@<|CENlzcrIP{1)TnA|WAK~*VIew=KU{Ot^8as1df^8=wC)M8lcimVy7)ri+D(yQaxyHzeZzgcPvT=D0 zj^-HgQPDzfcsYg=Cu>TYxQncAj&`437A4h)y+{bZHBUKe>ds{g4w8G-r7%SbBBJ{x zZQ!!~T|pm_*pwnqQmL;4cB^bU0u=Oux>I-6S^Viz0XlBh)r=-me=EIz2SxZ_f7^w* zSB+IRbM^-KdWnI2p!(B_}*(Nd?8nhnsZ@kVIMyT%$cP?e+T`|r3 zNNAR~f-AICV-V099#TDjOR7mx_TKtXem_pM{R#M-l@x14|EOIyR|J}-Fn&1}G7ZKM z>Zz;%oGP{-f^j(|ZyIlWoaUDJK|oiWD{p9AGaOqPV4(ydLNm4c@^hH{cTP6O5t>{G zDlb#HN^=%TZDc{tzHa9+y!Rk%^>|M+bnoUR06bKvA zC%}k+Pw?jVtSW}G+G8pW?@Z@KC0+lcZ8=SEUz&?Eu)8WXOt~`)RB9Y?%q@wgRB!bq zM_Ww%C~Y#sBP{Uu(`4- zYRPVk#e$Ofm3p+!#MhpEGeqe^Gf7RPGv{A>>-lo? ziZPjl!2VLdz|YU3C8^OSpR-I}QN=skE4Zy}9|ioW`eW}KN*+tl)D?=h^{gCG6B7s4 zlGL+wJ_7nZCgYsL(P=hBy4lq}K}r(M{_w-l5$ve6c)gNv$IftOGsw%@Kx@q_DfEzg zVW43-Vp}{aWqmHg_z=^!It$ zBasC1d|F&liFwz%%{}Z5cZIV6`|fnLO{i8T*~WZ_Oh2YI$;t2L%@2tgoU)G1ZT3)o zaBA|d+KMecaJw(gq)pR`tAvwHII@1P+8dYu2*lC;(JH8<;4ui$wtHR zy7?<-4tUzX$?~v%@32b`7{XUh{Ba!wgnA-uqTdUV<0V0FxsH852sa##0l^a__&nc9 zTj=9_9W|v3l8ws;c~mJ^0@(uEx1|x=nwBWh5w_9u!IYzpHvq~GR=1jiv4!6$>)%9| z{stnqf84DrPQhug%lXcIlG|;hAO!Ao;R#$k0GQdmN1;n3X8yj0TTovCpFkLp!_;*r zdMwnH$D-%#gSv%DM&F;`j|mL^s3_~;#DA;2%TjXttn4-=s*UC;xL1Ocw_#T0P5O3* zS!qH7wRaznTLngds7hbMCT*Q6k?)daX35sbRkZSPM~eZT)#kU4-_q=5Jv_ru%quq2 zjdfS}sz9^PZ{~i4ZKS$jo+g*W>XP{TCn;+K->y^N6OAl+M`f*fzctbcwmQs@o(Jrx z@A`elq`)hg7aP%7BqXy& z{$#5iL-t8N^7n1@w&+gEZ@#3v_8aW=tBaxdy=mW7ZGAY#%CzsHX#3}rg>z0Jt>MQO zRuO_BPV{;>_u!`C$5ENv#m9AF*;B&k*1E9@PUiws#%7m!q)yEwT`Ic5 z@y_y$zw^lNlK5#l(e&>u|3h!Co}jbfxr6Y9t=ojk5- znDSd{;?0|C+%e|gk}8Gg_+Wj(cB;4;OP2{Oku?}52;mOa>yF}v> znyRQNQBMmp0oc}^-JZpj%05X8%VB_SK?H2)EB!PRJ|uV1mmWfPz~61li=|fr=M?RT2?C zk33SI#T+^}BPW1So#qZ=KYt=pYBm;v_P0I4;&JY6EQ7uepH6iyULUYog`7PV8Xn?y zsqY48%V~v@TjOfIiV^Syf1PbnZksa2Qq47vopDpxadYw{hefcvE?s?lsr(|zu_n_FF*)`7g8qVJ@gVMOG#?Jy`uSK+dONW(eT z5frZkBxzR`7#r(#kxL**^|vK`Jr@(u2_MAUQeQ~HYD)uhhKKZQvn!<8p3xP4MT#?t zEN`zo7!ua8v-4tQD&^hp-N?6H`OE(#p2mLwOd5@I{8&75uUEAAX$}e#tnD-Is}hZ< za|=Js6D<(#=)$l$%s7lSMu1|Kge@a{vVIsgi)_qcy}*4t*U){1fNCpO z+t$2-A1DQb?E(o&#qB-HI&`T@Q-FO0iYvvv*HKZIeAM*3o(A2A1+($C40a&-2-zFo z1;4X(2vR^Nu+uF&fdppHP29ZSqM!ht5m#meoW1m+_NX9FAp=V zEI>PXng30}0^^2eS`Sg9>x(X|4Xgt5>jLF4=|hp+AQx@auED&j-cW(*;C9O=VFNW) zNIOQxj%*JCu7G!M)_S3^S*#;vvaRhyRhtlS6~1}!#nsDUd`xsZ^(a--x7$0 zz>ca)ldKt?`lm}wDDpM@g2z?2KSULU*gcNMqMw#gz9T%NCm%p069QHOQJ}3jT<0=z z8&HMKzhNgYX#Z$9uXC{3kLnd6Qhar-{blU1!l}~z_HM^yD*!Aag-*z_w!sRzOU#IR zVCirpyNcix_l}cN*84LoA{7T~Q zR~T}-F=&)@dzuAXV?skYvT;?47sQgh!(ARe zfb}Rd_Gs-cNjk`VB&)#fPm}W?n2^hILWzT+F`T3f*epE%O_L(+MO^u;s|!^6BkbE( zNC@hP!iZjimXW7gq#ZhJ-F~(7IP9)5XPKOH_0)^K6VpP1!%S6xbzfWV`mMj~nJ+>q z&tH^9H3dyN#wU0G5uB;`HPfEZ1U^w?BEulZ;AwO~0q6v7I&?tidOCKvkI zyx6p4n-4^R+vvNK`WJkfLC*~}=O;BFn@wYC@qod6bvYTcg;i3tSl5?io1db#2Xg@} z7nA0vM^Ut5k}o2v(JIsK|0$YAzwcy=ZA=KsR& z7|e5DVe*Q|fK^u)_2F22)w@qYjQ;^lO-GPsJv*%nZ;@ z-~x^Xv#;eh87v4tb8-vmI1TbD*)D5C`Wy&2q{L#G=bLDTFV7dfhOa4}c%9DuqWAx& z8`fn^m|FW*BxDm};3cJ&8F3xw{@6?Ji1PnO(_1(+`Mv+c(vlL=Y0xE&G$P$FYLtM0 zY>W;W-6#@DcgF^!H@ZtD1x6z!APv&}?EQJZzrW$W?sLxdN=0QQh+z7T+}K?KFtoaE zyfm@0Ao4^Y&xUhQdv*S$w%ly~VaKyv6LEG(h4rgXcleU`krh&>kO|Dv4aCew zRiL97dEIEwGP7RJ`v?%_qpeLx%MwvLq|R)=xI$EfL=}2w=1Tx&K5or}@S$hRSyB(K z^ebX-e(hb^kjee^?CV&Xl3B=lWtq_Eyu7XQ#reD(_PazbcKuma#ZIQ7UQX2N_6Wmd z-N?&1#&Qm=Nup5?9FEZ&c9iQ2Qxo^Cz>D?mJlR-Am$^^vlb$byjgt{>E(*7a#pNnP9CT+JOX zgVIc&kP$eiDW?Fh4GdwWc-dp@Vz(f>&@qvxs&x2o>E*po>2e-vho!+}xYY6GuxR70sTzZ1y-eis08=T$iKKiW z=JA%-_rq?`ZFShJa(MK`<2hl%m`vur9I|i5F%f#q6g>g8*qjZE!mDQHmzc1qbRj+d z9UHisBizfxvVt&h?YBnW)Ee^XZf>KQ*jziSbWd7D}dancCc$4E!lx1p&LFN+V&y-~DPj&TL9f(uc za7m@;WK2RbCac~ndPmw54Zj^18=IiATuDa$awkF?MTh!D>`+H6UUH}XI+qnCFZz+W zFG(4VkMmQ~`fuS1jJkZ2HvCLWTkMpHQsfgaY}u|VoC39~LD_aU!1(d1I=KH&q0zS-o7(%t9#K67yzfn?C{ojuHzUgN{rbZYU)F{lL3ZGYg zj}glS4{Vlm-k;qg$DC8CtTU<_D5UE_n9w|d(LlWhmuOj)M(GPAmjnwKA)uB|Im@2D z8zPlhsb!UmY-RmOj)XE>2mbpy+o{VcTl(fl)3|eEe=dyi)poK4o`KVl*pkNgE}!6< z?IKBYR!d6_q<+^Kz_2I3uAt(gY?a+tCwbCj0g0fou!NUv`y(dPNsq>Ls~BHwm#xgc zK5Fpd?<&U1I{S{F`B=5YBP51@u#go8NyZ7H<~r37)**(Cf(pG%{~81A-=)*DZ}WFgzxAqQ9?cU zkd|FcS?Q4wOXkXuxXHJB%t9!kFE-i`Y_gL7_R_(O0893$Ho4FAi_`}VYY+kZn9`g* zzt~qG_wR3!TQ5Hxzs7~re;yd23sNcXHS}2he_DXuaM;?57@;-EbSYn!;QRI9^@?z7 z4Pt(5?<5Veg%3_Cnakcu-u75C8pwH)@hlmb6yjR1+C%HFUs@{X-?;Y5QsCI2*hHtj zi`Awa`dsYWL+hQs5f^%ibrEwZ_N*0t{O})_X;J%M5Y=bWeQLQQ-$!t~D!y{{T?#~j z*%Pe_WfzG*o94<8uLk1sQ9d|6oc*1qlGtmQ1>!M);EZR{1MlG;1N&pVoS&4hPB3W* zyb(KggSZ<3=lu{d<&Cd2dUcn8XT~5QIEX352I{?kvEwO|Uz+)|QH+yhmQJ;1I~;P5 z)OpC0J|i}Me%G4JZnupVcf&?1)RlCcqzeaebHPp>u%L{4>=fC?bL1P}1VP?q=r`OL zirNcz2*F`HrUpm=QkuLmspb>Xv+P=p z((r2UVG$T+3D?=NAhO|=uKF#iuLtR<>pK(3LWE{{0pEk(U3|>y*j!>cbe8j0IsqM_ zG;oX|#g*+gr2wb<&VOfRvTzKp=9v*Vv{@MNdtJGU*yZxoKqC z5eDjMAVu%RS+TMVl=7P&?_nAyThC=5MY^e=1~TE<8?l0n6f7?xNdaJ0c*)D2H?tJdzLUfj;;`0+(EeH$Bd2E;b%oB6qnR-Q|7R;Cw zjm{oweVJVUCVI;$T|97RWbx_6r(x}q5KV?40b({IIJ?BVz(Dv3qvkfCA$dZvYw?0^ zy3J~18slFC3lb8QK#Md>*Y5ul#MQ+A=VD|I_cHpuA&rZ!d-nrjH$yzx9s;DHZ#LFv zlvREBr#GTZOM5xr;SBnU$L^&^g)T8be4afahYDa)es6+TKa~aJ&RiTHfUDP1wsHqE z);YYi@Yi1W`(jIQKV+I%I(Y8Rxe#Wy3Z!ku*UZkXBALP@E>$AY~EeKyGa*vO{ zHOJ`jsaijBex?BYEGH%HeS+O}>~=>g@$TX7#%&Pd@3y~*pkrZBd0n2rXQJn!aYSYE z6dd}PLt0vhW{qQW9p7P{V<64Z&0&XWbJM}?y3d{IdXHEuuk%qOb2qV_B!XOSsLh<& zou#h;+i`M&7xI-OFDTD7)q@pP>&nS!enxLXUF*N(G>_!d~ z_FgvT1Y2iBz;viq4ej1K>^i&-8Ge#fC72~Ne~)1++2eAIU6Tx!ap0OIlwn;-iFH}7 zOY9nFqYH;U8f))fmuhI~Z8}!fL8%hKg#aaXsI-EJda8*&nbF zS&4Yd4ng_rY%sh$T#Ioa;)DGihu+C$VH7xJUekh`0@g$pl|3<}*?0>KZRAn2~HijlaJD0I**gLegXX}kb=FeUZW200l&+`p^ z{PLyP`xJE>R~M?A?#%NwXC8intQDQ%08WKw zR5M)%oMwfl-0Ex-jxK)lN*>;3_yUJ1RkqPh<DDX*s?)Tsn`WZ4QM zcKQ?9Z}*k~Y)1U3>UmFfZAkvqPd0^ixro)T7)fh8@x}5OTfHn@)sq)T8s!*m+(-Lu z){*#b9w7_l3Q#fPs`yjJC}nBZiKMhhd~=DJmbUiVQMZ!h*_luSP1>s0^9W5+$$dTN zRdvp99n;v;u%&4&+Ov7;4>)9Zt3dcDlyJ8N8iq2a^<$;3Eq&xq{_0Qn8(BR?PeE{# zRGe92&g}xW!%3UviGc47oUN_Rd;m0pK}Qjkw5`Tc;QrEVVgsLF1aO#2y-a>Zuoz-F zn~{XuPX4a}VG0P(t|-fGS&882@=0(+0m8hNT*Y)#$CNzAFtjX8ec8S?xV2nb1Gf3S zRv?oGBHsUvv?fsu?F`!}+VnH17;|yUmLJ-uVE}Z=(hlwYIA|%q!h+BH_PGCzn8`|w6zVd1kct+9H{oiy}iVr z#uVc*ZRI;p|MmMW(Y-7r4#*l|!Vus}-cnmyzkB-?kS-!+8q8CCKgVoR4wi1j&q69^ ze5$X~A0mbRGH~Zh$=l-GV?s>u2`ZcX|EKzK{7>~W#uYetP?Wst;{RtOh`3HIB@z+J z${6-GbNud83Mg&k#YGT1KIosKJhZ=%vRHeuS_WAaj>a+#;OD@vpnYYC{51r<8oido zv9J596FDNc?m#e8T-}R1QVHQSI=uXulVAmZ0O~w)KLDwzbx$PI#9~(@n@T(`_D-_4 z;X#H6-&|O))s_W?Xk*rhe))UC>h??FO-Ba`pEqcEW2l()&SAukXs#J|(gbK|>e1h4 zL$0XrY8!}q=ua>1QDb0phW^|>kb1bc(mUH~$NRjYG8koxHn>4mG3uZ}OE~6@8V25V zz#r4Lm399dPQp`{8#v6}o4=81$F)|wNN}$bRT9p!V9P7$5n)hTMiwo?GWOdp%zxy4 zLX+G^sRA$JBEX_!Ho{(D;;z|b-4v5BqlzV`?J>&+wuKPaC#7fS3}n=oxu1TYkqo{j z0mjB2_2OFbMlBF2_v_447?$_B=->$LzL(aIA=~ZI9+BZRV(N{1rsxR&frR&Ny43_y zVdb&lH_MvXK}PM;EG=+izaVn?JorQ!|Fod<@TOH`Z5iYSI)2tm7w557$i+{2XS(G7 z+01RF(`ZsHo2hlHxJT&F-0Oq3S z++{l!q}a(8-lRb)xIWw+emuHkvzmGatyCn=v%QrNY27vTj@=x{DWq^4_9F@^GUK%DfYG=i%zCCU5FJ!V76u zH;*-xm$?9rD5H|Za=hxhSbuWSCoO??Np6YXMvBgGcBiCVDlRZx;lEF&@QWruFr$<9TcAftftkzMm6yb*3QdNxlJkQ;v1#cyN^FLsk~kc869% zW3E7^N27h#Bj~TxiVB^>+1N5;w@G2c56r<~B$XYuIDj8%Psm&n3^7{N+I#JUk^tQ58zx z$aVTNF_f=MhRuhna1|ySd{QkA;&jv8{y#mHr${;JAQtQ3K-?`%k;1<{rk;NMwGw;{ zn=l3nICVku6ae%Lu^|=0gODz*V^(o1G@bH*HH#A=Y0?PM9{f8}CTB~-==*1mZB`>u zB!kB6-zu~-t;~TF1g+ru%E7|+EvxjXB^E~EB}SpSYVCEaSLZIs(y@GCAd6!a^W2AD zSyYyv8#>MbZ`z_jqXf%FdX_|bw!HkE5x|moOfb#m#^F8Ah0JMwL=1oZMZ<0=>Hg!u zTRy(m3L|I5y597ky7;#WY8}914bGWrcVbkVSBw8Let0q!DGfDN+4=lUcay~e@hr5( z_@zWg?DSETrzQ%!ti{BJ7C0m(AF{>kp9DmNP4@MpnPdsT|0u}bl zVBsfi8$)jW8#Uj+Cf6b+5_7_kMuzPI<vJ&nSEA1rCGf_J(gOQ|V;g4FaVq_I!Tr<9uvSMY)ww*i`Yv zmXJ8{bDT&mG7j<^o|nAG7J%renuh{{wc5qmu<`{LZ=l}^6wU0Uo7CYZPrgtSX1j;_q{OO$mdb4vafXi2;V z>`Ptmw0Xy@qhEZ$^!J-C%1qPGS*CwQUm=A#-2#0;OoO`2RA{IRh$v?R|9RM{29=9Q z*utlNN&%XM*{^nRa<0eDn!81(Qu<*#%8}GQzEI+`SD?M-*N&eI zI!$epsex*P9c?ZK;3~V?b zXJQ~g$Nv}%3QKAHhZ5rKlsv^4Ti;S1oy{;H}E6FW?UcL@J=tC|CG692-$9|O?oas)3sBct#1pNs$| z1@Z`^1wQ?5!#6tI4e?$PU7&og!dR{Ox}i7XNKZj_r{=&&scQGfc3Gy@rPz-{N(0VE zRbgYoP17?)E#IM-h=m{svb@Y>(-8 z?>kY6489VnCBXKt3MoAB{QYY`89cNXSIk+f7P93_?W)kC*9rgS@mO9z!gn#WboU)< zGI`$7B`iZvA=kSEP|-0dN9~+5%&%y_8BkN2nd*`^?H+Uv^V)w!WWOF>ok4^eY;d(C zQ*1~Msq0gGtU9$#gOvqocuy6&WrPNu_`y=27^=I9A5CNYvm++f{d>a=Q+lfVWSMdJ zh2<|8te^VD^Ra$neWi1m9Lu>3mj6e9bEml859p@%?q{` z1U$jszCE5CE2)^hx8y=Eqm}KBTmHw3X(aq--iAh0PaSuz>mepGymRUu;@b+#?-9wp zfP(2Gn@dS=n=NoEqR;(omQRM?UyJ6Iol-sU;XDe|4y_MqxgZ>+F>J?VvP0W`In_~= zNCi9Np@}{iT{ps)lMH+CMD_JT`}xzAKIxRC*oLW1rI55dk|U#x|sU z`F`p-94M1oE3?ZvmdqF^=efP__jt5(Q^ul#$7t8jxa?aAei+7ND;tC#B{DuO^e8nl zCd6`ioFNi73OGHk2`rhShS{WyRPbGF zi9P^sgsVs>jfq0LdmrrXQ$<=NwScEbjVYfzrsq&)t&WbOvX!$K&~n5} z8o}EJ%hpPUCpqe_d|$18<++NT>FN1_U!Z_Vy1c=%DNe0hm+tcf%(+E|ljmh@@K)M& zv`)|r`QQ~TeMt-NlzK^YS@1-QLGv2~YX$u~>&Eu#g5PekYA|tcv=3b_7T8Y*f0cW= z1?|Cm(^?yxl?uW*C`UVqnhhby31EPJn6_k&#-p_P>kviz4meC8O^@3|uX_6UuU*3W zC)PW<7YitLS?_TEF&XP?HP1>@-Rk^#>XJ-7=D*p{X&Fu7MzWttR^w!8I2~NScD7{7 zzD^O`R8?HVc7N}26g<~@?~2EanzFM7W9_}Iqx&d>+Ig;L!gR(k`vAS}k^CL7ZxnFa zeUqM-W2CqA3{YJ@M(Hx8zgaq;^G0k{%2VP!)_b!BIdhn}Js!#cGWGSTAF z1YZ%;IBdQ}ZqkmWMev%P#e>|-@82`hDtgnpfQwyIODQ*N^+GgXH0tFr33TiOCP%^;f ze~UA-q#!Y$rdjXaark@K+|109R25s#U=k;P$o{vecko5_VF0sj+N_VEK2SA?1JO9U z0EIL~PBL!Qpjtzb2(f_6)tk$syNjA;D9ew7N59S={|fnx)Gs3(*CM0!{+eH;+#JEs zZY(A`JpB_`p1Ru?3BoA7CAA5`2Al3b1vJP3Oq))6vX-!EJJYr*Jy_0|=WV-3PmC!bM7WYy$*8<&y#8s}r4i-VR_TEgl=#<|knI$#~lmvMMt;8=a~C zk2J3faiQ&9`@vGy2HJP=v}P2yt{G3pvHoLUzQ5PpL*@eu$?*?@!*ztja@Qbha70`j zDG3Q+@|r&fca|}$1efD(fs~WV!hfeq7oX2H4puk+}*l!dF*@8?D!1+ zk$+ijvK^t+^)IW1+Zoyv7!MpgNwsjGh#=g(Wj4(Bqcl8*7!%{w!G#+l9z@^j_&VM#)1slgjE~>t%}GWZ(vI4K zYvMe2D?UE-u3zpYQPJftE7VATn>HumIQh;Qv9tPEDA*B7MeL`pmwApnr=+q{F+!gU z`Q|^5e)&T!-Qv_kH`4t~H(@_L(DycihuiwRt-*MI$5V-V7aO|YoVeV&xbDyeM7_{G zpO(71?Qoz$m>LQqCY|#@LGkL-C`J2*>)5j_u~V-v5zjIaG{7A3c$Ri%!S+*Lnd?3( zIw*^H65WEcJuUwCa?!Gk*{ZBuLDX)%Q(3=AlzDHaBMM!oCp%0@m{(LMK9*70fzY+A!_;VT*4G6 z7mh&ilMvu+yN}_~!~Xyfc$Fnjq^LpK>0^i;8aQItW_UYak3aRO?RPLGyd*9iw%@ol zGJ6-8kS{zJUpHAg#ZXo0)w<TbI|&L1fc2eF zhg6M`Fn*O1;G>9o#{_&S$yILIc_^9=_rUO5~VO`17zB)sHHn?Lk0 zJ@`4ddlSzvhYu>c-|kp9+}m!G2CmqD4X`5TYo&jTg7RyJf|dz+L|$3prsyN4e@{{A zEx8mdZLfshu=dE`Uvf6x+!MSy5;>J+ZFLI!Dybz(ElcU$^8SG)jr5foAsRHf=_m4? z^5t6myUT2R5{+t4_|gOh0e` z;Cd(i(B$G^8VF56<$qAOckh~SU~WC9OJ?XFd{gOq9i}tYpDF5=lnmyq@bO5(A=CaO z+$|y-ImbG8&LH;N5}BGB!nJGx8G7ymkbaifV3YHGYo{qAdHX$&>Ue;GOR%99%{dCO zVX$c`T{TCr?ZMV|jVvu~Su3K(HEqn&VCGDD0n~9K2>!bojTyJ_Bu?GtczFT06go@~kEFMz$>W5b+VSwy&Z0}jr!Pb7Q1cqA{oL3*(-|ES-FZB%{y7>d zo%;0qhx^FG(J=(2Y1BcRb8qwc5V^nuikN*G1sRyD^7!&vmI+Tv-nDcJKpXp_)M1|M zmq)gz7?3f!b$j`oDSzKQ=(#uf(e*k?xVUn1Un5W!y)($-k1c=uE5Yp|@Iu|ck{Ldh z>uAu3rqeBV3FkqgCZ8{g563wtX5>y-y!}CWRj^apo+cX+P^Fqq_7>&<5vR5Mh<3|~ zn09}IupV|2v4ef*!7SgS#C$S;&g z9Et!c38zs0A#c3D{vKJkEttPw!pMj^4f6%w{IifueYTQ2`T=HiK(*fyZEk2OM_{xq zsA0Y6=`{ab|B9)duB3$$ph--+aR_rdck*rB$o3X!xs?)K9=#mN1 zoSJxED?PXxz>%LMkki)uO04Rm_WUJZXq?g#5+5yGyD)if!Bw-ttH60V@J0ij1W8ZF z&$XBI`12S)JhY*^c6>+YDMHTrCE}13KG=2fJbB0ck@#phk@s9+FfIJ-qMy&yd2#fO z=6%zNq5!~zd&$LEAq9lkI*`<>P*O4n$H5lJyfhOfsg+lS@iSod<~EBFnYEbi8cFr> z4`TgtTHg;E7U=qgHfdRZq4b;m{3y_Gu)76dXToAYEZ^t0ON8s{ zIKOIb*1)X&QF@w<8fVBB@gtG&_ILZEq)NWxU*jzJan9cjlOEvfOo{6 z4B|Nu_X_~hY$RPrO+5_$T*PUHfM_cP@!=ITaSoBiXubBvq&@r`>giUa1O-`a6F*!~ z$u-ZDBa`#<8B##KWh{@XaY{Y1gJ=vD7e}uiN`xJO`CoXY)M-lQBl17>8*lo;rak6y z3g)B>n~vlw!oIK9J#)FP(HTAIhl0PdNS71MrGP?*eM-4zOw3>%7UihwC)klrgmOft zHn2p)l%R@U+xTb_;E$WFFXk*yP3rXL%e3a52CIwB&ixy8k;FPzH;g4vrWizsQ1jBp zRx|smkzS5c;p|_;bE__ogPW>H;5lE&%R^551Ryy({v z?}>a*00vY^jM>}io68^3Wi=XR?efkX;X($* z6maE0oa9>((bIyrAmfbEFh;-3!19gMRGYMOS72vgR4O}N zu}~BVuLzbMNj>kd0O&Y@=5};h|Fon%1CgZRXuP0aM13`QH^M@;Opqf9pC8B%%!S0zFuV zIvSMw*v#SW-jxQMz@|Jpo8OjKNm-ZilQjGGecF=LKrZ=Sj4{B$h=>1w=xlL8 z58&-jkYt%!N?!XE2=@|W=sDlt83A*rjL2nQqgB-_ zivxI-uCDL4_vmlWik{T`yHY2a7XPIY@-Drw6B(W^R%a9Q%zz|XC;-?EgKHQ_R!b~7 zEnst7Cx15rY4!pg5^)lXOcRt;w%fQCx<}}ASxo$wXm!VXE4rQhzFnlVFXB&8=Q-J! zb!FbLKU;zFSHzNp9tBX&2xL_5_c5jb*Rk*- zQ75?e$RD&WF-q)C>E8Wvh`fY*UXhDO%-oMT7?X8-{&Psu?;o+Vvx|l}ju8k_WDjsU z@eSP*9We*Ztz*80z5W0p;m~en++;!a{eRzv$h$z4cFT zOWS>hEx%d|7`eo+Q4KAdBkyj2*~91sz<;OO%+TX0y}))RSnSd$Ch{l4qF5}zc!Rr_ zpa95MRrouD5O(;2)JzY)4|4uX<7>9KP<#Uz=A={`|%G^y&Hr-7xxRv`q+Aj}%Wv2~^_@40cE@KNHr~M|THsh=| zh0M*Sh8;Q0%UEG*Y1y4ICf8dwD6epMi}zj{r?0(Zid;ks;y6yLKoU*g7F1c_;6b{B zxk5PC<%Ps*Q~1CBVG!TSFqGc43bsd@vD9Bg(Qh%*qWQFTsfEa<{CJVy-dJY8P=TQ? zsto8d5REgD-wGX(q+IKV#R%h-qFUlR<={=jps0GLbi_trPbV&0`g1>##j`gSn^yivqfg?FvD zvif+9_4)H1s#nO{M$6ystP2TimP%*+It@EpGcWZ1o4e7)>MB@=qHgpqAv|Y(S@``Q zJxB-;kjti59xqy~zUKY1?NcHtCWv>!FmmT*${!o;34L!Zjzem(oX9%&7fMK{3_DuU z$G-#sjLLE1TBsiyW(42{DSQt10756f{8Uduv+~?@(aq<%^SyUkwNiO>nd%_3?VKj5 zlPx3jAy4xn#d~4rtwVWbn6Z!W_6a*Xbgx}2-LfEtc3~Ze^43-s^{b~@rEIEjmI{4; z69R%2aF`M&X3)}AybflKl3Ppv+xzw?3Z-GYLJjsRA@F!CSRC~D?S54Gj22PnS^UCr zTv_gb-4prGS*{qN{4_RDk&5)y9?zTb0ox=7?WTFS3>mzU=cgTDc?azfK4R2*1MVDR7)uVG%i17-x__fI4R`v^2!It+7 zM?AS6zi^LeSb&(typ#8UPmQ%7$#k479j>m7s3u;9N)pf+b7+XUdODXWhoF8e7Xs>Y zGeJmvDHlUTYNj7>pn0WmPyuRQj}HWZsB}tK_py(>7+&fyBS|@^HjG<@A1P*j`ni-S zZdEyUUeo5q;M#V~aDO!T(6_VWM{@Jxi%KniaxEX5je^-1ucuq9UnA_XAZA{_^4`Fv z_hRq3&{g#Xm4IDtA**^pJ)TC`aVGf2;_8G*$(ug$q6pBswU7HMjmg*_tLa8g46vMk z(hY6=Zy{LGqz?tc?hT@@crO!oS>SPZM#&OJfp6_!kdH%|JO*e!?{Hves=wJ(^Yq{_ zbka#xAruDcs={89m;H0q8Eqh&*O^#UkJi%rNB)xFHv1D%imTmYG0!u~KiY=n`vid{ zVrU|CM}}g?rG!yADXxcsAR>? zlhsAejY=vAhxzT_OYOH-T>Sf@>7PH_e;)BNnRi9>FPP2)`+uG@pl(_({}w$tIuE|Z zDvE=Ms?uL?Ns#v|BwngT1EqQOMy&ekW{niYF3eNZ2Jcp;0GdPW1TANoCXWT!lvX7l z8Ux!V9EE~7xZf^p6c@$=3x0l-DZR~@0hpJ}%Z&XVtUOWKTk%*l>#T~6a4zYOR6^CP zkMMsMt^7j#+|$$ZvdsFHX)O3eIfUk(jZ!lx?;RvRlQ;@v_d#p@PCbR_!{Piy?c0}r*w8dxN{BNG{Hk3 z3>$xX{_x930w1f7!+CExMFZJ`i>Pey^ZciqPiE$*Rvs^t&-~0;VpVlMDymC?B8K1W zeW6Md%fR3L z1Tk6e;HQ$%_-_UfTBhOw;o_hT;>DVT$|)0u-S@Sg%DfG=QoG;YatrwJq6*f0`8)%1k&11d2}cu;I=11_*Os6apkb#Q;*3fCioLcBSy%r zL>@8R68`$@<9=g_@l96C|Ci{E+sN917d!IWtB6KQk+Hx_$e2nt=lP45ln$trv)XUY z>wE8*9UDhA+s}4>5_MdzyvV*k!d*l2i$-NwBoJ1sGV0mqONr=EE|96uG-@?RVc}Ff z2bwqW#KHMe%^y);Lo=;F_X=Q}wj-jEi5H)5^h$ z!FLV(wBz4NCclk@IxKwCj<;b4(C#x0Vd4O-hKYDur}Lp}(jPSR%&z>z0M^!%El}|P z0N#0)PzHGQ{<`P3xo=7V^pLb(LDZSxp)N?biqLo8eab6Hk8cnHa;G?AFaQ0owEVgA_do))A~} zU@GVM41NiCzGas8?7?U!81KU@j&yTy{kh}Lx{8@#XVFrg)7ARMkex@sfO{uV+n|ab zx3lfwfVIh6Y{MJ?{j0RLlbM!kp{D8#oQUMluR60gOIlN{IIjbUm+^_VrNk3r(X%uC zTmlyA%;L{vCZwzcjKzSEVL=v5&$E1(V{Xv@5}$x^G%bkN!(uJA1g`2*qCYIF8L?+L zqD;r|O<7#lhR=DXQ8WGj{5NCAFkQ)#aXRKQOe@^kI*@-&O1!BQ{|hpK_03&WaUP$710=N2|LK&W3P;L74=Lz41Hgg0Ru!(amd<2v z&6@dpz2}bg&TenzoRXn_@$IYWZA4kr?;eK7)Xnxh4rpD{2-oWKNg z2G*D8lpuq7G)DwgUA^_sOKtJEu`kQhqjMQv%k#t;f&80M$lEbnPORfH_<38itncvJ zdD?s`;s0KSw6fTkkv~ne({rX3#8RBp#Y!2p%UvR4vJ|#9 zm6=*@#AVLbB-|fxp4fJv``2!f%Y^X_BTgKw!ugMEmkHNi0x3dwQZTu~A~ z6G;ur@|^UGI2Yb=sM$VCQ@61BHtiIHI`!Z*w%*JTB7Vd9^s$MG_fzrK5vsvKcv#8I z#?5!a4AMwXpIck`8Rq)-bEkQ`dV`L#H^`|KlW#$J{FB(sXCg*}28!mu@^+Ua287oP;`cr!p_yKmTSM;8O3VamBh& zR2T|rw5a%2%fJ6`5BjYt8umir+IC22qW{(W2;rZkA-1bu5|XlWauorUmg6+$K?f=| zKlb|XMg%~5>oe=!5w2lK*w?fhrp{E^SDgxbS8=F_6n+-T2Xzj;mLlNHg@z!i(hbfeDW_1-IegPL>QQ+ph-bu0INisZNid#q+2moA zb=t;|dL~~O?+0L_gYeha)5cOfi|*XC*&7UT|2yEsJNxqQi)~kVCX!c7q`2k#Pdo*R zNfc83k(b(>q2$iBogzEP=rpH)?-pJrXL zrK+C*37x*HT5;$33?8t2O4NwEvUVWmZq3Z=&Sh0ita+_|04BowU4DT&Eo-~XtiD+a z(cAw`R~lFym|?wk=7`2DGF_w+m|N7LEZ-(Xwa+%aPEqGxJPf0g~skt1;RkNHSfG{Xw|VD=3rY|F7BC13m# z$yzQRx#-Z;>0AP3AkhuKy;CS4Cid?ZT8{PEQYXH=eDA{WcnnD1ls+>Owi6(uG1Cmm z5rZ%d+I*Z~>6p1Z6r08ip{84YpJ|3DChVt8EY{_g*5-zbCt7X4Zj1#hq}&O`D%cuqo+0*&N*~Jf zp3U?n>(wy-? z%A!;xv39WI2Q%kKOKG|54T1iTVLpc3nDoWY1TV>+&b#}@k0)_6HEj(qeGY#g2&f#Z zJxcdRPj4c&m!THUV5H1RPpCQga60q4?ruQ=ne^BNYw``|)wz3|?PXyY(p(r05?J(F5yFS>U^5{oL-nQpA&uVdM=Ht%wuk~Dtxhe6YF*8+OzXa{v zp=feY$&cCrZ|YgBk~W9t1NSkR&}j_g#<;EppI%)2j%U4{)IC}{e2_hm3V0eFE|6&z z@r;tMO#0)+lDKiy;?Q_z+sQB`Q4+FD+-+?}nh#)p zQeM7aq7`OADh4l!1bO3EjF|qU)tb%Vnle}(y0*k1;puyrceh#GZnx{(4`U-my?HtW z*1@;CA6Ktv-A+at)pYlo9cD~>l$7U*om<_0`mnYYSKttAsYX-8vi z@2>n=ZJT_s{yrIBF6B0}ahhdSBg0M_B%IbdNFZ?T?3>o#`{8VG8^>%4c8`63Bn-&f zAi@DCYnJ?j6^NTL=fT%o%U(QdWP2)hIIaHKtqf`YwvCVnzU#V+FAQugY#m>Nt5-K3 zjvwCLU6yrSK}b-(tI^LWQPH(xIWx5evfZB@d}N5>j@|h;*E}@>9A#-fSVnUXW$lxE zkCut6I75Ei_87q(7f@xqXnVKZv%|G|t=FMoB~f_2))g=9JF@1Crv zn)bX~tv17x5JdMV&ZuzBX4;q&$~cWFo9i+0REQoe27OP5mje=7Z*~PlCa2W~2Hp zfghaI%YQoALKd5C+tci)x*C{X%soZ=R*){&1~2H~b8Ko`;1n8E;AQ*VDlFmvF`-5~ zHFF9@ll|Hf%b%^=FtU>Kv;U8#t9)oOT>H`>4bn)60@59l0)lkcXpkB$(%njk(%m^2 zA&l;n&J7q10urM;-+9h?KkOfPo@e)U-M?h9?(CPLy+&=Sx2kJT*3q^7F^fn+gR1Vn z#FyK?KYCMJzn(BrY8(`Z*hETSThQCLxEPQwp1Fl zT09 zM%5R+BwiXHD!jMg_EHAIYUC48E(3v4^PLzumFqa8!aH}2L|pGUz1Le;2e<m~Ze2ZZGD`qsmzipE#4l`bl0yrsA@U?g|Focq0)uWzON0& zp@71WvIQdc&l|;d6BFy($iA|$c=1pxb&0UW_?7QBHWX0>7^B2x9|-l8dHrZ+-cKup znx<^Xv_)Ke!WuE6aJBLHptFx0gfD^up3odQa}^qTUAqm|h}@#r)d;_m+F$iGcvmiy z&+~Ia43yc11rV#{yA{qz1SDW&7Z@^k&g|LcJKf>%z6tyF(mrj{*>Fi6GVXkYIx^(I zxSV-(I-=JPq6s1^S+HID!jCO0AZBtM$9(9w#(4k7Rtl*UTxGwK=Mu2#;O3F|2-X5? zsQ$K=POqP_3<6rAAak-Ms9%4ZwK%)@#cCbA5Xzr#(mR9=MF;9ud9+)$A=1&aY8As! zfRbS_m&d!S&O1(1zYDU;N)AOrpo}2mp)#fvv53@dek#<_e-EK8B+)Ti<9yV)Yh1MQ zrLC;?SG^D@OPL%g$K{RClJuniIpz+v!Xc-uOGrHuL-vu8Cypkv&&*&@?ssX#iUKOryCQ#y8KP zZ|=>WHlO;~pRS&;g4zj#q6E{aA{AqQYL>qVxPGStLcF$Tb{r2LwKo^R2gU5@vx3Pi zOlA(Ebv2w;{os-&FTRLD29i@Ne-?n&AmWN#y$1qzTw&hO$0ntVrjI57bXUjatt+?2 zQar?S=LT-ispo7_j)rBg4%0GBE3`5>ELVj3e$rkSXq~NoiPGTQ@|!tV_uvN#|M-B+ zdQ`qfMq9qcSyvaoL?`${G4&1pS7_1h2H(EpLyb*|K!`JXgN;&cgd}X*Bx~PgV|G9^ z%hag5T$@D~^0@I@zG8oRu|@Vuv6>rZp#)Ni8<(f@*DS_o*g+cDpU6pnz4`FCD9&}v z8C|(W$b@qzC6iF1 zu|wJdPprWlAA;2zWYbO8Iumv%k%jF3T)CEVTwQ&GR&iSQCoqF_sw+ZTkm6kvSSQa4 z^|K_hM;n~Doy%1CksS*Ee=UIj%oGF6MO!(WpPuuyyu25=LWKaqQEGi89UY!1Na<0u zLFXKIr3KHVl?XL{Kebw3iYEZG#A%~3!uF;ehrJFleVtaJre0CLf(xqtqzY*lVmWfJ zynsavg6{MJ1K$ZJ;`lWz(mMlHzqqZkhSlBsfh;9fO2s+{XWv`Tjo?+UjQ^WsO_=|_ zAcx~Tw5sXOt*cfMEzoLuGs zVS<_L-e;>TJ^R&dp%-=RlqU1`0vjohyI8TL=(x5&)(;3z2g34E-|bh? zjFFR*6Kv#1(RI%trIU-!t!VDqJ{%1@Q}_ToMmd@eczimoss~hA1$;q}5@jUP+8$Ya zaW=oS(v?0T)%(qBwKqcBmIz<|BbIC|rmP{)S1KE5JTcGZJ3{8Vp~;34fJ1~+LVf)_ zaXOSWoK(Zfyg4f}i+=DGbn!rDN@6Iu!2`oCHmk#|dAr@tetWjwPYA_0B*T2!PDqZ* zM#Fd#Xz{pa(RPj84Q`%Jz5b4JQwoYDEwA(Nl&K`Ny*ZA~ck7tdMxGIUbG)UV-L8G+Lq_zsYv33x-DUWw((DhTVk>pE@U5jhDO~*qT_r za@CQ(xVDXTh^xB{+Hjl68D7reJ3fSfeGMtkLC;+8Og&F5G5|SYSw4hD>YR+9h5Uy# zHMVYMiTh8DSSv_OZ1Mn0zY}cD&qj4_U>RogfiJLi_&H)>Tk>^rtiUe9SEKae;YLUY z*F?Zs<~1A%jkq}z#~`@2!^pSqFSi^@NC;R#dPI_Q0Fx5$*vPx~?>syu5azfHr9@rV$p7x?vdzRJ0Y5`Uu}94)xe9O<4UX!nP-lmszku7C3_xY%+1`!}rL=zli@a2RlJH?mP%gL)>X40iDXX8cb*QCnIbP!+G_>*~%K` zJPE3cW0qIwOPBSRR`>0!CRjU8q%*D7XxfRehCW#}vz4ObdSr`2x zE`ZwvqqxQYC1QuJ3cLbo zY|=343Ww>$STbvX1B`JNQ1ahBd*|+iZo!J8q~ij2H_?>zSCgAY4_h|5vEVdID54~g zr&RK-85U4^BH!wh_E@ouaDt4|ZY#aNC|2R<7(H_!*D>YL!PP&=$86G&z%Ap(sVrrM z_S+`oxB0oakm)Q6Ae2!Y8cTfP1>t3*e2rOjN!v0Pl-{@kKp9_Xyk|Ej35Zii8z+Sp zEfI5kUu{)EST@O3#^VJ8{tFTsO;SxF`_*N6w6SK8>nxEIUdg+^R+ZJ2&%zkn z9DUkK-_^e**PGTwm{eW$2pys(>x9s3tzJrT(VMmM zXy%+R!i)-ZMkv*ev^lT%9iCElcyBV`Rle--=3=k38jgHi%8QYxk9QgH^JW-OD~}%$rt& zm*Pq4k8CZ>Rffi`>du#;Rh+h2Vzjp|cYZr=A1rl^&st1u8D*=;7H!ifYKeAUhdP`w z>Bf;2yu==51jvpS4Uz2I*rO2!ysqrG=H#rF0+qi?e5jg^+{6PRI>OPZVFk zggYKRmi&*g-^Hbb$3ckmkkIEo941UU9QCob_tI!rNX@Bw;~a_O`(_%Lz6&Fz_Yc;l ze{oufAEtUsK{N&eH{@(W@rhZ#wS&tj;2aYb!RS53_Vk6ORTzeYJ zW_1dv-q{}YV}cL?^K1*`pGP!IigjX?9KSbLyxy;!=KZB%qL=Sp`cpS#a6B6bY1&(< zVzh<|^W-RekvR^6k5^t#y$D*AGSUw(QtL22a?v^*9G6=3TJ-l?a1XG&qaBP~^2-Wn zqYeOZZ?#tIfv%*W6}g805d@9@JE0J?G3>2xgi&?0$@mdAayR*Jk}roQ!&Zwz6Bs{g z?OKfBNRV-deolDv^;*1PY5fnU@`rM@NSu3-M3^{En78BKxI&#B4JT$@eVKADb++N> z{mBx?sh7_BvgKSZL#Da4s}tO4hXQ3)zAGXk>S{kKlNMmgz6nduR@NlD$YyL3GhncxJJ(%H5Ll{YUc!}J4H7G5J(J}K$M=mzvbs=J2fTsN{1$ha!E^q{a31fOl> zMP#`SZWUD-dD?hzNU8L4>K_-v@}?JGXdU+&4LVUYOK_m*e$H5o2`Ha)mXx*c50R-$ zFq&#BD};EY1fUZO?zJ@Ep8iZtpLoBbpEqeW2AtRh`>pK*%W!DaheUK63PLY^FvJ&w zt4=U}o{DNLU5yp!<5VFa4XF=)>cs$Z&Pp_--^*%s!<#Y=P`Ns=4aV`gb(si1kIT+4 zAiqsl0eRHe)8%m!u%P<5dAXtsW_VDwd@ugR{< zEhE5`Rk2Iu?Y7*Pq*(OI8<9oZH|1(etRpp1&S_d97B2ey7W@qZ#^d#MzejXHBc-r# zkOzLYUmb%hs#d?g18DfFf+t=Zk>=NMe?uXrXWf*8(d%QiNhRcgn@1Y8_Y0YmR`PLG zqR}t4;q5AgSJsCv&xD`_&%yF3I_*w8gOR&51Wb7tKCD`8iQ@DMgd_#O1D-&2-ZbF@ zE5qT|s6q}vpP`QZ?%b9vM>r{Lm_W$(g@ zYt!-KS?MvhLoJ{n`I|sfEE{7;_%75^RLFC4XdjB2EGlUeA(OpDotfR6VG{o1@e{3$ zmrBeFSJaC%t+5&rdxveNV>C^8Kjt`Jstp?W#z%mH{3M>cJ)9-ij}Fb7GFIMB0bhXq zV0B4T#v{i08D=ud?_}hiKN*NxH^_wpyeonFJ;PSfF1JzjP|*;&n7s)k8BmF-|H_47 z)u@N}Nxol${3A?X|74q{dNW(!V+_?$gHU(tCrUdyQ)@KmoM(Ov=|$P4klf*h`LV}T&wL)8e`AL<$;38i^{33RrP znq7ol+zMHBz3>YGE^2YKtzkwI|E^B;z3CYBh z5@oMBG*PkmP5O?rN{fA6i{tBi_=(h7##_9b{oI zJV}I8LrckJ<(}%`7)Td_;&b)vZtLpA2uot6ST0GuHS(dgm#UW1?Hue~@>u6p!*>id zvOAfh)<-JJbBcA4{*AJq$!y_xqd1l)lfb7@X~Zf(1`4C0k!AilD#1uC(bX*f{(|VW!H?mJ2A_@MSs>((XraLS!o?KnZZzTLaIwP< znpKfY{3Wl6_9p8`9`cNr0>lODAHJ3qQYWkB^;l7RM2=NPC3m+lhr56+D;gsRr2^@X z?sq5VO^qnhY``AB_@80&wpqLi0AqkKW}~TrrZL9hXUd%w4JXu;!b-)EzcB&xyke9# z6EC09CM~IP3&Otluh_`_Q4*}^66{i;6{-(XUi>8lz{M5$vJbwVQts@VLpn$n3x66k z;6U+1R!%a2hq51$RZ}lTG_t2|!5U+|LmlhLc5Th8nHTK>WO;PAT^|RsuGIV@*k|o0 z+^XzB@5XK&xeNdX)?k4;o}9CTytA@w6JUw&7#C^X>z{EUPeo{*|sMD z?zKR1#xfP2$neg*BozH~=_OpZpjh2wh|h#0D|WFH(LOA3>HD-QR(9|?4{-Q0ka;J3 z%$k+F+Y#e;lb10$!>1roI%x(ZBK7T4i1t%mv{Wwt*rSQ82R>9ExT4Xi{%`w^{V%Rb z<%T8=0dtS!1Ayutp&7-s4T}Z85^wAndXcV>AZaxootI|ro0)(ew>~kfha37&YmM(Udws+p$4N)Ub z6psap#px4yvkimx*`QmsnV1V0#+kmFNU*l8w80tP)J}YTz*`B;AWwY(`lbr1jMiO{ zskhmV(He6ij`&fHC!_esHd|0x;02|>z2D%(CpK@}D)#tVDgQA0hZro^eF?A4^+Ec6 zt9bFq!YG%Y`>A@zVR53P7^(s)3eQsP@qVEPNXZlO3MJ5uA5?C{fZtTIh&9!;L~jQ9 z($IH2P!uf&aG-PcRhA#d5&e+z2A@SC&QyL-@V_X7vFXJ3Uj7jj>&J9%#V|{9_5MJ&f#iWp0PI)wufh!rvZ-9*#?a8I#e5k0pWz4 z4n?b~@J`hA{KyMaWK8+?7V-Uf3NMoyFnfd)?J~sp_X(lCRqP|7))-6h6zxNk2?5}H zY?-oj>rK@tSz4NZVImhKI4O^nX3g+tnY=pzj{FN2xr-!ClGKQJB4E6#Kd75IhRAzQH~(AxltaB#v)Ko07Yb%A8Ft^o zFg=BY-EPkkMNS^E3`BjXhdc>U&Pe5{7%XgRSz)l-vB&d3r82$a$yvu`sk!2U&fm%g zgX%+68mey=K@WP(6BKMJG16R*WE!g0V!!j@Rz!w%-!3;$mM+#Ft{>xrqLJmXAvv_@ z^a!4W7N9ev$ZO`8ld-TxMn01UA|Lnh8D~mYj23tY1^PFn6jA5v7P~Ca{k7ZnJ*(hi zg0RK@*Eppyj1+0|XR|5dN|yNZOtgep*a3tOV9vJ7(~;{l`bP#fkEMN!*&{{pMc!QE zrlNhP`t6=VpY(J7++Kcu zo{G{0Qf~HX2{EAfbcPV{m^v(SQ`a@RRa{i9(WtzcJ>8@&{T5I!IDeDNya2Enr%upe z1x0{>)lwBLd$~%pr(Wytz-V04gJYYhIJe>zrHWU@S zG&#slbn(Z(n<6|x&(6SHEt(3aBpG!0>(rz2c}$P|jQ(g6#vlDeq~?1T#?A}?Qt`#f zZ;;d(j{oht!n|k@%KXb$O2N$jMGwT05~?`__6=(Oufq%&`eS4agGslRca9Xa?u?A@ zwy$Fns-Mz_jYmkfoy~!zX98Xb)2`adeuBiuvG6a8pGV4)P%BWOj4~QCv(mP!! zZO83LYYQ$xSYX+xn#_`E!mP>B8lD!X$Z6YmA2=RztQ2o@a8Ws~QMT6$@d-7R8o!I$ zqR9wOj+AM!P!^S!!Eml5stbiI^iFdWk=Mz-6FfZOLK!tEl^aLR%C}cp-cJE-H^U>> z_kB1A&d#r>&VTkZ?P`wE8~%PV(ir*M5POyjuce6*m$qb?aq){HZeLqtJrbEh@M-LO zxjD70l?4euq&NRvM=b&CbCoY5M*!C0Hy0TrzCXq>S||vvB}M!ML%aO2Fz4Ve;YryX z8Tm~jO$00H`wWhaym-Ny8A>f36s5=VI6TxtfYc=Zb1NikM4n(6RdoTS6*ls6%7ep< zY09>5xMSXoBPweKCL)pIl&lYK4>0zF)6bB!TF=3WmyPMGQZOxddo%j&M}sB}t`n!d z)PGtUq$z+x@SpT+)^%A#y#totQu%3w0)hs=eIrRgb|?Do23^s%|I{p}3NR(vU$rz5 zy2lo?9N4gvkn5hV7M`A%F%q#yRlPb9c!U88ZnbjlIO>6pm}Oh9FD zs`ZLubaUIuQC@Vg=sE!!5pCY;HC1I3Dek6J6Vex-xE(60zK20Vte5j>DNO{kj}*&b zy;i;>nL=9VjuHDB2ZI(-ddC=w=Y$2=@c|Dw{`-ro1Dr_Yt7^GBYZjn@I%i_!@{;9r zA&jA)%hJ&%fa8M8+{f!>MJtVnUm#AYT5jJCeNgB{G1>W?P(Qg^&E@6`H}Tj}Lxa|vj3@;wKER4xWIUoRQoeo8CMkP!JUk=dS$l4mA)Ku9=z7qMA&Xh!hLQ+7 ze*GbF&{v>~e#IBJ)9*ph*ub>AtPvSwzEt8ZkVOBsb)EMUn^;h6K=a2Fy|R=*Xh91z zv+*cuf{!uB+fAG~*rQ40o*S!PSqZ;Ahh3Env|-SbyUdf`y;?TYZLK4!Jw+#W`{pO3 z)3qJfFY(atgbjsfKO-3dSQNFcGZxo@UmwQ_FliP)F6{VuDF8m$^uC}h`P~=s{(}0J zW$wkn#z9d1v=wi4q%5thwC#z#u#XqC!h)Xuo&7rmVB8tIIFUi*`K>-&9s3rdL^giq{CID zdU_X4Gy=L8*Br&(xl#7FGgU%5i|RR;Rdq>w0kkm>-`|scF@3H>(fY^WEc+}#-NU~J zB!LUsIuO>;tG(8Cy9ccqFn5pv&pVQUb-kW^M~6WR%$+RaVgX;yuK31(^5%K&$s#<) z>m4*9IC1ij?Oao)XEN|uZ8-!pIpNEMA9ejyG3&i9msp zcNC8<1Di;xZimu7tIR{MOA9TJ(_1mGNz+!_o~8Kh;!Rpc;A%#Ew(!f;fVm$ZD$Xk~ zazdgD{?y4Y2y2WRG z#rw&Y1YnUE3~1EHo$Vaoc0RH{o<>RKbvA#?m-aAQiE@28=>LYFv#g5kkHgn2-Q4DY zZAybJII`NWIvf}(6ef5XxyR?SB`ALAE92PfVb z>2}UFm&U8YoOe9ej2E)Xz`wPN5Yy0bxN5~I9WJVFuw+$H`t7%b1Vj&{IT+bVi&=GX z1^CV=m^U6o;>?_4>mD5qFe>`ykZZ$iTql^*u=Pqu4v{i@s@0#9Y1YLQFU|&mT`dRD zlfzBw3z)YvOa#)nxH5Q+WTyzKMjW&pvM<~kf>25uU^Q)Z-=ScStos9Z|4ZaR1sL|b zS{eBoMUCq65cMRvc1n@F$rN02yb_?DwqZ|b)l0(uN?DdNO)^uM9-SxJwkO6TYH0vo>y-r#302c}cfb6gEWsz0uuMWPr-AP=nDRkby`5uUHn76FxDr4MS zIQJJ2H{0vB2c-zOpxPDa9r%RoJ$q>=!qZ+JQTrmgpD)LLpKtGCiDkvT*fH|%wG!_H zZ(V@=LJ_sIpVbu>nxbYYes=KF!XW*6T+j_g*6leu=HlXC7Z*kuKNovhoJK+Qet zf-(Ydd@!#9YBg!T`wYq#7s*(cfG0oiz4B7GJ8+}&W7p*&S4v9i@k;B_+Un{x{&?VL z)UXSa*X{Y|_O?X1^{{X4EMuvO@hINFo^#PTbm&G^()mL`NxBvQa#Hepmcf}nElF}&1oPo?;UrUKy~}x zUVUp^Dh@Q&AHLI`Q2O%eq5UiebS$~j!xp5gPG;w!+h?ffxfz{im53Pqe=Wdet*$G= zZn;^Z$u~FJjT*~jMtv|xY~Xp8ndzZWW~Z_fBtlSI+vMV&%^FbEFzxqTiV6cNdB`?# zx}wVlA)e@8IdC*GYm9O_wnnP;h0HB>1#d$_LMwiY(>n@5kj9ae^O|??ev17O1GqtNGvw_0 zPuP{)-X`hCM$eEHX_?V70HLSfUni%Sp1FdH49`ErR>@?M<+h{-#ZGRfJ40#va(nX2 zf~1_9+}|r=;|%NH<^d?E(lW*~zDOz{R+)=pHJ0u2py{&n2Wz_&o!>g|x(O#gNeK4- z7Lm`1Dxv?QA@Qp0vk^|FVyJwEC0FbuzJL8%zD4XV>a0%5jpXF5J=^j$e7J1)^YZai ztkPKELVd6MP;eD$V2ZBj8#xZOPrR>a2u`9_pU9ss2WXmV+G2}V2lE=4c*fj*X^b&O zTLDs#RR|$~7Y@kBss-Y_A3iCOSd#X*=`fAlL-zA7bn`kqeQ9dQ-G3Cly!bmmFh~I& zpa?*`$~MmYykd*ZL=Wcqvqw}j8R}IQ6P0s|`M9qh7{1f-_`*3;s$j<)v+`2-BsKmq zRR3}3sV6t+Ow5tf?Aa}ELOuxU`IFTO0YQTvhK4RZ zl|V;byLhCt+SfE0-yg55^gX0(Hc=V(9uLLds^~Y$YF8`U0^YabNuV&XJmYO;t95}# zV~l(SJ~tl5X@NXxlyeIXq2xVL$H^bwCHE_dw9I|Ws;O?vc^Ul{KuoQnQ~yAQir6{E zC4|liX$YZC5uU4QsEy>7d|;Ohc#=KHGWyU4m4!8SQCJC3_QdmRh$X=t*n;hu+q0+) zndfLo>u03*+@PVAZ$}RKay*`GSvg%ASxu^RWg4t6e0C&37FiL{sMfzTkwb6=o{pGp z%;T=g!5uB56qj`ZL_OcLnvWT?g>og^fIoaEF2ZTC`07lgWJi_kQ|mMnIYuAi8sVOvR=s#USQY&m4^=*@F7c%nQD2JULIE|) zcSj_B#U=keX(znCJR9Nl2}SC5$83FZ^@gCs^VpNtest(&Ss@zYNHO?y%edlwV|{-( zSG}=RTKbc!7;tdzNHe&`hj~C%#x;AlF%sQbk?#v@G=3LO(E1OfTHB@ z-I3|9)$6{f@ArKvd=Ehyhz5^Ff|0n}wN{=lxp6$Z>L!c64{b^A9CYr38y9@v(zv{V z!J)d9?HT!-c}G1r|7iCWiB%H_{4wzUBsxpjA%Yv~x_C95tlwJpqcn6sTbf&H?$AlQ zH%`eJ_!TlI*e!DvX}%0>?2jCM>>u+qdX|Y|6aE3-d(?JEhxBB)TjCzo!$sx~HeCHs zmTTf7Dbjr{kZ-Cx7SD*%l7G1$=z^xaU(r<48p6+R>vn(bClaus?U*Yz(V;P&!*+nmvFC873YCl%*M6VayL6`Q*p_{VjB{DeRH+*wJX(W-Jxv0)Y^u?r& z*-=foxkS(!kLm5v)600t3xUXvsIfFbs7mssZuw=orSCLsRK`Q8Y+S3pS7R>=Df}|q zSR+(z1{!z z#jR21bgu8@5fjosM!6*9!_BtDTnulRWn1h72Q0{3q?%|WOds^&k4OF(#{KplA%UR6YYTIiJiTd|H<=lu=*$75&GVn+CgR}sMG4%1i~3L)fn4} zIn@S5El)6j+TGe7qA;j$&PeiZM=*iu*e2G+z9|8>BjLcS>v=1GQ4I?%5fey(Zi8)AeddS|EB)4{aLLzHAOv~B%xb6Vrz@4O71(6% z7?2r}9jb&@U+b%#~5YOlqT|O{|+MvDX52XlCGfEqjMXE@5asvpimI8$d z8pwH8Gh|tSuTEvcr~Q=`(t_29J~7Pc4Zw_O4B)1{yWlgC#^%VaI@{xQvz6Xqic+FJ zoP=zYjcmzRpibTyknV|3S3S{ye;}nBaXh_yPv|qrtp3+Uba& zo;r>}AKr+aPuaj*YLONkPMx|}634RTn+?vmyzKnq%1Q`+bh>(?&=e3vfxp`;2ZWDW@bWOnG*xy!{O z`!ltQ^6l$pVCAEUpqD5iE!jfEXP>NMG^C9!wD@iZ8i{mgSWxDT(H(`vf2s3NQteIOAjsP}< z*2PF$7Xysn%9q=K{eL=E$BZ3b<#PSBU#z{)*=Kt!K3X~TGS7Z&&t3TVko6x$;nY7H z1r6fsp?gr}P5pC}FQEa}Wc#N!h~j%3V-dkx-By9#_Vx))*SpVpokc(`UZ+#Y5n=l) z^`*r}i8CfHi}#lI5`wjJ5o3l`;ip2$oGVruVuj4Uu#;Q}XI;{cz2`yufXBVWV0C58 zGM!P3gOm&GvSqOQF~FrJrA|aD@Wy>v5{_9lsC#suN?HwFl%JXbOoN^544s*{QAdB< z!QMNgjlQN5|0L6Z&lj^MEQ8|o=yN>Dxa4_<@ZQ*8?J6Xch|DB>`Mz=CL+h0MqAeO1 zwGGr%?Pbd1>;%%@=vkYCUj)1TGw@u`FH@x5pE|eAi`G{1@kRUDK6WIIOeo#H*3cKE za4oG%nGe18F^7SCI)`hR6GaVT|ELasy`Y)=*da|JfU%6ns|B3{hvH}4INNTqHk5f( zznFw6II(AWBNbl_tyb=Av%2BRh;mUsm#4;!%?w@~m?Iw868JeO6#uHjU!JM3e@THK zyQbw=tgx9MzRS}|{B)*oSA+V42~NPsHB)=lf>KP1uj<`4D#oCe%t)*jTbBZ^nAA)N z5W@k1W#a(qe&G#2R{h-6&SIvbVc1-pa+l3NR<46Ndg@_IZ=01lzdPoY-um^RR=p{g z(J}I`D`P}puqWD7H`ig%soVXZ9jRX7TpyH}Wej_-fr$LG#r^Avr+crq+owl$|NBy} z$<~@TyQ?SWMV!Mb%AAU*jhv8ACNhYX%Rrk!cwlw1?zOUgx$cFDQ@$_!>iQsWbmT5D zGuW2}*L>T{>LL8U_ro=kf3j9(+NS*nYm#49WJ%NG{$v^^k#!3iCPfrx!?kI~>D7U$ zr+*58S{`q6gKnyu+Y}Y3;9Q=5pOId|eWTl}`YTQ}AD_?fl;7rJKxdd+XBa#-&Xl(> z>hio#16WckE`8&_4YH9-fEb#^JF2wW=gyoW^=?|~o^oI;l276+IQ}Xx8<&elu?#%m z9n}b{G0BebW^t+|Kw&!e_!<|c2ytb(f$*zqi{R0#KS%YE3Scfe-)qgb>z>Xz7iPDc+Xb+3O&&z_BEsbo0Xn#xXK1Eoh`ilXi6nTLngilg+ut2 zzk2z8#A2!q^>bt1Yy9Dm1zZI#Vh+>MyT2kSb6?g^I8hbjDs4|;y_0WtMpwm2wRGUb zgeV3%qBzpy13C%mdbB4b;ydqFuH63q)jY6qe3@eDCz4<~z=@ebRrdX5nVMW}>=ZV{ zCY5rye&=Ux;LN*m#M*{z5vJG8`txUvqIrH@cJ1}CXAsYjBu zCtj=lBb|?el8?u-yQ-=l8JzVAQy-t1aV#xy$+U;qQGk|H0H8GYA7liauXom*NC#-k z8oD@To%5F3{Z0JNOp)ON?>(SiQ8(QO1_#J%^ zp1RZ-$6?bI-L7tS1j;y9cK6ZhJ^thIZKi?L*x8q0&7ffKJc4I_rbd@tahv&$i_2`at?AmP+SQZJ z$t7`yM$*JY_Ez6{&q=bBz1)B`-`yAY=jRuCrl(0HZ`NdyJdNqROw8rl3iboosa)TQ z$p6N)kg~V?cTq?T9!H*~Lpd1i{mcJD;xyuw%nKpnnW~Z3E)6dnCO4|qEmS1U#J`XR zUKi4DE>LvfR4)&3@$IrBUDipO5hWqU-nk4PiZg^Z!UOWG%=IxpBf0Z+FP$gdvkJGX8JjHJ8o#p zeUn7vvV*^Rna!SWuPpT^%T3#f6C0)kzNox@J>bhxddaVMbiPCiM=jd7Awjo8EYpR) zR`yi(E)0gx3cImSzAEm$%b{IG1@-U8^+`h<>(HP+BVgp6Zm*&!@biCn^_sbVWT&ui zpmB_bgplZ4s6?yuPostCUo|n3(RDq&r3)Pu%sLbg>vLVWT%F8*z6e+7p$Xm(I4_s% z`WAr^S<<*x8^U22GOnxSCn$0xp{C0q(U3c!W%966EMz#IXguQSGi@eFFq3n{^()S) zVpkT?;gxKu`js{ehz6tjpyTsf1_J*9#XMAwd5eQKLIM_a7XDCd6T{MD%l&=I)EKG2 zQIlz;^Z7&Ec71@`geb{$I}4FDaGdy;3VSnawE+1|x&<#4gq_uF#n)t9)C$bM5WBv~ zR&_jb-aHsWGL@;DO|GXLJ%O%z?*@ghK2x22{CdSc^*$}6O;(Qx;LW`ZS z4PngVczEJXejC%vk?m$AE76k!Dj`-+9&6{9(cmo>iZUeO1qdi74I} zu=9AgF)sZgf5Be4^EBI39gtvsf=$`~5mUDB-hv%WjJ76H@;e0SFU8PtS3wA-Ep}co zI}9`#=v5}~jXb23o0;I1*A~g`3wMf1OprpB^VxhGQZQX@*qS6) z@s)mE*jTM;q!5mU6@+GtWn#$ry@Y?J-#c|j6n%2cwVm}bGb^3OyYo(N**{=liSsM% z)Q=wsT!%}rT;65GP(8Ux>sWgXzZG7Y5$qIDu`=T)m}zwTg=Ar$#-o~d>T%7j?zBJK zjE0`ruVr<1s({8I&c2`YIW1MffQ{BE&3R+=ddbYaR35OT^gj~Sif)z>de=pt*`7$t zVDB75Y|R$MhuS062?Zx(i1r{E38yb3hzaOhaK>zKadFSQZx?osXJ^zm*Ft3Nv`|J- z>xnGKT?+e;Ir$G|<2{clGZ&uiY&uoqHPrlS4XL9TUtek_^Y^_E$a*?|y>Y?m-H!6h zB6i9yoY*15@M_G|h)Ld1S=*LrsV=2elCp1Hjer$;;~;kAOU;iBz__g_}g=$+{naDqfp1bl)z5_bv{)4xtxkjWf(;gPj%eNm4!}=;Q+B85I(NqOC zKv2cO>Sw<1km+AAThdRS=^9`cvw%S&SC1@OuKC6O6rLoYms17Vhrfep%~&2g+ka?n zvjr$zo3MNL8P%*F^3j5E-+Z&b8;E!rm{YFV7zBUV35^DHT}X+Rz>0N|*szW<(QY>m=**bg4v2fh~lqO1ede3?UkFV<)E{koKB(mxLWR0q;Q4 z%|PRdF8>Y4z^~Bn zj0n@Q4=a@H7(V=}RmJ5J)2k}%&N)MW(=btR@(!EHLXZ1=Dt&*rlj`~9Qp^*^>fL%! z|HeAg?;dPfZ&au(%B~!0k4%rAOqq>06`4Oh6K2_vfjtr$9-A)s;aXz2hCEIP-oif? zb7eMoIvp3~+oA)9c745 z6-$z>BaO5yT64-E)}Trr7EfFNMxaddmwPUZWU?z_laKT2sux?VP+biP8>;GHpr87N z=tRbqK-`u{#Mno_2tSo>m*1$WX;X&X7^TwW#(xjiu3lziJ-j!gsG(%G&C9rW)CyB; z61pM}H0?0A$On+WRY~^8ht5q?d~WCb&*p;``_H1<^}a31gf;J7E+$2EJ;v8sVJ>!f zUDCK=gZ{%dx2&#Yxv<$aX>?XLt?`?(4!v6qvti!$ra5Ctor+%9EP_(HiRppn%X#~Y zm{eS-u50t$(I5ZH8l%?g^o+NzKV3~ECyblG@PX4!Y8JubG6~_#7ob`r7BJ~&q~FKn ztcc>vei{Mg9zfL%AuJf~A(?eZ}-vcY8-C26HoUnTzuWjGaZzqNYts;NgHCb&y(x9>Z#0e2p*>mJV)}w^D`5Sd*h7wOy~TF_GSKt z1M;iP08kqQ-rxyp=aCDe zcyTEAzf+IMkX~lMX2#J=O*w{Tx~yd*JrOtVJLn}?VUm%(A>j#%JXFcL-@j>sinr(H zhi-Q2Gk~psecl|bUiy_7YX>xIAOeGuk1R;~Y$@JkeR21Dbhk5vcgcg&YsFqam+UDb{JM zM<+b!g4IU*b`RQEkuVEX}z-6FU=s*XyOcD(yRe^na=XTCq#K!!`t$Q#+Z^6i$X+S85Gc!;cNy{*OE| zp@Bj@^02{Eb5dkn(?2&&GL$UqW&=0t_L{UZ7ZBPhCc|_36Ccw40!4x2x6VgZa1EEw zd}dNg&!omoXWEd#55hr)FSNwp11-H9Hy9622KV%Ji9mC44G^qemk zK6~wvnfreKib3^6@M?dbC;(I)*kXHPcL4Izcs8hH$!%;{j8UTcW z&zdx-Z19By4~5XCMGl{3P#t&s1$DD?KT*>MT!*mEqVIK^=RN;Y$p{Ds(rl+-*;84s zHq5cj>MW*ac={S0Rd6;`M!<8tmRKM`sXenwyQ_(UGaob-puv0hXP3c1Cp9$|Ns7cK zi2*}~ImO6H!YvWafNi1a@rg|;xe!_f_+Ifqw%}=lWY#`;NdtUEpF?M)*`8t;e{H1M zTQ?ujL8Y>KJS2uVI69I788S$)|J~nnZZ5erZMk`vZWxa!VQ+tOjtjVe z#T`}S`w!=zzuI4}*gF}#RG%qf6aK(l^oBLZ+tPZ&8)bUhWp0<$FyS+NE0>m$`Nlz(tyCUQ% z+yhBfxsx2e0a_To4<;dg8uaLIzRX%M>__UQL>dDLMn;scH)c9F4s2O?jh9h9qX62f z%AO=lRQ<=KcB>YzxW!&7zH4fjwiIJWmI0;Y%>o7bs}{dz{A#B&ih{tKcJiZ62&L|* zoLl$lY6vohM$zjgKcMEOo1k<+GbA(gx0*P0ls$FoKjLG6I^IaM+Zm z$nOGzU*A0~_z?;Zf%oBFjJkV=={XiJ!YCt=zYo*HNyY3VDW8;2J$#Rz{5z2KLmAx# zteW}_a^HL?nFn*!$bPIeUW#IgM4�E+^gzbXs1$nC`}W9zhRVak%@cJI7OAUNZa= zGpER1K@z>7{NO4S+jJnwjqv7E?40Q%#)|KmaKW~Vv$MH_JE>2JjvwrC8pRk0D)!ZLMOTe^uGpC<3Qt0zD_kLM$nVg zbfHTD(N2fG+KSx&qv@;Tn*P53r9%OE(`}-Fw1kv|fYPwhB_cICMmH*`gi1Fk8w*B{ z7~KjI0wXpWB}NOQ<2OIw$M13f;~(~T-FweH&vTyV`9w8ZD!d`Q8z=+PN<4pCdd>~X;=f*C4l!E<_yM^;36rcHgEi@@3pUaG5{O`1F10+N8osqdZ z7-Pxw_w@j#zM zejVYyIv*#Q9U+!o>vpERZ`9tPjCVWq+_e*)bULyQJ9(uT$Rm2a0Eril&f9nYWVZK^ zulBw_)F^bT_OH#8w*XVDaG)yDkhfFgwTB_PIk6*#&DS{c{QZMnly?-*KQ7T94FaTIm7Rwrt=9o%m|o^9(y z1w|SVihAhsM{)r#%pyvgicL1-Lq2RNX+DDEfE8|!C6oMTxEyxyMXf7qdw^8t6UUwEl_xu4mVHtubgQsQK$)Zr@6 zdgSe-WhQ)5=O+wQ%RPDVVP+8GRc z4(s1$^T~-Y`VSia+~kHI?$lwDcI1*3Ac+5%RuGot8B1ayguvyp9@eP8^rR{ zd=(i7%GOTIF9l$b>v&U(f+65TYwBrynb=*o8UG^OBX^T;*cwIY^7RQIh<|p&(qv$L zSo6CXe6gQX^k$|HR9u=ZPta}_a=(n%imh}@Bi_4Xvh|WdiTHbrGk|7v?DVBeG=+ox z&*GBVR9OG!M&50;cU$4HXpieI@7(3<0@)vk74+!EK=g+KVuGXXto4X-@Xg;ki-t)4bW z@Qp|f6@D{xQXYN=Upe_QlFr@!>u9cL*#0z#E(U5I0obK9KH z>DNf{B9+{(Bq;Y_i!=;ZY_+m@nXrUXRJUCJ`A19)bY>qF+K+9a1D`i=* zk>`pfYdJ)=mV9$;1ToR@{giO63D~W_TDG1vU0-IJRi{>eT7MEGbAjhaGEA)8b&dmr z=iqK{g_ZFemMh=xpzzvULB3e}+)DlO*R$YTTGnNzTAT>Gfz7R%9mmS*H*v`Lz277_ z{r*8gXGCEW4RZGWv+NW|WlH1}Gbd2R*26yi14#K)(_8gRujpFXkW9h9!q|8SE^2Y%RO8^FZZ85DI8 z6udd@lHL_E!X_>2d@ePn#11n6>Z4alBNda+a7O;uJ$M8s=DE4k9c6{mUe37aJ{rz! zgL5GcErD&|mim66c7Y%*9D4St);I91AQ33KQ#9FEVIRdNezp13XYZWEIofl*M|ccK zUEZ?*hQ2squQW@Z3EX&OEJ6%3g;lCB4r@6Vfbi^nf{s#f)7sFl_>F8D?8iS4WZE(8G z&EAv@DLi4KZ6j0#10Zs-AmVPSFd zYb+_tYUe(tRn)sOi^ynsn8rUcx~)L}Ye#&sop4)ecR_=sdSANNPQkRaFiM~Ct+gRe z{Dcoi>19}yqvaaFUU;j=Or`g2Fw27nJjaQQi#!|h;7$3ttFA(yz28E|-#9NH#$-D0 z(jvIenzNZ}5e$MiEy``iBINF%~dvI<-?~L(g2quF4%&vytx?rdBfz+}tbG|a% zKVYqOdoLzB^q~Y-Qrc1hnfOKF6_a=KCH*^VYkEXHzW;U_S=lC=`1VfJn3xoMS<<#u?siI5#t>>vmUGfD>od* zdm8B$xdRXz^_A9@bD}_90&IpwE;k#SRNHJUmelXjUZx&`B{pSwDYGKtu7q#ljoDtJ z+`gOAV6l5?yJgVl++pb1jP$>rPn!_2ttg}1HjX&ZtAgh>3V*DVG^L8}E87tLoUi5~ z=}vlIEN%>DUGfnXKr_3))|q_zNP4|{r3GoB8%?B_O2Sqq|T|XoadsRg9#If9*p9KBM_6J=kL27&-T&cRaBHu zB`=pDQC&1UEpb0w6J9HI1V3hdtB~DIYq>lG=5YxibNRF2iNyM+gOFPjk9Y0tV0OUI z<()1(zk>XJIg3WqQ;v$^L?OYCw@jf_yQv$=*;v_hCj0pX}Knn z?%_qKpN&7PwJye6TG*Y(Hca1)~lv_t?4Oe0%`J7bN5^FLA*-vfN1b>l{P8(4ll(FKaGZLU!(A) z6-dyK$9q>%-4^)ja{+9ZySc31nuPXvlgh*4ySc<=GiBHJBlW@VC4OgN^vBq4-2+-} z$<8bZMBW6}O(WRU4fhJjPP`e2S>v}`M?MpEQtq49Z-miCAg1WQJbCAk^J2%nH`{B@nOoqtPgzXnH<39q zN`l^Kqow$e!Q>T@fIPmiZtFOaF7+Y&_Vw`ge1B>nQ3}%U^M+5B!ntSLAaZCdyDkBu z`@MjC>nqgi^*Yxo2mtV$X*>D~97e*$%GI07;9gCwIohDZ)e@ofrb8>6h5#h14-b^# z8NN;b5%RvF0o?AGe#<%F|F%1cwA~XoXG^5zVRK_KV55i#RWw6wlPPlW{YzH+j+2}N zSE7Vk*Sym^0!9T3a9c<}C4?AxzA`Z_*kWmAKx`~2w5U)_j5)gy9CTY^y_ej*n}Ent z{alY8jFO6QOD^~a;=PP}+JM)5LB&L|NxSk0T^`hKb7vq*7bjmVdBc>!|E7*Y@YMYg z{&v2g`J}$WP;NsN;tem`7ODXU4rIrF8ED1el8c_;$nNiw&te($d?a%h^g07}rR5_R zA5F-~`5chMWmcAlZ`wD!@rdAw?2H@^zgA>2c{enPC7h)Q&-GHmLaVkmvF-Fn%HHw* zu%q><;p!SKFn&x&#m{Aw-7p4X$B>ZWl7A}u|=it(a8df93;?pxxY%HP5axi0IKZwTU>BM@33Z$#Fsf*amdBkD!q80D z9-%Qp3<0;D=KNT_!bV19%LOGeQ=+DSdC)Ub7ND74f}5o`MAF>HGOZ-kW1jHU1bnE! zSkT}~7eZT+4CF7e2D5t(l zD<6?>WA;hn14Lg~%^NH%rIq8(_bCo}?dS16^Ie==b)Q}`IOe^V^9kQjGVm^6oH^Cx zJv#vKp6xyq%U6mEj^J_lY6XxKRs4GgZkQY|8Ty6*ak{}+zElx;&cYkAMCb9J*5cig z95GRJi6pxTQ-a%_m9vENYm!MFesGeAz}AXN=wnUk?P&!*JGnCUk^FmfTDzZJ#~x2u zX;ZpA%yJfeB8sbiY%KWaF?a4g&Hx4Zu%&x;5hU8*-ceguFXVbcA4|7yV!(eNg$Fb9 znt)$Lw44Mla&LO_(+~Pz$!giiP9g3ElfPQO^o%Qw@iEPv*}Nt;*_Ok)rjSq`XL^P) zei{)piPE$N(LF=*6=L3)_TBLoL> zE!@Ps!!wih58JG0x2q8&l{H9*VDfH7w5C_@;nGAM1+3gy3^H8C{d`Ma=NLCDkAGQ( z3any7@T7T6L#PO4JPwm3Mdn@^p0K?7B=||0@6Wi6kSfqSLMR01(T1>)L#*I@er~36 zS3|5e*sZi|rFClC1Ie(6x1V8iugsvIQLw6sz7iiAbD?GCGj(k~(y-%7o7Lxke07*laE<_U4p-eCjf#nt9aUuDs1AJKk1lXBE6yxxkmbH z40mTst<=CP6uw`cM?40Uv(%00uuKQVM#}AX&*mbk!`sQlG`i5dLi#^OSzqKhEKz-j z9k`q3fWYypgT(J@KR=aJsqzTiA?aYI!#+N}SY$fxAV8e6F)h7_%T8sYrb0 z`{<@<5W{48fHwt}*RaI|RTM=31^ls65LS-BVeJNGNg||1vw?ioeKy6bT3H2ihBDSf z2eoAl#eB2vqEP#J{)YS@Qc#_8q9pB;l#kr`D@KI(u|`8C-;^S-UI~@E{75viyV37f z!3jJs6N{Uvv+5BJH=Fcc@cNu<*~o=HkM@x8&|$J?4aT$nhW?Fxn?|7iRtcS|71{u+ zdJquEGwYx3pl{e4)$7ix^-zv}aCX0^;=PZ#^$&mPyZ~$fKa~|(5m9D5k9(a$X}KHL z8HfISD~|=4m6$MW2ZVj$R(TkugEaRPt zC(@b<(c_8$^jtUR#tAJ)HM2@f011TV_q`n?$x#26&O2XYNgP7m#`Au*gk04Yp6p5q z7>{?=h=+68UmOOFCCL#8DZ|}G*b9BV57bHul)>rD_j1OOb%39|COtl*? zHgZ?x+5gL!J}QtSqO?-${ye?ooh)QICrK1ot4=()P}>jzy0F(Jn928z5vfxD{zy^p)4%Bnef`eA)aWI$wX zWa{V9XR!LS0g9Q3tBd2&%z`dQrYJI`u80L4Mt;V!x7zT!w3D46wex78NC$hE)kjdv z+p%v9d3dY7w;wrt{??F6M88Tc6eA4AZC@byT@ub2spHtru}4t}eFYJWcMsn{g{<27 zC-hj3T#7In04b6Rd3LfB@0%qrgKLbGUrz3J%KIf&v)*OEj;e?h@ee-suEUv(=n?au z(oJSdK=Pa&vmavP9(Eu0d<@>oZ2R9ZT;@<=muoGF95%zjo&8>C@W9&`?oy0<_(Lmu z1wgKNVI6b(%(9el`WoWGAza%RPyYCc$l2rJhvQn=Ey+a~#+=m{Fp;d_A|#V0bb<%G zQSP3N&FC#}YI{?O%nw?A znF#`$6UwH?a%6sZ$n`vSKdhP4iuLUNdb1*_&S&%7Ew43zY*lVzZ@p^RXK6~Z%-%vH zjcQGsVkQvJcf1|cmeRzp6e}v+EVXTv*l`1>t592E1!68T)d#rLS4>VxdoEYJj&@^E`JnJ&wX&TBgti&49$;!(-N zD(BahQKBV}ALi=aBj&2+|A&JE0ZuN;Xkx!VHbsHOb*1rJQSj#+5EULrH!}{b3GbGg z1L<6lU}52du~34rFg9s-#%Srb?cOTK)HO z9kP>^0(V3s<+evj!EnYgh)XL{CXFDJP=T3Ye-BO1cQZmDn;xzADIRB&ogrzl;1L|{ z8CKr3D2g8_*ONOit_Eh&tB1G^D7RJJsVS=SI`brn>5`YCF=MC~PTWI1W;O9YD{dL1|n9N>^mY4CsFOFLF5UXz@fm zii+eP^puf_alyx%D(;qgyuob1Z}y&?D>(OBmX`B6CCBn@1MiCEsZ**vyS4#k`u%?7A^?*;#nvI?FaP07Tau3xdNB!{KlP*N46A7Lm6E zog&EVwcBax)(`Saznb+StZemK6<#U?U2`(g+OneSGVvBQLM2Yomfw!y<01_lWRg_O z&3(4JeM`O-!^Yl#jN#H-2l;6v_B)?=Q8sf`s43v?Dm4cRF4i8JY&@MtW}fsSn_)+$ly<&>rgUb@mjIz+}+;7pkq`M-s=wjk}vn181lQAK$dR9|5Y zo6zoQIG62O9V)`me=-&HcK_^br8F%E-)|3|8$_1e6G3?iw>0zXlp2oBs)8k*FSJb| z<@glY$~sH?XJ{R70^BOt_5n(D3N}IT-uLNF{Na&l)GrXT@L@4024p%pC?ERO;-j!= z3vxPXdfZC-!n$yuyYix4;{hZ15 z_lC+qG7=#(c@Ql+J8-lP! z{k`vc`TL&4Nr0uKKkpzzz`i5Er5o1DVRL%a+A8UzxI@bED@$qRA)$tgO)(sSMiCSO z%`Hq9APw|PrKQh3dO?Tc@^YNt2};bob8ou{SGHrNj;{Pnz0sR%&4+{@c>6lly_%FS zWV9fm5Ze!tTpRz9(ZlKu)U4^eV|`=n9B;{@%U%o?7%+3#nw3W7j`dRSNI|UgwVf}B zMz*m^lN}R)m-JxP+iQW(^qq0CWVmr{fBp%pGqr1O0<6?u7>7=>|7#6cli&~k&8)Ql zv!-FEJj|zZtPfP0V*OPmBa6}C76h}2oG`V1URAt-niRy#xA-z=zT=sind*L9<1Qb( zE3w^jMH?y-FEQ$dQ@dG=EXI{6NWb#{Yl5@A=E*zV9!0UV(@jL=YfB7CdAJDG?XxzN#l&`4Zk^JL@c4EV|FB{mT1Czw`Ko=e}%6n@&F82qPHd~vNQN(iNE(O4T0#`$zVD?C`%nMqP&xoz3IdpV5KmW5M-dGheIUT}^{^{k zfcw7!iVt%Z4=JVCrfj^!oP~K&u>mOaJ}>{?JF8O>OnG?Y&zCPs5o3=T0ucoht!f^a z&%%I&0es^LnS@+W%@!t6&9D(Q>JS>5Peir;90a9)@T}+pzN;7NsWwlq-OYAN#0TDY z2H?ls7W6j|eA1b}WCji~X+ce-GyW7D#j%s^t|~dS{wHU`@o@Ix{9E$!b=8=d~p6dMt82$nsp_$BULW-QYGibc!%m=~nP*YgQJW>wrkK05$E`n~|)yH#FDyEjm`W zF+B6v3*)rm>0}7i+Q4)>N!$7aDZ~g$=wwJ`DZw!-Omcv z(>8}X&A3dwVrkA69ummON}}t2<0k&;q~Y4EnYv2&cR=&y{#E-_&g71e# zcIvN^M4cz@qYTfke|N2sBJ-R80NmtyUt{8H$1Qm7fB&|h z_22eqawA(`xojv^d{>>(sd!F#NRLHK)NvtlS>F>FY(zXJwl55dtyY-~QSK^09!{Hk z$C*?JeZCc^cOXYfvsnS+^VhyGF@bPb1|)UwYRBc~Ur48@P9tX+^UDFpo+GNF>_ZQ| zp@T5ol0{P-(&=^N1R%H0Hq?@0>dmGE{XI6`3&t--kOZbvituHmecxo;smvo{X5|du zf@+jy+HwI$ah&S7&0)0Q-)g}e_|(QUC5M*vR6-vub;R#{#@;8NqUmd62_q@B#hL07 zA)KF9*Fv9=r$ArE_S3c)u?BBbkmbzH2J96`DCePna{J2XyDckor*&kWyaQI(*sy|o zB~#~Yxz6u(nB08n=f+UceBgb&zZ3NUK2OqB`_3Z#OZ7|l^R;7JQz-gOj-<=1zXtH^ zV13SWQ$}V|ww)U$yN@p{R!FGpXnFxJF#eGA$~uOipxRt#WQ!>>uegtmK=l4db^}jq z7Go@#z2ZQ+>E#rWq`pA7Ohd@OKCoBizn)+R<5ZITjDjmH4#DF)f4Gr#M32Szc`Jkm zYQ?FVUob#so=w6^ot?-nd;ip%eTKz>0C6J0GU+Ptp?QKvbSO;B>ow1*^<=*IM^)mD zaakczsh{h6q;jSvu{^n_{C=THDyr|5KO5+}Gjds?$bARj3>Nw`t=edn8)8T-H}k7` zAuVU*NzwST;$?sa%5fWH9b%d9`-Ce0%W7?zSheGj1?7Zh6K?CDv!j(* z>ph?$HAM=v7UKHfBr!?I2|yw(KE}8z6XzN$QXgY;sxOV69j{^O@7c3faeuO;)Mvpv zpnOllZNAZiVp%ey>sn#+KBL{$iJ|ZLHztxLs}%noLw`4o-qUSi;K1rwR@(cGdQjE< zms>@c;G)VblP!|tsk5xIM}CB>L|89N81;76FzeuS03|Sg(5GjKmw;#`7)J-JB%G9)9+7}lXSO%PzAxdjeQ+3 zLFhA;3j>j9yQ+Cr-y%6?Bke;q&x{i;U(z9w$l#T1m))PF^6(ITM>Xr0lVYdZ)_-D^ z!oq&Z&)O$R<*0XMjRvpCHqwNqZZr=^j#7FkM6w{1UkH@aaaq6Aymc=8P1b;=&lk~m zUZ^B*WUy$WD{{7?8z$!TMcc^mzNXTia!fch5t(5PYH`T9oABUxcB5iZuA()OSW|kR z$n)aS2yfr}hr1*)mC$VZfp==}W|0+NRC;e~`~9+xL3~-)rKkP%6-eZOi(|)ucPVh5 zbH2|j?O)4To};M@wr;J8y0aUh z@)F60%V-ojuKj;5z;p&`WRn^J`2bGlGDy{#VI>M%$i*BQ6yvU;@;@k_-Bd>}R2{ht z%U}Z!L|Ll-9;dc%EwDzr zw!NOv#gDRieZ=B@7V(?qb-{Z7*$4L^?*O~Y`^5eZzt=xUr4lUeKHVq6wX{y|a zk_X>4QT#0L;01=4P{^YZX3O(zu{h^FCA(8c zGd4}Hr^o?=77P|lJQhklp~F6jy~TjK^RNb+qm@$|xt??9I=vS>|Tj=$^0w5{?H z->Nn{gh}rzrOw$It^T~}@d>4S^C55J^=;XqEkOo+LuTd`J5u<><)naMjhX{w&y0b$ z55syTBFwlNj?uaQMokVw1?7OFM>@E2jorZI+Ndl3W8Rh``k=m}0N(v_}s9f_Z0 zko@8ItVQgr0Y|3v`A|3e&t=dIma}`V%_MMa&OBTUBfMT z-}>bwOL}PDJx&)oDHTfE>4seRJhOTVd=c?32mMR$EF=CduXIHPFdm&6$V$1k8xb2; zZsp1R8(=83z_n;I8D7I?G0!yeBgVe%l>TxjswKIm?`fCCjs905_w_CefZm{(-ylrA zlaAmRdI>bs`lrTmrXB5@eZgP+oh#kVd?$2&r}N0+!3wBHrVkQjKW|^@74R=0$h{^7 zg!xbLTfKY%bedsEI7weSNah=%2*c$%I0$A_$Q{jFZCv2aD)Z78!VWsRnjx@K&U>0g z7y~LVir)(87EiACxzIVS`*@f#oA#U#Rl|Q7P}Uv7UX`P*oLQK1cUy>-(;?|OTc|U( zooybi$H_-np8;TVuK^6()y=Z<(lX=D_KCjPmIA8~6a6vCAs(&U%@V8&PKdzqtsia7 z2w9uBj{g|>ZF)rOXFik`gmb4nJ$-1FXC)>voC!>-zLi|PP293})B-o%waQy(i@3U5o>;jSn zJbG6K(l0KC-f1)+))X#B&4sh%atu2(_|k=ZxuyH6B-MfoCQ6G9)D=Ce`7_#P-3lgQ zEnqZ(KXk&b&sGK>2eLcFXnX5oG$1e8#)3uw%nBTO9Ti{BRJ4HQRYH~S6b;JMWifz zGOr}NBqODn*R9A3v`0o$udD5S*nT+1s_XFPW2wQS%hjs=UI#vkH9b^nMqP>f{SU6B z{{NuS{!Jt^DArxQN#k60D+JUUy_SQ5msiweELeFh0#=xdVonskkW+eAFV)c{ zB635oB`2|!J!1XN!EmXGK{rK+9?9BJ9`BE4jjd41zx& zNx@}+L$@Bvr&+{@2&% zVH7)pFUw=y^S{heF9!1F0JlO^l_6#L4>d9AUx{XPI#EHFpwebVq~%&a*3{fkbmmQO=m6)<=+>HS7*IE$JnUL2NT2j8nXPaYFpkbB~c;z zzP;BW6Hfy8aYCRnXe$|3oW4McO%D|wqBp6Sd=0)~{~ zF@m_{#TSJe#-JO0@?wWM&a~t*{I)7X%Op!4^8&}tVWXlI{V$xg`i`LunI*4`CWuPs zoAy_1-mRzfvSN8OqZUBIqa;ag21tRGP50J;caxTthUA$AOD!94vc(w-+S9C$ZhFj` zN9Ai!vp92Z&1DJ~Ae~+54Y|ylGRU0ybK9c=Wm{sk_|tt;rv?Lfppj<}lGwRZgxTWn z(Er!_X}J8C_MR#VdOZ^(N3{ok(~vQ(nuSL5r2AKZ(5-*W29s9g!R9`ev(fWwMyMcA z!B-EXWxtNv7JmO58$d6L>BCwACjscuDpxUKr9ZijHA^8Vz@WA6?X&Md#*pciesi}e zdK)T-9{ERU0lP-TR6z@AbnXV>8EvR-h^VNzV~Ed9Qi#=5I+`Jk3m)Rf{l2oVt{szw zQi5Y;u+DYeCfV!#ybNzZ3BNe;J`CW~`mE#^{qpJSM!ew>&9>1d$*WCdVWBB?bJ7|#Q9hSKZFC3`f!unhy;!5nxwCPGy$Q22AyggtI@OY8!#hJOFj7XD?c z)mE-$tN5G$RiK>O{~oqi{~opk?ZKoFd##t;I)}~&fhdY#QWIu#Y$;j^+%!i%na0Kc0hTjE6kHT% zCLeS3g7zM<#P7Y=h8=zi?Z25M?IZSdV6l`=!7`b`;f z0Fx6J`C}}>8OFY`r~bo>0GLhdZvnu{J8R-V*6>1NN~M7C&oeO?#VeVplZ)k|Q>&<4 z%vRIC`z`)2vu)v}lVjwF$$$1TMf68tHC#k;C!JJqEE1KybaO4B+Rwd#K#GEe*Qcb5 zY>fYI6gAS7Y($5A&LNP_T-pX9tnMrXjAOO%|05HD7zo)^!8&a<>s*m4n8ZnwicR+h zGaZ?j3?P5tonWWllPN{9Z~RNVDX z{c*P;kuJ+ss>BWh4&`eVmwm&OW#V}%NdZ#NGECsfpPj3+KL40EBZ(3i7LtD7m6$tX zW3+iAsUP?Vn(po|HZFuUEn@#(V^fp=525DW_2XZ++x{3K-q84e1abC%Y{MSMKP$~S z%&^+?#+=+%u{vx<@@5gHO8elBk>_~2V6fPHA^5YYob$dr;ySG>jIT_Z#P*%qn5$@Y zxwOqRdy>9bL}O-(*d+19&&4OK0b@!ObJvHyb(VgN7!2m-ZQpX7F0sK^+Wd4Bn$QQy zbkwh@q54#=W5>1^H3v}Si1ZiPg!d?SMBFuI+xEC?zF&VfDa$; z_TlTL%R$`64NfT6yG`A#)dUKr_as#b4KGQikKqFAuJQJM@tIg8Gt;ylIy<@Pb_G@ql-wOpVqqNi${>R_hqlY z4iW4tw?Mr}N}7D)o{vp%A5g_#W0yma^n3jZ2<_D)VF0q+7k6}sZ+hK|ACxcB#pKb4 zd?_;Q`zzo3Mc}2-jlDDbwtuoQRI3IBtbIFMgA64vehN;!0tuqWNr}F0y*JrQB-H9j zgbQdc?XH9TNrCC|%)%wWlwQ5eO z%zAizec!mRp>vy|DbD)+?3VV6wk^ml1ED%xiCYyL*LSm92s($$uM=fkeP3CFCl)y(?HPUOiirxUepb z4nix+FWQsP)yrwnfMZK-Jgdq(OF`9^o=`%2-#uE1!w4ge!svY$+8W;3d)kHD%Wsyp znCHT`WX>;xycd_=)=Y7G-AR7%oP|62J|ZJjO0A&e`*e;~9GL8v<%dV+>zjY?G`L{Q zWfWf_P2AaRg#U1N>!+YP*M5fgAB2wYKPDO_Jw3M$DNd(;UH8HB^z}eT%mVmk5gdW)MUQ2 zuCcwx3p#-_IWH}Ln!ei7*tqcBTlv=*6X1Xuunb{op5B+jmnQgzIKbW#mS{KE&$J7* z0r53|&Pp-LVNW>{khwi1_VmlBfA{ZFe#lGw$dVGLh8SG)xC}TPXhD#Cx4b}sOjtp; z_SV$AwyVRWu(PU%hC`$~6;rjY)kudx4h)?=++;;;Ow3Y_f_+_cCf|W-k_O1Ie}YX1 zYkd!8nX)Mp-5x=mA3;U-rDm@zi%6uLMtN3>>O2BkwLZT6XoOA^pvC%Z_u{6?B95ub zZ%rcBPCz{JiYE9FX|K(HnsxKpwD3pKn#b}-E!SFRSYXa!BCU6}E@$_m$&@6eM5-A- z@K1QianQ+z^Z&SRe14#N{N51O^Zq1kfq|EVA z-8jhgFMso)lK;Ip6V!BhF6j9C1$Bv?2ypBqSG+SVM)h@B_8~-^zu3yk3!aJzV48g3 zM%K^vU6iwYY138}UV9r!L#k@xZ&|0k-K0h6D&(4^h$Js(@*w_n#Lm4#E##b@*Ts{8 zCu4ewaW+?pR;Y?3)2T=0cu=H2|8Zl*P)xs}B|G5i!at-4cVL+tswZ)EwkZ{UwOM0* zv%X1;{7i~8mT>gPAxJTzM!SgbH?9cx47RwkQmp~@z1}c2I4G7D+oA@RVY?!b{_?DB z-0)1Pb;d}Uqt}{sO|v7EADCLpoxaw8=rRE?#*~_Zpk>b72#S`Z>bDtXx@~%>+J{)~ zYE8IcVAvB9=7!`rzb0vOZ)DS9i*?3G22)`a&&^kFb&e8l-(ckLJc|5#6uhZB>>!dX zsq^aCqft}BMKhqFIR2WldSgix1>bLlKX{F`FpIz82T%CnMb1L8+o;(T^n<#fMr7dIT0EZvvvP~GzO$6?(8l!Pq# z2I(%#$jpuOAvq&uFJHia>cC~a<{!&1hlO|jynE|;h@A#Hwtbp^f?C~^h>kYv@{tj) z4HpCzVb&eSNsT!%KqkSazBxqIh^9`e?Z*L3-AVJam(JD7UpYD8WYiT2&`j^x%v?6o z&P@HwejEj!%7t>o;7CZPfMH;e9IIb?&I-JKp#PNC_2~lw0Oh`jahkDdY#(i|yQ7w^SN?3jNrT$wSlf;mvOa2FAUfbrAuJ~&RbD7<~`Acf= z)j0;RWmr_^5-Zx-zbNvY*Q$(JQJ5Oi3Dh$dI0X$(}ywMqS5 zYrc=;`C^rGvRPgLglAF3kmAui8_X-#7wSH#28LpvO&Ddu=QFH4?>#d{=)we_(U4(Z z*Gd!9w=3~+DW$)IMA;N7v*N#DUTg;JvG_UPb)*7kUfKM*8 zqc!v;{fTy5SfNHEctH|Q=&?5`#b1)D$#P&&ewApJU*lqO}+((N_M;lR0_9z9QFXPVeV9f^v9Aqvro6(L(;c!uuKv)TGRaNUA4cwj4SSB(qIJD#A~Lh-I#T zoLmx{Y)sb3JC5*5&wsRy${wi9(BHN&VzxAV0r&uQ@f!9DD7Hn3Bkv@>6dTCst{H>El%FgO^AG zW<3*{_`REG&GUsBN{4;}JWOTp+RHOyC^MouB9C!v?Pi|Qp-6!Xk8$NiZ-sm{NrBmv z>d_qC+`kCEgKEYUr!dWj(ReqX3agy$YINiAITBS_^D8g6M z*;*Yk4mzvs()FBmq1|*hU>~*_KqxEm%-k_0!(ZwF9dMWRFP_SccuWA^u95n6ZmqpX z?nStQNi}pF0eOYmsayM(NJ2=T>r_X33N^2}ppd94U4-s{%0e4o$zTO7!lc!a*H4lV zKymuXOcn%w!MZVkE67U?3wOw22hzV9SYO#8>=42s4!Kr!o=?y_6T$SW-e?cHKZJRp zerZzw`0l`g_cFiNsga=uTBylc5v61V$9q)V7nZ?-<~3N~(q{2*zuj$8K49eS?jU() zGhJQ^?6w08mpkuib*hYGG&!PzU@AOC8RTvlmj_=?2Z=f#f^)tykq%YnZuAG)=mhZr zwR|S(CEn*2+JgmHkGAwbUv0eqdbehd`tl}(GhJOwSRZfkv~~8>xJck|X_@j7r9w-4 zoNjtIhChv-SVvo^Rn`8yV|3k>R8+$S=!sxWuVwI0vjYbtvqAMTC@Z-RcNU9!EU;c^ zu+G7Jwiz`b*BHqo=Xc?j?F*Wclfl*u&HE*SnKj1Dofr8l`*s8X21Z_ejZyaT^+I0H zNhM>Of5_S={wKqf=F1&Y*qlAweW}np8E4{|0^2?wBMM^ zRH|>KnOQM~FB*p*d0#Qs^M%m5r*hh<#_wJW$$3v^Sz_(NoXo~q4K_spJ+>sanGrR- z18UI)sxp*ibXY!hxvoP;x%!KTyrk{z>K8u_~BoE(CJ07 zu^vzVrxDa^j=+v41nYE&WkM+Gw{1}|p`jsExK?i>Ji~61zRVIJ3LYN)rl5XP>&u;O zFo~6I?(@5IE;W9hye=u$K z@uJf0kwK;NEV%bzmp3NS7?SS7|7oN-@#e;_6MWYj_yQ35*&*+Ne48)xPV*JxGCH zeb|bU%+RdnX~Ui2>YZv8x17-qBzVB2es2?!Pn$)Y!EH(4_Mfe+(mC;|&CamvDb;sJIEr+1MgJHM`UaR%f-?gXVz)^}PabaNBGPE; zig!z^kO6*dI?$)YnpVzUCsjOm#?RPb0e1Y?2c}^`?k=UxKNy$a)xo3DS zSXYdv`$TR7$p#dO_x%P0U}cT;D_8F3devWlO3O?gGzcn>;Q^;tscdnq1=>SHkc3er5yORaX z48Be2IbrR6x1(|Ket0-Ry7_94Mm}VTGdbcfU7c9@?INLR*Vy34>KP+2Jt6G+z2Z$& zQBL^++_=J&yut)E5b<#QRSe-j7*YmHjTkt=%Kl6Vna?VeiP=bx1%-tjW;xFlPJY9w z5y3QAC#J1;-cmGJ#fuL?`%Sc)1Eg$fE;D|1>!3A7RRowzYs=MB^oBtA>VtF4Sh$+6gw&AlNN)?J|WBimIQq_dnJ3&ggfnSMsvNdF#M z@4H?G^)OS6b7ytrwQr!x^#4T1o)tNt%56aDrpn;XxO#G&(NX30jf|V3qThmi*rN8A z1(tuTUXfdS_(H6sn4#+j`aL9O(R}~SN1D`5M(iiI$@z9}Ha^7KwuctUExK^6= zI5;Y0mGkxW{G32q&s%c0rQF>1D@(WR_!;)?wyN94*`9YupzBV?>< zDf-kAu=Y_Gv`KMtK zS=MD>tu(PVb5ME&iLnwb$xRu%okdC=G_s5IYb%3quhunn-VYKxi@LD6o z3X!A@JV7`oO<{9EOlR6C)E^5e-f|nzHECSG9Aw>w-MzLRbmusq5kq5k|KjYy)v;ml zdE;tj!JmZeQT=pF#UK_a{5eat=Ea}|RX$yVw#Toxs_3CRM*BT~8f*v0-&5PXsL22e zbv^dIF}dq$<*flYeA z(`f!ewH$)CzzE^0Wu zby@zf*U?N5g*TQPwOnDqK@hjpRBR1)aKqFt)|`S0^3lbFgfmh7svCFPU3YuWvO-kwb(7jhMQE0gQR^?&i_V@;xJ3#{&VC!>qxP^raio3656wsG|GsJW z3n^fIx!y}1Pkyzb)rcr7PV6oawr20Ubzo(ij+-m8*n;x^s1c+ z9u1r)N=_GA)nTVPK)7b?Sf`p@9_x_(GBs18Y*ycb|G=H30^f|8ln%|4hagaPhd3~r z3w`8a9vZE&M+r-1%~%{y+KR}&!I9k;&ZKfdhkf#{nF9OJP(*P?IZKWhepD#pHi8oh zn&p&0Zx_>mF3!|qf%H0?2nrXGn$?QSP%c_7)QaISr3-i4M%X*tPxHI0@3f2qVTj`S zxYT&4R$H_pHQ-}@CbYfl-nnD!u>vtx#UvT=}7_Q21cYLp@9{g-un9;2By`H;x zC4b^o^lJ$NGHW12<71g^(c88vGJ5DzmH)Dv=ve-dK=c4w4p`l;@MEMm_46fbCp$uk z!XKzRBu&Nkq^GS$h!XCPUcgq!`bx4F{$e4QSt`=oBER-9iz!BrBn49xFu zlzyS4@8XmV5A3|d`1?(1dyDG3sI_K^GK5R3OVzdkUIbjabVR+ecj23x>6Kc|d)X=e zRmx=&!JYR{g+3DSJM)Ehj!4#1cV^OO0?cs+xW7g zEF2*{S)-#`tJGX*kU{)4DREq?;d}diU*K;((+3>+1;85Soy;g-nEUBgRhWaQy){pj zc-+OCXfePW-2HMC3$F5Lb;qGzm*VYyHp(;Trjq=DQ{ZBdHQl-Y0<+XjKBoU{;z9!N z$56@Gg53ets5SbxBnw;~t}Tmn)jDTeU;J%B?mzoq&aRI`36Cdy8O<8%2%PMq{OqFK z#fd8tr=4V7x+G_?U9HOEN=WhNFc@lcVewYRdJc`DL!!{fncaOsae!;47+5b|qXuiE z6M%zlHUJ4ck>jIapcrIE*pQBW^NYq~vP{w5QRO~FTyh~Y`}dCd(B+Mmiic8dbCN57 z?|pa%taK=`egRvzwXMjGXiRvQi{;8+)szQLp(Rj`ty+Ua0CO{Xurxav>)(|;=Yr|EX+)0vc!R^ z8VhW!>KjnRRiSz=ePjH06xi`nT`GD+xHk-c*+1Nh^r1Nr#~pKBI2bpUXb(g z6{zsh8%?&S{Ny6oWNI}micAAJFQ(gLK#R!V75K3yc*<{bE%z11FX-!dEV_sUl}t-UbW|(DDbV@hS?(v zyD%S}DdAPD8Q%S&cbC4)*!3+>TM97c)0SfSxeKZ*aRc%T>DQ&Xpuod(wbh_ zYgy1`5DZac-<=E!ZK5udz%NZSRFyV`6*z|ZS&%Tj)ye*BTQ=fsjexSVd4ijG&$mV- zrt-JpAk5?1(=qV-BkScjgK4t^l+kc1nYHIw0-$i>5D04fqC$-;lBeV~(Zg(PK-e9F zH=5xIn&Kz}92%_~Uc7F?vNlXMjUAlYIOWrBV?wbBig!a({K_&`N%nQ;%e#+tJ%g1A zuc@^DSV{jQYV7;uWEs-y;}Bag!Y@fW>ztj|D@+wOxv}t;NqY4x**vq`+6ZgA|IMkE z(XhO*$b82MEb{t%QiM(_5QDMpj$kz46q{+A>v?kxx)X`A824pKBI%0}9_rqH?J{oZ zRF>*0EMz87{TXN^v3UBVtJbh6hIZ2sxzQDgJK%SPicF;oD!2YZep*Q*+_m?@FspuH z&Xcs*-uS}5{{&25DVmE0A)Pa;1qy=40^WzETZZ74%MB2t}ChS=0)4TjH73w&P0`C=k~0^ z6laxXjDyNX?R@C)(>HQg$%Wqf;cBby`)Yi_dz&n>LdTsPd&Gc-0b4%IR`H%IX93bJ zyZT+a0mbK@6AI>02k+!O?mnOqLn zsp+JA$of|Ah|-wHo-NLO6^a2E!5CI5cNF2y-)CH6KBYf9Mmg^)6aK=S;^Ul+D33l# z&i$m>aFdB)d$|hGLO9aEM_khS(yjJ?EJxc<&orS+R&Czx2R5#w2ntj9)pkMH;++|n zwa$2}NVb8*IpmJ#PRv&VM97sIz}BO{8T;nqEs%f5Qu5&3{D|VJ{KPC-iht@i+6=n& z+FU4l!YE19(2>t+Mm^TkOJ5&gk%t$X;Rtg=+doYp|Ju>@Y#*Hdy`WW$90U-n2FHOE zCD?n95#~$PBJ?tp>l(D6SS~K`8bLsj>aNH1Mn6TIi;!j+A=if@ai&6HD;@ibgi=A}|xO<^yDjXUMWa%iZ zdSe17jk0IhFBpEjPNvv(4lWZz>)CN9dr7OEkhp~54Uw)jF>smqF~Ym7b-2dlU{n-I zT5&)qlp?>jm>iWrByo}HxM4|3Yat5LS|k{s@`sW04?RY%;y{N~;zZFK6v?@=wT_0= za+-EUz5Q9?Ky$fgaQ#pGxMcKnu5R?|^+Le8GNb5WL#^Ydwbti>*^m}A6n#ebvP>T! z`9dRu_r5k)@2Y{m#XEgOUr&gBHZQUo? z%^Vm&xGg2ZWOhKv9HH>?m6nC7nH6n0(ylPzd6L-VR=hkT4LF^^X>9V0BE3^|v&g5R zm>B3mhCggqHkwpu%UKh=FrdoMxFvf8?n}tc(hSxB0LNrhrZ&d3fUcLWsF0hx2xOX3 z4z4GEQUJHg0od8f`gWoR@mv=1=U_x{&Dv>MEyec|jrp3)8v*}=@K3}LLAzqqwq*dP zxiWQES}xyRg=12B&_M%Dl?x02;#@2+8gXw+=A>T0{bVk}2!O}2hp7y#kM*&mr!q_6 zzgTS-p^WR9;f$UAXGD={;IHFD6Zo?3|1_co^VQvYr#~;aXd`de_3wuPh9K=?pakso zOlT4lC>9&8&t$WPz1;0@DVAvaS}!41`$Y9Oatq}xl}S^OUciZVx+Iw7UWSoS{2J-7 z{fc3!&Ic3h4F(E1=>m^X ze{XZ=kQVjVGgHBwUQqX8K@i<`qR z#$TksQ!`}4KC~Gr;i!|eUUgeu?W}NBGk;jlf;6XgyR|J;Uz$^G&HeH6m4E8)(xe)@ zmc}v=6bo2@+Msg>9F?DR)wiJs-XO{UmA%Zn3|3pq8RBh(cd z`Nni{-1{lCk7Vm7eT?1J>XKi&F$vbBot~AyZV#1IYS{Ylp|5qJN;4x>!V7c`?}052Er>^no&SE|J;I?0($Rw9s0USSSCq-ij?eAW{ao^&>} z0vmclh9`j5X~M7NDEaiN^P)ItESs-u9grB{JMh(*WQIBex8*1&nlgHjI%9pI`wrD}Y*Y-;7L2X8`5tz<*2jjnzAg=uz-xIw z*(G)x+DIMCLm(a%LTA09EKKdRHvQ>s@C6WXxD(hOU7Oc8L0`1`&@sRpu@67UwbZlGvML#W9iL{f zug_O43U9*k0YO!NUWr2-(e@}HT#}slE5t%^TE@5&zURZh&)K_;dD-A;K=GgeUSF}u zq_jog$fXbM4GnA$$e|ce~I#~1V4v>P*r`j&- z0xSlBV1w4=TOdmK$b*=Zd!xglej^-M!w8@L)t*z+*8HV!rxI5wLzYV#hUL!ASxlQa z?Hp&th2IX!+U5VEUa)YLph&$JQmaKzT6#tTwV08rUipw!uFp$c&`cS2Tul}S1OK~h zH|Z1${Kr^o+7iScjqX^i8=iqxzwAM4;`IleuJI9>&d8wGHp^_8vf_}3JfnD4heUOqqGMV5Vwysg(F*<< zJZeTW*%|rwXfSt@w9&8J7BqvFTYaR?nB@(a@mAzDHl84qi?! zPtY>9PuigLwB0;(=x!d)vrA1lyE=C-E+KfKh+DKLv~7*3XS_bfngMKkkscWGYyFy_cvJB(}hPcrNFJ&^PVjyFD&di6xtOo-XW>JlRU;346)fhvepQT_pilp zD*TR-+K&5QdTs4mJI@|?niq(5Jd1dP)wJVF?|w01UF9=;@Ul~$VZ*)ZxtYJ;y|`Ms zSaj^_BU0b$BT-t>Xhbme)$^6iXKP5ztR$E9TiwWoK}GwG=wt^v_MBUB6~4ZYUiW#HBshc zuh4O=Q($-_+?;6(+*FkzsomWZQ5wcqC{4MMZ75{iKG0|%o?w})<{2WrGNi3|nCQ|A zimIlwsB1r!a6w|6z)~@I+@31}*_v3lZ_>k*C9mhZXOrrYG7 z7{pstiD#UaJ`##x`;8NCP&;QeFFFT9IRUozd4p*@py%#|fwiIr+EN72A!p!*gj0{? zNcwc%e85L^poa7G%P(OFrhY})Fn%@WCa=xL?;CzAao`?GQj#9Okg!+vdEN%mzPmP|Qr`E1YNLH!?v$A9Wx zr#HZMoyI)A;5e7-1^#r{rvfEXrG(R-Yd1rFF4BZl!mQ7NOd1DyZ(lC~w%Ei8@r9p@ zF?rav;oDJR(&O$;;{ayDMpHP3pF=|F|jnLv9zZNYs$_4RV05fav;#-^NTb2xyuVl*b2lIdH zE)CaeH^lR6vu?EynZV_XxwIN^y>#^`E!oO+dUMP4D}11Y;94Q@#p=}Is%6$*Q|8Q; z1p1M!p{SgKWFk7Ap)J_g=VD*L>gV}x(}f9cfoQoA^R^YiL2es>tYo$=FLgbYruoTV z&lm$B@B?sS#U0l4^GZ#n?H4vVMt~b;vDPx$%pK>w;pJ?It<6tMkxIVS=6zBaQmRzp z%zVw{DLOP^K?Op9H4}yiAe3p3MfF^XVZ1+UU;D$H)zSNjA)kOw{8p{du8hko(wjX6$jzVH;!(%bk~SaDQ# zMQZB_NhV!=N3E#8N%M0-q~p6Ux!y-FStGnK+-3jf#IBr@G$|{4omch&i6LWaZuQGC zVwjlDcAnG{-0`6Eeq1@Qnrp!aC-26ZWzhtqE*G{Lv^`Sh;{jjBwciu5#7_3ltTHYx zspz2(Dd8u*br3{rHmVdeNcp9$W(oEv+p-~blMTOvE)?*UXbz4>DJxA@ue@%D2^KVOMowIKl%4DiPqBX!20!2F4!;G7#pf zj>Q`{j>|LvBnG8X5kU)NY9Qm)8k|$u(@oakwL7eC0$G=b7$Q8MowCxk!|>QOF{yvg z51SqXq98Fi4{=pqju4SRQB6(a#rncNB59Hh zd|*a_qZwd<)Lqpt5F=!ut1~>*zg~Cs?LAH=f%rvIcVvr(wB`(nv=9nRM_F)8#njIe zj0~bUahd5O3vV#Fsh0{|f7N%9UUlhf#)fT&lBa9Hi~b27 z__xHGF6=_b7g?Eu2aTnm)1|1*VxA4<$~N= zs(gnun7mZ=^jzG6vk`g5rn-6gTU}b!%*Bc{u*j}3Amq3d14T}x7N>Acwhz>o=IF{> zYHK(Y1keIDwCyP-2j~%9F-T>z2QT)oCZuY$I0!$U zd{?Ig*=khDR&y)p_o%81YQ0d7| zJzc`}%(2zbqD(K8SO#yZtmaJuJW&bFR56o?%;aR3eH;%3lNbS~D7SgRQMH+q`FU;O zfKw{9Owkx15Q$WcUW|ZS?WbeRS~LjbXzS2V97LD)aSe^*aass&BU@ol>R>yVe11r}oX#t<)D{CHv= zU(ojbXIkKl`X7JW`NtBGF`8o?)|`eh`W{JY+SP5-7esM$_ZIC&Nij$-?=xN_w4yZ& z04Z_|QXCcOYS>#{uM6Kc_?S-H6ozYq3xDn1p!Cwqf{SqLCSQQKS3TGRt_dG$)mx6m z>-3LQ8Y~ckQ@@J?s^xT%;Y5%vWv!-0HPJx8RB?>hs-|^P-pp6nE#pbI_Oi89 z37hWg7$mEdJ)#rRYWUtMwwFD)UIzt9$A^#q2nB^^-q7LmC^Eg*!k-qgE79If8L`I6 zb@decWim=B%lNUK`7U7gKC6#ZT_RYa?HKD&*qz;HXHA;FBj+=A#xSL}0Q4a5Q^>b0 z3%b9;Sq^{Bz3BU9#{LZ7>i@fGl>)A)k3utQS?F~ZHm#enr0#Bn0qHMecd;^ylMX*} zDk6T7l!IK*=k))O7{iJacbWX>Ad5`Oy;{&cvTf04Tp-7p62sla$oyFKU?J z^vDN5GF%E(Rn2PD<*%8B(x$c^3SJ%A-qr)Ogag`@gV@N9hyM&%y_c3vnz4+gu!ciz zWhN5&oiX84{?!Me#ahPOMH7o=t&DciZQ0tRNXw*<9rPSg1P~zKb0bEDS8>}Yc6{~t zZ_I1$q_0Ady4dC;WWj1vB*dtb4}KVha4WkNIAebGo3spjMucb!IP~+nttuCimsS}9 zszV_f=@k~xS$!t(Vi+Rc%F=~H>B^NVHx`fa{v_7xY}0gY1Beg&>}yyz;Qfn3*Jc&X z)@9L((SeZx?&ipxi);w7ANFIM&?5Ba{yhi-Jg`aC*X98aY>E1nFQ}S~m|e(;dB`uI zSJ1bVSY6+eKH^qR>ywsBiC(dCMGHBvPh!{8G27kh90(phHHasH+=@)a|4fpA zeH%!W0#@Ee@=|MjwUnRq6WJZNE~+G-d`VKVLC?7lVx@YvlUB>ccm@aBsL!>{8vSFz z7COQU2Y(~2t$na@&XU@y%Bo!`_m0`Pyi9wj>omR8@rb>Xa^TgqSEz^bvM$-;0q&@* zi<#xOAogu1 zZt?N)<|>1B7q$9>U=}rs*DqWzc3-Cp<%?>y9~FO+k_Ip5ZzEmstB``H1=v}*jXTMo zrTKGzTugU&y(B+7BfLrfOx|)G^+8~&m)>}b|5^ERxm`vloN2I7|8mvJU}RGZ*-J*e={3!eL52_DjZ4-u#}t8XNHJMJs`S54$WU|8(r#e z-|B@g)veeO!m9~M_jydcA-d-p=RfN@mh&r1Fj1<-T4MSU)SF*+VMtUE1#ol7nJ*q-cVNchB-hSm!9bX>B)PFr&7Ny3?&HZKb2 zottuo&kOJ$YKxqQU+%7!D1DN1&;TQe0-l39CDKk3D0xL{mj0%GX#D1(L=Q;rj;od= z?qMmPs-AV=_Lyvgwd^&yf-9{Lx&^+w`q3yEonE;dc)W=cqHE;z!^_7`&c}bKcC}5? zG*E*x#$S%}(ehf>z|6C6sOK6_dk{Q1M&7BM0$kMP~`{H#IoERvLG z4I%$CUn};9a;(h^w{`&&2(zsy_=g6*yFa5p^lzALYG48BGixX70?;;jL8?Z^C#c%( zqxF$Q%Thy`{gE+paj;sH(kt@!-{RkW%Xh7k7|RqQaJ?LExp^3Nnh|H#*RA7N{3XW| zM`BSuFCrw1-U1$NtVihPjLQuF1%g6_h;hDX!;u0!kE&xAqu=Z#IsZAw2I79D)(0D_ zcS=iN;Gnwq-_oPuCFFvpK68fHD11p|?a`f}g2(+DHAdib$2nw>j7Ut=;!h*MAUkl& zMaI#3N>P?v-b#m=Lr_ktmHzB9?_f-1GRJONWFg~6WKNDgPL;CZKV8GZWuvMe?fvkI zVzWB_%>iduf<=)y&vr!g592wT8a8|6P((=bpVav;W~r#dJ4I?Yg}`7M=aBC1pj)Dt zQrNiazVaIdj%TSPBH*z0onOb+i~CC%{><)yYDrxkI8CBw56JT|8-7d_AbjAZtiCM> zxYEgq)=LSf*T;q4bw2vY{J78d$vbkPfC?F~`idDM8wMNdBjdvBs}?RR?a}Sg1$BWZ z3aAeH_uKXaJ23!epQ3rA0+|_CO^eIskxvsyK)lPaYW9MHrjEo(B7LG1y}=S7s7?bJ zNVhm=8e*}XxqN-X9r(>y{jl4-xd+Fi*2wBjlxXl$xNkf?|3-37s=L_NPdKcAfmf-C z7^Hy#I=HY{D7gdaz8|%$3Zs;*J*1CeF~q|k>s|$X8W|sN=!Z?4ze3=jAOs;l-j1O` zUseXPL#zz>kMwv|_4ikeaFdRX^oE@M84p;bExeNBIxT<%?jpjqT0N6K)J0FTy)~?_ zL*RIGO!7X3`5fz45;G%?3O=xAWGanW!5 zFuSoPGfYKw$H#*{eW(vP;YAQQBzl%ct|%XcJ|Gc2%+4j(>^Wv6M~T>f$k)Y%lO zy#wubN*P=@tuJkDeHD2Hc|$FEg@(V~o&)2EZilYfOW+BJm`2rr9W0w`QzWEzvS>nI zH>S1mr`z4t9}X1Wxg6HdY5I^lWPn8-iV`_>*Z*s52XrlAI=^M`L;O0Bnx) zEV6)m@pZw1st?oxhjWABLvB-qjw3h0$;we+WP9Mh=c#9ISZQc*l<8nCsN%qD$d>=# z7lRvi{UFXQBa7SC{iHQ7f-lZ_AXxUsZ)YV*=mjz!o?wOVm1B$7HCCpdJ$LAZS>q_{ zmQH<0)%MxLRNjw~43y!mCQc(e?zPD-GWMB`{11T_OBF< zr@s0sH}>nqOv@?e%+b8jAh${Fj1{To`&w@1NZ){0N#2i6c^_7>AZnM-H6J5QdrxKJ z(!SUM#qlPst*?A44*aP&CG3ujV^77o$N2!M(`c1}Y*p|a{?t7#4e1lKdt{0l$oDTf z(U+5ebG>$oyH8vD#j#evt5i#aAuoU2MO(g6d*mM*=oHtqcQ@#&QeEg@7d%CvUGX8D zWAF#DuDeKQwMz91qT<&N1cbxSQ6KYTFm z9Z%Gp4yS?4K<64Qm`wm?ruf}7vOWDm$iyv6c#_UC3Bu%?Z@vvr-k0R=p{-_BqdkuG z1%!C-cF`L#vFN<4dwfdu3^`UrZfn)|AbIy%gX7faY{*3DKRKk|fW+|Th%plf2EXS~ z;PlI@t05ck6B#y48{2PGd1ZSiPyLQt*;)DIbT}_$V8wTN=qH_w+)iD>|GRy8Omg|? z)LkLcw1ix@aiLIx!*JWQ@owE z-8jKBUtqIOjy@%49Ph7)#O#P`f&DV?r@=W3KmSI#!!yj8DVwI;hJ{To;!*MBHZnG44+#FDphlX0N zHFkeH>l&QW&7r8V6BD2cupja(q#73Y(69CGw%c?DUnXT6NLknF{wVZfZk@+ziJqTf z`iwYtJlxcMqc*$uGkEJl@l;3*d$MrHX-Ydo4|=xvfxV%Wk;O^Ac&2#U%1oa)`)Utn z;`D0WXRuZWDs*OL>tx4n#_n9gW|niStFs^(0}Fz6^s<}fEXZCkW&6M~Z4a==7Taf) z9%ov+e_^cP!t+6-_gcb9rd)1FVDM+G=BtAq^?(!Qx`6U`$VC=O%H(yi+Ha_k1?IER zAqCZmf6`^gAz22o*58}$J((bv@hpn<%+5>(=l$|(8};H@GEJ&4Yq7qwilplt61`r1 z3qL#VDau;U^L&i3OXAM0Z3q*_$!|BDZ$~$K_oraR_V$HY;Sjd8HY5?`+!VzzLq@iB z%he_PiQQ{9`p-4jzp62W0H;d4lBNA(9VsS(c;wsg7_-@zzHdI*naweF{LtIXcSCvQ zQ&!U;eGgauY{6#I>s}ExaATvQ60>o7gZmVMQ)WW{cKWcx4&6D`fkB-@8>b=ui*M2>}yO~#I2l4o($PBMZWF})lhPC~?ZA?QZq)6v8>FF@_q|Fg{W($@hiu}Rt_lyJ* zyorGVde@?|czzV!KD%hRfV1@W>5V6(SGfb(qaUUK|DhEkP@2$S%%7%tH>i-HR-{gI z$i&B#-{uw+9whvQ@-ZpTEqx4m#q@hgEPbG7e9h4eHpa|fEvaQVWh~E~8rCVSdXnR9 zxKngS+Dig#CA1=aAlQS@TAH;62p*pEsb{fCAD;rjhH1d{TRf-L(bma$oI@{@Tys~0 zhK)CL;kHqvGJG-|`W@bq{0DgYCBoZ{Tr6@-@`0%D@kYd|%vf&8@#W`QB9G4;Nh}K}qXs_{Y(`t2w{hT4PbwHKe3Sb~ zVJJ+@$w}b;=axWxRj$C`&-PB@5M&ww!JBqD9{<>KlW}BT!4oBKgCs_iM|EKb5oVZp zGxmcCozK0=9@BKc?#+ZrN5YMwQATFRCVSHH$b5B!-z8m0fn`uo6a6G9(|lHY^8r!Y z2A@iJ#*eJbSgIlM|P;BqHxm?@s4~V&@Dcb>(YPOV%d|S zmZz5;*?FV$^t;2UlO_A?m12x)`+UFMxv-N`j$p{_ca!XysxNL5?u)zN1Lkq&aF%?ZYI{VleHR7P_5rAETX~Ks>bU%Cl75fI zmta5~ab$=EAAZZ5schKRgObSx=U4h3*KVULFyEjoY1mvG-Y6&>*1N;$ME2^~qW538U0-(s1Vi`ITH3gO4b18Wb>h zEjHY0nE#4YjO>lPl%nxAve7@)iX(6SYQvzk{bPb?f-?!>Pn6}LioJ=xQROaNr=9B6xcVYZSnjq~$2l<6Z~f{!CmkvTbT6AEbD^K}a7(Sth6 zCG{K*nQn({tpv~0czoFMR14;8(en3u%(Z}aO12go>0GRMWH;S0IGHS24%z&f#_n>8 z$c$ggK6-{Zmkby3R~(@!rCKDxWx<1D!JO2%c6RdLWudmM1oc|oF~+fLMePp)my&1v zu>-j`6EW(<7B)dN%dvn#i*<-Nijh{Cji5lJ9-2G968qt)k#$uhsg!1*phFx|YAi~MNK-V5iiP2X#3{o$kRpqNs_otI@b5; z7I24-^QaQaLNC{O)1QT`UVMOAi8Vk4F7l^@#*TDzERD7L-Q1v4Jcd?3Qu2q=JdXc* zxONTXMu~QkUU3_?Zu+R@kFgHi2Q8p2JU9>0>TWmx<5F_=X?*Yf;k3xM zq?s2-OkP0hW`c5XSx`n)w87W|=cPl=PEC<0AslU2zrcWFwOC6v=X04>v3~Iu5-(wa z0XbYA)e-hJoWU1Q>Y<1Gcsz4Cf=&^QSwM*Ts31GaCr{Cs=?61}X`jg~>16(0&~qjJ zfWedN)BZ49^mQGES~yCC84f3KkT??T;_mT9m%P zeGz=CXUC4>kNaoB$HRPcHyvttg#2%IbS8FgKTE$3ojUVqqBE(BAlO=GVxrvUk>vZv zK3lf7-#8^4cuALf78#Mo8K%tcEJiGDV7wEygE6fP>olOCe^;ECEu@CBJ-@`Zqw*#0 zHMCU?W1A))DH*0M*x8H;jobp2xHV!y?uz?pk&R$zl)<(S5A~$bO(*?qpX$0JvIU(M z-z+^v2JgDwq}sspM+$qVkHDxK( zBAZJcQWmX{x}2(14cP4%I2t09LGEGlH@gSR*;D||@oF;-w)VQtU7P0ixF5@KXD>8V z_;^VMuwp0P_x?;-2g2kr_=QxBlU6^laOmvhgE?(YZ!T!m^T`f5sj%GKHUNimEUPcY zqL0THO!vo@l;A?M9@V|rIz3zT)$2^@R4RkVC~x8*+YwxxLFmZ-a6ONeddWL?|A&ar z<&-p418W0a>b**t8P*vrGfG9q%EeqY{**0jWFcN<;kRm`w%#r~Swj^J_J#$wR_(}( z2a7=G@k;~B@*t>Fef8gEr}3!|jmdzCHKyYDyZcodM#JM%>W%e^xq=V@z~$!Rl&wJ2 z>2XE^?hPq)fFr;RE;=^TnlvH!zHbUwS5!kfI9@tr3`Y_XhDb%@%7cf_*Ked3Fy z0K)m4r$r{r$l~=voQw7{SE@0xa$QZI@pO}SfvCK+2EC_2>~%+3WAjL*La$1q-yd1<2F)Y)UNM+YFXBxjkQAhb8Ap z?#xPKV4l!o(|a!VOwweG(t-}J*i8BrEnW={?3FVax-n!zMBj^z=E7q@9LEvDIiQ= zbgnemEf;rycCv8gkD*!qmwnHZ9N34mTxm;H21=!V#G2(M)p3oW_E$tSbYEI19T#SP z3PIq|#sBs$+nRyPOU z^=|gHRjhs`SCU__9g59Dxfb>@y)dffJ4x?8V?089i?O`ejkV70lk;HfO1C`%a&uj| zZkTHjwf_Y15z+_wpl^pbg}HK3>gr}bt|%LNTpPoc7F5k%#GQj|>mK27TX!@ly%vmh zK#WYRA;8g{ZZ|EfS_xRg2uKw+ne0J9sBNvczgBij%`=dAo%9Y<^x{SiHiLaQI}R~t znZgho1-^xm9sjHr+v9pr^Xf$nLrb+XOr5JW{3V<+FWa8lM12Vg1=LAz^I&5E_$1ED zffnM61HCJrK7ZvT0V-L0Bk)T(WUNYK{=FQ#;kIG|K-l_OgR4v2tAh_tHPQUgom( z^-bLC+hH4{Mla-&v&fw~u_Z%Qvjg|(InKJUAwTBJHwGZ&!fpO*Qwb#U>JHajJVmEEYGHdSXM zSTk3Jp8Fa<-KjgTlm$x#W$=A*;TrF4Ms|}Htdm`tNYC30sl4TasqOBb(ad>I*Ign@ zyIfI*Ni%*-M@zVwhaJAY?(s)kUEqRtYU50NCxYB;(o#7l^4A8>b!{FNXA^g)6nc41 zWEF}NhMqgIMwZ9>;(6Z1+phWQ>odlHaOLgM=br^Do8Aqq@`z>-0F(SJoolQ>Y`T^U zJU(nhqL(e7BTtL@{?9LIu8dt?H080IL|y%5L)e2n>+5s`#M)(uG|Z6Ig>zTL2hNL` zg6~M(^OMr#cVxI}SE!+f*^iDU!H}<}7CQwF;~#jdy2_tPS1)#&H-wbn#!;oEbo7)Y zIUg>u8Z|m2^KFpYqca{WMd%u0B^grf+(sDC*Q_U_uD!1u97WvE=g>5gR=gc);<& z&ZB0+Faudf5`U!KRYbRCzUyG%4F0m({Z8)0A$tD2C9O5_a->DDP`y>SpyjjSt@nBR zk>t4*T-5v%@U0`5Ep@4RMtR^Dh*>K zc+a=`dnD07B9)$N$8cLog?JkK!a!glro=yAtn(xFt38UHR<6GJ>zzyZ2hPmS{m$24 z7A^qKJ5Bn}9p#B9-B}NKU*bv4WkD_n;8 ziSCF$X&rCA?=W9{R8|s1btPGN4JjobGbzyC?ZrrErBKZ=D4w~I^v<+U#ie>p8KW-q ziFoh=Ii42PKH3Qn|IfU2R(D!?`xgnq1Nk0S3kYvSrz`66o2>)K66e*~32D?fm7py--L9wneWnK<931)g9m)bSD7d1c&uE z{lTu~Bz{G2FSd~Qap7Oet@bzuR{*#m@F>k!EzNhTroQf}!_hzWG%=_n`>EG{MZ8K@39dD%cupSg7#D7-c-!$d_X_aoaUz=wvh<&N3!;znv*-&n@Zl6)kATy4rxU=b^XU@W*W z%&E%STK;`;=ATbt6zui$m6}HE_oXV4Jf_bjW}7kxUwceSxd%!O@EiVunC7@85~#|8sjAZwu_X#iK5*>QFq5 zpXPCJ`0!x`ti%6*m=L}|ip<*^4ND{4rerhOT9%_?iKUuAI|x$*#a;aeUHyWYOQ!-* zoLtHQAn&n>Pu#fsj7QkXu6I0MW_;aK{zxAy{y_Csz%OfCm=DB$=ZOJ*uA%y!eZICp zAtlY*a)u8%Z|~%qLrYm?F3Km39@rK+f_sqJ26IRJ7nK~C(66RXEUwpI?NOJGgK~^;&}C!He_DP+Nv_OKI@>uQ%DLh&^Aj1^Hmdd|hRw zChf~L9p!YW+D5-$dz5kPelIQXDOq1ih5qUM2ogux!}#i#YN_f!x{ifKl&dejH3+Bbg^DGa`S#l&UQwRFS2qcWDa)fAEHkWF4COOO8ivu4O3YGQ8fmZ#w+HVQ;8a1q!&Tw1eXw-zlMrWe zB#@KZiseH!2SA?BiitsqtFt35k+4~djMc<1h!N22$_()FtjX&DSJ-H1{_=kt){)|% zFF@7MHAWCTZ+X%((PMPV`2(>`QK2F#$}%+_{GRcr|Na7!#@~*8dN{R+A^g1GaGsQAAjYq2A2-O>yCVWm*svHg1oM^{}vcD$G@JRDrw2P)O zPa@mH`Z*=%o&DVv7E-p6V^H$vr-H{uf}TmYw)$b;_}ZJVcKA_=m>QnS>3Cd2Bs|?0 zZ05sY!{jJEXWMlWt}%7<{RJvDzXuU3E~Br_lOe179d^oI)UUG@h%cJr=rh|C17?CP z-z`Af_1S0Hf>a#yDEXrJodxzpHLv(Ot)ddNpaI2eijS2|Fq(k`OlN}@jf|rfk%1tM zv_cJmi>qInjrcN+Qbr}@KbO+?YJyRK-LzpV{6WT&M7GeW+_yvkGR<2(8VAi#fpQl!oV0d3lQ%v9{=1>n!cO8LTZl+a#%Hg+;R%}hzczZPXpO%mDq>` z1+yd`zwwZZ>q+AntVH{9Qo*j)t%qzE|L=eZr2I>`+mnjt$JFqi=fkm>-{~LB51DCl zzF>0AqV9lokCJGs>H%C#H2Qdq6+)=~H$jxbQwrxM6OMIsQ(iZA&HqQ$SARwMMSDw0 z2}n1nNOyNDNY_w9gMbVz-Hm~ON=SDM0|U|_DFV_tbV?5$L&tsizU#ef-9KP{nf;uz z_xaSm7yimz>usuu5s!}ixc^?dq`pbbz)h9!oZkFrj=9&=xlXx3rR^M{RLIuTEXfNg zhUr$)Iiw;L%TMn*pmOf>$a#2NCF3cI@m(`^>_@Oh&IG#PL4swsIpjg7*p z$HK>-kU)#DaO;AV`Ogjd4^H8`<9$kS?v-sE9(vQFy%i2=)6(w7nnSWcz4h4|*L2)f znpR=n%>Y;e@jDv)sW&(l!;iBVUhCwYY_Cwjsy7>f`TbV$Lr`!X`cgUYzqgq!?6&*| zJLm(~oC$Oh6Lj*i>}AQUTDy4m-C%yX=L@l@wCy$5x}efjZI0V?uI1CcAF79a%ohj_ zleYgH&8xEaL}&D3?ef-U6_JF@UYsdK*;g^0f5ZUkg(7+Hfj?kh_YVFUWD2HD>8^!iiu=~sNHY+c8G^^rRF`N+srv2wEuhXwSQjdtm zN)>}>RhBn0kc+L5r09hM;ZQSl0fU&Vx7NHs5HaUz0knzm#cW71ew(g>`uJZC88}xv z=QZ1uWAjhB<=gfMqLtp;Yxl!td8wvN9VcqKj!9j5MQ9FsHn}5s1cwfr8-2$OYf9pz zp@uKa5r4cv!kwJ8^@f#Y*g~P?b(cyldNltr$z(lZ-Y?8uV+>|^fpiDIM@ z+0qMgV+)o+@)nD9{VdUd>)2hNqmo~hAU8mOfE-)`NTc=zeL#QUGj&uI;K=EA58QRN zQAio>76UC|ayT0lK-dbgCLCLF=x@t>U&)I%geDJBw z?#wmja==zoFbw4JS%@7<1Hw$)%FY9+xmG_>H(0G{SW0=(z?Q>howGKcjnVgqOY_>; z{g;Xse{AnRVzaCmy&kRQ;e#9Er3~rVoZ8RO1^HscS{6i?F{mxlptQH8v!+o2x`FAI z>6@9^&t;n+KA`g5V3di3qN~Y%7w1!m%4@LG) zaAP^%O!n11b|OgGcoD_r_V+Kxt*t_>oJ)C68l$WvOf}oY@1q$$%yzCt-UeWo$|*j5 zcRj5MDHVMy{CnSIVQR7Wq2mCJCJHHeHZo0L4a{;|CTQ@Niv=VLnE=U@b?2PSy>#9; zwT)wsrPKQ%X!SU+A5fppm#5eyO*UER5V_n5803+I*7g=sk2LUJod6si40V$4?4DgQ zW8sXMMEsXn{ltiS*e0n7#GWrO^5}-dJm5s*rk^M{6fWs=xW(BZL)R7=`aM6ji|uO+ znZ{^YqeVI+k<+ambs`x=6Z8D#%UBSSCo19FcXck-5hj=f`#eB-=6&5X#uj4X{H()q zd2x7qespwwVCDUuWN$-Y7#bHYQf!t`n5r-s&L>Cr9h_MdvNNj2j%k;hw%7T@Jx^*Q zX~z@nwNIq`A-P0P)ui38TWq+zC<Z(3XdSBe_-8=<7E%+}q(U(7h=Y-RCf;Pg} z?VP9i_=~AIU zqs-+DT-@r~T7RQAgq6kW;v|UC11t7-ZkWVp{gm{~`CP=m3MIAQeC&9qfn+kr+>}TP zX5t;ErVZ@a`O+9$JK=t5@;uhGbzlz}Lb(^>%{XOHcFAYf^Mfnx)FGRX;#(!*IYW^7(te+gT69FXqwgP;`Ba!z`>sx!I3}z&Yw$BWDR)F$Xnh0;%A9ix;xn5; zAtNam5ifi5)Z*sW)hH!Xej03>l;#gpDJ*)%$mjYDZEZ?#iYDxfVsU$Q4XJmIU9aHF{hdArdy639sTp< z+Xwfp^&ge@?SfP=0;__t_T=Md(U~+;dY%5ee=?rPkiwUDx>N!MCF3f$-RUH+n9DP+ zACLYP_!mX~*zv;z@}r%fGTl?wn5V=|@{}&SzvCT3Y^7-E89mmLAB*T@v8!Z2G9G89 z){e(eZb&&kmqUy@fg58Ny;}$*SWm6h7-%kU4oKUQ7SHAsz1j@-=Lir@ccZ8TohN#%Z&B?s7#z`{$l(Hlq zG5=S5kmKQtL&|rQTe%F7AN!;}#%9dWq8_^)QP=pKDJ$Q+Yuzcn;X1p9BK~2_zVGH5 z!z&XddSxIBF&~Q3n3$~^gQqoMIvl01>b;W%@01JDIGKgx6#htzf}`9&Wg4?1*23)c zg|HE2sjz;bQ|9WJ@l%IenvRxQ|Ivtv0ObjD^NA7sCuM8n^+xmTL0@`OO1{}m*u$@9 zd%2hOIj5Vhfpwh6YSZ@v)zkb?yk1%+F_t9hzz`Y8o1MqJ6i;_|aCK&3W&Rq42NFqjwWM-l zUGi&qpp$9AU>Qhm823JK#(GrOtB>9YhC5L^ZzM@2_SxpFm%4@6XsK}+#C7*cqC2{Q}at4#z0i*g`Hpcbs6QxrrXMdL&nv=Y@?J6h57ww zYf(6re-p^1{yh?`3W~W+cUmqJ8V`X5M`>pc5K(SX$Y=&koOn&)u!^c%@nEDQ0m;%P z*{*eAL%jv~OpyZP_;&I(2Ym1=dH^_Uj$zFc{LXrO!wY#d@Y}3+xmQ`21D4qz;qBbe z2XayS?e)_K)L66u7%dNcp^I$Vjz%IOX^&d$w1fj9$48CO%Sa@-N4Pw`jEDRx3l@k2 zWP5d?)t}2+9q#z$g~NQ&KzeUxc9t%A7Oxi1`I>DLG5XlPa=n}uNZhYcHl8rqPGw2@ z@k}zBk`wAJrTs!|kHa{QSw5rN7T3bhjJo4BQ+1zb2%bnpgyz#jnP~aY`@8#lTIIHj zaJ@Fe9~4jPOmHH+AH#5=e(C&J?_WFVOu7|!eA-)n;*{u=xpS!>(ygMNTvc@5{yEyw zE2#TlMGp9t9Qh=RO;@3-Y2i=ON)L92O8L3pe&0GVjGNSIIr=b!Bgy9LY^kv0=(_QF zTOySiXQP~hF(hv!ly1;K^mu$25~ezo8n1vkpKmm)XKnsTQ4x##)r31CAJbgm1oD}Y znQgnb1ivZdL%j8$u)v+Pk>QuOCMZe09HaM*xQHf~qO{EF`5nVI+s2#u-*EZ*G5BKI zd*>b92~H!FJmLVA0XtWJzQ?oKG;NM+eaxl$vAfI=(Oy}A!l%Ui$vkX`9gEW07~eAi zwqG91dwT%q$@AenjenSu5eHshH4mkF2c<~W8EQc-Uo{25sLRM-(z37Ypg@8n>>uqO ziH^0ED5o9_OCw~Yki};~i5%ov>88|lf3!kSoXuCWv~+o|r6>NF(^naCnh2Jx&tLaZ zSfRhFOja|-Ie8Hc$yV$OG|1hK@vj2NV>YhK7fjVeM7ERwy{OrR6Y(@|)#?VRe{&Xc z$2*iI6T5Nz0$}R}uqAe%>DtuzN>PTfwj?d*rPO4xDB{jfJ4_A=y0r1f0PzvR)1TiF%0cRyZpS2t}82hvJ3t1*hn zJMe!wT^C72lUa8&b=ejP2ia3FpMG&PleDd#;ww&qqzWc;OsPz#qJ@v8XPz0^=SXxp zIK=)%^WuHmmu=$;z(&qoflQ%2;mVUqkP{XL;tspktF~MsN{%~q#xg*I! z;C*&V8W{uz4pAXc8CO-~J*EHV56DB&ytG?%8YV-NwsTumq!Ba|-~AAntp(8}pad_| zK{dM^mTRA+oTlgwxXIDU(v2h`qhA;~k_Sy_IC=jC2#+h?drVs+Xk3a%&Htl{phj-m zguO1ztTl0BpD=b@*Crk3t|YtZ38n3w*&}uw$tQm!6|?Ww^#ZSYS*d;nQkSa5e4N$D z(pj+G5uIse!kl2`s{TU-n^~M!E)g03r1w<)K9BUe{;SwIg}=O%q_5S-MD*H<_sGdYHCF_e z^fINj{g|7uQx3GDLlYI#m*vR?WFS_oZOXkO*RL&$MIlQQK0d$PO~QWFJsg%z$2B0LL1fOKf8uZpziTH4Nl5FqG4N~&Ism~HC$H83`P$LZS( z(u+~8kZ9JkJ)5uIQdKV{%LGWFf^SPlm4!&tdhFPt6b&!PCH`T$KDG;oq{YG$ks>Hr z$;1~tc+E?Na|PNOE7n3ZG37g+=*=fX*@rX5+19r1I_wBe5^V}xke;ltyl}h`%TwN; zA?dfRj_e3rbmxGtI;In(`{N(sU~03a2n(Jg z{u~nmLL!@Cz^HYI&uh&XhWhL6%`gT}f(` zZfDc(1E$U4zQNQ(kPr4o*zi!tzi>=>%7r*&i9t)RY1_v#)b>e{xj$SXp*nQ>M^5^= z9IAA@Er5b&G8DNc=8)Zxt6QwYC3ARA5A8(M zlp{d#L8UKQgkDb#>z#ERdcWvo=D+)itY;GAH}8W>2X4?zmUWo=lsq`YaG>$kw8llI9!NYWn9#)#);uoT*@1QyV9p zX{Vp7?Jdp*tB-Km)UE};y|#;~TXmlm#j+l4ZNNk%ahP0Nm@d-l@ z%-nLhlRjD9QiR1N?{8{GAjg#X;{7B5;ZdQA;awVU=JtunHF=!{@1>IYkL%gVsRqH@ zSjxfz*R`Y1fSNp@ckYszSldKl4Rz2ha|Z;f253EeBM(h&Z^rULL~yRZERpNo!phYl z<0#kRB@@g5(=#dCO}#u2K6@c~eNG`)8-3@Bjp$Ymu!(bTEl#_Gm%4)6V_cN`JT?@Y zkqH~_8c3g$U~tKP7{r!$62LH2pC~4tnw99=?t7L*LTsMKj#}Lu_PDM_{jgAS&Ka_t ze16Si#Zo$fDU3P&7CWx}6WK zQa^`&;2tShthLhOb05k1gU8C&0e8=URQ^}&Peo}&qPfOuE}JE%MrqOI1SX0FBq-`m zi@b?u3+6483t~XPXQ7Opsss2=twfFvj^~;^8HM!;VAKIO1r;e&L}BYoqEGbJ ze1?1Og{PJs$TIkmwNoyboD~DnT;`DL-y-TB&;oCFei%9Dv^}rC zK8&1G#$h{=vnYn!;4ow}i8Fej4pB|CKKg4w5u$k2oroNiuTAE}@0g|f23-DSAU$hO znN!u778D(;L5W{r!lU$Pq-tT`DonLd;Bhp~yC~ueUEEHSI_tMPY{6&!7ONxQD2=L! zdOr_pYh-%?CPnIxNxCYO0hn$zvNcP6{%R26Tp>ka&Z{>`5G=$ifj^0!((wzrC-C0r z0f@2aZ^rvW?3=xcY-?|Sn!OEvjW{P#Km9ool<0B4FQZe57!`2X5Dw0=BXW586u^}hb4chLLq6WAY?FZI7T%|uU` zha`0PU!P@C(Y>>50CjyeTw!p8&+78cE7bR**{znIhUvgxxP)(REI@YY|?N({LV=3CieQpY59N{2n{$Q00YCiH9RUagp zdX&inDUhD7lAQ^ydaI-OdI7c5yYCldiVaKHJ97{j;+zBkv=)qBzwvy~PWlOX%~Kno zX6J4XHQW2IW;$NiDgV{X5I{IhWl3LM89%$8X~WMI|1k+?WD+;}1iuzhtmRkYyli$b zw|i7O@y585Txw^y;M1*SG3ZA>ImPCUZt8fUq&sC&m_&5FOUKX$hCg$%*Wy|8Z59*n zrdB}Cy4AR2C9cMbWb~xy_NgK8T(G~f3h!H}_a6#PiyHbW9H8?G{W9~V(<}lZUv3+3 zNR5j@iDZ2lv+n@}B_mz&*UYQZnO6hInlFQ&*-X`DT5-2t!qb-H!u#KQz^3UTf8hNulK zS!BiN_Q7=*HgAU&P^cijpXYVt4J{84O2CdQ1gJ)3agcK!9BbDv<{SyE0)%b%y)S&S#M^Ncbdf~!IQj#> zn824#-j>k%))Q&q`|V=^Baha>reB2Z;I%# zvW9ukf~mD-8++2aU6TT3SjbEb$`RAz+NHujodHg#(udL9|B`%n_5=rslA!T4%@la7 zz426V?EY_FODM%~Rco_Agy1SAzqnwS2dma{-%LfNkPLxOVJrz&QZ0sg`?G!@vOWb2 zUQ?>)Z=KHV^wXF+5Kw_Ebe`vS;%><{i3(ne;Y-!NMIGWZaW0Jf{-qvn@WH8|dfR5a zGOW24k&{L9CG&>lZxF}Y+L!pY;!({@Ca>GDx?-Da$rgMTzL|1g4iDVBrOOyfueMiqN|K3ksG$b?y}$!Z-V1I3#Gu@g^wmoAp=fA26)(1VL!u}x{G!4#mT^@xDWDtF z+If}k(=^41QL$PLzMB2YNc)q-JSvBQT)j$ zH8bV;etq26joC=+D4fM2&Lc#tgNgnkZ_gPN*)Q+3)S!I7B!Q2B`7CT@PsT7fnE1Pf z1cY03A1x=N7smCY93~&}imj9U9*o;y*cznQYiY1%XuIPxr^~VZExMo}(KL166ar|p z&=6N%cDKhfCeshbhkp+cSQl13(SxqX4dcO16fNgPBt-k6XoR60z5P2|WjaDHb01@^U|)5zH>fTWXHM$?KaYo@EyU|13mDTU zT*s=dZ|>^vDS>w(Z%S5{!ibBNmjkuVE5*cLIFe{hc*iw+Vo@TvI{7(*1fw8jQfTd1 zxw5Qn4g^EnjO_FW&&R(CA2i8|C3?dn>6XY~!urLUn6OkQW%ju;gK=4Q;*6X$5CpsM z^Oufa8^ePs(IhOA4|0d1 zo}KAMqk=1BzxOMkzz5+Q85db|#?V$Y#%H@M08yZcbyctbzdHheM|(!oEc`(|IY01F z(Om7!Kpev!F4q~2^0ozSvm8rG1+SqyZmz7ji5FhRq2Mqtz=)|(Yw?2ZM5k2L*J*NO zi$ba)fHL?rq5cS1B(Fk6T`XHH*bQX`o2)UvQ$@Yf!$}+Y%=S6)W{|1*B`W=-of^hG zp~_1)qE+{?Uyh%gko9&%FM-teU^t{(_Wp>7i4c{EM!+G@%E#GVT^G zkwFpw)36YM)wZ8PKej`gE5pzqnnjD4fm1_4OgueD+6ITsAI|-C-?Jbv>^b6zc}U$! zHFxMWY-QB?4KA@b`rpUqC47GkAj13K&K=36np}B-*%B>)aV};rf3DKjlB&}@6TUoQ zufezI&PLuGQR0R>1@;h=6_1WF-CA2mu+ZOA` z5&T}Z-djmv+DNr!q@3~BWkToNlr~0CMbPczHL%6!Gg1y+k{NNzY*ySpRx4%wb6?8mGNu+y*p0~;$PSndz~N^_J@`LPt^xt!A% zN92ieY9)OspLph}^K62Kmr1r7$xV^;O%0p8+yZ&mY{IFR_cQHy;noe#BY_ArvMb>hq9^m4yP4EAL}FSN=X9QTRZ3Qyb-%lYO|^Yq{GlO4@;k`9NkNT;1Vg9KDoPFlo(5LNXj z`QG`yjqFLIPg5`~IZ$w_R;IWJ#Kg|xXRF%i5r>4-C%tEFdzk;ch6B??vc$7`{Z-xF zj7J^yM}t!mrUYWJ9Z?i(A~iap!}EhFdw?-&C+K!ck5u5KIF|lRyjhxtWfRHdF1$g< zHQZbBVNgwffO<533@mm$w9sUOWrk?vM3LWW?kr{>?PElcKg<;qWIv&X0Xqq;u-B^~ zKy)$H3V9}QrzAlh9LnqxVBIEMYlnhlWi;D$f%via{kBqdKD>A5@gZM=uCuMz$K9n< z$$@1_Sg%(!qv$G8txo|6_(g8TE&^uVVD%o_n0wK`>Q=PP7Q+Qk;2 zs*G>DCorstv$FL|y)Kr7*Xb53zM{)whSbX3flD?*dWcQBP+ly)o8%B2;usaM2ko(HL1Z{1CKsZE0A#qs;#6A3@9L}Co!jl-uIu6py&Wr zce*x!$lPz8fX)}`AocTBe&Pl%x&=+>MnJVnB3#6pD>tIom)fSZx~38r z!=CekD?EzX_brC2cWCI<2K~st$DEVTXO4P>pFQG^VaJ?oJoRdde=ktbGw>vGJikuY zs|lwpV7x=Gt7+4Sf-bQ(2fSaAiF3{ZvZs9MPfrOTqT8&Gt}Ovwp2h6ORH>nCSq$Nn)@!IwKhkJ9n+173oko{~_ClP{>zAX-XA=MC~0Ygr)NEbd#U-uvyUUW!H(oiN}6Z}Wr#`@3Q;j>(`Dms z*Fx=L*Zdx5=6lV!2o8fWo6IxY{>pF8U6=<~@j9Gy-KFaB66pt(20At*p~-Y;TMYX* z_y+!x#sz$Ble*tsf9MAF=QKgJA(~!yu(gZPr3IG6tLsy}h@e@(aPS}Mtv0h4@z65= zL;eC(YpJ1{vXaGCS{siAMNZKV0aQ_?5Ul9+ZN2#~dX|E|w^K5o9^T-SU@WE-lIwb8 z$&jL7_Z56YmGmut1~Fy;gK8m3{1}PciMVu=jMV2_Y@&YwOZOJO@6MUr912J=YCk*a z^}%qZB~a-(>I&Tro#dMHQCiw;=Jqc2%sDJcX$zC5VdBZ=yCmoS#kq!7WPC4!J99!vEK5_*J@@I_3&+gHY55PiWWJaq%aQyU)AH&NVf&KCU6QS_yy!H>AtM+aA^MC!c&RMN z(P*eBBE6lXN02~nJbn}d0sG*?Jt92b=_d)%dEII6pP{!daYBiC$%HU4J06@|lT zNEJB^z2a?FSysZ8?>gXlpTR!sFJGPJ3)}*DWNz0;o9{Pet^Uo5eMtPKs-aDfO>a;Q zT-BIKDtus=W_q%XuFAMLf+pkm+2Cdznh*;pHOCHCl(AvPm&Q)SJ&&((zw@XWGr7Rf z$l-n$X9QNmRRsO%rWsDTyxw2CBbOP1KF-k=dXc8@h|Nz=HTAkyS4DRbP*Xg3CVe+X zo=e@HR{OeLV^C4Qvm9ZRTPOjH4^#bU2K1IZ=3NtgT-`-I{QR;}ym7%{)%Kd!R(3R_ z$9T=pqNhGnmvvGwSB_VHrQVo8Zy!Qif3by)xbkjt*{B@t=`#JxzhXfDCEyrxC=9H?2i!``#wkZkp`ap@E|vPrityCTr*L5*oVe|1ePMPG+r(#Py6spnufF#Tvn0<(<^7R=^4!gj1FKtFw*Bh8wT**a zstA(>DNSk?5b9W3lol@&)%_m5<^LUu+-%cAo=T#AS=fggEPm?+% z>ZC6o5y}7-A$o}~JwDQ(N5h^^Xm{r*GSvq@UX8;L%B13ai)E4ed!{!g#VD;?HvX2B zHJ-8S-ygDOJM8sG?U0WRK?#f6 zPdVYB&AlazSa}e{OX_AT|Du;SI8OO|e|@H>hEd8sC7{^LwKj)k6lZ<7J zHW_6n9ETiUa&NDlW0D~3e5@m-r=G$lG4WWuU%zU}#m=b?kdgo%?#a*hHxOKx+9wsd zd2hVLn2Bor>GS96S4%Lk-PR7(rcv!oR2+z(aDi~=^~W4$@jEmD?NziZ;F`$NO!18D zmd{6xj$+=sY8kgk&N9uRM={(Na4MM&FV=rQ1tcDWe6BWL6Q21Mi#U6eyIItNpXQD_ zK|}&ZD^)Tum2`bLWH`?ihbAimU?)AAgeDT3vypx$ui1zYy`VUTF*9|117Mce+mFo#KZs%R++80lj%zbnkekaMkuL)6q(4OmKv z^NGYw!is1dv8RMJH(-8Mbx3aP#q_>1iS^(Jg%AupQ51*T6{erd>|u$ZnP@Uy(sJm& zK&|az!Vqt&Zv4`3=pmA#CQm>1lnnWEWzx98p!lR(-pZ&`0P5Ar93~^9;a-VTXUs! zHUh^n<5zTbvF1v;4J%)W1KrSj+N2Trnt6qh-9sZl_WP_LM-1(qFl9`@wx4-p)$Yl> z2i5|O@5wVRZMaiM_Yt46b1DE)L{Nk5!mqk>!EG`dPInNC&*=SJAlieMSRT#XprwZR zC*ErR*DN_dOs>u3_no8+^*kaMtXmM}P)LdLZxwAo@HW#V-;Sv_r({luzbsSWju&=#Uj|So??rz zZCUa&5((oN*Mrl(OZsjCyy5FpXWQ089ZY=8OEz{uuEN+xjWQ8JvE#?Uy*i=BEeKPt zb6yWdGV!)ywt)*JKa*(~u}gAn;+BRTC)lx_)T{b$ye7-M(m;C)<4sv+$7NqNW64R@ z<_>4q{blS$Q7tSXPsqYWFd(FcQb~CtuTyy*93;^Qz71(d)O7r z<}Y`d6I)m@*jwlBd9e!Q((s0RGY?t0`AkseOtrE|A3w{UJHP&2=;6%F+*AXV~1dq3lF_CXkBaGrP`1L$F^U=w>)%PBcDL2clovvs!v&7;m z;^}+FreCU-qV?@jz4LxrD}l4!aMDnn67YNVnNq>`4hIWp_wz}-cj(Nen+~YWf5q>Ij#@0R6^%NH=Z=K6m&fXz*t61R}xUVbl?s3cqEb* zbK=;&VHn%MCi3g$h2K-NgHZAgA9HHa`fpqUQ2dk6Ztv$_KsT`BcMY#Dx`34}n(5bN zxwGmA8%@mBnWFahA_r>Tu3&6S+Ml|@LBm?@O`!4|Q2B56ODWZzm7cTZ9@%T^EGf4~ z{OpM|15^dII(nWa(yfL$V2NOrOuKdP?a+#CGogH)3-U+Yj0n%|1X7lPoEfjus0Oz+ zbf%HI`Ft_^aDCIl(khr?5J6sJ;_Qi#LPGO%B(`S?Xa0VJX5&SYKv_=p>jf42PHlf1 zl?0{C^giM0|M0_Mn14x&h$`Xa1<{biU-fKZY0JzAWV44tyTq@H#M55R_Q@X8C4*2f z_kiC-!UB29qzhKOKU}&Y7?+q1guO%c?n$n$qvg`L)@st!Vms5Xb4#eiNBVUMr3DUH zASjGNfy)yx$|Um>^Q`^@LJ8H)x{mTK{*7%{ztbAZlWcop--yMV(}>_lCrrps^ob{3 z$(P%`3@qE4U$!ZVSYuoHqBr!CI3r8~?hF%gjF6jEwlE5@spWC+eOq>O{Cn!aHn}Hk zJ+4h+ghcAcPRFpKa8%3Dk&17Kpf-H0XFS)kSDd9-17g9edbDvn)G}0l?mz2sM^UDi zGWS!v#r*Xi3eaoWJ#>lm9)t`hpnmuTP}?!GKNr!o7l0Jp{=rjMRAmaH!vqacrVpRe zgDY{^CORN|I6v1wzn2+YF_a=sfu-g%t<-l<`_4U4LK7I>d*{Lericlh>c@6P2YL1IeFn{Br(Mzj=f@ zC4am_+SB^GP|yCS+d9p^DBB5Z%B?>*>GY}WLxt~cqkRjUR`85aM`NtiyatE6NT;W% z4lBv4Of46^ewJLmI0G=mZyD($r=@)i#IaEjg$Bv>`Rqh$b6gn)f*orAM!-nXqbxvhvmBdRQH4m{+=43GLcN3zNkSUp%{o^b?e6|O`%gSlKFFdkTIkI zt7rfjYxuA^sVB-j-f8GhV_^;}bCk z-U}A7u#AAsR@|z-UKN+f{+K|@IW5!aDjk;PrrBHK%K_|49jT+XX1Rr0uE9hy_BIz8 z<+&bfpU;r2$&*EJpE?@1IB!f&nuCr>i&vYMcWdM6Xn!6KJ(YADc*A5ze3D`QJ#O4V zrC``lME4<%Nr#W@8JoG^p73sfHDfgPWBx5ez?KFTXHHzHG_k^>SN8#AkmkRq^bFnn z-alcDW9W(+FRqjj$G0zx)s;jCKhN{V&g6R~*AqwI%yT~C_-sf{Sg=aB+*U)5-#*x& z_EBxS|AALv7W+Gq_*}myYptr9LuifjJOP1v%8K6ES1qf+`bmemnzo|)O*=*5wn=gs z*II3xB&6h4XXFAoP@Lk2;$+xZo&Padz5_giNJ(_qNgepsxH20I-^4AJcd;>wIl*>b75S})m-0miTojZM0>mrKwe{xhajG>E;Q_Yea?qQm?vX7v&P3U( zZLOnueC4MJ%qGmhp6b$`w@Kg`Z`@g`dEEGq2ayXCZ@BT;6LgG00{cz|U;9zx!^+Ht zdio9yjWV(U{u%hSqOfs$e(05F{vVD3-0}HzPVG#oEIb+@ zMG4oCx)2X@e!`_AT zsj?ZkWF>ope~hD2u6{uJK)*y-dq?KJ=3cynoV9{;Yoiu_K`pcJHQZ=(Gm(!z|!Alkal)rM_6)UWY7?#PB{_zTp1g+zJygr3kaBoX4B~g+7J{6Gx>dLTC~S zbJ7^H4~loEXM!yi-V0|-JZaGRwflolS~_;=_OAY7bMwCac)1uVBCv#Rr(w#@euxzFG@ur8Hc z#epw(4*8U_#$02ob-sydy0t2ec5K+4!eJJL673zf@^l>)iQ1*2e0)-otl0q+!*nu{ ztc*)BAC&6zN4fJ?68W}3+TKz!h6YcqVZXvl-(sF#vnPOpQ7eZ3V3Kl*2 z`PU!fY$WAGzg*5ehZc20%eC55hpElGR7l$heol@UzP%q(aIItg#R%%3u6C+wpewNs zX!8qB+23VAob!Z3%*F?(AzUVDSKWc?KTRsh8|EHJN*76M?+`%3AN5cixOS#& zl#m>&$XeiR6?y{5stKiSHlgSIn6OeFgwkNu=KhoTQgP?VSXz7US_xVI$g9Ml^9-Bu zPyAvq?RB;vMfpJldNNy*@mw=51(X;3r$)$6A_^j`sy5T+piaSgAjA>Vq<{-E7N)>C z{a)ZH+|7Zf|J~!uYERrs#Q9>Us6}=svQHp>5O0n?(kiq;vCg$Jw0iwVU4OFmcJ4;d z#M9wxT9xmfXkSP767<7Ohv71=lX|ehXH~6}E~_uqU70rZiQ+5DA{&eb>Z7mC4>_rgc3sEXd^m1=W(=tzUo~@Ip_QS+rAYG zT*F}qS_7PiRKM$HpVnO~LcN2$nIfM|q7|)@o9+#)&YzNJ(6)UfWd#xwKP9}=9C~K% z+==_bQ}THe{Hd9$%fZ)iIfa9_m}$R_5UiO-XZmxGKKw}Su%t$TjXMyPB5Le?ZZJr? zP2=~eh?nH%C^yzdG-FnU#mcWzn%N9Hi`xWaota!n>hMOVIraN}vzpQ6fc)^j<4ucU zai`oX^9wTT>eii?C)`-o#DgDQbynpvI?$<-3SNn)FK zy42ij^IxMF=G?e*%>H0B%EpY$-v~ykVj(0@qjCQLF1>_#qWflAP9= zlR<#~`}$}I;+EZENwsj}$ms2Ta*YEJDn9X~k_P4wB7UPj)=H16UU2!>NhH&5pB>zH zJAn(L*#pEt&%A!e!NKD<_}HOQOUC|_=-gfUyj4bg{NyywDsr4nDO=rQtl`#^8C#fb3c z{U-o;g=l>CT5F`5tt8iCl=`TsY~H@ub7nQSO!4Fw2G#pgXoupbtNcu!tf ztQBT|x<09i1?_U0ihB_D>s5bDHdv`u^v$GlVSS9Q;#52$0B&FD%qOz}478YTGQrJ! z2}RC3mg2A^Rb1!K?jqCRoUQVQ8K=$-gva#ZAs`pq+_ zg-qTpq|XKgwdXAcyCZ*eoh+N5(aOVeh95TU$d&!>N8j-tZ28(Ny}E9{nalr zoV7bOC~a|~$mD7kB!{FgVdkK)X!*o%?x6MVDD$%t#&vqbpB=78li_}TN2@bUM-UzBPWU9Kl6-}^xyHOJOA7B zv$vF4o2p^S&MfiYGp?I)-e$2PecZ|aR=ydwEwsCC61DJ$)2m{in`T*Q#_+Bg9da;h zMpwjsSw3RT{u2XeWqSbbdh`l#FcN%e(4SbTUT9k&penN;?YKlZWTc73-)!la zik}FF&%73kDP^l?62qM0fBN|OESZF|+|)Z;!vCKOpsw}88)(MKqfSy084CSR@Y{xn zRZTeZ?a zrVW5M1!0NYvSde9n-C(>A3-=a>OVlRj=;D#$v~%-o5FZ+T&C^%1nYKUtQuDF!$hEg z0y8O=57~t*Wv&j!cJc&gTO5}a??5%&PkHMIZffJEpgZk!Bn!>>lHr_+V!@o zYW7~N=_p{DFia^Z3Lo&I-T`?tFYFDw-+4JO@E3;k-#~O56qQldJ=Q3e_VMTT0*;1> z5cGlv>1##ECB9~+RM=&svF9v3COsZIet}Qgqc3HhP0Hyxs_cnHx9Mkwi7GlU{9Flp z@*zbp^CT{Gr|>K(Q*wE=`#G|?_LCT^*^;kWbGr4I6&}))+b=ZEP_MW)$LzHTA1`K= zD!bsCCg{&^0+VY~d5_2;(h}oNjy`@b1h1m?h=pO{M67P&LuI~Hq*Z;m0EScKh{w-= zuNp`OR#hDdmj=G9%y)T+ova&D$=(w1wS9Rn7&=b)RAde(;-fyq0Cwr7vm{Tc$+qKC z(5dXs0PE@-EQX>XHkMj4Nc|_h_(2|dE#@i4{dX0g%dA8&k}fCs1slpN}PTPnxh%Rjs zcyJ21>ux7(bzxmsdxkK!DWorQruZlV5I_39J?AlivH#&Jc*+-UHk?2`?hhizwkVl! z_2()~bAYncrsd3T>X;CA`a!w+UNj~2!CRApGQPJtNZJl}egM$<;kzqJb@N}*jj7b0 zIM7bHM2K!NkmTUk$&`wja*YBxLX(5%%Mf#zd*-!OqReSS2q~j|WRGL*oiR;9VJ z5GY2n?|Vg21!`Uykt}`DjUMmEfLy|A-loD=S5s}M!M~vM+|1LZmHW^>e&V+a_VUGv z-&=||T=d0=-}ifB0*j#HM(`o0v@v3>JVulvqg=2B-~ChYz_ah>UA{>b6uVz{SI>}) z-yh?c*Zg>P{26n|t7DV)L(-@yRtm9E^~W;Oh4CojAUdivW4PufC_RSw-&<{uGIAk% z3aN=*FAAxt%1hQ5N~HI#W%awGNLJjJ6cC-iF~ex&lrGcoS|CSlxsjpJU(mG@urBCv z2bciqUH?5jvTdBROW^I9dO%6*pTMT{pxXs+T=br5PkOWnnZx8tYLg&(z2;h(Lu?S* zNXR$?57L?!w8LPRMGp^^*nS5ItqCyKH; zP$t7ElN2_+dn_^Kop{0y_fBZalrq$vRLxGbUxEqqcVFvPRO-6oh@9y81Qi{qwQuyU{MttiQ*vb{33Eu5tyUBK`pDlS{ z;Z&}7!r8+=9`@P*m#KOj&$H)kDElx=mO9L~47MTTRikXk@QZe>tsA{K(4hS(c3bjW zUKE8{W9`?;I6i~qkNmfD%<&edGAVFfxp@`Ek|@7!xko^Yd9g3N0{EPMO|&YO3Pb!> zbmD*fxAm!Ttude1a?6TIf9v9lcbb~(Bds;=KUwmv{!ZIqk5;~yX7bwc(@6|^>adOt zsAxAp#|7N7-1Bh%%e0!Jt=7d0)2q_Bq_QzI>>Upi-dt5&Gs};=iYE7bHn8IJ!zDNN z$FC+e#Kddl6>ciVZC;X5=K;ozRO+7hq2s+?Tx9UGkX&Ci;NeXu6SQ*zj02qq97a{S z?=TM0bF1?ZKWzA^LZ^WFMO`pwnT<>F9Q54PzsgB4h`CC%c3anJ$HMGu8T4#=D|Ijg zgm6_>u;xL@q-R}Qx0bc>fn-4gK&Sg{GUS9PPjx?#ow)?{;k86USr`TX&4h5xtUmgnmHu`4P$8Q!mX^#hP$e|PAI;{~fXN83Bqh3VX zi&`7(KvKpYN7t?oCZzHaNl>h>C|r6M9MK_VDx0WB9BsTApVD8vkdCj^uUTIK9j2EpC;5O+}q<_q#u<}N_{3bqOU$%0fhS1@aC(rPcKV)Z9Rg4Tn1|-VI3`XVXv*g z8gr?&M69k1V}3mRE#P;*xm>9r6)r(4+W#3;8Djy5sF?Xd|DFk$NF>tL zhcqwWCj!KH&&`&mV13SF)iFyl)weo}BS~r2i$fa=X^Dw5{-M9xFFKQt>e!QuJgiIK z=!{8fFc*_tEC=d)>x^5|XD<@A3ww7DLv)J07C#e9poA#X!*vxFg-Ws% z@_&t4Y9RG0L<>^6Q8v3)|6$5?ltM8N4fqB70hvtr8Rl3)Vt&<@y!t;eBQF92EP|2% z&!F(UZmDNKz^BSjp|j56uyn_&fjf=U7_~=U6^cmHNPWc9ic4CPRz{<|AjZkg%O_28 zZB(Q5n+98`x-sVh>Of=6+V$rdZzyP}Iow08Uux#aM`Oj3u1{?oxm{nnd)e7-__9ij zlabs)K8hONR&+t}Rx&%kdxA8CwaTI@qbULe7u|LEs~UAoKvjVSP(AH{^%Y~|VW#v5 zOXD12S$?F~U$gwkQBjmqr`KY~##Ld{uz6=tY$t!Gb^E|KKr4m8o!lHyHeEktcqpE0 zFOWyy6MAyx0r9KL)De#d zX?#~g&SIk&bvQs8X4t5e1oe_eboCI~IL$ewaj8z9^Z|$5wK<*~`jVn4WO96>ptZIq zj77Q(;=nLChp6C6aGdP43LeCzlSw?P$r-4ND|7$VZ^5|IK%=jj8zbEO$hV6q9XRmW+Q|SbWbQ6kMgA$j zgPy@Bs8y{6Ml9n9=fRQ5Mvt_6ZB~{$Xa!2KzFp7iT{QSOwlH~xYE2bqN}2whuOx=I z9vBz;-31g%<;JsHS#d4@9MQ`nrtt4(Am_-_U!C0t`P#$uH=dcEUzctIS>m`fJ zy_h518}mY_d}~hSI(vytm&fV8G(Y8!F%wf?JFvMn4f<^(p%{(veu-XN!#Nw4(P~4J z`f}#E_Qz&-cdZ_U5s`3Ff+FVI30XLB$;HL#r+Wm(%lLpwZStLRX%dq4r(y}d#OS*D z2R_tTbwEzR#K@zcwXF(-Hr%FTAp#29%s`oyA8qjzy%XCEKs=&R>9@umw??_{>>s^J zEC~nd0$!BmPiw66TIbXZPi*;*ne#vMfhk7O*cAWH$~dNSbVQ3cn~h$70-FRO^?tk7 z{{oxsUE5k&YC#~&3LWCvHp#c|OY^F+7w-^migN4KNzqJEe9E$SzBwjYOEp8u!EKj6X%+0*AN zbobxu2-2jciBJ1GZ*|$!iTv4AGIy-qV6;Hqa>WK93|onH!MM_xKGmM5BrYhguq8Igi4LAP^}D_L!MXZeKOiCin&w;f9ZjJLSt17TF+Lme79~ zU8~)s!pYz&a|(lIBmNls2oB-j?HSkn=jPhauJR+eO>sBMzRW?hh_J`F{M)Lu+Q?%h8_1C6VpddE%X-4Sm!fuX94!Dny& ztx#@``P=hv5fm14JL^Gq^sxeY{U3lge%y|=aDOI%y9bkwSWEcaClTkR#1*2@cp5C;I|>;%B0#2K|U5#J|pPk&5MoRjhLouHdyvOls&e~xULnRi1hOK z=a&>9zeaO^0pm7;d-}d#>PnGaaz4OcAU9Y6GJ@%f#3EuJ_^TzA&8-1oeJ5ztP6)gd z{@wt}mA3)VY1@+^kvJqz8XaVLQ^{I{(bZ=6|vrRd-OM=R@>xOB5Z*-~XcsI=<-M9NS3-Xa;0R z=_*JvOtm0cLhERUvi+GX=q@6*XoX53<&(UHu z8~U6rGcUG%>Xk%;!gwng@^ut~Of{u|VE~_dag{tZi`qJeYpX{p7V4H1s3^&*vQla< zljWOoHy+1h{a7o}%5@C}?I-_}<|%9P9^~UbbMAU~pHK}_)d88Nd`pvRNF2TKIf~S)ep$HO);qJW=uO)M%KQ|qf9{Tz0$$(_ zBkQClWTjZp|LlUD4)_Lyd{G-0J1F?pw{Vw|hAs>ie6j=YxzfJ9lOYXGts$kB_gzoo4hDJXZgh8*3hc3}(_c5eC zH%!9d9*%Sp&9ea&hlgC)TC1 zy>A_h;~wS3?)+=cdnD{xZ4<}qvG+8!ZM%ySewAwN$sUiU_M3G^dI{TvX!hM{G$=yd zxMQ*Bp)=yW-U`|qjA68W`?KTVkaMpvyX z)nZ!uw4B=8Fq0Km0qMhg44GH7fUdGULIufiaUsa)ZJFhrmnV(Bd#~;Oh?eqJt1z){ zy0Z}CQwzMu$@$wVeluAZy}My$-CWD&CYS)U;DIOQ%NI_{>zXV;KNb|_LIokk++e^! z`J2=1wX4IDb;^WQMw-`)_#1?TX7Vaiox}4fi&9_a9@f06;5e>^1mThsX8(=kxq&@S z4PauU7?n6fN9&vZmfFkMdKPO+ZXEX*xE>m->?kjA+NXy$$_*%5(Zh42bax4xSH3{! zG-?0JdC^P8$0`U#YbJdmerMYCiL}XeNZc$Wd~1bo9@0!r{l=nnX-TtL5R$E6l6H)+ z=)-owpwWg4pVgNuIWAY%EAY0v!imcWMmo%cMdy9|mB5Ee{6l){oN1Z75^PbHNXlfYdVh5(I6XD^IrEfDp5lY z&bdZ7ViufG@d73Ej!sJ!&De&`1571M{J!HhRF=ThxBu@sV6bOsw(F9?gDTeB3z>no&K2}sI2cYt zXmoqN#2gVPU{8H?n4*&)c<-U%O*o}w0EQEuzj~35UEZWjIF1)YawZp|3iGm<3`W6_ zxeFb-A3I(g%?!EgwA2SSNNI3yv^`fGhd@J5S~EqLdn#<`Un7s$yut?mU=OBgte=TD zZ7go*_l;2T*4cVRfO{)HjP4vkY-_`4X}(G_W=ka|CvUs|S+Ll@yYV!Z^rt^`qR4P% z-39#({8Y~1zAMcV3eP7^HObChpIwGhyBA|;9wtXqcvH@#!KB>OOVye_TVgi2IJ_PD z9D$zBx*n_lESEMI?|RrErc(`J5IcS1?$2$5{rBceymo0I&4noOL>vX`)md&RfrVKi zQ~2_WhtX!Je0lqSx%2p;W3~b1>L&#{Z_dLZ=~zfiGAy`vfFC!+G0?B~j$d>c^S2Ff zUFq?`&f2cH;d9Wq~Z3J*bskMs@L!JX{1>Cd% zm|DUdp-%|CCvF<0a-}JXpySQ{8b;^b^9>PO*oU|2=wc@wN5LY}rEV9yw_#@+6Qswz z=p(D$5vrz8WsCHW=Knb$TRWeGQz|y#+TFHS$T_OaBTL@ux@YJhETqwyir$7ANQe75 z^~W5w_TQ5P)_$9LI0YVwZd<_LpA-B_4o;azkHWO`nx;EsJD0%5ARYx#FD(Q00GJ3;DyNQ~Ff28q0(sjVbN}l(@Ag<;>W#LE7-$v_O(WvXVBZ?nP(+ z66g}!j?|y3&ZM5i75$qz{gH}*+!!^7jI^hskLNMvpKuHyQM36=WsSCkDXb+~1pzpw zp{M*EP0kEy2;=B}@2hN6EDZc!5u8s+S@?%W&ISdjM>|=trceqIPYv&HJb-e{s^&Qi z(_%?bQFIM26&zR@BYsjJqYUgMsd-b{;;AcVs$SU! zSBPSRNgWZE*`JFGm0$a|$#RCvfgZyl1ddyoclyFjO=h#{uK{B7wY z%a@8hU%^!HKFcMukA)%;K>M;K~&x|F3);KN@ocMp$nuMoPjX?Z2^3aM!|_o1)ToF6D$UWOO=?%k~ z2Y{?rm-RkUOg-{Q7}Hk@ipxH;y9myFf7}n-eFQ|IFW!*Sjdkr3}*LOu)GBn)Tsl!osG+uKET2&OLOO<46F9VQ3>+=KcA;}uZiv3n zQ5tn|R9^o<2ecs<6Ln2Tvk5({~OJ$k!U*Pw2W3n;4OQeb_>4j1{O&(@ndS~kN zfZsx$HA$)OD<9Xja10c7UlAYJq*`n4Z`6{Ps=Nce?xg3*jxvkIcEUl6-y!4DI8My2 zOIiH$UDn-c-<9RBOZG{rbKmLtk?($MV|ixYE<@mPXUHf=k8H;KE;Y8w+}pnI)g`3? z+$^TDWUE#b^VG-0P2)p<-nhn}ZxxYrlISE4TRaV}(j5&X)NHB%qIvWqlOo-O}{PkN{BKVxr zC-{~sf$4_2Azh&FXs`;Re9F`Uk=MZRf#@ILLy~ngKKM~)DfikmK4y;)1~uFov1rk) zdL_Lj+@eCm+nlh9#;uYBxj*~hY}E-$yAbcor2ivGIZAg9xvLNEFyA<=aof%x_fq3S z{WJ+mY+WNt#koGS5xcHeJ2XO-K@+?G!^^>|yAkF8-BG{1L|)4#> zPh-{}5t`yuJxbPn9}mD;+3J*YG!@tS;+s1zXh04X3B1y&zJjc!@XV%V)+u6mg`S^y zZOL3MY1IaZzmi1;Yi1e?tJeQSiHeT)!m)(|Egm`}BkZ)<5w=+&5|GC+9TNw~`M!IE z*O;-%b`n;g{o2Nocu&lEP%z}m(aE@*z)@M>a&+VhYr9L-=~d?J0jbsx6NUyt$~|Jx;=>~#_U$vo$zvrZY1WnK5L+7{g$0V9;) zZuDW6ti{*m|+C=R) z`C#wkAKTFcUC+37KU7R$mcWY#W{Gxscr;i=`)j`8YNG=lje+*s2sC$2buU1l%Dhyt zUv$=fVI#kdrm^0LV&!>WEUa^4&ZRy$@l)a^YQA|RUVN?p@~@2wm&_QO8}*)VtU{E6 zwydD;ySSySW@YrSnkoBI=I-Z2@A)n9TLU?Dp zuhsPkRa7qZ62DpyHE`u1RSeyEKCctk%jul-{I>SYSH2uzQebjkW$ktlRs?FjJNZ`g ze_Vi3%lDaQ#TSBVx%C(Dyze&oJhzb7b7=pI%;duT6XVyWmV0x{=M9l%%{1pVuJdS- z=48`d2W@23=5W<`ssJdyGtbqj_V~GWPEXdne^5o?c9RhXP6mqXikSyE7Tj&6Ii9Yp zu{wSiKc017~9(6P@a~2-vHQdDl0RVg+rlo z6gg*oRys`Q&f=NHIc>M}3@00Qm6|K9_IzKHq?l1lmZfDN`_KX5yxs`13i`djsx(^N zI0$VO`*>YG#vOca&)M=9oATOXGzZWd&o@G!o?=+vZY4*Vc6-UM}#j(AIc3Vwl$c)0~Onu>p0FEl+$EAw8MNyE|K=mZLrdHY4p@ z>cylJf|X_;rVuoGZ4-dAEY~$9-oKmft3XmCl`a2)MxG-nM{0XO(xNJEpv(x^yal>B zX7@d26=Uq{8IfWN2nFqBUhFOU0w|CN5&@TFcq!!Xe3!=|6{SO9c}o%=;hsz?JItpg zaxjIL{6FZwAhUb-Eli?zS>KNy{mte1grn}3_R=Lm^C%WX9`Ui;^ZMdZGdyNDglv@* z-f+-xn|)el@X`Xp!u1wvnvzwbR-uRZ4S5p0l`>_n0ajgK;;b#L?dW;EFMV98+k)iT z9ZlaX9AX*TTmI3%b(US{V@)?Fo@TL9(Gzdw#e_Gb`F?X%l`&f~mS}r&{ZBJq-Nl}( z+tmt=7k=sTv!8l2+Lc(KpW@@>$jeuXHjJ;7WUIlc3&v5y`!`Fi=4nK3_=Y2PolSQ| zU--dq`IS;QoE>W?nvbXF7*8*MZ!76J$~uv}h+vojoFeD$ZeMpY*4Ln8g@K5KN(_y3 z0hHW}iH9DhvJm>M;CTw~ypH1|NZFhb?y?MI4?RW=1F3dk-VuWHMcK; zP*Cn&yWpC^8mQhH=c~Kj0_Hv&o4L~NhyS=6ski9hePZk(VAtL1S?h*)88FwCN3L;SSl_M<4VO%g=XK%2~pC#jW`zf;TGNb=Ac+%gP35FjZn;s_EOUY`rJbusF1NGLEq# zQY%iBeD|x>d+z8EOGcCph2QSg_VI{%jrrz?x52zYjQ5!h?HP}8$kdw%RWG2W8H~=1 z11_a#N%mLcjz}2$2ZXn$avh5ZY5se~V9}7v5dj{?U{dE1G%w%s=ZX^y&}QGW;Q#E% z4EEIKsHD^TgkZ$lG9G4eMd^%YsC#sq<_ycH>y7Ogb46ZyX-Dx3c?a%yzCOD_s^}fhK=`@V|Tf$dL#Is1TN%Oj8`M{nWoMX0)i&diDm*izF zTPF!Q&q9*vhdgUAT^e`j$mvm|C}voF+L5obK$VJtqyE?z^)D``6bD zL7~S+jit6pW6c1y@-mls3tY($Ouj&VH9_Qcl$S>;`x~)cL`f{ilG$z8)~J zjXfm07n}AM|LYLr8N-)xQM*MGD!F?4-#y671h)>?)1YmpO$ID&w2xji)BU^ObF4_E zE`bXODm@lmwpZPmIX~p$ds%J4J}^}q%7zbe{PeV3ug>-WdUGNe z+PkSG8?Pt+E6Y(0yDUw~`Zl2)Hx;oi5SwZP;vZh6Q`yb@LJQ(QXl&FO|FB|xrYYM? z2u~7%g#P_+=+b^0uf-3TpSErPa}blfl|J+WQX~lqY)5_2DCms=7cDRTY!U{`4MG%h z2eSMIfK9||fJt)iG}25zYu}`NLoZH> zyPqlr=8vd@lKuSt($Gu0*Ds(OqCO5>m!b${JQSyzH(&k=i0Ao|mDuu=&3=|#Qo+g^ zJ6lXHOy4Zvv6f3PCc|7+AN)TmT5m`D9=o}mR}9-l+&Q`JQ4RV6KYM)FEHCuUHony* zt88T*Q%fmSMi#H)v_0dU1%A9(WdWg7wj7?S zG#r05hHeD}lfVM*Vp@_8%O>}ukWBLx^ z(+(Fe4%F7C|M=-dm8+IpI%c|w-%wIttg97}RQi_Xb9^tR|^lPe($vli_k`=@Dv(w@H{%dFW z{Iw`7EN!hMmpnSuU4m}WB{Ix;E`g;$?Bz#TConL{g{|Ej`ubfaDNhlwK_UoOdX!Zx znWb$gVwmn!L9c|OivR>nA)tRZ4I09F&{$rYwQ}giLfQ!xDWHcPMl!|X8Y!&(_v45q+?U^ z`A4`UUWuHP5xyD?zQ=EZwm~S=bH~&Xkc{BGB3V;>(vpLFsK-UM6046ex31 zZi;@v9PCFVRs~Jeji)Mq_Gp|t%k1EJ|CKdvZ0Y32@l~>f-=C)mhf8t1Lz;!2-h?5v zU$a{9X`m~Xl`{u_-L00zG@P=QdG-aoUrh1Mt6l_^@A!UcOx>2&Eh|y>FEy{cs8}Ie zWQ~XW&n3=yz72Ld%N2%^+fTV`f_qWMG_?BpOtymGgZl z$Tt-@D!-ImL(8421ubp|yFYu@o%jWlAULlqcq=yVtq<1!a2yHX*OM+`?&JAC9OoE+ zMH>`s#dTL5zDp_h7xDFFcD1(Mk{$Uoyl!sDURe2l8NrV)*UnrEyY6(5O1asXB72@i zomhTQE=P!`G#g6@ncKLRl^5|>iqT_0gLm^Fzbo=LuYMs#k`7ZXeB6@x1n<`CWx*Ds zTYYFltn2`u?qdNAGt1jFxB8Ep9tLz5h*H3vv15FHa>8yQJh)FxR3ijcR!YUR@$qaT2Z`8>}jh$DdYOKXXn4q?oI^4D;or^<>>})s= z+X>;iD!BwG$y&YOsxxO|I80zVNWIzSM9S#-Zsu2Of(vfi$;eGJdV(h+P(CZx*SIJa--st^|`a7c)#WL*IWB*hTVm$$MZgH{UZUld=qs z%|3@}5OVLOyb?X5C6OFAWDob0b(*u}jh3zM7SQ@D0PV&pz$prFEXH|%t?1pIHTTmF z`kzwBjNIv`zn|()m3|P65B+TsxusPtPuI`%HF^)tMe~eeeE-D!*H8CU>wa6r-$RHD zlKfIrzEU6u_VmL#N-7Ou5RFKb{oq{F^#SiFl#DkW@vVM|R%xRzp2CZ9{o_pk)x>j6 zQ^{D@M5b>)R@>cR_li;aW#r=08TmO%s1x#@x1NRUGa^1MvB*66>z4l6_AH{x5}fpE zlvd=nj`vdPwIlK~8)04FX$(tQSN$f!W5|mx;)Rz@+zZ1IzpIm-<}j;5DWhNNi06yF zpYIJzu1kaW7l8dzEy#I0>;ds^_65+G`}KmQ9HF<47X|2-2E)879i-1_G=wBemLTm7 zay^+}#zhe$(8|5Cl0hUfoVR?IA?I4Q%M#}f&}cH>OV)bIafzx}Te__Z&staHo-;l| z+;OK+|Iy*8RzE*_9+Um~AbWoe7{bgoj)Z;-FuL+PcLn|Ps8nM%oC~|aqD-x05XACVw*m4n2EXB?QXfS0>chh4*x%-!M zYt0yyK^-ij! zZo$_)Ejh`E;y2lnzusQpteWAXbaXY({^LQ1uM)ki8K-tzTq&-7scU!8`b9{K9mDHJ zRuz9+^y%8~CD@d)vxtPjrx8kyw3`0Pny!R&(;&LNxvC-ff2p)*^yU2oGMtL@AKXM8 zezxy4NO)XPCNQCy&Gv6-lglOws4@TB$E2>-bf<3_YI43V&4M{Jrz(0i;lEDvX-M~O zdpt>?x~(}%^sjXc%+=k)3e-N;NqSM2fvZ%FV&+0rj^pii>WCQa)X-86;lQl{`Xbl= zgSi&FId2>-@|-t{ z`IKfo;wbHaiA7)_+Y*(QyY;$P@dm+ubzhVx8pVSHx5~WSSq5>V-DpL%|h}R#wMw-IfrX zy`#1F`L{Ree*1NRrcym)rLvwys($3M!>Qc%Em@hAzI)I)tEPr&zjA(1RNvaZlAk~Q z$qMGrR_dU7C*L;wuiTuiXeYTj_6P zAT%^~QQy!k@}BuNpPiak=o=qd0hf`T<+Vqn2|Wi7tA}R0m4k){Ncyu*Tm;qEf%v(9 zF?ek&3l@w%FS-}()DH?;FH&TsoO^Xz{&sIpccW(^*(F({n*i!5tV9AX|g9Cs5Z5C{+uY;DHnA z-;GF(pC8fU8{<*M!1PhzINc^DWqV$mjFes1uIne#04<^-nRCiG<8>M8Rda513OS?! zuJV~t8xX1WW`^%%Wb|4SGt*}gsv%=&AA=Sv{9J*Lhd3DngX}oU^09DAvJ&&^M`k7) zIg#`VdS6X!I?LWtcD8(FVt~I1M;Dx~;8ddaam&(-cp5+LR^@)247U-{r&v=Cb|Ti2 zxfRI^KE!eQaVaELy%dH#Blz^6$74xiMjG%irY4fp-F}y^OFEDd&-dV4p`h=xtgN@} zpEjajw0UYo5t;0O5dj9CPcz}M9KWHlAL}}en^VChSY8n=ANY8w&_(KkusVOrToQk> ziD^Wfp8Ml%*#hUFOK5po@1JgS^O#IKS5vX&z{YuPsGR(b~ul@RHI zDbgn(pT)PbycS4m7Iep5ZQAwzYS9oE1}mZRmI?|bfmiTTFZ?2Tcs%!H6|jZ zp1wsL2NYzb23mD*eK7N>%a7%Bu06VKp|w2_qw%^9S)hc$1F1(pg`5J^fWu}o$Y3)A z>C_b9{NUBj-=vuicrb}9cI&G1KSmkT_vpDn=TFvg?DqVXseV+`X=4y5xPZ%|dSosu|^@-2&41*A(u+FV}yvHIIZKbCOrUazyK4H zGr3059P_L|3_Ogs6zhXFS_THI^3r=e6c5ab!q0q^`sRiuH1ct__>1wDkT5;Umk^4m zKoWLFbuIe<`HHg~SgFIW1yerc&~=3AtC3={%$NPD6&yq@TB0aodXc{buOu>@1)d%U z0hcV6=(V*zjQSA3Ls5fjNUdIEJZTZ**anJMo0~k9bd`hHo9?V4v|Of4mU{n{W4;_`Riyb z<3XIeBiVuwz=TdZsJYRFyHgIjmCI#U?dXo+;@@cko+=jVyr>as&CXm&jGU^q4wW|!>msog;!*|` zrCq35Ti(LAh0w6w@Az|wwJ3elU@R^9TjDu{aU_~ywC)?ilf^S&rGsH3NFwr9UvuMl zAbG`h?|WWnhIA--27r0tFyf$A#CV@yVBLNq_ii^9L>#PklowM+`c*`1H}`oW1R;)& z_4QxM;v6cLa!X2S3Nu5+mwNbd;en1{M-P5uZGQsnHv*Z=^H+fg2mt{(iiosdivU`U ze?Y6DNxFuBzzv=BXeK37p}gLFdS=-=&ad8(S6#9CKLVC8p387duRVG_hlhDD9YL$Q~}B|Vzq@%{(i`8^FPkKF#Q@u zE|t+O%Qk57c?clYPz>32G!m8Zq;JtFyAtK~){cB{;C~7i7JO3fhOjt4Dta=0XP(Af zQu5`FXRhVE(qEMMSxx0H$2zq$fJTSy)KJ>SN3Nbv$_UYW;-}|jP>j~|)VrVXjM{?V zeVVx_3-@i5VDlXIB&cH2e3bs&y@w#^5=jU;BPaL9lk0#|xgcU*w+C(aG6%{>IA2*FUCtxLZrd%jC^YanjEwwF4@( zD@VCc+e)FYPVkE}3m0vAK^j8>k6#Es=|oa|tNl3YKCSV`IzcC(gJ4v4*E2t4ek*8C z-1l;kI`hu?FmgLr7als5{^WcBp#7~rbcH@F80Z@x?87r)Ov~+6tqZMe;rm_RXx=KI znO(Bb4aP~}8z!EJ-Zro8x&p0I{44&J{}F^hgB-)e9uA#EAq`7aDGm`k?;)E|94o6$ zr@~IxK8~C7i_o6ZSe94&V6%0A3;F5$e+P|k;yI+qb)id~!>^*S_ew?|^JJ=uXBH88 z0=yLBH_vRa`HG=&M#d;W9p-rXGBFe_9&~;(l+h~nVQZiG3rHbrx8k)+2~}x0$Z3F` zOYfO=)jOW@QWM+YNL?*hQ``d`9zfPH(yq%gLenC zwLlsl)`^$?2_LWPW5w(&_!bYgJ?W{?*QR6WOH*$C$+`UFTN)noKvo@d8j$ zTM83nz)*);U~~QI>%zsV9OI2GsX%Bb=Ef`|&nmWdW#rZkrVJcV+@Au*z!zGt!(nQD zG_`=${7M)x{I@~*6$lfx$oipgiszI^{r=FfMSJ@LF1r3o_}}GB9e;`-F9^scygnxS+2BY{J2LlMIdLu{@2CE)kF4Xl&TeV>n z7wSUa$iW-Ucb3cux5h{pGbDk>w{fA6Qev_)D?kkY3VV`{dLWy z%RL6)*o1kAtrA~Ht^n_xHG0eSD^eS_qjy#{Q2UZX=Xn%N0%Awu24sCgkSu=r=p%bt zh}i|6Cd;zVNE6R{&E~P)W_wg~qIX?IR*a`8r>IJ4oD%#;W5#n)B2?4OpL~YP!l0dWWEb6`~p zv>@ZqMY^WNQJ#s!@wmWPetZ9I<$v))^1`ET2VWFcA8+U+dgux>)xD1Jz`-tG#H}7- zu*WD}D9h3`7XDK;R9A4Vd-?^k)GlSTKD=cyr&B4>Jl6UjO*KEnQ66*$sTW1f-~MOm zYpzVq=?(rrE`a$IkT9E0|HpG*eh8K;1LT5;Cplnx4-7vQEye6{a4rG8t0qO_GHBoY z3ehXPihi#nj}LFnO{)*3P@!nL4$nU?uNK`UUU&c)cbmjd291u)EzfvFz6v~)xk6Y9-Ov(L%Mo``cV_J0-U9HJ;}0GmKG^c&(+t8hr1$dUro$9Sfr&O~8O z%>qg3*xFUgg3>m zBjs3h$-0X{Z>mQ4b}hlU$dJ{fVlh|Nd9P>uUR8++qb>nR*ijF`OI7f*5HRj;OZ>0S zy~+@YTho0dmUsIfk%4d$Ho!j~^@}M&mjYQYQBOzH* z@plWDKb)Jweege@wKLQ~HR9BCd=x+k{`Dfr9!~L(tl)6i^)%h1(p!Pg z?-=#<7JGG!*mKvd9-;jYe)nCS`l9EHNB;rIE;y0d58VU|$1fhzV3WdGK^DwpIT#^| ziiE(r@R=W>;wmZxcz{KdMmfh>qApDHrn&%H`NF)WJCrTt6fM6#Y?l|QPcZd~&5IGQ zP#sbIge1VSl9$`(19l4epFeM$RRhy}dym;A7YM6#L58foVC(y>u$R;=x}iHD84jPzs2`u6(hFP{;H6&0KI@DsUE&EO)x-ipl=vl z!p>bb0SC7iKoco?;fz$s4iHzniU|YuC{IAo*dxJL$fl$+p=!CA`nS*PGEcveg(I_s zi*<+~((maCY&PD9WiXM9XihY12YauxoiH`t2*5{o-FT_|OsTYF&-j|00kl`lX>f_k zu{OY3axjOU=eg35GhacRl_yQz_FwmXxd5`YkUJ`YkPF#wiyX}%Y$Z~#rj0r%6UH-f zyCWi03fH zcnV$V2~EK@Kn>~#!ookIsrvMbyR+YGM>x0ysRddbkAmfv<;*EFc=l%*?aKX#dRGn^ZFT~mTl!VG3*`{VhBIpjN>R|LR)Q+33jX85Zwptnu@SA4Z8F=Wjq}J9K>Q10eT+yq z8M8C^aJ#%BsQ4mWbUrrypT^H8*mSx(y47l4XWVU+*x}DWi0#I!nH8;Whn}G;j#u70+l`q^ z=}d?JI{3Qg>VtnZ55FWDTaH8C+)k$coefylaeTqT{6K}Bmjm)xP4NCc+e1NWnIjic z%o3D3eZ!5gSK~T`=GRFDgIAX(K*bo;Fr}Lu8n4SiuF?Stf)FEEP@on zjWl6TwUz?O>hT@(upXHOrO<`zYJzRw3Ld`zSPfe8XvQB`v1aD0r5e*pquvYWs~Y%K zJ7xb$ORt6q3+oG#p;fO(JmQ$(a(X)5+{Jtr_SOEBI)fbgdS{IX+2#w0RyorCPeN~N z?gx|lVyB=5Vo(i|c-G&a10WRE*&qZ)W~$=XJScCpBuYzBOPk;wMuu`;iV}vh`|=2S z)A>`HlFgLU#HeHB?*57Z7M3cmIC6tM?-C1YL9p{{(iOw*@w9(nH?C92dnsqgWk&?Z znX1jNN5wUIl61upim5NkTdRH3KwsKOI5wmFO?KBS++^y)!M7Nb%6XH;ZbNS0!(T{! zH1{HQLB_1z+~uDf_Zii?Sc)$;yj+n^A(B{n~3#X2)-5~F_Q|{>bj)0>ynL{ z8>n=H@)uBe9KjOx(xntAIsQCU`(E5IV!wb(Qj6w$388vJcQ=Fd3&|4qrfd!3- ze_ko0b*B*Nq8=|!muQN%Vl5~pC)pOY4D)vs{ zzZvlPQX7;1E4vv64p37%9yzrJlFUfVggEFY3>}$LC8vh?`Q<{JNmY+suk=6IgBMi? zS$sdsWoZ;9tB9wuA)IMq7AgS+u`=<)@6gW+XjCI-Md9{eb&ki7T>&rP?q(Vy&+< zxfLb@lW!Z=48FFzcHU`2nUP>Lqr=s5PaN_f``l}6+hGuj-o7tKuQ~?#w@M&VsU+~j z-0U-p^!+oxxD~SNLG+Zr9KwarQrG}h<5bQ{7$_H_^q!c_H<&1mkCAu!oFjbqainr6 z3Lq8u%$+iGn71*n^BddF{(K)VXC$h;%GGJ-NVqaRGU2l%(<;|YMb>sfX_A<$6!4x! z0frr_#nsZ)7sOSv7HY2$(Z4oihcb1pc{f;?-)s5+UvBKbdS<5_GnDydN4~)#ig-`( zg>hC6hbnaD?_xk!e&dQKz@d0Bq}7zc9@Z3avniPE9dCX5e>Vl9&qT*5G0$-FHJ4*( zAq?!3p3^C;0PI#eZJ8km)jj8y_$eF(ftfRg|9;r~Dg~043WVp9u-j$uX1Sp6J*uw{ z6Z?f-w0(_s5V=~*yN)c$y`&wlQcvu|ODaQSHn0RGAu*qoT3%?>S8J4TwQrVyRAg1r z@IQbjhyfjlEHO?{VEO*bVuG+TEXi*YyW7~_kc*IOR;!Rx-s0k7nXruf#z`0P*MJn_ zZbo%TmLOE|d=sq#rFAc7L^77T+_|#G+ge%tE17%*mp*4YZnUGmE~gm~k{2UOKAibF zD}KQC#=9R3g;8mWSNWwzcfXx|ubIQjf@FW9thev?F1hak(_1bkR<%`s-(8r=&holq zkLs~vD74Sm_5qXfErsLstsmUWf4VzL`FCewwi9hWj7I=?>oAxXGfqi6AUR+2>+1IN z*~ox8&n>1@kssXIl~gfi^$i~=kVaMqmM_0XWdv(LJreDJ7^>y&C~h5*QjpkQMEg5{ zUCD3*mzl}qj@EAYvv;2sw5E#~8pK$D%&(cQ+*9xiC)DRTz00J^Xd1zFGKxJ=h9D|L zjP!E`#Ov&gT2KIq@mFl*L|;9-{hyE$U?cl#azsx%OjnAMZ=bE)43!vfZ5PPK%ISNz z?R0j#YH64MuKuNDJA@5j_7S21JB80*-lQG%4pf4ka$inOat}yb&Q{6J%bC^&_dX_u zcGJT7+7oSGUGTv&xz11KyH4t^FRvFyW9ibfa_mc=n5s1>LepB+V4`CnXZuXy1qbcY z=oCpNB#F~U4fN}>ee}edANnP%kvj1};S4bx_Z@4=2`UMiI1jCe#%Dj}F=_pT87$fE z&8`r{3Fnmb?5Ce^1k5pQ?awrP{wklMiuSgVv7@`grqfhXMnJ*=S+r$qG+|}7N1vg` zEqjCd#;xsbnR~+Zy$wM)8wHnnuXXXnAx3c_=*7)mG8_M8W<;5=`WzmXo z;u-KjGT$_v4)Ms@lAFb71aK)r*G>+o_=K8#IlYwgGzCRRP5Kt2g)r~u`LOml7lja7 z4mw?5{O4!@ zZz0)9CXoUZu*q$7Bt@YwMy1kQ;q0`P>wRK7e~va?E^~8p)ji+Q))lpaC;_Op#&&ce3hMA4Z+*GEr==O{#dCF+t=ajLczP$5^!J<(+ZH{l?KDl}1 ztDn%Z!otEbm4MV6X@a{T;n=&W$nlU129D`7nXz)qKI>;61@Sfg$v@IxWy+x4DFTMr zI$L?js#d-axgY*}`+UUHeVTT`JH8SF^Cy2rxKd4?nQY*%WZPS*yk9zkc%!;v>LQ+c%QHFyxOy(RYXw&3?P>;Jz;1p`vkQ3+fpE9q4B@U5m^1bikcB)md1sEmYNxj4R2s=+yDD=}NBxbK+-a6%-3OI!o2og6f=tU~ z_?W}b%%Y%Vjm@VN;Uw@T4#63@Utzj>?9tg5+G7XHoorWE<8AYWcf74X8niW8)G%af zP^2`vSQyTV!OMh$PQja4zJE@k%%m8#e9@+MD{9cO3Cc|r)D(*k$<6tX^8J$E_k#f0 zp^p{O8%t+3f}T^-EjLLNfVR7_9F(11u&~9pq5J5DqmK{{&K780u25E}?kzLAi!H%j^(R6vuddL>V z2lJz{j8-c9Dnqt5m;=vtdnf7~pNLvD{-gw?cpcD*ts;D0WQy9C%Cb>M*K39XN$lTM zpz(n-?Qyew1KkOSH0p{eq-gIwuucu>pOu4u^~(ZePF4y%JNkI|)SV5mYQgzK+>@*ub0Em3SsK-| zc~$J2-lJoWg&!W~4S~$xCB8S8RF2I1LkM^D{D}aF#?TbZQmy^c6msVC=d9&ET=aW1 zmK@$X_Z9rsPjy~+#1jKT0=mLr41$$A?J5TlqD(K$JYi&wRz?dC{+tBUV5;-&1Q$j{ z69>cEOFx{4efif5$+z<}0BA@A6?o!*!*G*b++xxqAX(|*$>Qi)rf020%0)je`H0jc zbbLI>FCpW8_+O%>Oqf{P1vPeaG9gMc?Q_56yr|cF&BGdDbte8*b7LCpmt_7Hc{Ipe2>VL0Go#Z7z3Yx{jYy|FC>6bTXC^7f|Mf_A$rUDr+>)KM zHyN;7ajkgQH3mS!d%qtV-&$nab^dVo4UI+inwAYVYP)J>CwSw0**W`a>uzIO`M1A` zxM-!4S6dWd`S*WZyzlxdtPn-!)Phg+d48;fDb>`}7Gr-caqnxPm35s_ht0oD+Y>VJ zUYzzpNP&cG;S<3p`96tAdGeNb`r^uuUwX-CrK5q2L; zzq;ZNa4p`z#hOX0sBj4CpS}c~-KK4xO zJCW#^8{M7(+*q$?=Q-mE$q*OZyFND)Z!B<{g^O^RFDj$cvugGweCiV%YSGl%ky@HI zc{ID`HT)JWyPKtKI^C*$UZ-Ct7=+{{L2`mTpCNUu#>UKTduWC4rQAnh`LtFu#~uWx zn6~xRGLtNHDGt6<0A;!N@4pVKX|=FaW>|F?oPSdhva0g>l|y)FePnuu$XdT={BrZQ z+>Vj9?*_34?!hjsClmbZG^`hmp+!ug<%}z=lIpO*WJB_YJo1%i!DUWb`Cnw>9ibstuM7Bc4 zIG>OU;@ps3ddaT4?Bl8%{;QwjQVUqfWieTYVx)|eDt$F?VXbewzgTBLAq&J5j67YpYg@XK;6y{TV0#OAC&O{(D-jX+d&K><}VrC{{enh^8R-NS})l6kG5W%|GqD` zPsJ9?DaA`M6KmmRX5sAs5HN=nO@|Be{5i6$g*Iz{GY0i%;=?qg#K>=(03-v(tNvBL zX*$P{%aFgD95)kF{*Zm1LhfeTO;--|c=I>#BusDCEF#D`f2!uaGyIWJ$2V%ctulx8R(ORQV0qy{q@3 zYEq8VxL$|y86t00skM30ffMya(icdI-j3KJ%i}0#=QcH*MX)P+50mJxnK*+k9(!+0 zbiA<#vKyVyVDlHVu5}ISU+=HJ#u(ClS_Q(<`vfFC3tcEaXapFJNUR>IM=4;se;EVn zH8wF`cz@((@Fxq>e=QXPP50mMcZZ76f%`!71wcu?QwSopRQj{|{ba(i6+0vJ2O^EA z;{9Dhk<^`*7myQ_3Yp!v$hC_3vbG;KbjPSdx8iZ}+oh%tK`|mYlF=e#vQ$d3`bY_;hg!X`DCxJ_Lp}) z>%ZVEiZm#z$=2tWiAMZ+2eOHw$SuK~PrvCnDq|gXZC6%UccTE9_f3 zY9<{jsd1J{sh5u;AHv6!z7#(&iw^^+vSq4NkkP*neagBlagsVSV<0r;4{ipGCj0-;FQ0&PC41i z>}wN^&s;3nN>(%>$j3ky+_o=obB65E@>N)NcU};U8zzg-!ZIPzcqaX{6#NHFGax>Q zKiD>a`G;Pb;WGsEvm4*1b!kua%n~77{THFaSB*cnvatMJ$hsGkix{xc{#J(P~xbOnj*M5b|lQ( z>+z8rT`RNT&ok7G-!0;5lBcO|h+CrwWY}(6_y>2Sav1ygV&CfO)==A?_=8^6fBxj` zoUR&@d}`yj?v1PcDA1sgd1ETuW{O~FLn@(t4d(g(Mu0yPk86=3pP+S7(Q+1&@|+1= zI3zTDVt-|59ylNRChzUegHcI_G_`K?37ci$F0YH}HJ5ZkMc4C3;RJ+@FDpaI9j5>t#TL1axlGvg*>Ol$lx^>0 z73XJ$`#Vnbf<&1E(hHB4{ZN23EhbJM2`iUt%kNtBNYJw||M`ZsLF1?HN;3+f<2>oP z$z8s7r#|S@%_V0KJULT?RR6o}E^lr-UcK3hV(_%B8_Xc63xcEvC7bu7YRnA~yq8bO zy%BZh;v5+l2n&s#9;KZy3Z6^^tLs#T2v{^nFErhgAz7w-Rjup{ZdqRIVSAT5fY`Pae4?uTM~oxf~l!?H@A z>8(M?ilfl>#bXmU&^!spxCI&AZLKn^2v@~mIx)pvc@A(DZK?X#Lj0JoBFPxz7g@IY z_iVi-g9}|r-neO9g&5sUv_qCVygYLh&liPPGeEXOuOVUT*X0{?=9%px_0Q9uI2ZNh zgQHCj5ggw@Be*+AM6KSeqdpKORCfjLRakr`bu%0xx?Hhkz;I-DgQi--jfdXV*8Fba z!f>8tj7+0p3xUT9X5>V>ToI0Z~sdno&$Ze^B@ z55zAjvh#C6Cu+G(b8;Vt6DLuafwUhdXS0EXc3zb3s6$py+BGYhGp^KNooNbQ@uJGO z>NIyZxU6lIQ)(8w+tLr7jksRcMsuM_4ZJ`jM*ZVlxP%J$c%ox zUQ>09_XrGFl2JH!=T8j$&WhSM(SOTJ?wEDay7t<;iT(M^T!Pcwe2p8C3(c@0b}z)# z_pgRj4$qhBigvRBD}YTkbQjInxjjPQ@M0XYPB`|lEw}EiTw7o(W7|P%^sRK*exI-Q za;t`7n^DN|jLNHd-C>&{!pma>7MtWHn)-Tb>9H}Q^=sSO(PM!9dZVAQ+9sds{om|x zK>J9^dF>9z)rW3XsO%4#farBXNbA2>n2HOD!|CluaM3yJ&`}Oy#UF{EB=eoDPec&R z*6Uwey$Z@iE$Km7cSYm5^jwc-Q>W?sh19a?6aium%o>Y!X+UrQ+PSd&0{-*6H7dzw2b@ z1CszO)N|-<^-T3;TD}~qk(LR2-n7FXJ-xj3M_b<(2#kKfiQzpoG@FW{Z7s(ft%`m` zBPnMsm7$fhv~c4~IO1z24jf^fdEt5hbI^1xaFkN5JG;k}_DQ0J^U_dN%Ibi1d`2z6 zcXE5V^}YLJuAeSdzr7|Kyn&d(sD~0VNvyvRgk1J=?zmARd`$Ewmu~qOLHH=rJXs4h zY4c+>(pAAY<-=x8qmmGb3i#w@y{_Lqjca$>4@P@l9v))aOpF@>xngHCIC0{Zi6UkF zCPnhE%(F}8xZKUD--D*aqZMG4zK3G%yA~k45sio^F(-Og-zDhEw7F(eTfSzOdq%O9 zp;T~@i?03-nWxjd`#RB)l|o_=*)h-v=e^lGVYWv8f}nv&z!vF7?g0z?Z5?w{b1wK8 zC7SYaq1uQ0NX)mpbyYlVkwkbe8VRkDiM3lCr`f}v)#MmH_pJSd+V6T6)o_&!_AwKFBkjAfvh1eG-c(H9sSfX@tjyp`sYizppb6{&T#Lw$FboMll)A~)9|CB zxb|0%7UZ1T)ozO_obT9PoQGUJ71hP|2JzKLYAi2F ztkfe|$3B2eHf zGkz*)_sSS3Rh=Fk`}jY4P95||VDDkGNPH*%v0Qk@+N*3?C{dc2<&TSh_ZOn1XWqrb zRgYGfJks(rLC!`r`7GtI%k)%9aItY(7<8;R=Y_5gZ(&h5zC;`T^}K-S0*I=}iulq& zY=978&L(Jj9KMTo-Z|67b|mXwlHZxBV_s(!dKAWj*9ko>iZc9lpT<%)*4B>j`X5jB zOc24oqgaQt+DkBZC(W&m*u$)IgAszinc?9O7P?0uM-3>xR!idC(*K{6K2(Bp6h~%>e2)(E6|iRP2}%E()3(DX#6MY} z7RJCDGPyt8-3G^iwfi;}WYL+ab1tkcZ8dy=kRjX&uM1F5sx6aMw2#~Xi;Cj8QS@hh znN&(?`2()t;}}I;hlp9#U2oOe&`xxi`kgx?vdx@IhguJ9&$N!-5CG`h9FL5`$dHFM<5y@ z5Ev*~%~%+x?~p772$0HAsdzTu^|?_&dwK0cQAFw(pc>hmcQNWYRIFevjQ{D1?aQ+V{o&?|eNt^hsH zRrRAHuqTYN6ijWPY`+|y(2#DM3UR(}EndHO&IQnGZX6{lJP9_t{ztEgzTvNF1144$ zyk9rFU-vRPUvE_y?Aw>YZQkAn1Um!0;=zmsV8wLy5y~QTl#%8;a7N+IL-e!D|3Vr1 zgkFR=>S-5PD+pi+iJwEgs4Y>^X;@$O?TZCQpw3zLXK8S!FE0o@-!NK)3mWYHq+#PX zVAS5Mec7Ez7dhGlKCEPjnj%z{YPptK&NCW!tmJdRM_Z6mykp(?58l)cUtGNSm3*Rj zy_+}D;S@6uTdSV$R)JVHD0?2ur%#);~U@{+%gyUs;gU7U?i z93|IPy+4G2!Ua1kPH|yL$ItOFaK_X(oWW%+I`i zu1*nIo}tq#EE0pe&0DWy+WGbhFeHmYc-S;3SiQ_XDr$~AGg{vuG+6v~H4th61TIO3 z|G|{*oDGE}_HqQ=Gc$4Rxjdw2@<0aa3=~FC?NZZNK8xjXOkC)@qwphk_MCRGpPL(Q z=_FA3)$g|yCfmFsA3Sd4OjQrjF6pCN^;9N9ubm3nQ^;9sl|)m4N_NVOdF(zvpo$R! z@(ciq+_<}u4X4cuT;mO8270GpHtc3#)8qg~XU%Xthc$=IwRBSN;X@3VeS~py&yb&C zJuyE)+@Lvi26U2m4Rbkg@1(jsa+OO=$QAa@+a1B8n1r1%Z?u zFXGKq!b_O9UZJt2`(3ri5sci*I9a%#=tX@Wx4l*10j&ZcxXo4wVj21V-RXPhxLV!p z{13OVFGb^5uK$HNFO}yRpptwjG3sW8^8W#m^lG77$4wL>m)3q&5bw62B}LVD9H5cr zy|)~GqF{Zps_kzIe?rIM?WIP$d+Qa8X>DgO zAh0ZIsWxh?AvKw6Ctc|0Pyw+7Y0E zGa)UxtP|7_M;1TsSH4(Li<)5*ZH5qp6w&w;MaSfw(*mhG+VV}O9xfba2}>R15S=K- z?DGFSPu^{@(OAgG24MrEF7tvC5fUqRheQadEJ7LXHv)P{-2oIpOjBaAM&)N(CXMPQ zXX?K9E>=2@fXweWmm;|zCGn9lFrkkpS^M(KSCY|BtMGzHACc#jc{UpR{Ga-o~0i!Mp+t>Rhf%{8o^iUqdp8}?geYq<{J`>O{1@g>-T`eUCBYN=UId0qC?*L`h_ZnCH9 z5@otA?_EHqT0>|%9?g7~rUE4r+rjzLbpE$M;tqBP(r1EGAw5AdJVugZWj(BJ*Y_*r z4~aM|(G=@1jBPqm`zKn3v2-`KR^B+#N&$zxygOc*0zxSWo3rUle=-p*~j$?rK2>k zIvQ$Rn3VJGKK6?A&byh=SMSHXEnerwd9xL0(+vI_))uL^8<6b!X#eJmVV8(qVkkt8 zKHMJJao+JiD+<~57v+Mh2km6lX9$*ZFR>q zUu;=P;A52M@QP-&Z!L&0c<{@ycf)*Za!72A;FHPKgL^WULtW{-PVY-Ri} z3;`n8_H~3IS<(Y$w+HWHLBZvSuX@^#5K}MS`aisen{RXnY;uIy>!EsuhFE^}@yqGu zB(YOq4(7kK5m?keUa~WERfL5$(PXzrS$KRlvY0rOt5rOcu?#%o1&oatoTE*wUpmEJTxmaEj^dnD z*R(Sjri|=vDaSxj{YM7}Zp4_Dr-tzJ&9XlJ`14~6soUcGp4)2eN{21S8JRwI58RJ| zjcqjk0qBV8wW7Px`H)vr^+AV$n(5QW?B)U7FDBO+!%RN8xWTtjdZh=Wa~jZcy%ogF z1L)HjM@0MDqgnc<&V4^B5mYc(0D54N;xY{%C&ihR{`^@VKgDH4B!B!{$afcGqMxI9 z=d(R`t!re_!51QJDWr?!a-}J=G6OTR`{%HhZKR8naDL`sZVE(<&U(NqMMc=iTWfaSR=wAarhlx+>x-P-p zO2XWc94pke8UE8oPeni-)nCEX&>#r%sfGvtrt!uT%xM$#R7u2g`QnH0sf)&R@vDPe zE8d9j8)w^%N18`N1u0rbY#Ig2#fvH(hr$!BF?efsRVqg7UY;ZzW80O~Sh-mY7x^$m z>Q8!hd+sr|%j$Z)&3$d1>ZKX2jZPSY0Ir5WMFVP*1o7L-*%dWtkK~WeyluLMz zrq3S_N{x5ADVZPw#fK?-@!LyVi)`!(7OSu9Hc{OO|Qr z?e@%5p-OKjX4bEtJA(!w3t6kAfC)#EgjG&Q3Fl^a_agu287HnBC!SOdsfU|SU;Tm9 zsM(4N=H#ct*C)S>x$iX=gYMIo=vdVJ?zzjUSpqX2hxVL*n!@Va?BC+wl!H+-qami0 zx!~)y>Xm)x*xC{5%f0ocGTv`%hO^s4aKE|dxZI@BFnqujkF?wHbDU^A@FAdaI7@)B zCn)dwU@+nj3rYSvojNvf>E(C_gO`HBi+e$5PqHL`HNMX52nY_%HwaUs!C?r9_g5D4 zECX&QDeep38&Zp#viQYdI?9t4-?Q3J9&a)ICRzM1I`=&^61j8qsasLuu7rtH+xjJ9XlVec`*Em$E|XR4LdIq76RYHdAs(bLci4Ww;;`SO z=9J>9X}(2bz)N#Fu4pF8(*X_p#!|5sFwH|T?9XjNiBQNJ5T8YlQIM3+@B=X-SsHsy zk+U4-tZJ!1GKPlLTmRH>wsW1`6ZPk`^1GuF6ZIF|Wz68{?vA^Tj`7@`_FA|f2^Ajr z1;!JvZOiPZzD)C}wASJ(48_e#&(&RDhI%LGXHp8fylLhSBCM8GK{w8&5KiWVLzZ4! zHfv~WA6m$iJSqXIo$)zP`W8Ff>4uMJ>$e|R=bt4iL3Q=U7p!Urydcot%PdqH@Mm0G zK#7B&a?R=gNS$O7>IY9f*(Z~TPCqG?2A6eKjnujP;tgT276C*2I1WpS*A&sWDerk!_$a2{e*7TQb$Ay>A@qh2J+hDqDkvUl;*M(k{3Vu|Pzn}d z_yiZv-bn!$Vqi|CsN`GZHE5+MTk}o1($=#;yNcJe!IKK z!{a2yXRqt?Sx z!F~Pj@D}6nb*K67Jw7sir@}fwLU(e2V$bRm#;{+~s?Z6i?>4%wKYrFHw5KVwrcArS znpdA+dwv&RV^Cm)O({W-;gW0EQoy{LQ88!(`t8^lBx(-K4+Ucj?9J}dU^3k(0 zPnkwL+~bKJn5N^<|K_fwgC#(cY?Fu)G)2~tCo1>b#M(MA;AkAUPzu93@*v^mXNG9YV7+;2@{cA= z(LWH>C=bBDa#BT$&(o!!*C3LjJUN|1b4lg4NbgHSSqh9FE9y&D1I?IhVA{hm!QG5h zM}t!PF_IuhvVc?+e|9g@}8I@@Li%9-3*<|Nu?TekAFJ!wo zoB{P~`rzREB7y8yy=$db^WTSb=SPx`7dwBAd~k~=){pisjDpj5z@p&N8EDuyOF3F~ z`|O~Ct5Rnf{dGPG&1-2r*Zi~G%--K7iwb z%esC?sK~%%ejJ&7bop1Y^9(`Hn}b0F+yb^ z-S`Baw`!FVTzu~1sgO0MfgU?#ZstHPh|`*OovrrOu_12u*0AAh8zz{tF@QNWRT(O# zmn-1JxUJOi-u&Um+`XwfI^g3#KM(6IqF_{kq+?}eT#91B|a_P*UD@6D( z#kicMiht{#vkmDB3?iG;*07hL|?p-z2DS*{4Lgcu180d-l=7} zFF&*5t#R4gc_kI}0cZXd20=U;jbCW-r4fu{wAo)w!o~9Ebu`jDS9#A-3h%|}MZ~E8 z?KE<}=cq2aa1ixf#%t9!Th@ySrD+oS=uLiN7VS(*J{W!|ZQoHkw_fybMNcG%z;33I z;Ug%=^OZI_3_^_Y*>&m3&Wu&!ASA{t+dQHL?%{pfM|wfM1&vRi)y}}nOay&>{2_ew z__cG;zJef`5ixYWT4dlW<<79sl9{r!5T=OFpF@?mAvpQGZnF^%Lb}Uy9{P2iY;sBgwfgAL@#`Z+-}BkJ$8vI=O0y8@H~JbbPt{YNzg%s8Unu@Y zv>1XgGUJ0C(As(vejvrv=<>54jNQ19;otL`%TMVZGW5~sY<{dzYZ)&2_j26_p_1oq zoP+L7F|Ys|ikLxmnJ1X>GQp>8M5`nHpt&qWj#@b=A3~I14O7k{G}Eta^kV= zb(br4GiBm}*9ym5HTCFS{^BR|I6RXgg$#SJf?_hcUeP^&D~xwH!q1U;o1$8jH)eK*JA}> zi=l5bN@GlY@l@fuI$2*y9qwDbzpQm-)Ne|Vp`4eIHplO8OngYbPumcrN#^`{OUq8X zg!eZ$6VnPg=9EcT9|=8n^Jji`X{LTAtx$P-Q7xt7MC`BK^zspc95-k!r+WG`N zk?Jo`MNB@vapW4kKbjFJ+@6=5_7E`A4R? zGh2KKhu&3w1p8(t9qmE}?d#m_irGENs#xr-!{YW*`+#-({jJ!~kLxcC$BYaIDAC9# z_BO+e23#H=qH^p=Tl<7{pR~Gk2-df*KWV0 zHSqi2*ad>*uZ8V5pQdT7Iuih{PJ_y2bWW)LgSj0RP~VdjG3nj<-vwZq@O>h}%?bv} zmkDXTT(*kg_)(397j;kW=I3;iN5||8C%R4?{-c|?+A%IOtEcR1;no|6AY(ZOrex%g zZqo#NQuf~2=$ed(d3<##75%n`M6Wl2TvSaMtrh|`MlLZPBXwj{RlU6FP~Bc=@N8`y z5N~njb8L0L5OjP_<(&J3_Tq5 zvbp5+8XvIzpRKZw0;if|Nxum+L%$-^K>_>wpOOPp2Y)~Frk5Ws{bcxfGr1{vWXOh9 z4j|`CCoiO!rxB)-?1zPMhqjkkc8w_dF%Mn+OsWv-Ti!fV6J-L3eWYmtRZ?5E!Dkv2^p(JNaTrnUOY{nrj?U z&1~9HFC1e)7(95Ku_jE!H|^EVXZnc1Wdj60+Zj`@;$2=a!a;(WC%W(<$R z=T=P1JALw>Dozfnq?+gdegn>^{#@vndnS_V+q+=wQ3OiA*M#X{^)4w z$81)+{UajI1ZZHnzfKUl3zONt-0@q#vFT1yjX7FqKi__Hut0Au9yzTsUt{P^Si<5g zE?|480Gpfr%TFM1@9Ntv9%;}DS9Md1;H`XTmBT29g<83`K3~s|E$iXEHEXFLwOD18T0X14>J>PE|4>zQ-fmfX57B{Z~&}r z$dP>{+)Kg(fZc@xI9rW=4yRQhXF}~jg;C@AW)oWS%9Y;pN+49y_2Af1-8X5_!p zus1%}XB8yG%nDj>X_X=VTEsDz10`({@H6Y20zXvq&g zp%B=o)}lc0lpHt2*)w!CA09Io=Dg+3f)j zHeu%Kq-`F49~bkQpX$eZksqKgoW7({s-A_nYnn2&H75*js!P^S1I$yJH}jNOUX5QK zACZqZ5h=3i+cP!96=8lOHOs-PGxL18C%S*R%(kE8bUjfOUyBl-P36iE`KVU^P%0J3 zL#QFbvvEA!oQA%B1*n`*^^iX+L*Q4NY&~R1> z^^^u9_hA(=jeqVhFlKL!(mjJt7$*n(`2;uA72yk;MMBGS-v%M0_RK>eEko#HkWi(= zVWz?0T2my%pcIiSSNV*jmTIW99W}nw9u4(9L}RU&dJbJQzPht03cN1@5x-%RC>whj zRLhS4_T&0_2*gNNTiV!8e%ZR+yCH`G{pXvlex^&rlpt-9p@l0`2lvZ5SCC6w(rE`U z9p%(rC2j*k@KFdi^|Vvn6!o8%;y*S&r9#5bo0BTa0J|Np3o%mB%IN#_JkVXGk3U zXL#=jrYu2%2fHxwgnxJb>e&5gmBOx2+pbXLhpqO+tLRVEecztT0Qg4lg8z6y=4?lT z!R-2W74V}=8$K2Tpe9Wo;C1~PJ;K)iy#2Y-u#rz+u^9(_#+-Q>qLp)`tuIt5y$YHY zs!cYo=Dz$Y$Jh}Zn48>&kbaH-e0g7z!IIa@)6B^)cKGpxq)t$-^kKr*Lk#t(KOPwg z@y`Z38_kBM;x$|eI&fUMzNfe3FY$``)z%zYDZI>>km((^7~N0^a*YKctAZ#Ne*Kqu zvPd|g0mg9YBSJ+Vcc%T+JY+yAx7dk~w(iew^Q4>tft=|?+fiapsKKzAcJuCdoAowX zz@ztzqzm4xo8D9?^*DM*4aOu@q%1w97cFw_akQJM;j4)Hi3tA;MJ2m82|V~Nw=U~jTlH(LL?-0%n~4U z))!<#Aau)MX+iqD)OBfIE9%iom(7TY%NdD@=C=~ws6eJWw?&n2aRkuCbN8Ia_ML1@ z`E5MiqfOj;8X6mCa@Q)$4(`4BH{s`D7Q-h4$j?Dh+>Be!-?qg0QZ?GaG&`E;p%uU1EylH*^vlQ>HjKjV-|Sv4b!ufsR*srP%W zz@GO27XPh28tjHp6R9Ns1e>3C>;AjQlB>?Y-e* zic(Ji#}k-MVbMhY8SQJ#0p?zf`sadBHI@{=292Cb4fZc_)r%4vCHf>nl#{QTmjh0= zN-K7HfFL_V{-n6kZSSm+HnRZ+)}pF$`eO+ODU3fmI@}CMID0@;d3vm(yJAD>OBT=j zW8l$cK=DVf5c|f7tg~JiXy|CGEFUcMK*P5FZ^S`3{@qGIkV!eGD4V9$DBh_0&n=A2 z-S@hiGjOfi?>ulme)ngY+jKHgy#edpSdho{qb;PZhwJYMryQ zIt6f>tTMq%RBZA=0I9Bdo&wtM7dzu0wiXeH$}R%bdrjo1?QePl@Rzvto1l^jvDHh3%VR~Q0) z^_hh5w$Rk0*l^@;gy#2 zqViK};{j`^>`k#ToC;a&a6o)}Z=3OGD6WXVkR7?GymAzYdaEvc?U@2Wp~$|in(Fds z;4N1p25yK_)AkUvkYh|JKEBmHQuliQ*t8F(PWh|&hcT~{%70)TSR1%nVo>pm^+{En z8CPh8=j*x{iaG72luLE^4E~&Uvg13JwJ~AYthlrmf+Y*)H++05Po9Im_u!%>$4gY^`jg-_{DHLarlqqXgO^|h*K?QR7&-p}f4u_oK-&iTHJUEdYUJ57j*-HnMumMDQE z-z?O*vj@}~Tl6CWa07|*nNkK0XWJ&oIzc`wP@z}HAViUz^KPOwxL_E{aTC_-9~3u8Yrjeo1cl!?N$89 z+E$0qQ$kS`zQy@~N2B43NThJW*B{tHF*C;r+EsIE6}}J*KI~bacsO4EV|%B>!)Po^ zy$9iO&EYhPmHh`ssrA79HHG|K*t;vF^$HV5o6^&I#wvT6;C|+QuBBK697h_{2#bndQwm}%H_N}M_-4W}VRx4s z4QNr5_m3ErHqo>5=x72QIA7O-U)k1fl90kHcK+fTMC1(qUDi~7FO znk!9iv{ch$L4e~(GDiUrJe!niUc~i&5acCnN&k2An?8OT^W!7DE}(a9mWF44XZ`J2 z8UXVv3ECkr_=Y(6>1r@^*Yu0!=o4`O>=*;8CsCfNWhep$76StpHg@f2&1x{)P?P-6 z=1}Jna9`a9u%j;ZH3mi`C`*X8>%Nb+B~@>vi9m!j-7)DvNQUW&_QxbX_P1QGngsTE3h50+A;^fAF1wE`RgjIbwQM zwEsEV`?DXRiZ@+GXb9^sX1Dr;FcHe)Y3%e9VpN)>~?v>Yik4&15GNqVi;8#cL>U z*@a?YlmiOdPbtV0$D417Lsq{4r<)2YmOmCSa_)GjqwkOcUz&St-og^lZsmW{^R->> zx?@FLVS_a@X4Vu-GMUaI&X1S%)kF!rvO5)UT0od3p^EOl&R-Q02|-@D69tQ3%ePW+ zj<5*wANGB;=Z8MT(A3OfZup|?a2Z9;J^nU3`89rM_eL&jQP(=<=V1?1N#?6%wQj%6 z!X#^`D&}dl`cL}YZ5^an|0zZFK5hAmlQs++^#hJ*4yKG7Nt2cv)r|N{t)h?zzf1Gu zyW_2&S8H^R0)$Zods@^nR=6dZQ(e}gm9yFoD!0w0;B*9Nx|O9n7avwuQEt;;6IGBQ zSsV*8qdNLM@zj!vd=&EddZ`WmUedbsZLfEt^LOp%Q-tp#A5A)G8!yy!B@1KHn_wgS<%29 zlZBPJ(Esn@Yof<#ue{1{1xl{UonDPEZoXkjMS6+%0f@ugpykB@GUK)t7mHj?A*Vr| zQ8OD?@)c}2E{;TSQdIR@Di3%h6RA?wtI~M<9z^?k;4dHzZkRLe`}>0OS7WfJN_^cL zUE8RF%$#NxH-2T%2rpg>C#}#=qHwn##Qu8a)PL_ttJmpxtIHDhyo-;%PQ9Qk|I&grLp{f4n)ujEK06Us(Nh$Bf9~@dHpiY02MyX6xnmcF97-P`&nO1s1rp z0_gB3k0R)>7l%qe_eC>lHzmyvWK~w}L4+-U`UD+m^kW1r{lRo8NcVl+KX-qb6R3oP z-IWrzkgYBR@j@*Tq*;IAZ}lp~RN&k=ar>DQssHA+oMJ`b2~X+FLv{3{1T1oBr^SAGG5w10hnlX`Fpl6B1EOrvBJR-!0yEwr|kwaHQs|8vp!h`-&aCvlf>pq`YLR>jl_r!2C(-0t0q8IOJ$S?<(|F=%Df7O5O&UTkGX!hr zv%EBZCWr=CyRl(@&(T<{J?4=QIP*LvQ=b8(Y0nMrNtVw7l6{92zQX_*E6ewpe{LzoABol)?1fGU91s?*=G%r|Z@f}7w81nI` zp$Fvja+dqJM|b{W`hBhSuCpVpafJGjC0@4@aSRC7^+=+GPu*=xOFICs>5>tj{IJzo zyCC~R#RG?ps0v=0QZL4P$-%AS@g#Nh|9QmJ5y;K$TTfYmF1_4GR;o4+T|*RF&BqvV z-Lb|`XQgKD@JtH>VLv`F@w4QmW;K@MP{3k8Sp@Wv6&J6w-*gvRvjM>1k?`f=a?B*N z?AxMSTS$R5T`lztbtnXj?1(+W${JdPhA1`-yM5mmYPIlv>;q9z2#I=>cK7~ak}OC5 z;;yGODy$*_mrecTs_XHE-&)X1p=x8&j`A($nzGV4L_sErgEmZA{b)hk0YgQgKRx9z ztEyZOh-RXJ(}KOKgEBPMruAK&RXhlxv9ZR}GH~X>z2a7{M6Jo)9Q9{8cpB3C>xKMb z`JxrNATv0XSl}(M;Ng743NB4=nmG#wp=-_M*@6ev;}Jq;~1U_|IJ*8NZnShW9Lv(`t~@(2E@q;2>`;s^j6Up72~u2Cj%&v;@vtGB zD3?FRnvOJ3p=Y3_BP;p@v)N@Nu(*L>#;*I_p!Ml6OhQ4%$?R-tqDZ_^^qCS6N3?L1 zWyc)9*>t@o90uRfNs)kgL<6$X^@_bm6C1FiG}mj4l@%3%xmP3T$jvLGj|YWW!M=oU zueP5^f-ilk5sS(!hz>sGBMm5{Z>i^}COOIH!Ml@|uUePTJp03hT%LthyfqICm)#zK$0IU~TAN+dI9IQ<)$ z`zpP0nP;WWwXL0!ymBQXA5yLp*T4FqC)PmyO%k) z8f9pg{t0Up3W?gT)?*(HsNCPonfgIqH%HTMrG9FgZML{bOXbwge6_8DlA+V|Jm&Ki zv+tH?2-Xv4PM43>>3GWozeM_^{HoO%7eq$^$%hb}=6M%EI{0ZFBr4ofrwYr27BRL| zgIR0$>U>|+JR;}3?<2@85JfsQR2$58Iz*@Or{S?{`QrC-9Dqkdu1C!=+^pz&HBm8G&kbA9-r?{WLrR;)#B>T zctYglku8q2@;Dx(v67SL*>-Fx+cqCqbFykAT2K1!PSExJr$qFpZOcTwc5%q5v*L&L zVm*ni$+8}hVF$mJjI=qj7Vst6H}qv>U=zo)uyAodRF zl*=pk9pU3zlt2E%{5c3q+u>LRd#P4!N-!wdx8_Oi+^xJ94vcW09Gso0TVBvV|CoMv zR;ZiHoODOI%@~}`Bda5w6@WPu&Q&h_4gjV?gu;b2--~gA-Fupt*IsOHCc@+T;(+D1EGcAlP_H#a5Hypux)xFzd#}@(^ z3}APC?6&Fg3ogvG=b(u*r9rdDG=*v(R60+*9x0vg=M<_hJ@u z%|n>z2C^TUi(1z3?i#LiU@niD?@&;*sTJo>9XuLLVRQHyykuwzh-8Ea%!Br zH-E%H;s=*oZG);r0yRS*2AEZOWglrTP4W_7>xg=;_kMILE;gUOVvkVg2zn>GmEwrm zxf_O*#)e8rnZK!-IUqM|Bk8(+psfwu)reE#VO*m7{zf|6IyxCWuzz=Pk~!uJ10m{& z+$++Zg>LZ?S;WV6m1w#MKXx?526AHMxbUCqPU(1Xic)M*yVsiKE5)DYuvC)J{Z@T2 zX}>?<4^*2dWPu^tWp5#62u1k^-{F0uS@5*i@B5r2Lnf1MkCM#5(l%#LHYVt7fm}J_ z+$3xkUk%Gn&!9^u*r1nF2A+8gh|YPLJ6Av}F8*IbS!OPcE?kfg#kkeZgy8fZk5lSp zZD?8m4B@wNs$@X5JP70$CChd8#j2(t2=yf7!z8C5!4bgb$_q`2NDoS(tp$Wpt(EI5 z43G>ZVdt2l+vb#k@%1g+AHO>j|G+=wy)nx2W29^|_VS>dZXBI?V|k|r6>6Jp2Wf#> zmM{S>_Ec#By1IOO6hw}~+sU`5X|f*JdplQhf+X37j6k{9ix+dJ0$5x&-~}I7O-z5M z1bBT~01=h&4Y{(LVgz}8GPG)c2-WErod6pu5s#IijH6zAh1eeyn{u&w@FSX4s%v< z>MkTe6Qu6zO9jkw6YaV0_l=kSvn%%9|4gY3@iTKT3rJ)3Dcb_qxkS(8`8#=;=mLlkJDLS}#@7=Ls z<=|dm`X{m82YU}PXe7wW3nI#DKK!Bc(y_O?0D*_#kiW*?5`J7E6FysDp;|tp>%9Hr z-Z(HoD3JLM%H@|*tF1185aePQ!-t8LtYg4jMrc1JKL!}}LhvB~d%kFl#)!&@>i&;x z@gs%l-Zrb)|A9`X&~UAKDs||wtoP2V3UMFk{dDx4F5Pv=eF6d z{7`P9S?r&z)BL-4gv$H8;h;z`h=#`J(m?!jGZxBe98P+XYGeJ4NRH1FyX^d!9KD$^ zdsG(j0yM^aA=Xz5urz&u)G&sj-#g8+mwwk}GJUaWXnQm?YjT3V3W#V;z&n$8xhr`` z74)>U=6X7EW~?ddxrJdEKP;}E(q5pi&R9zQooq}wA=(n*_ z>^NLCerbCt1n7;voYA#txZtW0|3{2+eVx7|4}AN4{u;S|%ggohUgGpKM7p7|uS-e70hDr2^)GcT)FQ#~l}poB?Mq zdTqj{4XuteSH|Oil7JgnbE1bG$w1RvM6W*s9*(Ed2^ndD_Z??a0cO?7fEc&R23*mh zH!%W3_y>7pQ+-suH729etSOkCkSmUys4Q(et}0o>Xui40eW937cXm3nj!CS}wT1*6c%)(U*m_EJetza`A9xkmUuTclG-xK%ohT6foc>*DuU~&(2M5g=4^O z)GfmufB@c&y(I)Q&ph>+H#D-z<#Z11V9vbfK7t(jqPs?qhgUT6m@6Q0XAd35k)KKU z#ZUh`Qs#d1>Isug$WeN_{+9}$yz=L0wcamuP(A&d(is<+8KW>hdlZlyR?o9Xz-@%p zp!Uoo(|iimFd+hz;{1_Az-fy|Uq^Kf&pF9_2sMf=#W$?;{rn#`x@ShyIu#U1g%_P0=wv{VojwiQaiC>y*40=5P08nO@})el9o`(+N{>}z2ruRtB2Rt*36-}s1s zcjIf~GK_tpi`3!Bzdbk?y$rfxNuUxBCcb;QF%Y5p?lnjF80n^7G=s{Q{!Fcm?+L>X z07dsZeU&I-P#Pb>I$ij^6d+!fA3tQBABzl30FV3E+kZV*381z5*K?6W1wmC5X{X!Y zRB07pE!BF{;kk>p3j%pYc3Km=5O`?Irg_g|syC8}%d&5l!`u9n7w`SS5Ig1}e@_Hk z`ssez;7R`mG5OP@DAh3AUaSGkaEiQ&#Az5vl3U)xMExsrrp-~E-Dz0QB>*^qkGXOqmkz#IFTSW`bY+yOGB_KnJP{ zsw(pXg!XB;iudvDs~!XNV!>zRV+1A*IA6 zy-Vsyfa6YGRfqS&&0QUSzg#v09wD2gC97Vef5>7y1D~lOYj)>PA|3QQd?aZ6j_k!R z_qM#vdo1x5QFurC^+`9{2e9z-BqREO19a>4zSi7aGVn&TtACNhhnB4~D!1p$t$|$n= zWyU<$ODOL7`<@|mmb&j;IzuE}I^qw~xnlJUwSMfVZr@W6&^4d4$_gL=lVd};<;uQ@ zx`ocqChfEEHWMgq2~4|6Pc(`smmSyI*o3x3(VF+6y)q{a{~EblPbpuA(7QUOet%e> zX6!DYj4T6_Ss98y@g{SvDzeN-_>NWx29mz|uYzW7iuyZlrfy%CB^##?y@Xj8-+cc* z$w0cVn%CA`VoBW36f^Ow#B`?}1S;7Ly6aA)16pTTxJqStp5MCLvDY;x=(NuDLPh)r zDP?|lX)@nv{z?xM*#GB2$uh2(UVD5`m@VRl!*oU48!^4RUPAhM``IeK!V(*-jIp-# z{Hr`CD~r@K7Cp9-wuZg8Gmzid`M2e}B^bPNfWz#}>Z!Tiq$NI!q|+ zi{kRMEW9#<)43>R$26eQzFL#mQ($;*LnP=SR7HJhTL8iDRipbQl1_Y1A)tpK_i3Na zdk1j2*dQR{+_hL}dch=u0|c8NXL~b_xhy9zX*Wm9C+Zv@weL5}x_*3y9{>lUAQdHU zoPyw5k~L)jLb#PQZ1BT=snhyxa2U#9{}*ezXTOGc;}~LsA-v3Qw|I@dr4#BU_bTqM zdhmYyY^hfsCH|5a*cMy$^gx+FEg63Lm9UZW1%pL2yD~u&@EHjbA4tRPDoWx8Nf`F_ z0crDo-Ljq9U;l=K#)mzpx|}V zQy?=m_b7MDfsg~Z={h$1EklAKhF_Ap$jDx~pn$JXk@pSkCco$@(f9w1Bl#~1j|5o( zfq~02?XnHS=wW*)*9|>?L4slu*C6j_BXd>#TR`Apm64bER;aH2{+Qeg$;{{zg-_Un zTsb{{K|#2?3Ax=vLThMaSci(lhn_|s$cWWcp{2Pq#;97sNPqurvJpUI=jJxlW(`{5 zxj%TkOXKs~wLo@p_(68_Og17-MM+gSXO&N9CE4QEweR28lJi|J%>r&-%+{DDmeB-Z zpy85QGT;zelgetR4o99RD)Ai< zItWdwT>c}Vt?j++F_aa7tgkclt>!f`iqGN{Fr2-s*llat;9&~UtSHyJb8o`BuqiuO z^ALV6UavhLg4vAJ3F6QXc^S0&X4ZKjZbeffri!x3a=I6xe>4_`OO}jv>a&F^`EW_H z8nmSjkW54icElTd427ie&E#4sC#Xpv*f5H*4BXCVkYhzP<-DIMkj_!~ zM3p1TkhDi0q4`vot$!>xWhT}rBT(vXi8&goVuE9Wql2|z@JLP_l=od~Hc3Q*4JsZy zhhms-tD-)+{pAQe#zZW0v0;wV^8=!qM-Dg%IQGz~x@JeRHFpeTQm#jklq9a-pQhxs zS@Pbr*GkN5tEcBTR!f*bt1nXvw@9d*t;R-QqSOHV;O+I``@qjkG(I>^`sDFT(N3_k z@%2T{ikXnD?zeoU{E9@)>pikLzD7%hC8Rw(*8LhED5{xw6u%Z&FGbHU#I(zw{m7ka zMZ<-P2xfC{i~g~g=A7G}36ugRjSG?2=T2I0US9H$Q#}jmLS%k7% z7=@YX<(2?8b}p0Doed@+X#LgP({Ip9RjtRAgWnuD)`G+JLPN$Qu;b^PE@(wZIZf<5 z44J_i%BNcz+x)N~>v8%px}BRZj{URSa6$t#NVNL=c}d$3s2T#Cyd*@Kwh*jyv2Y=F zMwP$WLjkio0PMbBm1z6YJhJKnH_-I|;AzRAGyWRbP%U#iiR}}<879n@`bf0kO}R0I z-peR*sAJTQuFSqTK}QI3`i~;rs@Ncuz2WS@tSeGX(VF$pFfRE%GsS}i1GXzn$ODoX ze3rSQj{XycFx9}|%<+I&Tc>f!RNU^+UcO@a_7t8QFSgYk6=JtyLO z9eY2VVL+JI^Fd?iZT4#7r#(h7H*J{13@UpJ_lNeAB=X~~8%9arCkf+r|BO_K%AHLZ zBdlVa`9Q!Xc#jzoV^{W{gQ`1}QOUKcv`t4$MF5)fX^I8J;Q%Y^E(!-kK@b^6V7`Q# z>mmdulfeG`^OgjQW4YiHl(pRlo8Ta7HAkUfRj6CTsikvFt)T6F-a+S=m7=t^xxgE8 zunK%RkGcc?T#zP+sB>RLN%VKJo4MgBfuA7gOv^x+Hc{e?pJwTSys2_ESRhQ5JN)(H zGsVg7kTa#ar)`vM;cM*boc7>tMYLgg%0tErTg`r7aFQ#nuaPX=?ky8(R=Bp42SsX( zTI|vJaW0Uusx5KXwGh$Y+mG55-`D?bKFC z{xLp1($SG1hLXZF_*uAwSQ{e1E6))oHETtsKn{7RdJVF#Lhp-@AiIjh3*%9zYppC9zyp6UQGo|T?7?~<7-BaaO;AgD)fd_x zc&h<)QM+LL>favIvI;q!rEO#Y)Ubaw-Fqi@aW1{0iG7?ss4nYKpy_cMkjfFgpEz0J znQo-U0cVlq>TWYCXVm0f)kv5Y*9o7o|GASN_d>gpji#_$ac`*>6ZWkOB0}T0V<6so zpyg=Vgg+8?1MQUq7AT5P^_P#>p4{dNk;9leJ5b}`8~vn=gG_`<%X0~2sbF=13Pdr8 zPru?XW-N-a8JJbpL$in%0DO0M0N`uwpZMeS{~(aNf86mwew%}~ncw8zQP4~$!Zo@-@ zqN1(nUh+fcf$z_8Pp725f39lxe0wIbY$rr0!f9ySm2L3`N|!%tKzfnF*vcLrhUXEb z-DT3EjFUBEJ12vjCs(#IR+o)4lD6}!3~lgbicfQ7+v5Ky6wkA+Pu@tKEpo|n`Tc^l zQ`iHC*sADVIg<-fk;p=@(*jl>ffg0d5Oc}mCcn!H~E&{t4 z$|nIqExAgpa7P}d6o|?yffM|15MO2axH{Ulhh5xH8=rnkXs&hl=nf+)-@mzHM*py* zHGm#}NlXhWTL1U{M;zooKeadtFwS5$PW#8dW`#gcrHeix<-553!;K+GOIIC$C z8dlY78IU(o1g5m}puzdstk9SoAnN;7kr0Uv9T_F5qI%w;!{?pNsIXYqYR)HGR9O4K zOD^(r?RK$P(9KO+6Um>(J=QRbfHjsa|9>MV+UAKVs+$EG>D-EQsdYESL@i{qRbPpl z+(*wbC2fzdFLbp`>In|K4%g$pm^cVot^E3km9y9bZ;T;MAK&=#p6PV9{VBFaGcROr zlwj>!I3iBwGPp`FI-11p^P93@-29_Rh=r^mF?2R$A&DDM`6Wyf0$&+k{=$lUzW6`X znfiZGXS8_V!m&`FL`u8Y#8@giU*DGcLYy{O7gd0*c{A_h*!c7}+{5xxzgEtCPW$0$ zEnn-O{JY+yrALdc%tM?s&EIguetY;qXZllga?g=AR`o(I>1g$OTqe2Bi#|MoxlETi zpHBZ~LbQK6uFiT&MA~O=>r}zF+FbW+=OUDx>Kqd-7CilDFe7U%5s>eRV_Dou z@^%b7^crvsm`sGN;(xLrtT^~&gPeGUw@Df6Y*0~I!!e$ z7-TTsVgF&Uj;6_{K{#sLyp5Ipem9#Xe6oQ_-Vyk!YFOEsj-**mo-Ttw=G^7?xjKmB zRxSCQ16fQ_ZBSZts|AyKRlZvIUp2Ijw0vz7hoB2)iumhw)6xcX$ClRoib&d$FAh(_ z99b{f%v4SM{=zSu+^TB67bM$8RH zw&>WIt#JI=Gx++^q@`x>DqJn3HPqaGj`K=4FWV5hc{Z%dVJD+#Oj{}Hg_K5@SN&F6 z8FTNYE2e(5cAon6tTRkF7DQQHl+mAkd&p%HY(7jce%XsV4-XJ(;xLYdBO<;_)tB#v@BDUxXU^vEV$MKT$$`~e+N9?w88g`%Cmui6rAoKlN4?p}p}B6*(MX^{`X^jpkRNe$0LsA|dhYko zL*hX(Y{WFncO6E}>Flex0z-`^pI+TyB)#JvJoV;7hb#U=ej7A&^7!^{>XpsK>we{q z&iLC_M=5Gp>=FwibEV5Eih*~MEFHn8#5`L)hLfpO6@Z094mI(Xc_nv7wsFdoH$cqw zJ=%QVGOid~_UJjadu%>z_iZeFOU8fydb85d=`*)%`UIj?&*1#UI&N9e3rN{-*8|Q_ z$khDa!;*5G%!ne#7^uY8X|Dgm;r$69JD?Q}9{x&cCqRjZFjk`Of42|JRxLzd?N^Ju zv3o{Wkj}Wk`k>n#VHcwd&S)<%L}_UuXiE|Iar)&jK>{1ex7-1lRPS7B*CB3J4?!k^ zqtA(Phngy#=RAhpOxo33Yt%xJl^_Y_~>gl`^plQvY@4quu9A6bs6om4fgCPxEL^ZP1dy9LSD@CUO%I8#ncLm5Twt} zzNb;*3h|h+%o1W(@!se z5l+NWFK>f~cwQvs7C+pNbNDw~c_8BUnHa&ELBlU8V>E;f{RiNEf^NM~tEboKr+0aA=4o0T}i3<%WdIao7m~D)>OSpL|l^WU{`FK0V=@{GL&#g z2I3{m!(8td2Z?1t(Ia`mt#ixQom^Bt;f(s{&vf~!ufmSoBp_RAE#a?B-?3KboHBht z)c3RV&;WgNJl(jnIVep9j&A?^vMS}H1-Nt+y?Kkn&| zST2jX1f@FXQ`X8Fj(${U=k&rD@(s!=j)+4zC0u2>Zg6W52|z9tB(I zOwF8kAWoW8$nin=rAVBv;iC+x2r5oekHID0A<%0~Qh zdwRaknNN_zpMdSb2ih%*_i@-|eY#@T?Rpv8|9r=&#T&_&PeGUKNS705u0%2Q#kez~ zhfc(g4VpG35N<&m9|B-w9=d8xiev+6IOs4|V)nOet`=-0DjP7B{MP$0zD4stoa`So z0hdAf^@M-%1WpkUi2x{6kIJ%(z;6hJRpb{1=9H*}Hnz~J5V;YP}0Aya@n z=55@7(}$+#YZvozqo1t=6=2trY>0%)Os3RC#w!l(lw^|BH{Igz$&+}%w%ChJVbLd9 z4lo5L_x^g2vW~`+sq}y?#fjO|#oG0H*cG?u*6YP&Vl3<#0qBk|#KIxFEHIr7p@!1> zu_|9$^C=gm?S=GC)vj`RJ1pzpEyWE^4{5|dc2|EoO8qG|?Ppf=IB9+7<%73P37sgs zf8{Zcxa%it=1h4rs%uYDTsLG5eO!*PoxAiVTju!(AQcqMZk{*Ez zABv6AqhGuRT};C6u+rFn@Nsp9Q)hXZFC_`+OSKT4vGd}@aofP%JkQ0bI<7@71OD6+oml(|shNpPFY|M!o3+ey#Bg_ejg;uJ>hl~Y`;i$Kh-_5O z_%UcFfIs!7scuPr)9z2wovB}JZP<&51#wkebE+8JMTdk zPy>RoHJu;#sc#BN4)LJgl2=)t7C;ROYQ{#zg2l+%73Thcf`TBhipVgFxt?wK!FA2k zy(X39U+hfcEjuA}@L;jF5?F`&H$e9lbIySI4pgEEBvm^KGEwrM;iBSvSb_6fPHm*7 zN?!D=JqIQNHrL{+arZXvY^^IG3F4BrH6zd#bZ&lT(C%>+9`=`+`j?q z`1XXf$0=klGg@=^(Zu!oNOYY4?$l6m^+|8WK8fMZBWFH)d`^&$p8IoeNON6OK8?zb>`VJ?CQ zHdv46G-3%H&aQ^I_-xjM2*WgsHx1k$maaFivG0#5YqtI@G}y((7p`Q>Q$^xUv>ZANT;_dsTTSWeU<16u@>==tTq@L1|BXHO7w%klAUTRys?>KR+GuzLj$h z`7eS@EGYJ;uYu5qBD)92axIciIQ;hSfAgpF#PgjN zl%AFTsBR%|cuZJA&G zLF`Y%)pSGYM$nR|z-(b@vT=tP zsH(!Q65KwMw`hCOA;^yxWKMva#xYo9dM81%+V*0Mq2~k9+d2-7yGyKvIuyflM$eJVu7Z`>Vc)ytr7;zb`0OK;um&@N{Bz3aqvFBA*;2Y)^jv{BxvIBAz;gq z!Rzirr#J2uPB4>Icyvm2H8=6B}|UA-ROmpd;$REk2srbL^H_-}w=ryUn& zul7ZIY=7-PP}Lk5_?N3&xi~||FK){!Q9Am%tEjSe^nn4J`@aF(L|&)QF(axF<-Z^W z_q{Cxt2LWEiM5;=jWWp^^+*bg&jH21X{=dhZhLNL<;hH2^;OF&48Gf&@^J*sUUG%j z3A+@Kc!9SyV0LbydKk0f_H5lPxl`)Fuv}a3be4|nP*yt8nj*dZmA@jH^L*UDP601+ zzWQgra{KDO>b2bCK5SGxcH?lRyg*XTu6y1{GA@O88ms6CQuR$I&pS_jlkt`Zfsp4N zg5@)Z3^MW_ImRVGQ-YZgg`%RR&KFn0!}x{19;yWIs~wScvL0Gg$7|;#ZIPr*djK@m zl&gWqCUNnJg$k?!C4o`0C5#}()XcHrmYh_TC%pl+mBU8x)6#N_8fr7Fd`HyrrbY~| z+f7AL!%|X%YiRwmWtB)(O2Z%z38XSDh^wf|%+>ff-<2S4Nqa}v9gGAp4q~cc(c-~0Jlc%wGxdbfvJ5IJ}*#z>cXO0cp-4De9 zajCKPac{!Rs@^ncGZ--X;{Ym|euX~e4bIFc_)?SkUG-qCJz%9VX?*R#ipzudlK*ve zVaNpK+Q#{n*=F|!nsBEV?Ev7WajcK8d`0IpD4i0FX{|Qb)<0(>JH9qG5^Mx?k&Ff=6nuBqTZ$qhFn+5k8reg4J*WptAAgrjB^;%6?|7<*4}3Js-|au zK;~37LtVA1e(UmM{PB0dWSd34X+uUFLi=wT5pYGTRkVcx9Q2fKK=wcB+=O|w}4VvJwm z?dO&W_(7|&raDNyji1HiBkS0+6&q+mKSLg!%C`bts+YPWGOPu@N!r5(K3*2KqzgOY@$84bXtB2x<-2}SF|(l#ORfm0J04_i+M zB39gEM**I0tw@u{fR%LxX;26?n$sUlBXS=|hf5{7uxn4IzLRK^Lrknx-6yyb7K~BS zaeb_&sxbf_Wfcrh0tAlQ(aWjpS-=Tnb ziyPmZgwSR*(;-+)rK%BiB=Ti!kKuniiUyH-uivJCI94gI;aITpAdi$1a!pHqtY<9` zUvQbwmiZOTja)Yg(3&D-MtW|DnNDw??u9yqy-4Hr(6kzc%K=}k2^iMe|1t#qqS)r5 zE%|ngbI{mI6aiK1b_;^;I29)@kc5>|upuZa0$ShbgPdNeMfYLr8rM)UKY#8-mtUj3 zBFEB6eKk|)C-lI%>cd2tf8F*lP}PV0|UbC14hKpeZd8*$!cqjut%8sTCd{_*w{B3h(Y?_O_Oc-E?Uh`u`B=jHF zLL)Pz=jc-B(^v&4Qd{v^(a@v`*6Vh2`&Ff$L@?6W71)Y$Thl=M&%8AeK0p zzoHC6zvLTgEMgNWPo6o^zT%a$f{t_N4%qRM6M~mqv0)8(8fp19C?2@RK^?mnLMI#T z$D4l<$2@`}AuWh;>MoH(Bh@DxFDp;MBR$x2elIzA?!P=V1v@?axn^MR=~RA+Y*|-l zV8;V_zOU#-D|6-m7H~12{q9akAOSOT8#Ck z>gyWB(Rsh|3Sp#=+@GH7>Pdgkx!$cryYc7i);rF`?i?W7LeSR!!v_^o_iCZ~aNp`! z?Jqy-zkE69d>!=t%S;I5b$KH*==&pp!FwN!xV?98NjRFBHJW)ImZUE@a@oK2W&Dpc z5ft#`Kf9BYiM8AY5GA>!uo04S&i`7Js_Z4djypib##e41Z!w3zaJ*{BeJE4K`zb#R zpG{LzRo4{&GJoAu)ttHFzKH@3lmfhBA2VKk%OY+IZAC`KPk5myp{RqW>#i!z?+%(I z$a=b;-S^1cUup&oyqyq_O0%+Rq%Kr1uWEcDqk!>cqFKoUQHh1~Dls^;+wj|qWSOM- z1Y|jjb+(4osJ7Y%mPINt6h<2AM8+q#a2)L;+nl)gt@x*FFRH~ZTH-NfH9^W~L#JZ5 z-to0R*XsN8MAZ}|V0Cyn4$6Y8DQTpdZ26I{PF0gmo_l8(|Ilrn92`%2;!dk8^MLnR z?$M6ka&7_G#nO1bwNl8#rwi$Pts6C5&^}0BG?!kr5`mIIb^P;NCEBv3$6MO6w%xEI z6!@qJ8HfW?Jv=l~epAav!@Cw?R71a!%8dE4(j;u9owk2Ae(B`oGhE-)DBPmrXZ00H z`tjo2DPsHT8hNYmXQ3U_EcYJI%FImG-w7`;n+F`F#jFeLDn|{aNL#ouDh*=G2a^62 z{xf(|gS1nj-RvdwMx7i113W9Frc(1bq;uIT%t!YfM$spfQ>@L0u6~V-4Fld zjt!B>Kov7Gelkd*9}3*p_&qe1*ssL-l}z>!Y7_ao-<@2}A6LLtvD&f}1B zRS6}R#Q1C4t$+zR6oP__4s5%uvpm%P%!(rYU$71~cZ)Yq;MK$v84x@%z`)DTyAku_ zXyeC@Jx)5_PrxeEjZOXjyj0_>O3~ZQQ9kez4XS;yqN_$#D>R3cI!-Nj=>O34l~GN& z|Jzbh3Ift8sdV>9>4p)~A=>}m+cjpM{ZUmIBjc%#Y0;A#C_xGIt%bl|qJG<}u zQ`hymE~V^V3N1>{<)M5KQl3lh;n?i?wOO{rpeA6NE~)-Iax)JuG>u;3TlocMs%et? z^!VIxO%s@CeC>H!G1un5b>cLH`jL^5&!CW)o%K^-q1x(PIEk6=H9KOW%+t$fw* zZZ{Pz_E{%Q2$(W((TyVAZ*IYaW4ndyqbF ztLM`2Yo#bS_}{iCL2%_&fL?(l-rOmoyKR`-ErEPHV9|DI!UW(JdyyE2?*$m+RL?N= zOhlzwf_+gp&me{1GQt~CUMBAFP&{&W>V<1%Zp7H;_V?WMlb+vLX>3(^fH!4=sLMhn z45PWFzX4RwMyo4Z+k=QCp9e>8_D&_hV)|=gJwlP*!YLGRpy402?}N(IrtmmzweP9H zE?N-V0z*fLN;yfspf%y3?Iaa&G7`9)UthRz8;G6)RlZX2y@M`86gG4OPz8WN5IpZk zn?r(|X!-m|ct%U0~lKX5_-{v)IR;$rBYr4nfnR~anN%U9cfDa zRzKg+wR%~xOI-+be3S7WirV8R=7PH@B#Jd1EfXHE=pfnkzQ1i!Jo5Q0?-?g8H;_Wi z?b|yppQ2K9&N@i4CUtR}K_63jOzp{iA+X`Z5OtZ6d_|VwdioNrB5fB#GHgu#H&4oA zP6V7z<=2y1dEj;#*Jj8119OdOTj=U0P2@JgR-KH%vOPiZEk(Ek1V)k#^2w-1>Xct7 zXz6g^ntCjw9{ok?6QfMBKU19?k(eJBq*L&g4f207XzHiJkx~ne zXvZ&Mlg=9|J>1BoS{|A5aY zCe38s{qfiO(ABv5KZ_525syqO`Ar7Y3voy_JL@DW7d&~LORKtHW>t)}&!^m!)A8>~ zBN$#t9cFata%XbLy}-?8UDbZ*61ohUvR7qr*Ljy_nh>xZ`UwNDl5KWw zOxLTWR@b4Y9RI;)?tSM*p5xEX(NsfR-72Eso1!Q3}ovCUAqarqFy}p-ocE6p6}? zjuNOd-|X$>4oFH~Q#-A7hIEAie%aG=_vM!&g?SM!xX>BxxTcckLA_~S6-UTUo`J=c z8^TPtA{UoFX^LCImIlI9eC(W`>F_RPiN5@3GYr0+Y(bi1m%lcqP$NYI1 zZ4m9xhZ~F|ldc2=`q>b>w<34O6e6d0dqo`!O4B*Ur~VpLHYg`C@edWUL*;2?ZNJQ2 z2_%ifpd~6#CGb8xh`Vt1B2mKaz$lSmiCq3;R#qe?IEOe*ns~T-@1Oi-{lvXZEIEb$lpHw}^Y>@_%3^@Gne6x47RjT_lSXaYA zFr9n*(B{1&%9jfro&tI6_*4XpSPa%@K4(JncYO%5SvYVYH((~C%%$xEzfY)d2TM7XG_;&Lv zbL+ifGN4t=e$svstZHcT=kwbg@Z`b=ArypGmZq`k9)w0}=!n%NwQT0wYw8v4 z-CVPYcw!EG`loU;eVscT&vyD^0J~p!_=|W-<30Z$^m1~8?<^m}P6Vh;t5&Nj1)F9P zpQ=5~WJbQAW*OS&GV3REVQ`ZEIAx=2aQQ{s-~NUerHKzHPxjx2*8 zt9?#*-qa}9Iv<$k8&*x(JXbmx7QD&;E#=p_zceWKO187wgzdp8ddJd7jzfCuSLa2b zhK3Fpeg)&Wfvj`?h!rWTYp10a?D}2!-40?{&Qe?+m^j7H8Reye143(0-&v_O8>_OB z#mcBKy_%ZhOGvBxOe9|ZU8@=|Bi!l54)-WGv@03+OKD(BI-a_YKVi}Fy&a}RjY(Um z%k%N`5SQ7lNTh#9G>bz(%3mw1>t=_>rS9rG@k(F^=_Tqai39HMsTU2987Jr-#L`5n zsjF3JO55}^rJ}fuv`2wq+h;_0E2W~BB-bh8{Q6&O(c3M#dm}*4s^MpENw8k8ZGqpD zn-@wy0^~8mLK57RbA1n$oAa3U^opOrVDqY*@s#w8wl5jHDK%TXk- zgK7{R#@(kE7@Rc#T3PA-u!zF-_0+%hZdB;U$!h{8Dc%?!o2{H?`%0=Etz-I zuYYA+ycqYrio%5)J9q{(>HK#ouC34=%DZWc3|$(KndcrEq^eiE@(S7wg#ehF3DjLU zwa^cO_^mI8*z~^O(s9~#Xo8?t0ogFhxGw*f5c2%b?CWxIloF9Ryt7RzVy*XlA(>_f z!8(5hf(K2~7Z2PYD`#aF4mOY!Vf=H2=lQ%M4>&*Kf(p|&K^Uvp1e|O(g3)1E(MDEu z95HvIwgD4WuXrFy$7_2o4dP6JFQlV|8l#Pr1BJdb{MNoi4OL0Vd;ZIEGwc#bblUYu z5_#XDSduaYT(V!JfRhU>g{M?#8!z>ok^)JCmFR>hY6wRy6*;Ns60{$+q^`8`{pW`B zy*_o{Up=(_1tp;d%ps14=jnAR(G{!ML8U5TT`S}q8<@Q3w~1Y*8r`%B3j5U@ z44}xfJ5ZI0D0n#6k3vJ@iJzwDhK!RvufM{Td{tZ~`JU`uUxLsOG>5Xap(jFUEs#j^ zsqflt2RhHaxF*Md5z095*^VS}AuKbX0<_hI;h+SE1@2}pRhwM|l&h312TBIY+R)#9?w28%SAP&l=dUGn zwom1|$AtACZ|E3ng#=t2KiXYm?pIfBIzHb@ZpQW8-=~KcgeOyfmLepC5F*!W2o@NdVJi)Y13O4IfMbj=%X`qM$^!3LH$*rjM zM^0zcj@aowl$nE%%XS>W4xkcUm=dk^b86f@Sh1oeGzOkivIV%dx0+4-q;V`2(~$%B zAo&0~5w8f16YEK6{*(I(I@~5>pu;J+!LWk#w(QwU_DyiH%4w4^bJEqRi)fR8)i zV@j+End{`cI{oyED3=%yUG|Nay8Zw})JQpWo>BEO4U0rUk8$ z;&+Eyw%;Xv?(NE+>-h{rtIwS{@=S*ohj>N1_gBnAen|@s-HQpi*#=Se_}r)6oa0LN zi@9{iOiyrfXTFHiDK5gEabv&#I6@mg1b}G2Q>Bg#* z_)T}#51V}5ZT@QU!_Y+bYD=!NfAJqr8(xL?e=l|MzjA^{%>3#E#&G6H9zp>*Wdkl- zweHiKa{kS^JdJpBq#6p@ax&7@Z2{a1FGFl$y8ujJDQVMtn0&>q6?*v&#q!)&iqYcY zATDi4jsz5SRTa*xNGX@qG^hH2NAbF`-Q*Pvc24@d)3a5<^%Z4+YQY*Hzy+uLv0z?; z&pGg0yATDmzSPiC8^~8YW?*+E0jog8CWbT0k=*$(ScYK*){ei+avUIQD*mt4F zgL3_8SLhtBA~`sbvrP6n>i1SfC$sDb+0y6gb-C3>Y-Xe4IqctycL(^m&{wQ{kAWO- zaFesqq0BF)B1Srz0z1GS76@ndRga%;q1pk7Y_f;%vfUF_;Vsg0&V3D)5AU2MjJR7N%In*n6pvTnG8wX+0EBux>Sp8k?aT0CTH-G#N4B>0 z#E30t`5cZc-~7=q>plG09lCi!g9=jymnueD6&HQzAB3fp+bYn85z{_TL-D$xTz?L`9865C#beCg9$Fx*weFXHR6%UDSWZ zJ)I$8UDU6x5#I-wvNENPVL+qG%43bk!(e#E_p(ASKRuLO%(X>BNB_SkBvs(M&Q8kO z+>rNW&;JTRG}gqNG! z!%3>#hpgoBJw-+GJjaBxhl%-ACkfU$lz{c<0V?SZl%W(J=MKPrpJPjK2~FK`};*D-uK5}q7S!0D@&a*LhE1ABm*|(Iv;l_7uFa1J_kjA zAso=)y-~sgd!42ie9n;JCvE(v+HHWU#X4!2b^7u`_po{ugUAhJRM2S12R98K zl`B>@Vd{;2ZmgPpn_s@ri9wT~$l`Te7s1h_$Pc@-QM=J|&5dwqgU>I2^8>y6jnqZ- zV1JtqdjAo#uwLo?C$f=BL5d>)H5UK1p58fT5W?lmKj?wQuBK{(8&e(?`pV(oVDmTy zkQM4=QqnY6l?5}MZR~dsLNE8tBhUIMlfrNL{sJ4(&uXXw((bwKB1PXvM+v-qxbS%r zo7~*JpJyySat+b|IvDAwmH6mY=s}@P=;)di{r8RN;Sl)SSrR6VA?-BpY zQ&LRLuu2>{p1kt~+5}}yvgjlo%Z#n+i__M{TS?yS9(IHMeW1G>-C^X1*GkKL6W%++dFStzo!P||R3CYvQs!FF^v$y;o+O7X z7p#=KMVGg+`ncTM?19#E2Nm-<80OkIo)3!IoS@;3=K)YDaewNqWUq7}* zZF0ytEHMNX7?$N!R0y&*;Lgcq*|VS+@3{_!XlgZbd^vQaG11{@TC}N~in!i-fP{@m zl#()EIU^6-6^uN2{Oj|I>l&I6Og`i*e)cQylfG-gSVV>747Vzq68Cb@wQ2&&yej$m zlbBCf=bbqaRGL|S8o1|>hs6!vrXV7cql?BG!^8Y04S~~^t_t0XgiMYbi*UW4Q4L`6 z(4cG5ppeOjp$0O43A~wCRtGF8yWBDV#|1c6`A!a6=2?D00J%_gS|=#Te51C(3?yp) zq(bc)B%b<7Wzrbp_!Y!@rpmdqfUK}DkostkIUKL>5lmNE z1M=nSs$$iwK%F)=BL@*_HJi@3RGH=iD5lyor{(JCk{#|V!z_n+GZMC056u8D_68!o zgI3+UQt!}1J#@o;R5u@X3yS?QsvDefEB;(ifrBUnaohzn{neW!zy2z&UBQ{Z)Ty$U zy>lTKL9&xkf^Vo@pxm@5S)`Xmqr26M^&mwOx!)RXcZG+hT1aKu6OlhF4~uq%|4=x) z+>->WfF&YzDi2#*J3|_(t*d<08eeNRc-(vO{)*ouamH&oyEFQ^J^cJ2+j+mcOm=!? z)h_wbU6@2ngf!}NuEt!7bi7zFSIqhszXgWh`BL5le`K22=ZK}PF9eT~$0fy!3vD;G zBYEXmZhCXw!)_()aBvuXQK<)^9lHWPLh>>R$_wsvJjxG+48gsCZ@sc;(9*#aVo04hh|P@_&;sARPF|={G|v>9)7NJa$^5B)ddEmT6agCwyW-&da$?lF==0||8iH~ zzt!9#7TGJybeMIfdF>|P9>PhYO{$3_?#;_xao#h~YVv#kVc>{rH5^pXuwDiy{{fyPIw!ve}2lEhMQF>ycb zm)bxrBOAc&FTU2sK$5)<$A#$BsVfS?{$W#?)vpC5d^e9E+~oo4&VVb>!^ZvOHYrz6 z=%wqcZsUsd7T36_n3>!>-Ok0g5^(dq)afBWl8bhLRJm`%EeyNGx<&5 zmxo>yl9=$}WJTbXm3rDxMpzrCNZlK+=4pexQtU{#u;*&DkrAq@fzVYCRRHM{kD$h4 zkFskNvqSjb=m*_I-TcdYG-}k-=N|K*B8;qXCi-3>ik5CuVSJPXE-@h~FieJ1<%Ybd z8;ulbNCZ)0MOdykzHL`1X~)51k#34eU}ao5Zbh0%N?mjX|52jl zP^g$=srY^JNV1V2#&X#`0+F%a+ohsvE^AaAxj6k5+Qex`RxVV_4)5x=JO7A%nWR&} zKKWhZBrty>hChW6ePUbwExkjeqOh589`*_WA9^qy4&!ewCNiFUC*R-;4e?loTwfep zF0=j&9b32do=A^l>ul__sWf$%Y8#7YSu5Wvk*A-BH?IDgFD2K*KBmw1l|BzZ_~WP} zmZpXm{+p?XAL;dx**OiowN5h9i^*(Q23dHg>dWlc=?3My_mzeW5 zZ}mM0bi2yy1pg)_ha`C&Tj)TbriL(O6%K0xoYL4r<5x>@ZfLCtnf2;ElE*RMY>6S= zB^#*ono5)ETRyZ!xns}48V68wb2yNrs?npv6K2UM)H1!LRtw98Hh`0Sth#a_-0x)I z5X!TMH`UJg)jLcNgJ#bH64zoqak5;)7O7Uh>garQR#R!3dxcfdxsA(7?pus&iJF@P z2=?$nKe7GgiC)CEyM+ofw#Lw@MPz!Gb-kBb$3N>j6^}Z77-*^OXktRKE*g+kWwuh? zicxRkSCA*3EDj(gF<91)d+$0w8*ztJ8d-RurQc7|6Qsc>z!rs z!ob@W`HsYYk8AOjK3BF}+c`q(y-nUV8|Jo{(kBCPe7`Um%o9gW3Hw&!@&9Yi0k8BPr;s>+0D~qQbVLf5Js&DkdlniX9e+7?@oIHJE)1g9uBo4Zh15*I zk2_jJ%s~8*f}BRnEtJ1Lo8|{QP+o%Ig&eAHmAwjJ_G(Q5lF(}=m`g<^j0@GLVNv_g zyE1H+lxx#5=uyA*;mEcwuasnNNp8SUS)ymnsA3m@w$o3pBylk zKmv%`zq;~W^02W5Wj2K{rN2tCHmMdR1n)+8zwVv(#GD4~i7hO4hOHihRLh9kzL&L= zvD7iXOX8E@1};lXD?oupIn{Pd{J32te!IQDN)7doAYR>X>3}h;Sq*)9yQiz=i|sb9 zz<68hAw7q?%8NFLGs(RRaxhCXW|?^Lwto>*s=f7%y=bJ!Lt{-rOY<`snm+xd^bbu>8yDv@;^_@lx&q9xqhq zdn{US|1EkEy@&_T8~?k84u2T)!^*%HUL*yB%5s-v-|{WfQT;PNX-XqoW}6!O=EY+f zsdQ7aB)j6V9)>@R1n}HS0amdgm`uhs{@Phq5n1Sn$!t?wr~O;#s5&ddmN~? zt^H40>U56$-rh#spC^Mr;=j19P)zc=_QrwT%7JBySpNv1PP%#I z+=A-b+yUv*pV5<|gN@%q+t9_`-e94BrK$ve(x}#5fM{Nb1ZKXIVU}7|VT|6q|k4d|)Re6A@;XFSIaKNsclT&uz(1@tuU8O<1-@gCrgX)PH zO!pJ+EK4EEEm)tR^QqJ3F`LWgp5!fdO_wLez&Pl0QAKa#oP1fERAbsLY9mE&8Lm9A zxWto0g-qO2aG}_xL56Ahy|F;b(=5UZchsFK?$+5ble{(cLh3}kzu6=kGlJA=NJPtI zsv-qW0ijJ~tMC(&u>K#)cN9GD(n1r`LGj{3suG;>TH6EK07=w~ zfJX!$MG7ot!Z89MCeiQEJC+zM+RBr55#_=i0>y>ee2WIUzqaaLax<2HV|6cA_N;`; zH!RA(5hQ3_y17F}`oP0cv!TEtm?Syg3_3aSF?V7uGfYwEAag2_6%;A1^kjo!pN@vI zp7u2@nyUh{L_6osX~4R`5VUoqp;m4K@SMMxddZE2+Ic%N>T{A66lK%SWluX%r}E9Ol+F?vxM4$pwOGh>ay zG)ciN2&7;AvEk(orxpb8h~rrh^J0QGIvCz~`VJdVY!TeKDAll@_VIL5;)1f(^$8WG zuVGC-nU<4<3P)V?Ed?O3Wwd;$`4dL*8ann%NLi&VtP4n2uJh zSQmEb`t3{NACZxRlwuJ}8+67GGR)s>GYj+nJ&bxz5LHzejMfn>V?zBJ6hE6U0-nBR za|C=R(N~Z6Xktn|&!Tknw!R%GUOY5LYD}rWSS=LMmqiA8Z_gYZ$#Ued&IdWSd5Xqt zTr&os=0*S4E6l%uHgvh{^naCRz0qebtW zztPuLbUr)hFLigzcxSwIE->tqDG!Re1bEMTKej^8}$HeKF8Wp(eaI8o|jtTfo}@; zP}YM^mTwU2j~vY|t1`UgR^l{D^cQ_+Qu#|(qqWJJCdWFUp|*QKJ~X=9C(L#_D8g=d|vXi=#;@~2Y5mvv(_TfxmXURS5;rP77UZ?ezFg{%+Tq~9LlX=T?@s*Y zujMHUQl^ABleD7Q6MS2v=5!@vvi5V9?|1pqphTADc7KgS=pUT?W{%deV}!3YytO|f zxbq?Zdwzj!B>!KVN^ay>Tx(g4EWXlGhzS!P=Etg)%!&15>8i#aSG|~MR2Rh$2v2)RU6eAS#+8t1sNY`ue)R{qf<| zrWE!KR$k>nxRA2jgpH`uI*R3;5JufHmLl+GObwawI`= z*v8%2zTNxNME<5lL!4mtwP1Qx@Masi2092?eA@0^00m0@80BllW{xBfJN{P7D>E`iJ*J1BI@GDi3wyF@TU%<6S*8yRzL z{ZP_#J!1;`DV_OF9W!vWnc5(g-&ts7j5#!`-JYC_kh6t+KNRIU#KE(2IvLa~YT{!N z-np14XxMWx929zTMD2>a=bY!q99Iuil88(_mGeF*dY5tlt6^2pTAx*@= zg({}uvG$6mj|@9<`@W`3M`ARggF4xlia9Q8|ft`{gP32u5j= zGC%Dzqg2QCmIDBXNYDdSoz8gqI4|vZ`r%6B1!Sy*f~78#pk}<+ z4f*h5y=DFKmzjSq#%}*UvB%NCIxQw!EdTsmSlteCow-=W%oNl1*~WjC+~?^Po2by-%i9v8l=~VpoXx;gx)JTmue8VP!@c-t zu*#nsMnU(I=ddgn98K`B)vwu#Z|_=N-^G!}NMVJ1T*m&eu}Gnf3&r3UyPgb_WB!9dOoZ_2BFr8$MFF0(y3ePQCbKLMVJ&g0RGTX$*~36ST}m46Z2O6vrvO zG`HbXmomG$I`%CIF8sNd&T2E$VLkFT<&AZH3y&k)gL^E_ivyX&07=yC!q0KUvL~C_ zY5FPlPX2|3HMWJw8c#y;3{%HJM?nHTi7uIC&Vl3e!r6mh%WK&>5gQ**aCUr{rN~ zaMTexZA>>FiU7JLQhC<|e80yj_ab3TFx-EnTmG5%Kej`hLcSj4Faw#Q0jL+qYP`wx zqZmiii5_ybt(?Sjc2ur{*)_H#k!}FIHsM0H3fD{m?`@*lpK&r zYU6M<1}z=`&J!7MF3|c~t6S}LDF;gmH;?WwYq4-Hw7IWA=nf|=7*5SII7S@kIh?5z z*?s!Y7eReGdC#bbtq()0^awPza$>28>m-|)1nSwIjIA7hySsOp^458!=y0mKJO<`B zBBYHgY$t9~o;*s$lAbJ+bxU@ZZz6Aod+yhLp7L@Bc5}qY@S;$mFM>;2O_ zKu8mC&wHT>^3R$SpXl|glhpmqX>PisIv?9{^H7{wy_c$sZF@cHX_P*LsgwF{q~Xtp zslSffugsB|t-gRCluV@1P z@^a>NgnKyJx_aHdonWuFY7>zfbx|B;yUHkEQK`*iCVDj-)#_0j=IHIbv2^9=bG65{ zo%XXU;ovhPcUMmb%bR1O%mb$%B9%((sMD{OJ@WmS-%pa!ANlJxL>y=wH_!2Mo3K9# zvo?KwA_hb8r?&H#a{SxLC5Dr6(!+Ff^6-(Uda!iIjgc-S?q3!KjqUy9?)3_c_~xI1_v zKPo1T?sahWDz%fd^VVbKd~HKleAqE4ehWti#i3t=qVjRJxo0!NYae4H2z|$^gTunI z@OOPqLPd3RfbC!(=y16Nz#%P{A{=6i#vZO)*GHHO8m~}#!F8uQ`$QdS`H97~IQ+qj za`I_(y}#!cK40r~PLEgripVD#fFE;EU^3Sbnl8KbujM7S^KNmO` z`;l*ntGmJ#;ehHZWi6>RC7;k#8zRX20Dj(cIV+<5N_+3$u^=h@2HG9$uw+^B4;$DJ z^i%7Z%CTk6n2)0k^|xi-&+-<%x^2`rTHkYmR3+~>;*nI;(Tva9&@IrPq6pRmQtrD>iG-DuoHK7gOwS!W0XZ(Ka3EqS)W z+{ms%O<#pLTNRD3rSj)wlpM+wH?C#Xvc?=Ly_ZX!pAcoefk12->Wo%T7(33JtA)5n z)CqBSa!N{DH;VwYG(Gk0uP(34j7IlgzOJ@K$oyeWryoM+*%I&L&#?6I2@ZP%th5H; zuHTmJo!uS&{BtX~vP?SKVs~Pn@Oi`(9#cN+cj6dVrP|wWj81s9R0qd(5(_AXzU8h| zCq=mE5N>f&Em~!9(cD`<$K7D-k=VL_4DZwN{4?tFzw0M~E$+AFHhF6c7Z{1wKl{zefHC488{d;`Y7Xnqx90=p8IiO$uYFA`oBogMT=(Y#j6*)|Xo@_1YEOuWVa|Jsn zl?qU!qTeq*ir(?r@nn;Fmi_xknV@fIJt{G~6L3fIvKX`pV%jvF zZ3ihf&el&zH6`yge5S+ymSbpPRJAzc^;(RvnzGWV%6MW-%e;v@K4fzj({EuvGq7m(f4kt*b{r}vcIJxu*7o}kY z`joZ|8`qsZI6;QrP>peBhB>KO3|-rlEaLd(j9&255Kf^N5v8r**}hd?AKzpkNmvQW zkduOd=*P@GG8(+PhOV%d^*~A?=e6F63B1y6?9jO|Qd_LAulcMV1*DU7XJ@BB!XpP+ zIW((d8^d|sTF7TUa+CII-M73(r~ho!WH=}pnOEoC^it#;;2ILVK`5BD&(2}x3g_=e zXDeB@$m3mzC3VL<{o4uFNZcVqu1P4;uS}ujdtO=I zr((S5EsM=7-M^u^>jvwkZXN5J_2Kv22c3zABSjLd63K9rY`ya#>@n-yY zS8<>t{DEC{%%FcK@X3>GxP1y&0MJ-zEhFrcqA? z(WFMmZ^U($q=*#J87-K>1sK`(2z2(wsKDOLgBL$4GIq6c==+>`f0>H*oAUO=`NWDDWwri85Ie1}{aVYRUTF)U^!N8CJE5if zE&jz2f2@`cs!mA)hY zX3LWB^?uRKh){P3a_SM$#W)zwO)bBKqk`^V6uo@sEF&-+dNo(7M#{BPBJf7{ggs^N z{5IU3phL~p;&sN1p-%IxB`ya{yXD_2NhH;DJK{6|UueB2GHg?#)a~1!FR|fGbHJhx zVSIoL0SNF>u0k-tU#-5DbzZP5X8wsniuqs!Pu0l3veGV%ZoE!hlsW_4pm{7Y>^%FS zCHMAd({Y^fT}SRe`p#P)&F*FV208N2eEC*HiR1ARpoPC=c1_Y(Ib=JF?=MT)Iv9FW zyj(wJaD(>$iZ>`-mbwL}i3q^damBFZ|5}aFe+LLz>(syhmBNj$lxziO;q6He+Gvo= zzRWtw@8a*hTWn}`Js_NL&K`i9W0c*o33qfxLiO;wYU4xZrI#JC9ve_491zDa7Cx zW#D^PHQjHiGjz5KX{^(Q@Qe-W7#6;OuX3wN8}(D~p}-V0bPL%fJAw9qFG$)|1Xlp| zGaUSkRh=T>q`|B>z&vFaJu`7FS56Y~sk2f9RmL+_IaH_`P9;YFei^Lf;_#VJQ@)l{ zO1%p1@R$lvC*mi6m1b@Ec;eIheCHArh6L3_zC~dozcd&$BC+^&(n(gHThJ3?nI@zO zYMjnMcjX|5`t29)q~da>P#m%v>m$(<7U$sH$}b&nHUk-n-&kfWDosi%6N~FrNT6C~ zqe#L)BWYY|R+pbjl&i%=uJ8CDjn%)s65MnbchTR9wW2|H6}m}`nuwe32-Qm$QM4!C zyws-T0L-IxsfGS7&d;o_m0>K1Oybe3ou$q1sb@!={5ODgb_tgL37#E2G&s1dqqwT2 zYMwf$|FS?9r#Xr6$_4XiAC*KcHb5{xJvgI&wN7rnM{xS z`6;V2#uP`nS`&(LB#m+~_XsPfq;yupZIeq{MLr-Y&fk7m&i#rhIZoi0hy_y0X}@tp zK&C2JBBB;5<>HI2A$k7_CZxWdVVgI25U)d~!6FB^Tsz@BS!w5R1yICeR1HTlIJtl} zVfR9{Jw03w&2#t{r~$kwxl`c|oal*Jvhq9xGCp+W(;82X0iA{FPbB}&t28K>DavvBazl{xXkGllZwxs^FkwcJLz zm4@5ON*^PhBeaCsXr{;Na^TJ5`(G1Rhd1}nx6hj?X@Q~VuF=yzj8ZvM%A9l{xDM0h zpYln~(QaHOge~R3PJjKquzrPC$l?-&mEM^yGajXTh&uThvUBTsQoQ zQHE>+ds2f>)z?{w6@{;v2k!(h#~Qnmw&{=O#{z8f{!&jInN@sLF~~)^C={wivBI!k zCD%pHxkuNr2P#;Met0PQwPtl6c7ky=*>h99blh_>;5eJN#1YYy5}Bg`RaMm%k8`3E z*nFTciu^ZbX01-e7aAxv|HI@m!!L8q}i~cTt%TxvSR$NWw1W)CyT5n6F3?&KY;j z0$E)F%}+gyE{}AX2PG$s)E*pLUUDC)hIVVU+!8+CWH8ElA;d#i`TOLw-1Kw12!cj zuGXLoXXf%7R(MdB4+PD4J}0QhWaSbLStrM|=#U+e6j5!wp70Hd?-^QiM+1Y2${6vG zCgf^o7+yeeW4WKmQkSzr zCBALX?!o8S@oF_>vQ?1E>IH~U#bl1>Gs0*u=o19pB59`))dEXWWZ{W|&S;ZlnK0+e zX}d4eMxO@sd(QLD{_aUc9iOAi%6K%y{JNI&-Myc6TOeeT+_c?Ug{FO#1iE+Pi`u&!C1L$@EXYcRxeqGnmJgAwCjW!&|*S)t<~)o zt*8kU0$PE4cUm4jI1EfvoG18Z?ED#zY@jtfAnB2*Oi0AvLb)F(ekScavB*&7z&DA_ zGHsZ@l&r64XS(rD;NT2cggru&)al!u5iEtxVI`G&@Q#+BGSO}7#A^!fS=U|{qC;t0 z+u0e~XO3N_H(%S`8CqgP$~G?X(gKtECHP%3g){bgVeGe8NlvkKq}vmHB$4N2NsL4H zLN(i0W}T5{-A@#PKi5BYdcSbt$0)5xHZMNn$|*@NjX_kBexE3A%6bnal#;L2)6L{F zHBI_H?rYobSIIlR!+adW$!_P4(kR}$6k(#n-=Me zRD%{V_IZ0F@m3RrnB`5f z4snbCrASsOD^~Kolb#bX^_vlNUV4H3CcHcNg^|14x?J@YpmB+#QH)wiv{Z()k&>*6 zqo4=*TPi%oFUA^tke7?wz*N3t{s+wr`W$0PhM}X6%W7ME&Z>!)+ch4ZtN(={UKD1c z=+}!!%7xWMSq7{h8di+k6^sNI{tQ@CI9W4dS<0Sl4u$ikp?giPyZv$xi~7%KoPaBS zB&)R}>4P?6#AXtdMaJ1x;(`8&mE?>YGxNy%7{hRxUC;D5hr_`$SLv}$5R(tkP!gY5 z_qpstKfCO57&7l}-MR$eO5X0BS{=eTj*gG%)PdxxGpfCr0=t=H>Vt-8J2#nMzhMYR zpy}2L$W>_%!y8#yrF&VU|P)bV{89LyR5){znb@M zDn0hH;^Edks~<@mM8eo(&n!?>KJcfQ2DcL+k<`>XZI)G|PyHhm0#!9tmY~|$*)Y#4 z4i2k|*#Y;4DCeni&_EQd@*=;9ejN~cny-=b2+^2|&_9@Z)PGj_5h|N{owi;e#&_BKv zTHTjs4k)tJ)3p}S6C7O2sB~80=rcL6Ds7q)mGul9;ei+o9_Q=7CTK48Ta%H%pJi(0 z(lbReVqH&Q%2$7A?XDQ$1g-z0GX;>%`6XRpeLYe@Qd=-lp(KhpS4&fKRoW(q8EcbL znWnlnL(h2ZE#UG;wSRwQG9e_JOSpix-}s^gg*HUv>bPu&W$5Ml8r9q9$hCSa4e^kt zk;FMWAyEz@)S;)T-1pYN@e?N(Wo1Ff?urwdqvP!}^XTJowIk zUGB}+5{C*kotton5bmZl6_vsai5?t#PAmhYO*Jr$E+1i(<79p8aP^eY%ha)8W%`)_ zNCl#uXK9nRWeL!uE;H=-2?}X*bsSsJh$tN8#gxh5=;QX7muWQNo*B-9Vi$;D$c=*0 z?GA;AH8!&Hs{( z&ES)fbdc}=qv|c=n*RUqVOkIn0qIf{q`SL228t(T%`Ix<-r^ z=@MZy_@CeF@w;)|d*9w(k7t~7p65_~E@k4V;jpo-kAn@PRiT7WRx2_B`i}6Z+rPP? zcqAGgk%^kTxd{!@^jiy)KABGmCHuzAGB&; z(UO`J>o1Hs_c4Q$gY&G_l2gqq+0OLpCk$3xO~@p3VbL@rQw3+c1GFNXv2g7jAf4T#S8yO%jn=dBsk|Y3>A&2+_esCWHq9lY+>5JNIbqoZxZ8?7EXx`LlT5as zd|W98XH-(n2TuCkqCbCr^FsM8EiJ8zoV%22(wT;PM`wcc{aoGVAC$y8K&(Hh@1=qa zr7AneQ}LlnmtBETG?1is=*21a>|i!Duj0J=z5Q>});HdU2|1CnjvFSJ&&xOsGyL>a z!xD&SQQ+^{)5c#^U--lK^9OG6;2UPA(llo3Pw6bcfL--hatm&xo*LgQOx~iB=_d~? z<}=8>N?htTmS0x*)pNZ&Y$tk!|MeOlO2Im3>o=$)2*>fjcbq-$&6|t>p3L*Gq~See zYnhInDy!toJ6-#pLc1JL! zkl}*FG!Gh*Kdp@&kwL*B@P3kobc1>Xm1QMdv3FUC+oA9bHhlq7iYNaTJ}z43t8K)c zH$rJkdaV7TL0BRw=v=t2H_;~;$>q`&OepMXKH}Dvc$4%dG~lZak3%byRlaj$n~?&0 zYxtI996IjA$4=JI)8YcoL1nh-qSvC;d@qz1_in)WZMw!>yE%A#bK!To?p*qZ%W1Tt z&xb&O%GVhlI?q=0>(=l-&HGv31G(>xDp$BJkwq{NYLi4A#q}bfK7UCC{t@e8FYF!- z4vBC6`=7>+0DduDjY{r`qE`#W>s|{=Gcf3$STHvU;7IGhx!?Ws4exVNky?L(U@35B zzz$3L!&)Pv1djm=vXC%)HF_2;rz&vz;*P`(6@T@u-zHHyGJcN6L0R)s+)NCTId7R`w4!n`PwGMHpzdx! zdVGLD1-0_kC69_l>}7m1GzVZHd(n2+GS7h~P#zsPCu za0#)nx?i~Em@Z3u!Ea@=@I-iJz0h|0lQv0_iP_5|G-8_b76ZhsDc+i@jHOXbRF60) zTs$mTb}4Rc3EPR++pnoBTt16=4DhnmtX{)hP!Se0dLf1}%UPLnRVrn{hCFyhyeJom zr`MGt?-YOS_A;?vay1QfaCBxdSaV&seT6()vQp}QdU+r)yl)vTp;|wGqz=9Ilo;^! ztjJ}@$9z6Eo4`3|U_8*Mw)8I}7Ev~FftBPBx!|7AWB|_%B<7Ic3v0fgOl>&WJT?7! z#raA-rtQKvU;dOf>szpGJknYQWwGKdwc@crC{QKQ5P2AIb7a2KduCOC7=^m5oQeM@ z=2R zfjLTTo{+v58o;e4cz?HBt#3OjEI%j!h}nRzIRiCqh?wyK`s8WahteK^%2U9tmUY+f zhl`t;zqjvK+k?`AOlXhKRK;r~ewUVIv%y&4IMug|*5bl|8a08FiR}N5aM$ryjaMJVi&1M$HV)TC>F>Xj!A|F!z1Uvbk^-U09j)6&`QsNxf}#% zOsFmW03CN|`)O=qiy6&7DSvR}J&Wg(t#8h_&CJ@Mu%YKK=x3 zW)Z9W>VomP&TLY!UJUlcM&Q$d^A(uL6wq8+U`a7~26gtz$)c zVDJp*Jawn9d#*;Capi}pNYxd^cN7EmK|(1<6;y-u0(sk4-?YNijxMwAYbMMliJDXZ zfscn0;;i*kQcohVfEnO7^}j;+FNRocPtLv3M_+`Wdby?tsm6RnvE=NFK)WxMI%Ip7<9j z1H%y@T4i>8hqP{9~odWyLx`=xd)*AVZ{&sxQ$>8JITk|o{DVnKQ`*|2-3U|TnBQ=;tkJWCNe)sNRK^fn??RzAKV z;^H}N{wI=M7n5XNe@{C_R#(#UXU`qNC9K4PBIC9K=P0e{-%v5x1$}IY62-3GN`z|` zvig9J>}r}XBd#~c?p{HvvfQTb0$1ux=1yQH`o`t1g`i{PPaWPp<>7G8#g-F|H|4{< z9A+$^fA|8|keQ;wO1#FVkRZ|aW5)RrDyaRFk_xzE{ihsEBxlI##9CcBXKjQ zLU@dR+qco@{bP)7=Ho(C(C!R-!-3rrMp)SlLv8zt|AqPMypMCZnmxHOl$6TyeQF<( zG~Z~_tLj4gxW+l@1PPsWVqjm;A0)YwHzZA(h%chg-Y$4H$TE5raNG9t=fveM{82EL zV3^-z-txkcaW~8Iy-k*vd|vZkSVJa$b$wkkcSz04y)Vw`^&II4?{{pk^@gb~6*~Ru z7Uf$vGFs%F=DfCkDmvwgevXfC!o|=Z6VKyf?0ti-eNqsCCqesq@Riih+=Dfca3%j+ z^4po)dg=xfdTt)$unnWVA@P9f)Xv!&*k!QleumC5pNeu2#_2u<}h?a&$#VRl_l zl6|^g2~KRSL!C1}n$gmqzWtH;FcE1ae`KhEu zzm{>=N6L#zdcgbH{|W?xh(U>b(V_uv@=a?-)@a0aZBo%*3Wtf?d3a5F#kIO- z`@-Hwh7T`ryVyP~2Meu^C5VTPiP5(O(g*0Ywo}UCd%cXw2FX$Ux&bG&(2Ms_bW4*7 z8oQ*3e*d8o9fv=n(D(g%z&UAb3S*g8xy7(pz3<|~c@*9?X+rx4^zdj9rvM^+pWgp7 zIs)sUl&qSgPDRtRcTTx=c_@T+t-B|c^RoCwb`WN=Q5#I_+us@N{%xg)cL02aay=?# zuKMG#2NgG-)xq`t7v9%C?iUN1T|P**+TOoXEkeRf)!g*jNh4oa=BV_#m}K`KzK37ci5HghN)*axvrgDaKvnMvu)O&kfByZ+(d31_=!{xb8 zDkk#?%str%ytF92f4ug1axJG%zx()f!ya+B?vHhPhC7eST&CObKSCkA4{uSjWq)*l z_;0A2U*lTyW?W}|S;w=VEEQZ%^OILv7*_#dU_A!2`7Y|DnuRucGSjlo(%0q{{=>Q| z(~ZxAjf0(!8erwf@uDv&siyNzE0=CIHB4BlD~xkT88SoD<@007zFAB9id5H<0uH41 zlHPCSS{Erc%No1guc|AS#!!2gx$#hY{DnyGM{39;*-Z`CRU>d7Y(dhE2gv4|T(p%j z#-|s<`lM4qs*z-qI*U=OJYTEo@H(sEd-k1il`i`Sy%3@yxgLyyGfeJ($0(1|LHK7I zz6`}b-Z0NK^yLG8khoRMj$pkl%QPtk9j!9)#4P*?k9li`Rw-9g69A{QMb}ZaCD&hB z+MM9!2>ra^bz(npLh|u;XpfvTX*7*eUy_PwB7*vY8hpeJIfLg}0_`vz`SjbSdGcOQ z>7LAJ>}13~v$ne4L}@Q36+4~jeR?ET#NB%<%Kj{o%;PPY0t-h+5uc=z5~6U9E^cYB zIEk`W^3|n1dV*fLpNAwllLIt*-RXm&(`p@37-e2j$sEz)R_`WpaT0m6P&HNkY~P?f zR!f<}($C&^Yj{Hh!%MuyU7egnuYF>qqD==Y8(%sOZVOf>?O zX!MPxULcLs1Dgmj_yL^RLByWr;O0DvyLpoDHJTu*G0iKkR*1RF3x~BSCc{uJ#0-^# z_zaixQEy^Mmmnqig+Wqb{IZWx5%; zENn7O$4Q`J6gqG!9!kr=;R+wHh>nqRmlohxwTx zGw;XNmk^C{6hD4`wd<}Xtm03=(*J_D(UkDq%+2cWPKiUg9i*v-?T6-Xzc*u;3bF<} zdH6()eiu?4nbEov+vB`bB%RZvlJ^_)Mk4ZQqR1BbLdVSdH;U$ zxy_bcV8>-<0%Q0@WS>B2``k$({A84ou&{mQ?2B{fvZFdT(z}W?)MibIrrQpG&5mYG z3BS7{-g}88diUl+`YL{xA~>PcFP-iF`8>EhVOdWsOARWCdBuE=wbCi>y8|~of4X1f z$S942zI!#_z*Gw7}a*^ESh( zO;V1-JZ4t2JE$DKaakVT(RCXFd6ZPcd-~(P1`__gpDmFWNORO}!REg`RvQ-xac&7owvne;@k^$6sh!oF zXjlqzrmKSCkjBO9Iy(20ckKAs%rOb*z)P|@*?dbYn6Up(3(!YX5#GqaLu0w);L`yW z!YO=Mb%OEkBhS;MAD{Q!3~eYOz~Er;r0iAMdsWol|ox8i5!{dKjE&!gV9NFj!vlHS-xQIgh< z*l4^bb#xb?(iF(Mbz?l(1p4A7VceyBL1Vr)=@(DAb8qLIky=~uVL$wk{rYQ%w|+FI z3@I2D{Hj4Jl5o!sI%%CycsEc#vt)_#y*6AANths3M1>fk=A2$_pZSyg{1) zVV8^@%;$%itVH|X0h9!HB<~jN*jttKdRkYU-Q}B2I6X60=>$tT$yaP(U6BVA6YV4g zTaJRwa!s(ss)IZ=0ZE+PZ`EJ&zw5;@zkNsYQt2o-2BnbMOj``%+ECu+71Erhy!NrT ze|Fy~{;}45b-pHvF@IQP+ejabs*mGe4&q(XKG7{nbgIyG^F&-Y=MU184`Z&mK$cu z4&RMNVX~h))1el(deZ-pki&8rNwjZw{~lAQJgjg@ccN14i&tB4o=o|XJE&>_` zV;S9jZh)Cj(58>J3eA8zq$lc#H$ZcknYG|*c*(ON0&+t76I$iPq3TxAufe#!dOu95 zIku16n{E)j_hKkHns7s&MgyI8?9;sa*OycwuO=PwhGu#3(>=?ZJL~I%_r@}Ke zr;uii+4%ebylh7ZgL$m9IDFhMv0IVXu$5le!#7%?Iu@b$?(afU1m^@jY3&%1E9Ww< zU^I%<>S}AVx8ihtd4A?-;nqX3F13HH*iNVYe*ZGyqmzia=v-^@%kCW}$Ejhz=>z19 zlQ6uaTR`Sz<3>AT7;mhmB9#7KrU_1#=D;-|0NNKoJfEBpLQF6-Vze8zy$#2h4CS)S zR3uZy7nUZ?TOP{YxV6YF&wNL!vCaCToHXXRRl1xXZH~0&WO*3un4bWy|j>1}sxx zmVSe}NNr0AA8B7(7)5^rVgTm75qWo@t7#l-5}5zGao$SY4=qhP^VGxX+kqm$;?vC% zU%XoAlzX34in7~xhGS|dq~dAbVhoP?yYGL1eh}^HAs(+q~z7-6I z_U$bH$&_&d%k|3{>+zQyp+F+igS48h4?r)xx$57}7!EltrbRECw8Zl)!zkx+E%3@z zl3y$4j!?R9l<9@m&G?4TIE3M)Iet6*z|rUB=JpykfaSEVtlrjqW?gf$g@R+{9cRc! z^xjoZ?GDI_r3sD3E4{;iQ8aK71X^6?(x7Lc=#GX-bP}jRu(B)6VI$x`(W543XBWJW z7$0yx+~kFQ9@4LtpFy^uL3}mpg1%FF122mg_PM)fx znAKKJVoJ?{4)o&ml2<(T{^BD7=^^4=U*is>P^5Qzcf`br=4zK8X-@0e=GBA=N+~+B z@5Tb=m(6?;F}M{fLe!S{(RA2Gb!yMOgl{6)R6^By5?hQ!U|Rcl{HGeApv4WGSX{Hg z1%`5x=1@D#EKU3z(r_@FVL-H)G)+4jjEys@R^n#FcARl&&)F2Ex2=-EdqiMx8O;j!aMZf2HY#-(%zvam7FR zD-j`(f+9un#>iOS4BPhpJ}$pK3F){9y$sBeRQ5TuA40NOM zEmMO%C{w1UtAL8f#(dZcnw6B}Bj>-*dTHKf0@lE=X&0aKp^Yb!r(YXSq6U-sL*67d zQ9M7Ut6s~|mKQzef73w~;qWXJD~;Dwqad5y?9i?`EA}L(e*8+gr;p#22@pT05H?@3 zVxWb4F@28V`H1Gc5T^H|44x67DRTv!nBOap?yu*gVYL04dZ7U{#5js({pH8V=KS?L zW&HchcY2|Fsw87SaVf|%DLI88q%vjWDK=tK3ZvQ1S2RL0lJwdHpGNrdK{R>KO-T`0 z|7rSPekgi5u86xnGV^N6P;wFZzg+n8L@G#+ET^mcgT= z3AFY$@_TZ4HB)a+ZcY-~XdPzA?|olXbJhHJ{^kK7%1l|uS%=HPUlPA%)qJ4`XHtnm z=U)p9m&ICWR|e*la<_w8+6kYkooj$!TFDNoN0>i&JZWA4$>lN?q!q(-$Zc{plKd;@ zl{^Z!EnO+Zfkm$CeY-U)A|gwJHR7!eu-3Q8Y4Yd;9u;OiLYr-CLinwK@_7CZt^H)T zBL_aw^99!7?aDsWw=oKe6{-3%G72S<)ydI}#Vium%zF;|9h85TT zW%KzYf4VEmc4ppa?6K%S-Wt?Yf(x@HDMa8H%wW)yKp$id?Tsl`z_4>z-Cw4jo6g=? z$5&SG)$6CSO)OU4X_hw&Jd4KNJr*V);v_2KX)?TIDGtkhdqK8aY0Wob4Af}(HTvqq zm+$S4t4F1**~SUxFRflGIJl#~9^=VQa2KIxj9U_ln^K>45+qP*WJ+z}OR47}jkcr2 zAswLQ&290#oqSYFru>~imC2l0D>&OseIb=|GyW68wwCh4$Y}@53xdZyuL^3fN!c9@ zCv_MKwA6MFI(Nr9!Q8H>3J90{PefEE-<&WoZ@Pnxwu&GO)_7#wD3~B zC>^5M`_D~cRx$n^c|Ao0qNPWTQfnl8&lF_i{?Odjr!29>sKh8;#c6)BzWSaXLikeP z$BEWhwRQh^MKi`i#GmSG#3ZC_%m20=xYS1%%}l-`q_>-_k4v%Rs}m?VMw;7r1U*@q zd}KRLKa)+IV64aw)V2$CY5Csi@WwFWr)WiOoHij`OwQ}>`g4y1)S{O@bm-q=CdrQi zznT;Kjq116R~tiTEaE1&*7#o z^ZgRg#X6-uu3SI+BXa!LxoYc8%K}%fb-MCd;LowF^#!3V?|A0qIA!&jEKPj5T==hm zRZc4{pxG!90xYg2-O81dSSXcXHYGuNNieeaFCzFm>gb0y@^^g{f&8yoAAdFdr0#%Q z(<_D-7y^y7oQam4lGQwF)*6z8jN3iae>5w~ihek1pf+>$KBjq`k^~Xi#ft`7!Rc%H zP%yJ-@7?ebrMA-kWhV35z~LR6Sl~ifIb!CEuBy$29qs})7ds9lU_ar15@pZ6zAA7zfYdkypg+r4Vm z(!No!%=2$@C>KA_Hr}7I%`2nV^ht!iKM}(bf8n5#WaYG_p{pxAEsczWlW_XP8%x)b zBH#Cqv9pMT|~q=J|1B4wemU%neT>WLiyDdmraA4YuRj zpX0OdGa4>*BQ_`4lDj@CgyPPZSq~CJr%(CKOJbCCYKK?xE3Nv3=0{`1W0 z)Q}>e9aqdA?sAdkkxCszFi$RYIvVBC@Mr^$L=DtNrtb6N#wd-m_dj!p@AQbfc$6DZ z#=kn`m;3~}mkG@-F9+rSMaqk}H9IXXI0q3j`p!=!KiFck7q zh9I_s^0z_+M`tmYD|dwO){=Fg%LcI&ii{8eds+oD@&e|F579T~WqRm;N-IKN zyasf)wns4Z{+56EJ;Y$`0nt02BxoR!Nx+CJf7|e<1;Ob_)yULuW#g9!sbUxLI(&tr z&c1(zgF0OL>N$yxCH3v_6Q$BDc(kmdHOHB%I2G2b8Wa7TPds{toUZZI7?SO*DZFJW zJKv1CJ)ja=PCo1W)UjhtC;tA~s?6Nqsr8&T)sMiv_4gSd|17Hb=}2Bf+|ch__(?B2 zc`0dhw5p2VMK?80sa_+7MHyXSVpq=puvi$7n5=WL9 z#}OLG;IR4F^-BBw+M18|G`_#m-nyhRv9~O#T=%lM$&bMjmwpoqwjTgebv8`Owsw zrN;1MW+r3iehRijFCk{F)o2KAz7=(>Pw51yAh%(!-BUcg za{Ev6i*~L^f5E+Q@P*V}KT(j3aNx0xKq4t3{;l`lbvE_vRAN;8PprR58W#Z%m%8^~ zb9wdJuRu-@Rnb=Dz$Xlk_PZL*LI6?D0Np2{^6k&)bPOc|93REVhb~dJ(dk;!LD^3i z+QGk`<}272ye4?KF)K=0L7rdI#|~BjL&VP_uW}cJgdKV4FM?$86xkalwnz4%klI4_ zI)9?_f^Q;zVF`I{VKx{`y{8?J_PqJY1+I9OUBfSkH32IR9*Jm6ir)uudQrp>mMb12 zd9`k>(xD0*745xeM1OcbZ)K(#pu2k)*ctlXcAn~SmPDQWcdow|q84no_(y_N#t?aV z+!p_gg^e&PKx^bb^4CGH3pHmcKalm=tVN#)Apl!W>ek+C>yhqD6BxV3+x?w>pA%{?H&%FEz)~(e&4V1@6A{*g~O2cA7d2r5X^CVsUUgeX)Xe+Ir z-~J4+TR*57GuKvXk#E*z;)A9zDjM{yq#1q54@|OmLG$X_mB$imfLybCVDL(%cHH|w z6Wc+Qol8ISr?M)8(IKJW zN?5H~5!0i1p{K})ivHfjJdyqw;Bg@YBQ^AYo&R4bf>a(?}-VYv6lO3d;1tIhj;RCl9%Xb1rX{|6O5#m&3>kF z92a|}s43;?SvyFr?KqSa0GZg7yOoH#R@cn!B5>lPDnvJu$PFBfv29x3thSC+du|Vv zSsoodxB`;Ap;}*~XWt-nx0oJtkb^{VRswSD{PV%FhsLb=tGld*lj~mx>i)zk?ihB% z8WP3yse93<94;b6wyu2x$BEE4^Wy_C9vFjC%p8p)q*hJ#TH7MXG6)rjTMOi*T}u$! z7pzrND!ul5H*#@X)7}Jqab8xr@~HTL9~-N0#dZ${`&EWBwj^ZLc^p3r8gLHm^2@Y9 z4fnFWLM1B$xmX6|v4ukT)q=d18&%rGIO5f-A~h>B7KWxe%+28PRUm&ey|cTu7juoG ztXc3|tV2o69>Kp0uWPxm(;>cueS*i&r-bK5CP>hOLJCX*U?r|OC`IhM?X)L^GoU)n z$&7FMSsA2ak?R2+3Q_J%>$x2qc!TiRfLV=IS4`S`)7@KS@+BJq>}!bR80O0717 ztU_uwF5Lw5WggMNKLAbrJQg6BBSXX9lTmeF?NTPPoqU=tXXfwYdE)-TH)&1#4gXku zy<_%N@sPKvpDKy~vR0`=^j~OhK8e}LaKvcj{?PO6A=l$B@$`W3reP4hkj>`pbR5)h zPHLPJOAV07l;H-~Di|C`-dNGg@GRijlAVkUzdd+1QTfXOT%*|t@R0hNZtIW-YiSvN z886_NfKS_GC1#iQsvfgVEjFJ|z<$&hKhg|#_d|`-%_M`UVgW#~fVR6FH-fVj6ab06 z7ncuJibG3sT8{vp-R53D>mz#l{->It>5Z|hcvB_cchZkJg~GxhgDqM)4ljLCP>Lq{ z25%j^d}nie9JZ3zl4~CyJyyL~&Afe3Qo-Rjs}g2bxHa2w+J3d1NrG`{EMf-2LqU20ar9ugZqX(wDR7|opv zprPf4pKLXGDeF6h;Z=VHMt=N3pB6l&-uFeb&E2s`|HUsnmCIlD%bX~7{ za0lM9Ta+@YIwYi;v+YX|)1*yMebtMkEzv4|60v=W1B}&mmh*bP$^JI`wU{zMTz6a{iW%T zwz5xsL~Onq9j8X5sw(4jFb?@fQ3Z$lxzX!&j32YLM*D!E_-Wx^Lze22JG7~JYroZ<)>n6 zG8UbDb$HL_I4L;GTGgt8uf)A2OFI`G08|do9|-|h%sXUY|N6d2Vd)Pd7l_cE7^MJL zs)N|yiV?r}RLq^`y==lk`{i-BeHN@tBz^h%@jyG+E_xlYPW+ZV4o^)0U-MNI5aqVpN1j3}vw>Yr@L)}ri)SutO0{ofMlP_3*j_aUZcdA-1 z1Dg_k7W&H&CdXfE`dmq%;JinJ|L{RVuNG-tI=4zy~6;8MkO zp*@ncDJ^5b?9dD0&I^}tveg?zHy{_%p+L=QRgFSk|O%VpAp6XU1;VOv@ zj+VQ3<^qMF*QQ<`XZUcnow|^9U9+k`8EEj+m9NvfM~&TP_~JorZ&4Gb8^brAj+dda z8M0L0H()**WiN5y?>C8oZ~~ar>5GhuT2~silyM zGbuy+-jqVpuzrLS8ts4!7uC99!m-1cYT_$$l+AsbI4Sj2VPdkC9V{w{k9OdXapYIK z5!M*#!vA%3qj}v0s8RNP`9rR={ID{_N!3vDLd=uQ_nn%9{>ZrF!Sir^ zM9V30{H=nO!OrwjI3MsLdye@9kPmkw8~Zxu0(lTUA71tm+P`IEAyr{ouZWzL`YAWjmGuIcM5QLMdELzsUHPQyzIn$D!ChFtw z3}lc=bA>5eA&{z>z1z8O?Rh;{L>Bfw#}YA1B~CfdE29#UJL2ygO33jEWYV-)cQ0KH zs<*;xPWSczty=^WyC2kAgaCSOU%c4D$r#Gz=i`kITC#bFw65mhjvaz@o*|^7W~^K3m6$% zXc*o8Lw$qd2Drj?*PgG%0NGet(AL7O-)k6hy1ml4EdWtTWmS%R$`u4w<^T67$Gmdx z>)jeQJon^_SF?;@Uq>{fSkMqzb3=pb#^0wv&lNf!KyC@}JFhc^=%TK@`*&s=K<<0R zNj1R`tCvFp(InKv#Qh{r1*s6)JY)0O7vM%6i?RC9{GpJ;+=>4z)ml_}>7oWSL(aci zOiAB!S`s?8Ijn0o5GEf$ObLj7Z(qRLsj4pCjW;G86&rhZRdv=(vo|)@> zLPR%LfG_jUwt`tQ6Pk|{^EOAmp0W+iD~FTc5Byau+2I}E3r={J4%S*`m&xv>05wxK z-R6tun~-pXtx)mNQlP~H1p|qINsO65#R85un@a4q%Ydhs%k@(Mj9y1S-AdC{r-FjP z9IL|o&sQ=#BH}ide+!w;0Id)SquULt==uj2bYv}X?S&FS)8aTTsJYh29N2yAntG7~ z-oQ@wi@*ny@ezf)uTO)puQh4=2s%@Q{eio~AXg~(K&QI^NEEfIi(k2!GmF4j z={{Jc6=h3f`t$iwWsO9!*=0s#jz_rX?_BSh3)Fx;;>0rUt|njI`_7=!N-NTUFXcAZ zdpmp=&C~YjRfcG3>YPZ7+tA1Gfr zS*l51KrIcbw5wN&=Uy~geEDNDJ{zJx$myJYNUm7@{lLZ!o^U8)Z5(Gtle}ygb-25Z z4etu-nK@ickXPlTOqc?N1Bb)sYQrXUb1 z<3xu$AI)#=T?{o8?|zK)?r}FNMwvzZ_gwH`z!Zy7nc~9xT4m%zk(x|;9vO?>Wa8LyUTS@-w~S1Rpb z^deWj0{`!i>B7Q^bN6+qK?j-Fxj!hpF&?q%r%C`PZEjQ}i9F0>EYEXd9_63?uTX0Q z03}tUj6+{=%fJ9mISc^eQ6pE10c@Ta2o44JU5d@0HvY$npY*aFY-S&f73|@wOG{XNL(>_mgFF&?QQU4G zkR`>l)ZW6Pg^+PXnvJsq1CPe%^dg#&xbwlwzd9UHDLzOLS2Z@hdBAF*<7gv4)>ia zXE~&$NXeFi#^;$NEptD?wV;u`gE5OowmcEPuX96VEQKc=_MaOWHJ93)TK{u+pF_%) zg}%G57xy>mYJv^sFI$;kNM`VACRg9P#G90GlZ2kQhBYmlZm@yCAEc-1niu$){^5uA zzTwnU_PXD-StPi53aSqc6`wkam@EZpy&^?-{K^1)2x zl_M$izAsn(hZ#8(DaAVp9=uK;>k9gB_KLHhzvHN1uJpC|c3TBYC%s&=i-j!!h+_m7 z%7)GR-*Q!$?`}mW6negKeaam9FW{+#W98ap@w9g>i0dpxx0?j0E~I_)@7EUj^snmN zB&bsAME8X%pkSaUS(q{V#Pl2{wB67%2h%t9-p58Ge zHoMgR+NFsVdh)!M5uELvDZh(huPZtWI-|dv-&j*Se{D+=)pYOjWqp=-(QvA=;DnTH z1+mT_>1sv%;(~bii-)b=6X_b*mHp(3%|cUre-|k5Nuk{oFJav+Jp-${HQUb|kE9$< zK|!*P2KNRhvB=hLuE%M4d62jS7j#*oPUVNb2GXQf&Wg^*gPt|e3p0aWj}ZL8>Ozp5 z(^gq1N>?6#d3ASlcY#E4N@q7f&aBm!X4gN`4`NUMtPyE`DhSLh@PEUuP}`vu(IG}& z#aAQcQ%w!-e!BBuJ@iB_FAz;)00X$)ts-BBevU@XP@kjym+YeZ-u#=V2JzweV3>~H zL~Dq_eLa*p`>31=Zp2{mRFewsECVf?LW=n^bSDItALKN>7!SR$;jEZ~^2lLkv%m>2 z&$I69Ic4c{yi?xz)Kf++hgKQ(n&`Z~^Czy^ek!O8h{B!H3L-MIUXvzW!v-a($RnW*!c9bWS*9zkKt^uVr9O^U2Eha zUq-4cS_@he_5z}7oR9Z&4NNOnC{2kj_~16&e9~)7Ob=e|`g_N&L$l#RHr7w8jY}}V z(a*m2*@}Jr`nH$G+kl)=r(V}@8zOeT%hD}B_jQXkD_RP>PGn_0Bxgx9AT>QUTVjzN z-+X9zAaC1xWSm`#)mbwxbjzta$<9#Ascy+xsM?A<{NBT;pyNbB{1c$&TVDlgNxk;n z!HbQ+J$6N56KAfU1`+aDFYK{Ix|=J*gV7ju2qST`L#=5pha%(cPt5~U?QBk7mG1gT%Xu=0!Ip*BLzxf z@3t0)&QTLTfrenQZ>J4Gln%xY=oo6i!%HivM~wyArBY z#h??!M&Z)_z@>GsIK>|e+}mEMj75VZj5IcYEwTX?DCTxg2U?Y5yB39r1iux`)wjkz zs!zNykA%HOBV_PsLRGEi9)`qPyuFOMVi;?;rUQIb(ycM{tfSOIP01prkm;Afx;ki3* zg9^X;o7K|NLJ2JdVrJ?nJIe_YOrVW{@K7Jj{aw|Tg8~Og_UUR1*Z|96%abwiwEnpv zxKZocX)a{PD*COs?-t*DEi<$OqHcdxnHWzkO7Wwz~DH6pmUEXdWV zn5OM)P7Arl9BGNdU-+0z&enCc6k}$|nrE2V{rxnNHayri6~pXB1e`6uE#+k;=Ox~$zCEECy`WSR!~;$> zQej@GRL$#D7f_!x4Z(8SOE{R2_w%g&kFZ4tsl0}x>knev)Q6w)8~zYR+bz1LotnL( z5)Ua}Gr(5Ck-+R~XI=!C>d)2cJgeN)-&neEb$PEZZnUC?n$V+|^~r#Xi~Je7%Xs1j zoc0zxhaF*8`g~O)A_luOQTYiMy(i@qXxWM^jGeD@gd0>#C2;bK+v_%^&Sc}^@ML5!=09B2^H zP=l?NgEnxFHuUdGTxM)98;2#hDi)j@ZX)$$1;NnduVyud?8~nW%*!t;hxzR8gmcoF ze3`uNe6pu4d5X3WnG1<@#WYgBZv*cqJNJikT*~66ge!;g3j@h#d(dZA$qCZtp4Xnc z$_R4wQoeg0qy80iAX4^bc0}h{-h^Y4f`Ae}cbB#=F_WnWr(}uyTd5qagY%K8X+3QT zS^EtU^%Um=P073|#{{uMzv0mf3}6PDGcO1KJpf{a(JX%dj)tT$L`KiA7A{uF?+}un zmH^>8>vU@?D5gBSA)L*PpJr1we*0d1B_ub_D?C7+HEGWQl?&)q%RneGi(_J?E;Yy^D+LdZq-x~`)YMV4&dbD|D)->!`c47_i>}NimF!4qDza`-qap#%^6)PQd?pKp}fxM6X zvX>#04Msf4EEUVuq_U;}qU3vMag4|}OXEyIU!+REV;B9nyzi_L2bPND6(lXwEe$h` z478fve~A?LYfX82^7Q(b6<2_p`GHlPtt>qVTUASg3>4#Z149Vo|JAFn1fo0H&0d3j zOL`BDR&nfQ>wRkN%bfSP7C(Wb`*vYiFScVHhN48&++8i=H@FRFWRqZ%ZzD6 z9%Tvf{+rR3HNCB%WFL6J4wC?|*&4{u#R<%hZ2oUnpmlYFrmQrj_(!rK$78-3=`u(u z9;C?5z^`wtO@S*Ai^KQUdH%bE+|CJFlgMoePh9vI(fK;Z@ODX(riMc3w6@{1W4Y0G z8Vm}0zbP?p;0f9$TrEevHPX}KyGY&i+YF(>dASmJuXQH(2=Ja&N_Z9Y&W}!%M+fn& zdiC{kG}aTwBI95#P+X=p8u!x1scvjkrNX+CraV(53?*D7ZyK798!FCkMPHi6;@$u5 zK%$|;E>*Kz)QZU2QixrbY~+7eV(6y9L2O@}@&X0WJ{;L{EVK9kKNVj#H&eT*>TPqI ziKm$$p_1{J6{q4S6%#0{;;GY&$M=O{3S{*wa@*Gwz$ZM3m(T|gfp7cQ!>)(5Uf^(> zeAW~?X4#97Ay-k;MJns6+x~jkvZ54IOjAV4mc@Vok-9Ru2lkW}Ts49X*^`;kUN25S zWT9oE-!b=*9lG2hGKO{;gCP@!_(PJd1o$NVF z-cVz7q?sP~#hQR(ndp@d{&ECv00nHiziRl6c#)gG+8!OLw7XE((iJC#GdX`n;TunW z!P!_^Bc?*#c1u<#Fkq}v_fW-MLbzZwlJw9z^HB-iHwZ`nEXn8QkLJ7|4Lp%b1jVn9 zHas^N(C&m3CY}~a`4dzq{e}fULaOX{?*kq_p8M!rhQBZCMQIl){N)N_ggWxo;ua^0 zzBjk!{5oPoO+)Ti-n{B?#dll;iMG+DM?77%tS$~TEXDU4_uXLS<+Ml_R4r8^`P!K=?&9p73YhG21PsNxx1Eh>wc3ef@u3H7t|bNKwoUvCqrjqfldd@YI7Ac z=A*La(cwy5B>Oh=kjMRJHD%tccFl;#WPe*sDz@kmW&B(tFdPBHN`ZB@*DMT;P^7jn zq0m)T!(pwgVXb?u=*yw5Mf#7f7xhPvwS5wgck>I?Hf7yMoF5?e_s0yz@J;@%&9yqU zn-H-_i*w@?>ze3Fh94giy$VAVES*h4^TDv%1Z*jPGs=<-H@?>Y@C!j|a=AI>MJ|~# zwXYdLBfUW9!$gHKX$Ymj zEi3~};ExM*^-0mkejY$t8Xa#*-SW!o#re&d$&&VFx#r%IZAv(6oiar`g{(JR>l<>s z#Djyh38{oiO+QV1CBjdONVO1A?ea=Y{f$=zaBwG;x>2s8|1@*K{4U5bv@kCc#Q`dN zSv=cbprPAsEriu5Wp&}b7Rm4ng!a^(kVzN`s%(l>LK5KnO(JhT&3SKP8Gcwl8X%AI z-Ks7O)KL)ny~d&W&p+}IY^m`5Tj3KI5UZrH&UEx8OfPe_07sJRzXyiD>{1K3S$Sk1 zJiqiPa4Gp5b(tq1G??7)>>@v9A6~n;w<17Q*ToN)M~s7Caf6DR&LxM88}OJgR+3cl zqCecP`)c_a!Tz43T7XH0C9`2gtZDo=ZB6)Pyx+O))K`nW>3;7=}F=L@sJu#;6=8DK&qo%ez;fcHTC9eK{LsH{B4Us3bEFwK-kuNoR zj;%uO5#p0i+Z44aPSs}O_68;87f04yuN}Gz*nSlH%Tv7Si5@(Nb37Jae;-igNkQUT z(eKLb@D(=K{)bum5wA429Q<>nTAYD%#rb5V!Qjoerx)-zN&=Y5GOc*h6zIde4DkR;&$wV=8#R?zr_~o%vc`|2TDnwZ(Ma zkL=)$;>5P~>zPG1vNlCiGEtlQW`3I)FkPJb#}xC`3@7iJrW}$t{{Gh1oJ zE=C^1H=TJ3{O5u{KU7ettEI*UYV94xet50wXmePM2Qj*^Ufx;m2V=wx6hruSOps+# zF6##6bUerQAKYCW2dz{;v6^sy@Nd(G|-@FvSdHKp_S~n|0BN_LwBnU4;;Y zo7#v%uz)pu^$I?*Fc5CMLhoO)4(eUvy%{4x&q08xZ_s`IhVZ2!7m~$JR+n zDRObLWGgTU%byrL-lHd`zw|oA*oHN!hpy;_E-*rpK3#ow9+h)Ku5t-lf4aG~@x?Nm z5;J1-m>S#_t2<7*nmCnI9_gezhAIBXsxEF-q~#Q;gS84UDDhqQaU_q_CvQlDN>K%^ zG-g~^woP1pD~8_HD++WfCX?!;sQ-yxaikK`_T<_>jF7hd*K*K4B+UwG;Oj%Cv|b0b z_EFQi5#N#8UTqz-TKRE51QUjwGS;txTABQr?2|8&f)D^Dxb@?%hxLnHWQW@rf>Gm< z&j!Gvt5n|d9M>QS`X!$+7JWp?+nc#h74qX52DC0{Rz0-Vv20%8*LwYM9~IBU(dFfb zaWc|t^#nvo$lqg`weLZ5U41_34`&|IlgC2IuRo2kNa4ixwO?H7LGVvE86I;2Bu2s8 zWLFh3t)`n%%1b);^vC;*9hyvT{}{%SP{$F(b`>V2zZ9p3A*ac6uh)fWN%w|a{QaL< zIymy(5xdF}M*I*LvwTB5qk6RwSepVd1{diMV3VCzIuvY z7jr()ri`FfDAeyPo}cr(Bxi+ZpezZKz^kmfeL^@K^WSRDRNDDzbt&tJ>#U7p9Kl}?j>9zdg|8kbl34{*3nKN3KJ#1tC3lkxaMQbG9F55 z=*cGg90M@!d%DE_AOSHlRg3UYl*$A6u{?eepqJ5(bNUi_RftrVPBjR3{~IjpTp&&% z76cU#b;V4@Pn-7#=zgr3Vtvu&&*iqZ#vVn7gI~wfWJ0!PE2F5EZ^iVEEFgw2@2+>x z3T(iy`Y6WZpqLZuu$G?Tl$^>}E5^G>CWAMNRn#K!WV(8=)cz9WsSH{n?7VVantj3}opX#BSru*jYI?r(@xa8wmKUX+^ zHxGKJdkD)IbecWCDuuT^qt7pWx0jCFigZtU{1+Uw^8C-oU$QFwm0gGP-3?00;Fen? z`fE6nb^R-FLe=1pj~=c?@+#zA=K%A28uNdi0eEjgSS0H{9V-HS=kJ4}vVch!?r$-Ab%naFz9~x6W8&e*^ zPP8VVI6d@V7^(hYu+!liNPOqyHd&TIUmY4Q>E=2?yULXpDR1aI?)XBT5hph7@xIz3 zh5EbqoNh*8*6-5;;IXPRDX9!S-DAjBKD^e@o3XVu>QK|aK1hMz)17w0s`#3`Vnmyk zE-(x-jEhdGDOUXs0TMmkZO%Kth;P4>Xj=-hKh4yNV48qY2<@d*v5e^$%qp)=cH35S z<57}L5C@Tcb8XqVgz@9%BHowz03Kp*L5)eZsdv1?h&})s-6)kn6QyX#Vn!zqL^y8_Sk^V0#XNj3ythC< zXH>SWN5t%{1wmTon%04PgqiVN#ZaCy11#M@92tEid8K9EGCT~%J>5N%Rbme|Z3^iU zX{l_*7nc9L_W!g1e;8D>VxGXk#l+riNj(7`Mt+`$GurfP#PH6K@!Sep#AAE|Fy=ZE zjO*n}qRd$M9@p%QE8)C0J0@O22h3$`IUVsBefB>e@}d8Dis<4J-$nMNF)TZ{T8vUy z{Kq_!W#z@ZsqcR@92=!x$r$B#{BLh)?0&*iU6Izm&e8&zdL{o}P9S81hgJZvlI)r+ zFDxhpMN33FW#^QkT4EPB!_*dZ_D7`6s9`3$q!T zdQ!UfqWX3?r?)LcyLzL>&!H+=_K{>g|C`FC0kUbXdTk26=!bmamdQMJyT&9|9{f^H zhV{fv=31mlZJWoFOvo3ucBR9b&Xl}FOXH-dBT%X&GhJqk3}gK zs$ulegwb~RFoLR9B{uy`NNVh*QoU#u6J}v@puaomf$P$}!OgnFcYTuiE@{KZJr5N^ zsnNv4w)Ub69n$glN6If;+#}fdo}Z>@I7bhQK3Uuc)=)hWY69rrHp@C^M&SqIqzD@GxV z$(#a<5ry&VK*vg*x{s*1o(Y^bW1_+}i&VC`N{3{sY#J#nwH608FyfW?rW|U71Eh!C zt$w;mG?AJGeLI(o#yrlXZqJ-5mT@hbfhOv=E2Ch@&dIs+wjFp3Rw9Q7eIP(~(vhAB z5OL@&rb#m?qK2#_Y%dgVoBL2<-(0uiA@T5_@f48FvUJZIp~v%x;BQydE*;zjGR5It z^aZ+j#s_>B;Q`CoO@%^JuWo9e+uXto99a71LfMl`uUa|2q;*+-19fyLMp>5OKp59( zmOqq?QLju(Wu&E7ive;{VH+rV0gG|`7R6K*%`Xj;c7Dsd(BLRu?pH+Gn=+6&<`gyc zJ>T<;YlJ^2X2Ar!d$O09XcSyh^z;q|7-)ni_zH65HuScw# z8(Uwr2UHY?%;N@kbxEZ=;J5C-Ab=zJLVN@QOS9Ju$nM|a__@`S7)AHhg_GvK6WrA5gf zPQaEk-C#>uqr_$Rb{b(ITXU73(@e0ho__?kpfm^OguG@%*0H*;axwnD2Rfzd*Lpyd9$du7{ZbM0{WfU~*l!ngYzDxXQ(H>FdQTE95iJ zZLDqPjmvPH=&~LDB2Gn2kw4ap>hh`=sbN1~t6#{flonh9Q`hbp)rKMA;dnfLRU-H3 z338FQ{l$chKld#aJN^+`u!MCg-@u1h8Ys&PSTNe5_D#Kg<+g( zviX@WL>;0owd^Z^W5Dy5)k855JNUO8x&a7iw)fi)+5;LFkB&wrmjhTctaVkw`lt{a zn%-nUKkPJJZgJA*>Bk?|b_#2WKd`7AdKyPQ8Esc&^EEETGr_DQJrAJAYUG-e#c-12 z!~_{sczkYg7q{nU^-EnqN-GH$+045*`n&n-lhqQ_V07rL;lTp&h;Nnh_LDv1$v$rty6_CKY9J{ z1g`w+)qm4V#%_Rc+XK|SyE6Z z53Jr<3Bz!_{p6Hg%))qsvm$|?o559*a|}0Ot)tv{9<}e^FxMwFUR$2Dzx4nWtG)G1 zNE@qyy@F%z^0}H8|B};d)91T->N_9dAXW*9STnASPyD#rdnF5ZmRP(f4)IOi`}@WQ zqwVJ#&il(#wRJIpP!;kUeTh)=?aexkY}SBETl7jKSL0O4G#Imf{2bSB>CXaPGloC@ z`S6Ju=qJ2@gf~j2nm~!eL~nGY^0GDlovX!poK!W^vS&cUNu~UjSU)XZK_IH0JMJywvV+sHtt;@f%7gCN%-H#x7(HV}({4hrjyE zDXTZjC$^m{6*Uhz)*A~zaI?o$IB)|t1=FX>TDxJz`@M0ns6HwjQoZ&8?yDq{e)jb# z*#B`Sn@wr`;4{MWfx%x_K(j0N*_Q!+-0R{g{&&rS-6OgqBBmo)MT%O@S^wU=k^4Gf zlpk2?Xub#GKSWFnpc!$M8LlS*X?v4<+jIaQ=0=SPtMPi0rvXzJcQ17;41uj6qy=^E z0bN=NHcn68bN9jQS(CzQne9H8GKgmj`vf*b0ZN|X z`%*Dx1NJA-wmWx8b0BS3WB>P~1;$(KOSYW(>x6l2u}uyEqTa*sR7w(Drpf6z-&k*P z)}8dWqI3o??HIxq!YS&;UzJ$z_Wk?qcKvNhqsC3-ct}e}OJ%8F!}yIu$3m0)16+0= z>ee|id}Kl>H2GRip#UQ-HD^4nBs-(at3BBYxclhgR%?RNNs~gO9$xrPJwHEB^rv+2 zwSJDfAo|qp#7O25er=cAy^`@Cj~Op};OehR^#U!$0-sd$sG-%{r_Xeru$QVDK5Hk< zatHpa?p-B@oJj<3V$ED(u$bjBj)AEog;(C<(){Wqe+y9j`1TEuP^9CVw)qf!>eTif zC_nBioZPm#4}WsMR%+;-_Ivm7ZfTrrtDaot4T;lNRSCUIt0v`RZ>kd@+Lf@_3SQ0o zIP0NB9o~isEJaulrnFMozOrs*Nu~Mp_@Q>Iyt7pe<=kak(%Df8^5d}et5fc~wk!jS)$Gc!W+c^d6d~=^)OKzJE>k}O`Ww^x z<|pJz?fPfQB9MejY;Ga_rAjPzB=c_&~L3iC$icl^s0>=OuhdtVC|n z;~q-3;Qgyn(~(YNr-aKm&MgjiAx9#uYfv*CZetnV7}BKMobmA_AC46iuu_LZSEtfF|+G!9iUc+1J7M^v+jxdghpkKxdr(rK=k$~nw!=?t!d z)jz@8&C=q!7CzE;Q5JRGtw6Ys#>o&h&Vk$NYmrREU&{^(dmIBJz(#0pdhnh)OQ_wo zO%6dR61pfQkVRAS&dV|J8BlGy1=y%E392H64?Bjjr}N1(y`B9vpAQ+`4nE|P2Q1yK ze}Ct${cG~JHc-sOfrL~5jaXW;YLO{uKxW6ysMsdO2-1p}k(3x0ro)*iaO?b(zD1I5 zv;kqb1*LdjRWx#Glf@~<{pTvj*RN(-1-kY7*uH2A zn9FO---x>i;C@Hs>{aH~i(n!npeMx@$5w~&PQx3|&+*vrtk($uT=bHPvvPWI&65l4 zeHQ9<&WfEzfxU-F?~EHiIWgim$m5};kpSJF9x5=d_5BEukchTja@E++vZ|ukpyvh_ zj#@23g(-_#S?m5LP+v~wibr&DAJ6odC&0C;=|*`Hf-bbZ9_*Q#VhuTh9}>sfjkOz> zQr>AMS@PE_pRO72PXd3yX>V@?ls(DwxWT=sD6bj3M&t;!#2HB3F3W(%;=rW??GZG< zxh8HX_LuN0Nm$vypjb_=O9l#mOFQXhmCDrm6wbYZT(NZoa?z-VyQ(d0KqJGt@>*WD7(- z1p6!NxcuZd7dvg)4sIA&*<~z!`M`kLY*xcu3Gju_U%8mtF+X*&{{c+xE|7#~IH`y6 zm?v-AG-DuhH$u{5X$xq~@cm*R@0=<`63w&E;DWg3;^wy`mQ#!nnupQ6v~912SfJ3h z@2K7LDub0q!8_GZ&GUnw8CA-gn~=PNHoJ!HxCcepE6CEK6hQFg^wUs;J6SR&&-A9F zs9d<5xs8#USi{^XvYax0GNi6w-uIYAkvx8LA2{1O;v-))<)Ak9GikY2uH=n3qxfM7 zaA3Zu`G*9}i96eN^PHugOvg0%3t`+zi>e<-pcUr2B4@)>Ad-Cs>8!K=^HALfI3=+% z`ObkzcAymGrvKYfCf90J+H>ZwXzrnk<#=`yhWp*-m)fxUx8>l)pmS}$<=cgz>n|g9 zbJ^M&MHFWJ8LkB)aR+e!4SX04+U6iF;z<1x;9C^FpuB_+?ECLhU1qx=acMAmvM)iy zSACd@0y)y~9oC(p+UGsQ!3?N})M(fJxhqRUJ|r3BVV=Xbj3KC1kh zxOKYFK3tL8nq4EC|02b(=gkvjB_$4R?{r1rs=fiwBQf~5tXS}L1FZpt6m!}57&?z5 zulb39I@Hf_^o|xm$Pk0_Q$Ok<5oJ&0vz2^51e4coFSuJ#a6t|yD0_esH=3G3aHhoU zY~L#>|AA@OQ}GkP0S!w-e?!w(I&=6{tXu;959C^Bz_4BYxaEfW%sZ%IRVH}`xj$mc zH_`0n+nE(Kow!D<-?8dfk0RX-UqQViJ#O$g-E8>^ki7G=exAMm{PgPNs@72-wqt(( z=%}0fbPesk6%q<1Rx^$LFJ=Z8+*i&kW-Y+3uydgq%UAPdZ1IZbc>8pXNH177RIYoN zw`FWxVF{%~Pf=QTHf(7Q5PJS5CJp?g7%vAi0Y>d8$=eAQMQx-E*jmuxtO4)oxKR0% z?ZM?F%F@qZqal-Qk!femtZ$G}%fw+PmN8BisJgx8{W1Cq3cZj<98zW^w2G@gKrd6rrQGv?E_Bja+aeXONbJ zeUZIOmatq$wxj^E1aW>p2z1B` z%3&44JUOP_3}38!e$ysLi|SEPK}^)ilJ_$5^jL363VFHbCToes-3)`KWq9_MQ$Yh;vj?ImXhTlMpx2G+)-0aQbN08nhKuU|5v0iLtyIEzKZ7 z*&X@vR1RqImH77z*ovl2(Pi*Tit(=@J-hJvDPQj0PCGL_EQc}Mo9WWU%AKRp_04J# zm4^GL1nVBQo4G;$yy%1OFB69<{km;?WkY}E8xX4G-|BG`xU$>rU)(O_LY)^nn9lEt zZc-ZacK1D0KtkD(>t}dm_6{oS#K%6cwUW2CB3jnK!&d2>WRPq^v1CGa&EGjjZT zWmKHJ)w7K$wv6qwUL%&@FSeU8dK-Efun-@4tpw?&Z5)Ncv~+{Z2@d;&zi zTNbJj+BDA+pyg}=3xhrgY7CrR8q&@dYR-}3dTY$I^duBZM}X%!xlg>Ft8xJ^zZ1N5 z6ItmKR>JgQ!1pi3U~35Lq!ltBIs6rBuwW8)@RBR;s4`AxJ7MHLp~ZcD(q~9yZ4RDJ zEe{WwN^xrw6IPsEIBVUP{|3wf?^2~+nD=eHq9iv!(JBc5bgX>q!;hN&NTuh37yWHi zI^g5A1~yj5=GeA`iKt0|p@x_Nv+vk(fe9mO%x6{YuAS(3?)JC87e2OmANsGw0NnG4 zhssz@p@oeHx8#H^^|z^a<#~1d?D-RUz}6fm(G*MAYH2965V@VC(PH?5z<`q*=+7E+ zvj^2Xsrsfn?~@*jjGZ5iw2$zf|9u9;3<9u9%XRKsh6ChrjxNdD!{*g^C&zag|6M~% zAM3Y_yE0;dx$ZMLK5qTrq+T05%`fQy`WE4b&IFY?I<>2qlW&Oz7TDhZ!c7%h;V1C1 zllTcAqMy(h4Y>_&*KF{fT+!uEqofPkls{-YJ#5NtP-NKcE_&;<_zw}UsoIcs>#tdZ ztvA4IRQ-q~M_#$Tc7d-)qeK{#H0%;CTFwV~%~IV2)XSE<=C>|1lgVE2alre8?{CiI zJT0cgxtXUtWWd2PFP4~86>QJ?^CEw5yE~?CLDE8!zi$!K5QTZ1f1W_1*Q(vxlt>wPj6Py_E&m#)sS&g)VS;D-9j+l#U&yHU+kFN z-w=qP%psrj(an4h6P6;-EO2^cioC%d_3A=x)aL>d5q7Go>6qcQ| zJg@|q>2fl)tZrWhZr#8Z;pa(YmTwXax;=?x`mYBxEsezoKQUn9IF6-O2HV zRV_z}M@jfyK2MDo;L*HT7xNTJL3+!Cd-~_JE?r+@aW7STS-gQMa9|6+OW6-sHbLzE zV*aImO)>cO+g(MBY)f*jXVYc-f4Z1PB!-@@3bexuV0c}7M(U*We3pyKbMiyZWWI`InhF85RyNj7$cA|dFqMt<>P!oJnPMJ+ zN~glIT-cc_3;~OuY&OO#LF`}zAf>EZDQuPaMw{|utChCZET zdrwOT!_I{}L^G4I?8)hZSknwWDXZ{`90T=bs@q(mv!O23bZ%InqraIm02mV&Bf!w2 zqQ~Y~nB8WIhSC)`uFo*HWx45ko0eH~YWARUNy45#Wb9;vP(!fAJ`7CHaF}TGO!#tb^6ka$ft3`=1lRdT{xsW)VegHbQ(+_Uui0BUccoh%^_Ge(lS$oeeqM9Jm=w4L(5K_$qV7HfuOHPJF(zk>wcl6q?E__B%QI(kt!vX-2Qp*O z;c2M*$v3vfWL6f^YZgP+Zpk5W)0StR`Cw8a9-T)vXK_~Xt<2+884&a}^dcSlrN^u{ zXy1?09-wt*z%f^J)iL-^5LVU}j1z_pLXM3C_XcVifZ>wAUjs)a!~ki>2TJEkO{EAs;}+pMn=`Pd@R%K zOFiE*x#SZy62U3651|&qm35L#sub?qMCOnWQo=^*>2UH78P91R>xA;&!z#I%6zuSm z8BM0rBj$}U-44}4eY?-ylY6f|4wk!I6xdA>*$pVc27p4+CYb=6EV~}Ib)_6w=(b57 zK(D(^s$pFF z24}oh(lwNMf(slOKIcuA+Mf;DE-(l_u1)G?h7YYsM*RMD!$#x&mVi(xF(3{w`EUwV ze=H02S$`^MQIuo&;--qP&9Hv@7>g|XBaP?Ez2Xcwm#$kQ>>xe9*1w}M|F=fvJc=j* zT8uaw2jxm^87Qv!Sri)$xX!y7J;V+azerC%fS+-B41yrl@18U;fMGHoH**M3Om(^m zDg!l(DYc=+5b`jLFOeSWU$4JDVNuu}i@SAHKSeVxjILifR9!LzW4M^?!K^W_ZA8e) zO+z3dlFx}8P&Y~oZaG~842q4YU{MvERQ>HcyDK_N{-e>ziSkNV)c=r-s_(1E0R@O8PfBMRlp8iyldhHeUWp6zjbrFL=A%U#AGfMsp5P zd+|)jmoi+uv`b4-Iy3W@99Q<~KVk^54{iQ@wEuih-0`&*VWq)EKK+kCHlRe#HXXE! zOZ6i=^=?^@J7=lWBQZ^y(^daZ3*d{y4#T@RvJx5=epe*aR_JGjnBD2hgT2wOvrpe? zq4b;n`-`+w#$7{*{h|B3=9UN1c_30a=*->mtCiFYlQV+X+~2l6!%^_y>%a8%My1`Z z^yGI&xkdzJ-S;WvHuWEf#HM$kr({_i(O>wu*vwHwhzaFmVMGXQ)Odl6GRfs2A05CI zbeVv!<_fb*dwt>0xvF1xD=$#xGYP84YQDepyW(w{aTRmF_1MaSg8ut^`i`W9`TYR| z>1^^e^$82GMZ0Gr5Fp0)mQ5jLbK_LF_rO-9_ls$ay%awvMs|)li=LnI#JTKEiXH#$ zRenJ{9?afv<8sfdpc49WFQb=vbI>UX5RQ(NWUQm#_dF1o5oHhGeezr{>wpm;@=+!! zl5x>iUe&#p!a|LJ%pK@9|1(Ul{%K+3;6wWL%7-*AAb--sRj!4|RyMdfZnDBL0oK7Z z?4z8}rlPUq9=eOh4eyBQBc}Z>pNc3g%ci8uKO~2G?bfFn%N#%4_dO*<+6LRbW0xEC zf>EqS3O^b*-A{cRoiQ=FV>LYF@+Hxa=oBQa`&yN61ek_h$ zf}N}M&UxRW-Z2#x`chMq_aMHB1|MzQ_Fk*6nhR(~5&*R+sML@P@?X}j;`{dm&uXp! z8<1sET~2YGz8F_FAkXc4sUOZ?oO-rLg0-aueu zJ-7<^_qV4j5xVlNb8pf-?~05op%38n74xPi7L3}|;EA<`IPVu6&d2d_()gLGz5a$% zQN;_;H2OalcCRtA6(AAgfk4Gj;VQK2rUT2U81uI5jh1O)vO)d3$%%}cpN(57@g$-c z!+Q->Wo%y(P>h;Y`lM#sdS3~C;>;;7H?l>NapgwDgC+%j&Nvq}=IkK}_xBN-YLxF@ za7=)@DhR7WLhonupBw0m8#+s(-Y!#+WD{>J=l{pDt(TT9@Jc)_OH;E)YRo|Ch($5* z*zh>l%%*tFL3?a135KTZ8e6;c*v<^m7?KLgN14|WWQ_diY1gj^FL_*w%8#>zsl%Q4 ztUABsIL*DOO$2P|HRDjW=OP8BBI7Cq43-85fqr4KgV>D(4F4xyV}vZ;^xbx}s-!nb z-dTA5S%z0|lPta+4m}Spr|mWp`RXsq1VS$4O^1{p2Bt(TsR8VkaKlB(nTZdWBwnX% zdkm>4mM;vMkojJj0n6rY5d;&+;|KNDV`Y*-H!*PsmZ2oT?44)X)lgZgA9df|}MZVMa}YJx-JPFf~VoQi~)@%2|AeN0~oHM`~9f!kM`m zkp>@k8A}j#?H{xw1F}*nvL{AqNcjGfLZoW%F&y3zR4oXfYh+H~vtE9!5 zoPG;tXsgg~s;)5UZJ+M28f!;tV=3fG3tx#JRTLoUo|d2e)5*1VayX~M+r0J=m^_`7Z9a8gN(YXLW+juzvi9g@ zOK7Y%uKL?fkkR$W1Pcwx%V2fY;zY;~d#6bG4Y8Jpn~YOCR(Z!&A;6uPz`v@2TMg|+ z{)4#%KOM9c2!yQTxbfX1a8bzPo8lE<>e!vn1u|08dX%wyoS1Y+3#2<$E$~kU`5FJj z_ou7C+e#9=ZId%5sw_EuRV#+j<^HTVF^weQtb4w8DQ|!_ zd2OYOG~wwpwIMtlRQo( zDLAjqXR+oKOR^^%9rpA*EW_s>kC&`k5s$959wLZCg5-DFktDf!?(4R!lCd{9dp#XN zk-uosFhKIA?aQ%OBRA8$lamq8YTL#C`@q8Wu9IWvIt%7Cc+?p1&M`gxdo%EeJmCU! zPIcM?Qag1qUy;IM62k9n(9ZIqmIG%X%E;SSiWxMci`iH~IJxG(O%A*a}m%Aoh*d}3AS!gEAVz2cy654K< z-n%(Nzgec{T08Wu#@1f^t4ZCNV?%)bN>viHj@BnF9%p6jS(DYqru6h+=PC$k&tz_H z1+*(SF4~o!Vb@wX?hRk4*r~&zWA93JO5MYuW>*_aO<(mk)?45}nS@~>>?MqEoUd-R zdsz_xhvQf+LFJ!2Lw`Rg0@kFuBE7@g{&b6sPMj^ke1Ji*%zW&3c-S2W`@ zS7Wf=ZASxFahdXJ2CxVx7f82YeccQdxNH7N#!4OQv$~Y;UG^5Ok*&M$L+oHg=CFuUI77pJBes)2Z1bzYZ@=wkAd#YHZ_wmcnU*rk&9DsuFq&yX6wRQV3wHWv1pb&Uk3JanzL?*6pe-}7B zaM@$?EZc+RTR6V9;PQOU?oRfP`}qT}9=R<36{{?3TbT=5ix&yb`Q7=k*yE2d{j_F+ ztEts}&hK=LD5Gb69>c_~eAug!`gIo2=X1h~$J!2zh z{p6;7)r#%fa=;!?y*@OBA*^xsLf38dO6zCK*y2BxIAv8aJ+my8HWIsi`F;QWuTxZQ zwNL(k=w^N~^GJ;`OH%;K>BZ|K$qG~BAfTB53cIIQMD4%AUvo{$&6;96YEoq;P>>e# z;A*pL7?fryJ_G8IB4J*Avk_Akd1{g!zmzB6KuXg{XQ0@gW?(l_#QX@%|5Bqlz&eRx-ldxc ztz}CBEOit@O?i>IA*sPTF}A?6o2U9Ar&aC4gIn(&K0g6==4L+5TTa@RYYD1NH(xNt z06tERWXf3GsBIDv{m5Tn0`B@d}J4a-U_2{^FMaYvbd2nm)6GKkv6?gty+@Gm!FP0f>(^qIQ&hQc<$D%j|h(^x< z*`RnRr$O?i!`_!?@+91(-x<8%N{Di(x10ureE{`*1FtPJ?OdS{UgmaT@2C;5?Y(v z-FOVRR0lV|=w5L3a{$2?xLr-J1CXV&7jb!#$9X-DS3=LaWBMH_3D`hnsO_70P4-kl z`;}>BFBg~3zwa-aPrVz)QqRxIe8|MFseKN2)`*(=68AFh542nY_ew^;@>`?@QM;_9 zl|12pCNA5N&G_T~hnTmCPo33k$q!IiS*J8w@FVb-QN}B0xT=sBB?j5W?Pp{@U_0~e z$2bY}I1pI!*e&p5m3mZ$al1ki^d?~EcIPVJbmiRmbqE1jhb2&IE;o|{b?1H5yy+zm zXlAAJ$eljO&UNWNuhOmMZZBNMYD7(93Yh4q;+-CI6kOpi0%}dIw*CMT@-!dlfTw%k z`Nj2r4+EIF`pQ1~e-GnH-gJ2<9#HDyLcDN+^jRrTWBFZQ~0gx;XK~(Am0y+pv$;iH}cH)zxMg zSi~h^h%7Zh`ZA#7Urx`?7C*`jOyp76OGA$j{5YfB7p% zfNKYfELz$m*c`EL98HIG{Bd%S-*99T=0m&Z_~$I1p}MR3vLn=qutJbL{C*wDspZ1|x}avFL!Sw7r?T@@A2{@pvvzi&1O>>&Az zUjJw=`ljWhmyx)mXxsjVob+isp* zp9D425n@l@QIsWMIQEc-BgxaKcF)2F!qv~srR;lz6@MC|Kd1UVZ za04t?Um zeApsVOb8ZnVMlNKhq<*BXQ%@6Zwk!iq+)?Xbo}T$K=y_7{v4kztG^v`ezG>W9h~ZZ zw%Y5W&#Z@b_*?^cA8vuY2kMShN&d7n9Hpc3inqTE^+}GHtCDF0?Epc@JVksURG<49 z$zNmTVhd==;P5Nw!C@HUt17U@9ZX6`k54@{2E|ER(3FJS%(LjMHpNIit<@f=;>3vQ z)u<(>r;nsI%TLJXP1C~m{?(zHKP^`j8hO9w1!u00X_wK5LRO9=-a&Kkt%mQms$)M~ zR~V2|-mEvO;Qi28N#{kjTyhRcCOM*}bBLE)QzgNRwa^CpaaUk%k(u0DSItHLkpm>t zYbDR4I}Bqx#AWE-e5RZ%UBDpPSL=rZP6{#mY88pXT)+FdF`CvXQ8(U%mv@+3-hI*X z#PvNN?W^Mwz)-s7z-pce;x^3U=d*%`o2>hQTIY{j>#IAL9f5iB@$b|&UE<#!nKja( zO>f`cyA$KC&{!8%%_L2_F2Bk|(GhX_9>@Io-$a^(TUt(C_X?y0UAV9MvW&^!<+GlK zGUg|~3=J?GEvsr*D;dfvJ`Y$<-S1gP4ExAe92+^W8fFhPr2zcz!fu5Lj6L!HqwBi^ z+5Wz;jiPpkJ-f6@jn>|)t)d7CYU{8ixs1#R?OPl z`_b?3egAv^%b&TQd+#~VdCqg5s}&U;m`R&U_h|(E5Z}?a=7uFT58iq#^U0suhb*h^ zA273|WAnv+dNSJ7o#q4MICGCPx}W8(8BO5PLLXBhCN2Ha#9V4}@b&;3Itr%XIQL0V zcztlx6&^xn7tHU%3(Z`yp|~n`{F0jtjG`2$N?6oW1@^r~fW(dAqq>u3H@b8SyTh02 z=7p#Ws>IWC?}%7$r;GgjFSVD20@X`>=x0_pw)4Y{XP0=fGal}w^zsQ1Oq^crs&|bJ z9@CfJHO{rHNb5;NIXs4l7#q-Fxi+s4!-q~5k{bRMA zUT2Tmci?7MMdbJ$X8;Jvq5Ru!cZxnKqX$*o{-ivSF#_T!e#-uv&F&c>mX6S`7t)oL zyvmm>vQuE>mu5GVe-(Eu19$* zy}yR_fs>;Z{u!3jopoGWIm~z9$ws62B~R1$tR&W!5!0NlK(5Q>mdx%YUysqURN$7O zEEFqtt6ZI{XjW!D))u>f1&yyvjMI<`KXb%O+<4>gpv}2q8r#SE?tqol(2*gIAj3T> zan7Vg!qHl@!US!4$rr28`1wX!i16@bMqsuEUW9>Gtn<^y1NtrUUmoem?R=Jh_>=E_ z#?|^q)KzpONu+GjNX|_WgkFlqi$2Lke{PRBnV3OTwPgKf; zxdZq*zNcB?4hS|BM_w2!5+y0$v(X51KsxE%0b|Syoq*xFt>=olcZ^)>8t%I-0)XjH zlJDy2Y4WUn_vYGf-&I>NmydI@QhHkO+(hW$c}rZYYx@&r6lCs9wb1>$ZXADO%_yR| zxA_y35|hujnCNW;88 zlyO1K@(2#|DfpeMuuJWmU?%X$jq4T(QR#iL1 z@FT3G&SWdTh?H=sN+}7r);NB`_0^2ua%aA?texPpo?1TrM5A*Zc6&R0W8Uod9UJH&;@b4h14T7q`Qp# zJ8yD^zoLY4bd5E%OB;^)95-zC!K+5qQgG@|PI#gQ#LY#H^z4xQkh-*q>$)SuBk(e@ zP8MmEnrIpFg!CjRioyqVbNNfX8x;l(5`+itP9R6^W$GINeR*nW;i$8(A4Ug$by`RA zt+$7T+#n#i+vmFGe%b|hI2}m;Y6%QLah&P|K88`M(x3?a6kWQRCoJFzpJ^KXryHpn5!kR<@U+o%4EQ6 zqyDgkk6OHq)8$Alj$W$^{Z2{if@Th^==*^$c#}3MMN<7b@#@-*f!isYqx_{l?K{Ep zSK9&JW27KhevaS$BDN^eGau%ohR0&6`l{jk3QxuyA%5@WNOtJ$&D4@#Iykf;?-1GY z<*4%3xPO3b%2olw;yyGi|ANq}{;R4I=MeOYP?E8k?qD?e*G~e$?3)#bZ)eDO4|i&- zTinxp>tFbHPH^-}ZT5kTy>L!yd=4;Y@rBsUwCz0q7vaerPb$q;j@AATgmo}h(BAJTE(AaQsaEkyViR~}lKYgn#v~u}^c7N~zfXz}X zLN>{p!rg}q0QG-~=mutkyfq}- zD~(P(WW*w^t62(M%?pPfe?@1~d!TmYAx`!xxa36>vhvc%?d(#&QHGHQ^?_OWoin5{ z+0HWQMqsLgXYMj!M^$iK9s|8fRo!5Q6h!WePT*hOjyY?y4txc~58_B&9}&}@1{m4N7@BX`z>y2}1$u?1iw?hlmud@*3*_bBMW#gZVt+ z14Y7&(Ms)NuQXR;jCQ@ zACeenV~_R=ml>RjfTv6ovbdo>a^oOu=R&nB17xEv*|c+2=@|o(H4Mo zFcV{{MhYRj*NGb|wF|B6h)?M}j%ZZet11VGIhPGM^XgIh1EkeV;r(LBTp|Y@>#uzr zGVm>z6}o`lH?Py&vQP0f=BJN--lyYz`_KXgp^*0>fKa)YyxMTjx|S>(qcq~%>5Jh%Sl(w1^?{@{nn~g1ieb4JT;7dj&C_KAA5*=_41ZOcfZ*G%DGf z$M;_F^VMp=W4D1WeJ!4&wA{g`+$*E!?Ci4-112}_8Qtt_yc&=bFDJc-GCoNZdNHpR zI0KBgI1|4fVNv~zjvKt38*kf-L1OUnn6xBUTLai;*6gOo79o0cP#H>F4TnAFe^{G1 zM_(toaE$9V;ilRN>}G6*Qv$bmd)jXc75akSG4rM9Z9xees{539a4?CI zLM(`n*)eYoNna&D!4vb9el{bGbZ^g`?-gi=C+!3FToKfPtjiTV=%*f;QGC$$*~1-0 zy_#{ZOTj_T=|-9A_l#BduGJ$}1k<`uhZE2IW7ge`WV=TyZ|O2A3J^Ck`oG8>%2Ti= z8kut>S+)2*YuYOFCGl616#fvO5Z2l2XKJZx@BFbU4+*rqXBFS}@L8)eb|0+sdDbUC zg5q&aHfI#$OAsBnUgvKsYKd8ai*PF134A@)#!DU54)v%w5yx`)EN^{Wt|Vk5!K)G; zk1_v5HK!vHNAElz1p%|FfaDe6OlYxq>*r=ZII^o!SlWSUo*&=B#KWm?6kntF)@%P) z3qVK0>dI*z00P5;gOD{H;?`hyQ+hht@p23Q)_{uRk9J=nElji?Z*QHbXbc2+L5Z&W zskQ`OQ*P9`0Mtr-paezVE9i2P(HG6-whsi_NPiv&{@!UsE&q@dCy}kKWwTfA_=1!B z-IWUj{@9r&9mBBQ%qM=LB)8$gCVP~v6nOTUzef!TN4EGs<$vwSrgtUBl6#9 zY2v9KPE-&lJ$NphQZhnx-5fmo#>5hhu~UtbOg0&bdU(=m=TeX+*fjFW$S$L=(-W|y z+ehFaSJiCzlOCr5N}v1e_pkDm;`$wA^LOk|sEIoh2MdMi8v1l77Tu-odN2pepp6a= z$(PZgFZYWZ-*?yjKK;`>b;Fz)M~*vjVb8Z!U+$Cf&_lQPRp8nj$g~>wT{2T;R?M6QJN;;K#baOU zXkgq}-lkU42?lseI=IQ>QDl8MH>9?|qt*>u3v1x&?BHr$4X2QD2J;+C+!OJm7QH|X zM)=dRv*v`aA3o^Q!b}7$HGe$4OEIS`3j6A3#;eSyRTc;vX$nZh`(G8aV(~S+fhHBE z?;OEfo}Z%M0rvk&Eh*x8|Msx7laXw<050Rog14sv~L93?|Lct*a=Zf;J%y9nTE44thtjinXjx zD3r(9F?9ekM<-5FswzP8o^y(jdu82-npDWK)IlkAo|&&owt_u(D;k!}D_2L(M?e)e z-@I9hgzD+o%SJWpa1Z1VbcU`#(x+V_p|$2Uux#?dtq$7UsF?vB9oszHEib#iU&W)7 zR3wJ|Wj^G-=2v0)Q~RefV<5QJ8;7$Nv7X;OA*)aXaDtze#zXXMoM`Q( zD{P|GW#7HeuilaI7nv$C=FHyvtM=RToT{7r5EHz6Cnng6MW?T$d|MOZx zrsz%)MItL#{OVPsj2Bn$U_<_fbVQ3$q3I#>b77#+3!e!z_0~x3%y` zESJ2X)TFCNX*buyob$t(-Sdr716>j(25tpi`UBxU$5*6DEn2p~M1@tb^48` zCrg(Z<3XHjcP5y~%AM3WPzjv>9W%eC8-tlZ_wMf#DTd=v z6T*0bM}^^dm6&QPa!Hv)A7)rhU?#~c#wK(|bp4?~XzW;Ax;pXD6aw>OH$p@Tny z3O^;=*;7duJV^cdwSX}zzOHw&Yt9O#^?>i%h}qBO?z=*e0<+~VqL0Yab+6iNOP}Cv zsXY#NUR>_mb;tvlL#40TMuKm&qoWis%Og|L{zY`A`avLaCz(`1s zn`w^Ea#;r2*Z)>0wWi9ml~}W?2E5PrDMb99q?utG+o$rU>dS2CagD305rv_J9u0vn zb^ZpeN?c>cGKA@RX3~)Ynlk;^E9AU2+;jrZ!dVk6E~wjGz;+0Czp%T3B$iJ0Y>6AI zX_C^nYlT!IXh05598{3*pO~h*$fh%#RFKtkX!9~RLcb}g9-p@iIdMV)gN$)ienn61 z3YijbKhh;Jb#_Yi(Q(^8@E;3Muzk@R)ptEMQf{PWW^I)uX+dSN2LRBIUw<}{FL$N< z>GAAOAnNBtQ#8dweM<1_Rh$-ov*$b;j_B3)fe|YMsiRb*4Ask^ad&w%$wdUzsoD9w z6EyCK9L$;3`91ED4b8NN>69_X`fcFek#Xs;4vqvzqaZQv%KkwE%?aWaTXZt?cXD1D z{a|k%~G%26g?7NQCtWEOch&ixZS7ybM`rnT6=PW{Ku|6W{^GvN6p`EnU z`Fv>}jxgXOv;(IB6--kWBwBVE_zCz?_!t#2Zp?z0%}?Y(nH(bh&tXXA1&hw#Q(kvJ zR}NtH!^>ZI#Brr0FO-Xy=C20t1o^H2b~Lu8k7qLNECRtk*%W2x`yJIR11#Ar18RFE z(czl#sOl;I2b|HaO!*pewZqq!hz4SZ`xxh}+%`7#`@$i+;T$)L6et58^5}6Fa4pFx z)+UVjR0~hlV1|B(G@k?UzlUc+X&dOVw&!Mtum#D)VE1Y~b@R~(!|*np;-3MivV2Fs z)$V3^ea%nWdv^HK794*XN}9k^#_(^T&da}; znJa@hF(Zq8R;4#u+7)lvc-L~8fgh;3rnZ1=S+#F! zUtf{^DysuWG9~@xo-?g@TvOF>zj3!Ew8!&gO$8YLul@rjP*|aN9ubrWT>USgJ>1Yv zVaAbA{*~zF#w}Gtb|`J{?32G*a4u=?a1Y^Oy=<4|Yvcg(3X#!Q#lpt~HR4e)6WQ(M zaeJj|8W7tK`%l6wjO6WOCHqI(6nd_AGl#Yacxl4l0C!$5#8;XNSU34DwdR(*(g#Hr zQE4Rb33N5#(46v&3~2uo@mJbjXgaL88CLSAK|DofJ6n%1<|mHWqPSgaOtW_M;=9w9 zN{GyY9M5Vys!2v)uSeC)RZ`SCsce5w3@sJ9A!lb;hR+jvKW3Z7yH4zO0`ns=!U3<2 z*Hbk5fArrdnDURcr8t3Ypq%T5qnO!dr=_<=$NlQ4(P;6INxwYaW2NA+rp5a+5EQjD z%_?!i^l>;qLbhfqUSCwI5 zr$bV4d^(MA7`=Ewop4qNu(3MG(Lazy{mCTAUx9#8cE(w%=p& zL?injIyJSM?EywR_jT}Mp(RX%jx!*#Ss_Ebrwv+Ybs~MjIjGJn)?--(b&rtb<}{}K z#PnyW3h4c<6RrEHyiaUJspybRgJ9rWY<2NEvCyppk&hOOYo9C}B`}@Y zv4w`TQCVI0F#B*5wXmYHTF5L(e9)BowXUX;C%$3=YWi*?^{LrC8ygpTislTc2;@0i zAQYvHve+sxhc)fS#-{!?&d@>p`b@hC7<~2q0N-$dZ&gN6-6lG6-zJzQRr+SK0NOMy)jiOXe~*x=Bp7M|ih| z+122fF0~ynkzKA0raN_R$jT5(uZE%NvQLuEt&zTf=JF>FC5*XV9R2C0SK!6QJ(QFg zlo?kSva&Y^Jo6WN`aXt&vey(3$xV)W#=J-iXPz($>%z=Rdzxv!6?F6akfhStG#&$` zjlqf}xBoQX}2%*;JMM3V&{7lYl~y$8ctk~n>VU?UFc2qkk8)U+mr;m zkkDb8QxqV500evI6M@IkAY|Ps3g~R##B@d42dx>#Kv@T;_6s%T+N@<1nO`o3!q9O= zoNuN+jb^f$&0#t2f94P+Ugxn*4jUo057bF&v|g5n@5Qep zZ+Q4jK`J7lJk+`v4D7?WS9IR=qv30F}?QmoB3&UzZWdS_kO2~iD zI|q?@Moo;sBEZ)N`c8z@US$o*(v#Ck0(#t+sFo!Cs z@0ZWw162<^9yuYVRmBAv8s$4M6A#eaGoXWTgfxn{WEj$+LP}0pZM6H-E-ubI7(?^# zKHLUSP5fmc`6wEhA}S;w2$wVR2TV4S;})CNsF~J}@>`y0;qB(Qds{+6s=wjrU?D4L zwZK5C)@IBl0W2{A(HwBcf4dpi9QI`89!$Ft{}qiKeVH#VGfoAkA!%t!)veJS%>p29 z5f};__;ImMyU4N>Twi6BX=MHDQ*46X+3IL0=5p(=pGjZgId@c0R#|L{C0p-faiuIO zXZ&0QncHE~T|PL(xy(7S4qqzLmB?^P@EkvAS=*<{bqN`k z_uo23E4#hFHmV3@37)B}th**D7ZX~#G-{Zww5m!xic^_Cl(G?BWq6$b%Syx(TtVVc zNDDI2HF+;FG|SM(8_VI))LaOyu;jyJs>*Q3ta!Te5-@E2bLYKh zv@f`xanrbn8xP~wGnwuyYmEMMu2mv=2tzGm)U_8?-7vx$fsBjGe*k^xU$XGO`^SHJ z|E5(PxIhl&z)yc!h=GfLVkTJP#f3Anjnc-Xnt(KWo5ZXE?xS(;g>97;j_N{9{KQnU zm8pOj3%Va_GPa1BdS4p#Nlx3bvBkxz_xtB=LYy+ffTj>6-yzI$s-_GpZN6y1KK<->VLUJ5%~9QfP1QTxTP5th!tIh z9PPw7{Q^*dOCEwlZtr;UXcc7drz*~<4M*p578uc6XH zolsU$p%p6QNp&6xV4PT(&#pq_q{&`?R@o|bnfwag3k5gwwmMsl6)KU;sS|+OKiJI& z@;|87q2UM_Shhwg0|SO32s3IDu^BPCnq8;;%qXYE@<=W^;NRM+J_3Oe=UXLhAqs*} zYsw*&X|Xq13Ml>pMO9WCu?Cfu#qyq=q%(>zihyc(3q<0Il@d*c@E!mE<-Y|7* zjK*;`2`So*?vy{B`30pMeI_j zgVkT;$7`Rqbg%22C&-zW$ZYd$sLdG6P!v) z9g_*~l2>#k+Hy`@@CV>pwNet4lCd|D;FGis3$!KZ&)bHGL3F=WZSapSmlbD-b2mpR4`nWr0Xia=!Y;gv~)gBM-q$~>r{ zCC50OI=Zd`4ZKHAL8yG`_{4x+nbR&89+GYEHOP9`%|e;i*#3Q$TiT(!?G0K`rs=O+ z;ktP#48b=3@&OWsH9lth$pPw`6nT?kCg0StvC4y(bpFi2eZ7ygZwxz>#VW%0f4a}q zxnQECVy3yZ>dmZ>A6Dmv&z)XrD!Nt+Dv(-3G!HeCdjri?ZG5{75zGr!Dy#Vb z2mOR;q{Yd;tWDF9gW+!7wH3PciuU9cjqm5PSRmKrr92kPU^9<=z>@S!LTV>d8=J#l zA~z{+rM*8c-awDIo7VQ`n4=$JJ7^ERuF7$FH!5s^8tWK666liC+o=qYHSz4o zSS@@zE8&Z6Bah3>%mmM$%Xg`f^3$Uyqfa^MewiTC+PZ=i<>Vppdf%RUH0qPR-#kW$N;3lyq2Bp2JAL7ANG%9v=X~VmIUTw9=SUSjsM+~+ z80b~B3Q!wq@$@(M-7&+S!c6U;?!zL&ty{%0f~i%zSxxpP`4hM5DsPg&Gp`cfN8^3%0kj@V6>#* z!`V6Nvx7CH>u1y?oJakzh+oUh3qsF}amaI)D_&^CuUbnG%=>dca%|`K=Xj-6U<6-i zH3cYyRFBH!{*}jEz=i3aviy>P)XV}F2s{ER2|`5$p=yR*J>Vv2`J7*ozbD05fw$#sSvON%{|SlMN2IT#7T@ws9=yF%qJ|0=IT ztru%39;&Mye*e1JoTK9lg_$)sjO3J*4*jt&nIHE+s}D~-O7HO$A0X2^4b^mY;N*X~ zG=D^tR5DMgOUoI#YTUJ+@lBTsVmZ*>(!xtErFRFJm-uCY)nMq^#rp!D#%C(hg6xR; z+pN!3lt}?|va1#}6aPaB3jo`gRdPJ6!ogz*)PWCm@D7nT>;vV2@y~Xfs9gQKCOlvs z3zv|`CK(iC#I_F&DRieG_U0?a`E;GepeaxV7`AUx3zDGwvB`TI)M?}w6G&`&q^o&s ze6ppxPbw8EP?!i#7#tj;%csM-$^FP?du{E9Z^1b=RmCQac;Lg$X-S1MiIyHG;vjdk z6Q>k2?OwRiRv0bJOo|{?cDX4@XiRL?Oo_B$);vS~O70QgE#Ub)HjqTjQYFoz@Kqp| zgJ}zO4>(`pfKm^r;tPSD8|*qeOH21g6j)jSn(LGP%}2=$Lr&!0Oz6ygpwL)aTdn2; zpYwX~;@+sM-pp!?i1O;8R1c0YZZsGATl-zaSUXz$@+3W$x6Clb;o>n2IjTtNLn)ul z7fcpA9?aXaddDX4A~7pu)>YYiQxsQHsyD1K2T`D~x{^3!OoXv`@Ul-4XX(uw*2r)D zrfyVrILfctX2ASR)1A+SO#a@zbj_flCM||Nk>S!vI5b-YX5T}m!@g6W4c?0Pa@LXC zf5^Qj5(EFYB5MO+Uj~)!KS^+afJ;TV1*vUXY9=U^{bfpWMH~G9lwfh-1ssRy1dnnPqYY}Bvz({XR-SSgX{v1XskLr70-Ut6k>sPe+KX;(kfI@sNhx6R`Z2T?7x%}NU=8!a>~+Agtaq7&bwL->IUSVFG3f)SgqN~cK zaYR}jKLB@uroO-PxByI*v_DGVZqr>X^C^48~(`ACi&8fG7z5+<l7?;m%}#!g z9uO{2scit9Gx-q=vvOVVGaZFNN_-prrDG62XBAJ{4nmGfOZ&e9@{-ViJ*i4!pjCz| zJ;f<6wX$mpps=XtLYK|0^z5O49XKmV{_KsgMa3cdYSyOFU&}suv63=#9rSKnKOdKA zTV%;B(=OJ*2IizuD)m{dJ&(R-mKu!HZ4`wT%~N;TDr6UG-3WG5A-NtAE}q}>NzD=E zUXf`z&}WQK`bVb$)aq&2T*7?$hSZD(w)$tsQ*)rI|IN=z>f^ThT4j4g{sU?A0w6qr zg#FnG@JlT%oK{wrIq8l5%!s3X&%VC(@+;3)OawR4eDn|zlBq$GR7W(Fal+|rVHU@= zgCpS(V`Fuo)Y_O(0l>i-EFIwFx1)>|<<-GglAehA2SWIt&+IITP0IW7zo@dd*~@q) z3_(Q&lBHdADi1cOs%I6)0-9{jlsofcIi*(|&|P~oj+2>R_`SxMy z8c>IXK{1+YOAzjG%6sw9w##O`*tuC(SFb3))p1?_aUUt$JyNOZxjV{ksI(mAv!@l_ zqK;fl9J5^!&2aPYLlGl6DMlJEjMC;oL5f}ORbk;AKa>Olot|Ml?qX6qekB?j?c!A= z^2}PRYCJZr&Cp?(qN~QS0u%FcE8B|lJ^-vL*ktBR8E( zP<=BSUg>rhN~F`Zt2XL7U%_x$>zB?5C_Wx%i@v2`+7>Ljex~K%v@`^`e;804dZvS4 z(~g(`3k2FV+Hj7dWUGg5%*+NH7GkoE)eoIB0shOUJAS^eLlRY@3BD93J&limCK*el z2<=?H?w8Aptx-$5UB!9p4Os9TUPUl){l|@kAE+$k*BJKxzX@%a5vVC@B-bhL@^Ymj zYE)D1t88R?xGU|TJWqPCTbzQzV%knW)+>e1O;|CVxogqInrhX<%^ocYnNu3vu5v_< z!W?Hp9<^(4^{B>b<59+2U15{~+DVhf!sliGO5DtRAkg2)gb6He18glTT8I|=RWZN% zf}XfU7pA03q9-+5F@1%&C`4RuFM4&QWY3U8f0sZpQER)`?#t%c4Xnlhx3A6&@}^t0 zv+%B+1e{s+Tcm_@Q|tp$jk1*W7V&T_X%GVxSr*));K!5g7)d6QjuNS`Alc6;Cc_1_ zoYYi(F*lR@c$pTaVy_4b3TSX3@97n6F4ZkwK36rHJ_kW*!L#}^@ZHo+-QiF{g7g52 zsL?v;hwZ)Kc5o=x^5Gw1yj}pT#8m%@fM{9jzYTe+DK`g^l9V#F!I*MboGIzv|EA>I zCg|TQl455>ZE+5z8J0Hg>W8U$VEGIfjDu1yY6AZdgnN^KIUYOQNHEsWYgB(87AK&l zjWRa|mkxbspM1BK_A(6cs8F$uTQsL@AI8Yz%8SoEr;P+q(~2QbY(+olYLWl7813ER z#$4=}#k*3@{vOd0{CLuJ4aQ9<|Jpdd)h{`!snw$l6dUH;nr+Z_UjUG#09$J|<&y|z zv#qsD0$~(vG?XhV+$ubW?P!n<9}ev*2-&IkU-+#nRLIRHn0parWQw!PGeU`&HIfCk z$Dg2qA*LF|)M*G=iPRbZv??eNm4E@pvcL?e0xBRegHmh*O>kQ-;>b(^FV|MbYQi;8 zH78+TRLqUGPGr$W$sKqFRqvBW@HTJTsPT%~!4)vj{Bm6`e|yd))odz7&^+oN55WrD zf9q-0$H^cE5Ri?dHSwCCXj!I#7g9QbLGODu=;8}t8(d%eikfNh(v+0#L&DfG?fz0g zwgs#vFvG7CS9uF%b!J^hZq9@mvKYMNoD~qA^pgLS8rP3NOJ z;K)jf3V1W8xT%s$nab7NBH7m_dl2`o?{C&*f7sd;cS6saTaE2oc^AXSoqF#nk!;?+ z6~0@U|D4B!Cu+dGYT<^)5#!N<@rm9I<18c|Zw9U68*nXxPA+p0)azZiSedN+ z{VIHD8!yv-SjKu#&)|gro1U??O}(lf?3f;bb+S2K?R1 zzfdgGeIZ79DQe2JO-u89;~?NlS9K;#r7y6k7iw}YY9Q}@8jj6O?Do-+Pj_!*<1V{$ z;O1FeX=bu2#k@kR^Zq+4o1Frk%J2{&P&AZi z|JeN!H<@nE1UZ@#v|KyG5dl3qcXcsYjuq{vp&?&JHsH?L{qykgrqIR$CE zZB}IVW){oQ-O2b!Y8jxA8<)-Z_u)gmeN$JWI825CfJ2Wh@J;o)&Z%S)6PxfOUaYNZ zTm)J*y4e)D)4v*Wq5>Uo^F7>c8$b_X`dz_!4PAGQ#*N}fM+=fElSbka(;V$VMA1~n z-|`Z8o_56V3B3o^$2LKNZmwTC*<iVAbN7n^4{2n&cW+rRO)dF6O<5@4mWMuiD zSA9`t#5)L6nw>BXM{{{itsAX0ldYKAYDG~L(6AO5yiO->Nk-`LMPG_k#o z;xmHFLo5LC1lIgap;BYu&;-J_JAS30sD${Y`BEZKN^!q2=$s55yw+hAnYHXjdDc^yhlHd{7ZZe=+F^3}L(XVM zLgmw+L|okZ9-)nY95Xm%`qvtGEO9w(`X7I+8P0eUr~%)<=b>l%SqxlCsNb${&K*sB zhM#@T?VuX#YWFKq?RUJf1tQ5wV3>B3$YHJNhc!=0h&-WMbTX(*F>D)kA=HSqfXxvq(EM)-ZPdCPp0cHKk2$Ff`h8Bu=Cb*voMES_i-LH+1T??KtPiG|Y ztRlCiGZhnR2@=oLKg%;V;f-Rs7)>L>IV_5n zC=-2T_8(Q$rJI|r!% zcb+F+N2LiuHzXWvF(Al0*T(@-Tq!9FW5$Ry07Cffw~M5JzDW}PfOQ!mKJyAXcxgS& zZx8Ax(0aT6c+;d@mry{ceQGh+56D*T78RjfVX$|jI4(JULyF&M`E85+WauQ!EaPWo zf4R6{Y{l4b$}c7~;_`&wu0rY4OLC0tgsvCBf^^_kF9?EDHs9VE3AWYHIG@KZPj>`` zIqJYIQ>-NOZhtL3_&o_!gL9G`t}^uKiIql9ui$^l_BBu~W>x3&0HP;qIz>XjTMYq` z!=N)LWfP~dqj>3^aP|HyZ4ixem+*nWgu7`gtVfh@rL)a#)&CO9*n-z`oF}3E4)O0D zKnsUS9tza3l)yin@$|#Y&COx%Xy|Hj^dB1sM|7$02oPtg$fu7pl`DQXIcFmB_FB9$ zHI$WPOJRgm7<6ttE}Lz3WMCJ{Keb&@-=8njgxA}loGNY_;WzVFe9m$; zAvz{A7ruUatAB$-Vq-HvsO7WJmXRC`ZBFmo_%Zz;AW`+$YsEN^DRTLL$G8n(pe8<} zgcus~IC;1M`50|VJo_uyxvmb3JZQ;7X6=$@WCbhfu!426u$@q944;Bnh(S_|OyMC$ zR!}eXttk7$D~QztLeE^cMm9~!lwd0d!`LIYb6C#EZ8T}oG+pqCV8n5k%4*Noc-6a7 z4KH39Wh&ppEAJGTO9Ek)Wgt_2C*Qp1r)K9QecD9@%L(wxW>1inKtO38@b=XAs&Mj7 z1?vQ5gi7Nqj|XOE;$k^cxwFP^$1#2(+M>vO^{Zn819Ehyp=|+A9m;cuIr)Or3vh-y zgk9YQ$PcPsk68bUv+@s5p`%`Gcuo_GxU@VZ{i*oEBLnuUgGYnU)gbflyZIRuYIF(YRqp$#JteD=iu747u7x1L;YVTY#Z?IjNmCB*dH-9a z#yytQ)iVwvH{_A#C<)2EgVjb|_Twpy`JS9POhdzU(D*r|2NZ3dGdX2012L$E3u6s` z-=-Jg&tJ|?ps~GvNZuc!U%d5Re(^`+O<*Eh`6E-4QI&dcYR(@nX;hR~?NHv$2g!kd zX|Xb^%wd!d9_hnp|F>DEIG_GaY)($oPciA+XnEaF)8{aXLk$AtGuXYbV28|ERraPA z`bPLgQ)eZTUK~CFEO>X!)F3K4y$pD{$?(G+KkW3L7|;l!dwQdM{~CGKTd z(VL&w|ET;(AACHKAuNvgfXjf^CMC1>HDoU@?^_f-6D#Ujj8G!cf;?&_ethD64oEW@ zn4&C&ITcA?{d<9IITrJcB3xlL`g3CJ_U->b%%@Xk#uXih&<=M60+bL_J*R)ULr(eS z2j$JZh?R9wC6Zr5CF`_DPWcrjQXkN~hAbvq{RWs}VB4%l?ge!X>k=jc`A>T|G^EGp zt{dTB-;mCkq^Yw(KioHG03h0JFU-lth%?6AI*$atQNRvIjpv$IT#owjEpz4h!L6<+ z^R;58ceg?Q`z>w7>Lhvx-qwN_sarGVOoW^om)oCR=O8}2gl;J%Kj}giHnu+4^pgESP;|${-OTId>9(rtbTKQNkb1ivXq$ z&9zrQJXgOpYdzpTkWcY1GDF#+uF|zvulwu1NjUH2<`xYt;pkeCp@j=U4BRA&cr0ni z#80UKutnZ)6itYo>uD?z&h7zT=8eTF#*4h;?-d|CNOBuNlo|p5KQJN-&Y^P|9)i&5a0< zV3&pK&IF>eygYs7s5gGT$im)`Iy*%OptqR_t9^06+a2EXgf3kV*)-piqn&?Ft0<$a zbLbL-@ba|wY!5GH92cBSOapSKM-*vh&69fZi`~HWGpgZ}9Ox=7G8=a{EtIuOMPryQ6>%9&~HgTCYflQ&C%YVJu zVz)mVMLu0%x4km=`PMTOZq-(3QwM%v^!xb24jRPmIElf>?k6d6y{=Q4a2TKO9#eouB7h+ptf6TZhGt?6IeS87G| z$tOOb@$#Ih|3XV+-2(<;l?SDb`%IaNA#W**a!`dDgn7C$P99Gd*vDD9@;;gcJ@-SI zvB{m}VPD)pU>s|1It_Z3&dhRFkR{B%B|r)o@1fDM;CD_V9D;7^0PiR@TJ$C-V6 zw9a0i`IZMYRa=sLNBJe2YRn}F*$8f$_|pr^3S>miH#NpvhXQ8Yvjyur$1>fy{EhI7 zh~?4J{w&+tn@mb5E3;##vO-Pn^NU_~vO9%r7z114$(MtLp~k>OsGA$j0PcPQ(NGf9 zdU+C?#HAxg>(l04kYwEnYPFFciy!sN8qa>`M~{v1fif`1vr^|wt2%SacMv6b(A(j) zKYJ^@Owik$*Qb9k)g%YJ`V)5pPs@Xrv9bV8c-$9u^>TXA15ojj1P{p8{C4p_U0xUs zKMp9H@;F;}K@O)qHe*37q6y}pcj7w(8vkTM{w#WY`MV;^$4rm-7l+)(!LNi4TWB}; z-AYaK%u`m8^#qPS z?FKmn0!5XA0JZ|DBn1g}N6)UoZXA-MDPo7XQ$0I8h!pgX^Ir6ESL@lYRo_jb$J zS7nH%;RUC0PV|az4c_cQ(W2X?r^a3*VD8jyQagftDlDAWN)$6Px3?aW^fhj7V1@9X zogJe2VO~<{RTN7D@Uw!)FozLntRqrc{E*Br;dJ6EtnaV-8tFIc@{WcSAiW$RQEESc z$vOjJuN^4dbs&;hQGtO3za`%P{eM7Y6R1plS_*O?p8kJ2EbF5=txDEkG{ISGp5zb7 zyH7fPROz&|q{dzOfpD@I@xub;(7nqNCASQ+DL!3C*TxUN3ir0y*FeUedL)_6z-X_m zT!q!vW=i(@bZh9wtL~qz-l7)?kf?!OEn8Q_XLRh)c*10uuKr0d= zOX-id6TW~Xj@7h`{tudL0msVo$miA7Fq)aupJI^O9`{Sb51SEc9!B`;fya%Y)E{_2 z0b{f^)qbHbcM;e!<-YHU#>39E(C~is<5Al)2vz>6c4E`RKgmeh$zYO6|F>fx#H9wQQ%U;vP zYgT7lR+Xc^94Rs#{|j;hwCsvspn40-K+3PK+36R;;=YU{3zE(Nq#qd_v6Cks7VdCb*E*#sYS|gdI_H$o` z+CTpi_0bq`YLEIhjF~<6ykt<2{xXRI-#-%0GLzi0_Us9S8BWYKKU*wvi*Ok?Pv_er zLN=XH{eDHmvu#>wDuCk#~JM#8hsyHpRY7CT_OdtOUg#*$GBwDApfLjeE}QLW9j zH_&+NH=*yE{pE-qOO3vL2Dh@M#=MhMNp<|n-bpmoBLzcl6;cA?7rqWVtbNvR&VDB) zfeQ?_YqE)s2=ytY;LIy!?5XVjowR!wXg>)8gOXkaZ;BHIaDEt<1Ak|1{CwfV;B>h0 zks#R9t=)e_rJK=xulf~{-kSzJx@ZN*Kxj>ZL8FH|sRsu{{5lJa+axzv(=EvCT_53A`PtYS|YzKX$B~7?MD?vYfiYIqQOw?-WVTlh; z9kR_vI#8p}QE=+Wv55b8SDi3JmWCla^&l^gyD(rN4Q;a6BW)kU!7AZyu#h+;bpz^w zJ9pH^j(sd*>8>phBb_HNr(LCbtb=D*jbQ6P`j0Wx94^?QNu)K(GDQzehjd2d$jzBt z+pGH2hT@K&pS&!E1L^W3ZS{Kz=0k&d<~F&P8c)jMYqUf(22c@nzso#{`=ou?l>~MN z4L*F=)ip`DP8c}%Ih||J_2_tsDMp0GXst+?yEAX$*u#aTaDTOua%R;cgUHjvaLgRX zT%%{3T;0u|48s}trcVJkIbz1MRQVNMrSPp~U!2JxCn8qn2=upR!;tlHscm!~d*k+;-`&mL|QGyBCoo4|at(*E-4_I$Ey zrwZZoo%@Mi%YK)eAYSNsmCb6WiEAy^b7taSdmbZ2eS>2vbPCL#YM>A5M9Rg$IR?mgz;%?3k>M;F*^95?dbUA6#rtJI)B}& zwbKZBglWk0YQa$WQ$Ez;TOD8D3ImkJOq9HQJbXDwygt5zBXj-T)Gc|tkRARi=Vk4v zNOuvv7hHmGsXFFqd`9_1+FP5=s>B`Is>S(5a=7`vzRfT0b0FQj z#YhN>Ipl-AZ5PHQ=IG+{MKT6oUh5TBBSBzd=3%UQfKC{SRoJt^zz*{XN$0f)fbk;f z(MafkP&iV`GFMpI$EPM(2g8;o%;E74zZm;0VL^MqX~`9i3I!zcvxF2H6(AkojoQp? z8_#-7$=2wQtD_^Kig-tdQEej>$qo{dwEwU?PCs(~W8Copcl3K2ijX>hgaT=3K5~+h zK{M)x;bpYjCaI(4(C`j*EwhH}6T~p2)J5_HE!?v3b4ri^W5^@K#YvCr0TpU+m|l)e zl{%ps*Qf15kox;eFencP@Jt5(VZ6mzJh#L8hk5vICvj{MtM6{^AJ0B*CNbHh< z6l?`YICFW#%v2XX6bGJM&74gS;D*FPEk+)Ig*8$Ip5OLNsyFI&fzxV-A$aS6UDQ)vFEDuJ=OPm zCw*cXvD$nXNPz-f9mBP^QhNIt{$qv~w%)>ktuUNdmAW)c@4ptZr9|1R%p`Uy?1m%p z>dL8$FhbtA%Lz3S2C6}7(0*!4aU~pp#_Ku8n93cUR2L!(j6iRrIP)93c1Cni*79g6 z0Vb;WZ^fj&n?T-U#8FT=Hk0xgS(_J~xCQyR|EJc6APqnMU(wVQ)V;NYN6Jm56;Y6E zp~UO0{DvY|#47_!DRb3baVHhe&i&PrAvKzMAlG^xf*Dh;u;!LA)u0IpSsU(Yr1({Tq(ams?jgJN%!lfeiu$`rP%1 zj%ROiEzeIMIf@BIG8YeCS;v%T!AmTUN&p!XldVn~A$!_{4fU=rK+dDmuYAjyoIjfh zq#Q|!uHHjDa?9gJ{yzyp^Jyw$SFWw{p7S7(b1rBzxdXq3G3OuqQ{P-FzT{Szn{PbF z;m8j$!<2k6O}lfKYkM)#YSx+PIU4F?4nVhUnj>dRYP=vrFK-zyJee*ep~O^lR^)$( z%G+S~6xk#CX+-kQ$ApZb*W-3=o+-+-jCH^N?`8pw8Eyc5J2Rf&)`s6!0tPFXuW6W< z_<)+=?@0LvFsb_ufeFkNyOGx|=c&hgnw<5t*xpcTG|Lf^bGKt0&du z4r{8pW^|BU%Tl=-we$S!1KGY5%U(LytE5Aab`eEmpOsjw4L(9^7P7G&fE!-aMVv+D z37Fsl6$u)Q`!%N1(09K7V?$}Bzc7ly5;YP#naF$x-B39h-rl=#* zy}{6F$1r?vbhUnqU6~&SDG#63TW{?+XO<}90u)d?vAbK%^UIz!aZ@x+ZfBy@Lnfcr z%4dan3}HNbbb;u*_VMz?#*%+usE8RM@uL^})9Ox5Qpd-f7tAQvTANX~p;!h-pmSCAA%n!F;GGR7dd)`V6(^{prxA%Q%9{l@lV6A1 zv4GK`HNoBQH`dnaO@_v{xYw62WbJOohvZ)Pu|%i}TseVGT|B(ht(6~i0(j^; zbRy#-@An0$m0t{=enkBKhTNuZm4C|g-^?TGvU_ZQzf>2S=$h7akBS?ag7{`l*7aPnF*|C|*N8omlno>w0)m>sM(=nA$#KX#M~9jG_> zbPt1!_hE$56k}x4>4bspA*o$iJ9M}5z{xD?VNGdB$9NDEr5?PZ3ZV#?J%X>~4-F0F zTVr1P)$13VU&9XYFDI5i(ifsCNlz6p>)RBt}tS(^^ovH&GyDt72*5Js|Q zmwlTkmHB3yb{f3qnomZ;ODQ>^#zB46aTr~%h4cx2;G7Wz+jE^x@?IA08kAZ>lqvPPWCW7%}0(B`$b zwsMHLv|&L=dmLiV+!!*9_939)3}WGtg6+lKAJe<~Np^k^ia&Mdzp{7xW$moC!06Fv zb+ad6(5?;SQw=4NcA?u+ovm9vdKjGnYI&yP; z2e>@iUasc8Yox3uan~*}m)vyl$nG~$(Ifv%4?Kk+Zp;mFZ1DUFEw5Qzu$>0L{?#QM zN<5^eSdOTjMB{joQPC#U@^QHavWj4kojk&cO~tL@OwuT&XU>Fq#CCAn+&a-sBK)uL zI1bc|^<@rHqbhcWBD*%Ss(l0OCj=MF+#ojZkei8>A>Xx>Y4m{-m47l*>rkK-jM^x_ ziE&Cwp(n`Xi7W{Z4Gj+nj9CW*3T24<^CRnw(^La?bwPLH?C~}Z7R+kL-#+u%1FxepkZlDC-RKIyVgJYA}Y&1?x_ zta>rr%KCl{?_gUk46A-8FUIAeYglV-vV8rItK01%+f>lC7ztcweQb<`20;4<1t|3bnw6h`m zJZgl4YQ>XbqF1P3N)HTP^gDzT&B6U-D249mhq(f^at|W7AEvzAWs!cyEr8>G;_9Nj z5}CYIwRqXnK_AafSB%O#;44$q<~tcK+BaiiYY@UDr>#w8?p|+%C5hqDwDV~~=Y|v! z{u+kgfr7_EQ);*l(rJRTiDc%42QjOC-sN`I^gAszsX602Mu7&3PY3Ik!FsGV27t*~6oYB6W=xPXu!eDXUiIYAc$~r_nafRFgt$@^yfy3>cTT)u z%Xz^DrSB)y-;p8gU8L}H#X@?oLm*?lxj#QXH@~_G7WU=u&1@a3(ji<1&^TTdFHm|r zD0AIOgA5%Qy`2W3G#LGrw_ZHW>2a&4Iz94lxk_8r-g;aY;=8{#!AY{G1_su+MbigQ zm^F0nUH*^k$ASnCd_>=Y$F90z{H%q_z)_q&BDT3R_j6}%)(3#L8BBxcdgW66;KlU6 zBrdWuMjMmVO}c^4amIvLeqs#(&Mef;NmVo(l+Y>-a4=FLOs^NT4R(-uh~usoY%?~gWFA= zw>SG`-oqDxd8bK3{U8u07R8dIhvywMSSbuvL?s&NUO8%UB`MHjN0Ow?ZR75UA<9io z{8ic;Iwou>@cOiYaX4+A3-s7L6*0~wA?zm>xyAAXYDWF@4(sugowN?oDti;JOL~M%Ry*4>S8+InfcuzL5wZ%@FfE!&hX6WJBk(G`A zhF)ezquDDIqhv~YOkek9!3vFdpFJB>cs5#`$cFB}oUB$Sy7%AJX1>u!A3Qo`V}nrd z?tK)djI4{mdn0M*y{d7;5D$wWskN9rq>XZvVcwwJ=bS}^>_c<8;lB^DlPb4@I4Z#i z2v(-n$_kFx!i8}y8x}|Q^^)X@p-WHr%kl@UW@Y8hn5hh39lV>j1e1Pqj`yxzve9e` z=ggF3{Zxvh`q2?1w{Fe=(GJH4ry9szL!x5iy_F(-q_ZtYjrW_}IQ`{VzyI1bPXjitYQBj1xF! z;%m>o0p_+HKO%AISKbR&!)n4dy#N7SLCF;yreVn4v-Pm`Gy3SiLaSpd_9B>VYhmjz z+)y({^)1V?QBINJNsZeNwuoHVV22U;^%GIgYs)gKZv<_@Vfb9M`Jp_2-jW&JM!~L5 znzonRj2ggT5?8&!S#Tgc6Dkgh{(=xrX2A4|G7fbCpq2<2yQ6QOsgjm1xt3J$b~H%N z9Z0ivp}N94+k32+9?uPY-e~x`erzbCberI;F(d~a-AtdM*0Vo&cVJ90(z}#hc+xYi#OI&TNN$$Xo5KCq0LdO!A)N z>ONX^r9IsZ{x>8xN4)y?O(@m@Qr1B?P1S*93v3tUF5rvlsRE0I7q6YolwF)krf1jd*zHm8{P*#k zTI15s$kth(*5*~LcJI@kpbMTq1Edy#N8uj|*+s$|J z%=PfDZ`dsbwBH)c-_R2J$l;)amRw9~G_?O8mr=m5F`-Rg8?n1z;C(hj}l{xH%WX8jjxB)>jkQ`0AP0p z&k3O-*y^!O0baITMU{RFKJ$^-WGSBSfvIo!(p5Ge{e7Y^dKs~~nXEOKkdE9ME8spm zE$L>3D%bv#C9wcNMg(p6lu$An;v`(4lupy!FMm8>+){t?{Xebw0g^e}{*qsF-d6CR zPU9cA)NZJTHweW`CkwM9`!qQV7}B9t4sz<5Rc;<*3`XRQP};dn_afduLCS%3n$JrP z3iG(5AW+_d=&PgUOYa`t8y;pOkM z_JI@AS+|~_%h?mg>_$aX|WwWq-C-*>{bi%+a(Mx$QCvl_NK2{#p zf)fv%wNQKlQvQYweDGM_;n$(IVz-^6UvW+0WUQ0=24(4{cVjg=$`dF#i`xPIp;It? z$O#>EM(h3m+NuF~(NP08W@fE*6n@)Tx@-hqY-VQFzq8zAT8yEe_>qP|dhibHiirwc zK2-QoJNUM(P(e6G3pdkIY;ntAwVtsa1vF_1+k>(kaREJejipeh3>qass;h!2zFyNW zDfy+lw2KMO7in+zE5w0PW+~Xvv~ru|ufZC2wDcKW z6%DIoEB^IXf581t%!}=QwHtmu$kSutJcmbxL@<=IOtXA zQE&RTiX~i!p);TXwZqdHu@9wO2G4pz-z|fg2yPK_zp@rKp1UCBYFlRqu&+xGpOVbO zd4nTkCby&p72GN3)%vzwt$14JhEXGT?y&!ct_ZV5k+k}Fyz@`o3x|L&t*t)I5c(>jjMtk`m8spXqn_z#9>aI=$(<}#f#OjUU1b7bJ>=SIf03qPiq zJc~RZR^@A;{_qt3)b5`a-s-=lt+FZ)HC(Rn@ z5XS)NcwyQL4K-(GSO@)GkW>$QZ<_tmp0fWHK2lg2vuQ48d>DsP78_?oL^XdHQftHI zD=t(II|{jna|BZ!#{q>Z-qoQ#v{Ng1lXpWkr+2;Pt4eWUw+?!A3k)nAf0905%t5-U z!9`n(G!FP!hl9(Bex2asLu~fijPvE99q%;%It(_*B`}6XE7fBdOycr{REr^O6d4%@ zrECGo?DX6ihu@2EW*jdqO9`WStZvy_Zdy`C)6w3Oyx-c-E<&+5`o1KQrc9q;T* z=ILQtJ#aw}4A10aT2`L=**w2mZAi{mIv>*1H-}iKSAOe{wa$P~kVNEl(+|VoTA+`R z=vIyjpOR;K>v^BSJeFYQ$HxKnZxVxbXHhD&ZwZa_s}uKL!ZC!>EFUTEg3cbC5Q52r zf1^q=Fh*D60xdJMl;i?8%Kk_A{C`tvvJs@32l33*{3O9L^6?y^7p5U&fI|xbq82>m zaRz-9G6HkWFV~bUL~Q-A-8#oSq*7{aWZ3;FtzS_OhPFzENg@+ooK(&oJ@69~S+Emn z=rD`OHHbK}Sl{(eH2Qa^nK(-cd+F4HNDj!!oR;hQ%DL|M?zmb+?ibWY2bSl5!>Wg6 zr602ofMYE9WJ_zTL=M9i#ggN~R`ePvuG>}U_Jg7Ym%|q@dr5nl8F7Mt=YWgA(qf3S zMndV&e3*dWes;PHB#edd_?ef1nDKP&v4GF1bCRGL?2JxtXTChgQ=7?-YmbT1OG=H# zaEw3Y#N7LMQ;*Ej20fG^PNf8!>7CV?qbAhk^xTvoE8;>+Fg&FD@T*yCqJk!S(cV8! dx?1S_?!J??RQsnmE;jHpG=N) { + const messages = await getMessages(); + const locale = await getLocale() return ( - + - {children} + + + +